/*
==================================================
#BASIC TYPOGRAPHY
#HEADER
#NEW ALBUM RELEASE
#ON TOUR
#GALLERY
#VIDEO
#NEWS
#TESTIMONIALS
#CONTACT US
#FOOTER
#MUSIC DISCOGRAPHY
#MUSIC SINGLE ALBUM
#ALL EVENTS
#SINGLE EVENTS
#VIDEOS
#SINGLE VIDEO
#GALLERY PHOTOGALLERY
#GALLERY SINGLE GALLERY
#BLOG GRID
#BLOG SINGLE POST
#BLOG STANDARD
#BLOG MANSORY
#CONTACT US
#404 PAGE
#SEARCH RESULT
#SHOP
#CHECKOUT
#SINGLE PRODUCT
#RESPONSIVE
#FOR MOZILA FIREFOX
*/
/*--------------------*/
/* BASIC TYPOGRAPHY */
/*--------------------*/


/***** Preloader *****/
#preloader{
    width: 100%;
    height:100%;
    background-color: rgb(29, 29, 29);
    position: fixed;
    top:0;
    left:0;
    z-index: 9999;
}
@font-face {
    font-family: OpenSans-Bold;
    src: url(../fonts/OpenSans-Bold.ttf);
}
body, html {
    padding:0px;
    margin:0px;
}
body {
    font-family: 'Open Sans', sans-serif;
    background-color: rgb(27, 27, 27);
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
a {
    text-decoration: none;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
a:focus,a:hover {
    outline: none;
    text-decoration: none;
}
.row{
    margin:0;
}
.overly{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    width: 100%;
    height: 100%;
}
.section{
    position: relative;
    z-index: 88;
    max-width: 1645px;
    width: 90%;
    margin: auto;
    float: none;
}
.title{
    text-align: center;
    padding-top: 105px;
    padding-bottom: 105px;
}
.title h1{
    font-family: Open Sans;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0px;
    color: #2ac4b7;
    margin-bottom: 10px;
    line-height: 40px;
}
.title p{
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 8px;
    color:#ffffff;
    margin-bottom: 0px;
}

/*--------------------*/
/* HEADER */
/*--------------------*/
#header .nav-menu,#header .search-bar{
    position: fixed;
    top: 0;
    padding-top: 110px;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: #000000;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
#header .nav-menu.active,#header .search-bar.active{
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}
.nav-menu .section{
    z-index: 991;
}
#header .nav > li:first-child a{
    padding-top: 0px;
}
#header .nav{
    font-family: 'Open Sans';
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: absolute;
    top: 110px;
    bottom: 0;
    margin: auto;
    float: none;
    left: 0;
    right: 0;
}
#header .nav > li{
    position:relative;
    width:206px;
}
#header ul.nav > li > a{
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    padding-top: 3px;
    padding-bottom: 0;
    padding-left: 30px;
    text-transform: capitalize;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
#header ul.nav li .nav-link.active{
    color: #2ac4b7;
}
#header ul.nav li a:hover{
    color: #2ac4b7;
}
#header .nav > li ul.child-item{
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display:none;
    position: absolute;
    left: 200px;
    top: 20%;
    padding: 15px 25px 15px 25px;
    background-color: rgb(28, 28, 28);
}
#header .nav > li ul.child-item:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 20px solid #1c1c1c;
    border-bottom: 10px solid transparent;
    position: absolute;
    top: 10px;
    left: -17px;
}
#header .nav > li:hover ul.child-item{
    display:block;
}
#header .nav > li ul.child-item > li a{
    font-size: 24px;
    font-weight: 300;
    color: #828282;
    padding: 0;
    line-height: 32px;
    text-transform: capitalize;
}
#header .nav > li ul.child-item > li a:hover{
    color:#2ac4b7;
}
#header .search-bar form{
    position: absolute;
    z-index: 99;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 710px;
    width: 95%;
}
#header .search-bar form input{
    height: 80px;
    width: 100%;
    margin-right: 0!important;
    background-color: rgba(26, 26, 28, 0.7490196078431373);
    border: none;
    border-radius: 10px;
    padding-left:30px;
    font-size: 20px;
    text-transform:capitalize;
}
#header .search-bar form button{
    position: absolute;
    right: 35px;
    border: none;
    padding: 0;
    margin-top: 2px!important;
    color: #fff;
}
#header .search-bar form button:hover{
    background-color: transparent;
    border-color: transparent;
}
#header .search-bar form button i{
    font-size: 30px;
}
#header .search-bar form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: 'Open Sans';
    color: #888;
    font-size: 20px;
}
#header .search-bar form input::-moz-placeholder { /* Firefox 19+ */
    font-family: 'Open Sans';
    color: #888;
    font-size: 20px;
}
#header .search-bar form input:-ms-input-placeholder { /* IE 10+ */
    font-family: 'Open Sans';
    color: #888;
    font-size: 20px;
}
#header .search-bar form input:-moz-placeholder { /* Firefox 18- */
    font-family: 'Oswald';
    color: #888;
    font-size: 20px;
}
#header .search-bar form input:active,#header .search-bar form input:focus{
    border:none;
    outline:none;
    box-shadow: none;
    color:#fff;
}
#header .search-bar form button:active,#header .search-bar form button:focus{
    border:none;
    outline:none;
    box-shadow: none;
    background-color: transparent;
    border-color: transparent;
}
#header .section_bg_image{
    opacity: 1;
    z-index: 99;
    background-size: cover;
}
#header{
    position: relative;
}
#header .bg_image{
    background-position-y: 0px;
}
.bg_image{
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /></filter></svg>#filter');
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -ms-filter:grayscale(100%);
}
#header .overly{
    background-color: rgba(0, 0, 0, 0.6509803921568628);
}
.logo{
    max-width: 360px;
    width: 50%;
}
.logo img{
    width: 100%;
}
.header-continer{
    padding: 30px 0px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
.header-continer.active{
    background-color: rgb(0, 0, 0);
}
.header-continer > .section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header_items{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header_items > div{
    cursor: pointer;
    position: relative;
    width: 24px;
    text-align: center;
}
.search_icon svg,.menu_icon svg{
    display:none;
}
.search_icon.active i.fa-search,.menu_icon.active i.fa-bars{
    display:none;
}
.search_icon.active svg,.menu_icon.active svg{
    display:block;
}
.header_items > div:hover i{
    color: #2ac4b7;
}
.card_count{
    width: 20px;
    height: 20px;
    font-size: 11px;
    position: absolute;
    top: -5px;
    right: -9px;
    color: #fff;
    background-color: #2ac4b7;
    padding: 3px;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header_items i{
    color:#fff;
    font-size: 24px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
.header_items svg{
    width:21px;
}
.header_items svg path{
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
.header_items svg:hover path{
    fill: #2ac4b7;
}
.search_icon,.shop_icon{
    margin-right: 20px;
}
.big-title{
    height: 205px;
    position: absolute;
    top: 0%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0.2;
    text-align: center;
}
.big-title img{
    width: 100%;
    opacity: 0.6;
}
.big-title h1{
    font-size: 16vw;
    text-transform: uppercase;
}
.header-title h1{
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 55px;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.section_1_title{
    position: absolute;
    height: 100%;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.header-title{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 33%;
    text-align: center;
    z-index: 9;
}
.header-title h1 span{
    color: #2ac4b7;
}
/*--------------------*/
/* HEADER END */
/*--------------------*/


/* =================================================  */
/* HOME PAGE CSS */
/* =================================================  */


/*--------------------*/
/* NEW ALBUM RELEASE */
/*--------------------*/

#album-release{
    position: relative;
    background-color: #1b1b1b;
    overflow: hidden;
}
.section_bg_image{
    position: absolute;
    z-index: 9;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    opacity: 0.2;
}
.m_img{
    height: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 13%;
    opacity: 0.3;
}
.sec_2_content{
    font-family: 'Open Sans';
    max-width: 785px;
    line-height: 30px;
    padding-right: 85px!important;
}
.sec_2_content *{
    font-size: 18px;
    color:#888;
}
.sec_2_content .cta a{
    letter-spacing: 1px;
}
#album-release .col{
    padding: 0;
}
#album-release .buy{
    margin-top: 49px;
}
#album-release .section > .row{
    margin: 0px;
}
.cta{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 80px;
}
.cta a{
    font-family: 'Oswald';
    font-size: 15px;
    color: #fff;
    padding: 24px 13px 24px 20px;
    border: 1px solid #2ac4b7;
    border-radius: 10px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
.cta a:hover{
    border-color:#2ac4b7;
    background-color:#2ac4b7;
}
.home #on-tour{
    background-color: rgba(15, 15, 15,0.1);
}
#on-tour{
    position: relative;
    padding-bottom: 105px;
    overflow: hidden;
}
#on-tour .section_bg_image{
    background-attachment: fixed;
    background-size: cover;
    background-position: 50%;
    opacity: 0.7;
}
.j_c{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 105px;
}
/*--------------------*/
/* NEW ALBUM RELEASE END */
/*--------------------*/

/*--------------------*/
/* ON TOUR */
/*--------------------*/
.tickets{
    padding: 0px;
}
.ticket{
    margin:0px;
    margin-top: 1px;
}
.ticket *{
    color: #888;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
.row.ticket:after {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background-image:url(../images/doted.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}
.tickets > div.ticket:first-child > div{
    padding-top: 0px;
}
.row.ticket > div{
    padding: 40px 20px;
}
.buy{
    text-align:right;
}
.day_num{
    width: 167px;
    height: 63px;
    border-right: 5px solid #fff;
    line-height: 33px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.day_num span{
    font-family: 'Oswald';
    font-size: 68px;
    color: #fff;
}
.day_num div{
    margin-left: 7px;
}
.day_num div p{
    font-family: 'Oswald';
    font-size: 30px;
    margin: 0;
    text-transform: uppercase;
}
.row.ticket > div > div{
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}
.day{
    float: left;
}
.name{
    float: left;
    padding-left: 30px;
}
.name p{
    font-family: 'Oswald';
    font-size: 40px;
    margin: 0;
    font-weight: 300;
    color: #fff;
}
.name span:first-child{
    margin-right: 30px;
}
.buy a{
    font-family: 'Oswald';
    font-size: 25px;
    color: #f8f8f8;
    text-transform: uppercase;
    padding: 11px 33px;
    border: 1px solid #fff;
    border-radius: 3px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
.row.ticket:hover *{
    color: #fff;
}
.row.ticket:hover .day_num{
    border-color:#2ac4b7;
}
.row.ticket:hover .buy a{
    background-color: #2ac4b7;
    border-color: #2ac4b7;
}
.buy a:hover{
    text-decoration: none;
    color: #fff;
}
.buy p{
    font-family: 'Special Elite';
    font-size: 30px;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
}
/*--------------------*/
/* ON TOUR */
/*--------------------*/

/*--------------------*/
/* GALLERY */
/*--------------------*/

#gallery{
    background-color: #2a2a2a;
    padding-bottom: 129px;
}
#gallery .row.title{
    margin-bottom: 65px;
}
#gallery .title,#video .title,#news .title{
    padding-bottom: 105px;
}
#gallery .row,#gallery .col{
    padding: 0px;
    margin: 0px;
}
.img_gallery{
    position: relative;
    height: 1390px;
}
#popup-container{
    opacity: 0;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
    background: rgba(15, 15, 15, 0.9);
}
#slides-container{
    position: relative;
    width: 90%;
    height: 100%;
    margin: auto;
}
.popup-image{
    width:100%;
    height: 100%;
    text-align: center;
    cursor: auto;
}
.popup_block{
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 70%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    overflow: hidden;
}
.popup_block:hover .popup_left{
    left: -105px;
}
.popup_block:hover .popup_right{
    right:-105px;
}
.popup_arrow{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 130px;
    width: 180px;
    background-color: rgba(43, 118, 110, 0.5490196078431373);
    border-radius: 70%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    z-index: 99;
}
.popup_left{
    left: -200px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 30px;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.popup_right{
    right: -200px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 30px;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.popup_arrow i{
    font-size: 35px;
    color: #fff;
}
#popup-container ul{
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#popup-container ul li{
    width: 13px;
    height: 13px;
    margin:0px 3px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -o-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.2s ease-out 0s;
}
#popup-container ul li:hover{
    -webkit-transform: scale(1.3, 1.3);
    -moz-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    -o-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
    border: none;
    background-color: #2ac4b7;
}
#popup-container ul li.active{
    -webkit-transform: scale(1.3, 1.3);
    -moz-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    -o-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
    border: none;
    background-color: #2ac4b7;
}
.banner_2 {
    overflow: hidden;
    padding-right: 0px;
}
a.popup-image img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.banner_1{
    height: 100%;
    overflow: hidden;
    padding-left: 0;
}
a.img_link{
    display: block;
    width: 100%;
    height:100%;
}
a.img_link img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
a.anim_border {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
a.anim_border::before {
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
    bottom: 20px;
    content: "";
    left: 10px;
    position: absolute;
    right: 10px;
    top: 20px;
    transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
    z-index: 9;
}
a.anim_border::after {
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    border-right: 1px solid rgba(255, 255, 255, 0.9);
    bottom: 10px;
    content: "";
    left: 20px;
    position: absolute;
    right: 20px;
    top: 10px;
    transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
    z-index: 9;
}
.anim_border:hover:before, .anim_border:hover:after {
    transform: scale(1);
    -webkit-transform: scale(1);
}
#gallery .cta{
    text-align: center;
    margin-top: 129px;
}
#gallery .cta a{
    letter-spacing: 7px;
    text-transform: uppercase;
}
#gallery .buy a,#album-release .buy a{
    color: #fff;
}
#album-release .buy a{
    padding: 15px;
}
#gallery .banner_1 > div:first-child{
    height: 25%;
    padding-bottom:15px;
}
#gallery .banner_1 > div:last-child{
    height: 25%;
    padding-top:15px;
}
#gallery .banner_1 > div:nth-child(2){
    height: 50%;
    padding: 15px 0px;
}
#gallery .banner_2 > div:first-child{
    height: 50%;
    padding-bottom: 15px;
}
#gallery .banner_2 > div:last-child{
    height: 25%;
    padding-top: 15px;
}
#gallery .banner_2 > div:nth-child(2){
    height: 25%;
    padding: 15px 0px;
}
#gallery .banner_1 > div:first-child > div:first-child{
    margin-right: 15px;
}
#gallery .banner_1 > div:first-child > div:last-child{
    margin-left: 15px;
}
#gallery .banner_1 > div:last-child > div:first-child{
    margin-right: 15px;
}
#gallery .banner_1 > div:last-child > div:last-child{
    margin-left: 15px;
}
#gallery .banner_1 > div > div,#gallery .banner_2 > div > div{
    height: 100%;
}
/*--------------------*/
/* GALLERY END*/
/*--------------------*/

/*--------------------*/
/* VIDEO */
/*--------------------*/
#video{
    background-color: rgb(28, 28, 28);
    padding-bottom: 105px;
}
#video .embed-responsive{
    max-width: 1360px;
    width: 90%;
    margin:auto;
    border: 20px solid #2a2a2a;
    border-radius: 70px;
    -webkit-box-shadow: 0 0 10px 1px #131313;
    box-shadow: 0 0 10px 1px #131313;
}
#video .embed-responsive iframe{
    width: 100%;
    height: 100%;
    border: 0;
}
/*--------------------*/
/* VIDEO END*/
/*--------------------*/

/*--------------------*/
/* NEWS */
/*--------------------*/
#news{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    padding-bottom: 105px;
    overflow: hidden;
}
#news .section_bg_image{
    background-attachment: fixed;
    background-size: cover;
    opacity: 1;
    background-position:0%;
}
.news > div.row{
    margin: 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.news > div > div{
    position: relative;
    max-width: 480px;
    width: 95%;
    padding: 0;
}
.news_content{
    position: relative;
    z-index: 10;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    text-align: center;
    padding: 75px 20px 85px;
}

.news .cta{
    width: auto;
    margin-top: 105px;
}
.news .cta a{
    text-transform: uppercase;
    letter-spacing: 7px;
}
.news_content h2{
    font-family: 'Oswald';
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.news_content .day_num{
    width: auto;
    border: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.news_content .day_num *{
    color: #2ac4b7;
    margin: 0;
}
.news_content .day_num div{
    border-right: 3px solid #2ac4b7;
    padding-right: 10px;
    margin-right: 10px;
    margin-left: 4px;
    line-height: 14px;
}
.n_c{
    margin-top: 20px;
    margin-bottom: 40px;
}
.n_c *{
    font-family: 'Open Sans';
    font-size: 18px;
    text-align: left;
    letter-spacing: 1px;
    color: #cbcbcb;
    line-height: 30px;
    margin: 0;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}

.news_content_3{
    background-color: rgb(28, 28, 28);
}
.news_content .buy{
    opacity: 0;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.news .bg_image{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    margin-top: 0;
    background-position: 50%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;

}
.news > div > div:hover .bg_image{
    -webkit-filter: initial;
    filter: initial;
}
.news .overly{
    z-index: 9;
    background: rgba(0, 0, 0, 0.7);
}
.news_content:hover .buy{
    opacity: 1;
}
.news_content:hover h2{
    color: #2ac4b7;
}
.news_content:hover .cta a{
    background-color: #2ac4b7;
}
.news_content .day_num div p{
    font-size: 14px;
    text-align: left;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}

.news_content:hover .day_num div p{
    color: #ffffff;
}
.news_content .day_num span{
    font-size: 26px;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.news_content:hover .day_num span{
    color: #ffffff;
}
.news_content .day_num div{
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.news_content:hover .day_num div{
    border-color: #fff;
}
.news_content .day_num > p{
    font-family: 'Open Sans';
    font-size: 14px;
    font-style: italic;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.news_content:hover .day_num > p{
    color: #fff;
}
.news_content:hover .n_c *{
    color: #fff;
}
.news_content .buy a{
    color: #fff;
    padding: 22px 146px;
}

/*--------------------*/
/* NEWS END */
/*--------------------*/


/*--------------------*/
/* TESTIMONIALS */
/*--------------------*/
#testimonials{
    background-color: #2a2a2a;
    padding-bottom: 105px;
}

.flex-direction-nav{
    display: none;
}
.flex-control-nav{
    text-align: center;
    margin-top: 60px;
    padding: 0;
    margin-bottom: 0;
}
.flex-control-nav li{
    display: inline-block;
}
.flex-control-nav li a{
    display:block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: transparent;
    text-indent: -9999px;
    margin: 0px 5px;
    font-size: 0;
    color: transparent;
}

.flex-control-nav li a.flex-active {
    background-color: rgb(255, 255, 255);
}
.slide_img{
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid transparent;
    margin: auto auto 35px auto;
    overflow: hidden;
}
.slide_img img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 0px;
    object-position: 0px;
}
.carousel_content {
    font-family: 'Open Sans';
    position: relative;
    max-width: 770px;
    width: 95%;
    margin: auto;
    text-align:center;
}
.carousel_content *{
    color:#ddd;
    font-size: 18px;
    line-height: 30px;
    font-style: italic;
}
.carousel_content:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    background-image: url(../images/quote_11.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    top: 6%;
    left: -10%;
}
.carousel_content:after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    background-image: url(../images/quote_2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    top: 6%;
    right: -10%;
}
/*--------------------*/
/* TESTIMONIALS END */
/*--------------------*/

/*--------------------*/
/* CONTACT US */
/*--------------------*/
#contact-us{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    padding-bottom: 105px;
}
#contact-us .overly{
    background-color: rgba(19, 19, 19, 0.85);
}
.form form input{
    height: 55px;
    color:#fff;
    text-transform: capitalize;
}
.form form textarea{
    height: 295px;
    color:#fff;
    text-transform: capitalize;
}
.form form input,.form form textarea{
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0;
    border: 0px solid rgba(175, 175, 175, 0);
}
.form form input:focus,.form form textarea:focus{
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid #2ac4b7;
    outline: 0;
    box-shadow: none;
    color:#fff;
}
.form .row{
    margin-right: -15px;
    margin-left: -15px;
}
.form .fild_1{
    margin-bottom: 20px;
}
.form .btn-primary{
    font-family: 'Oswald';
    color: #fff;
    background-color: transparent;
    border-color: #fff;
    padding: 20px 38px 22px;
    font-size: 15px;
    font-weight: 400;
    margin-top: 19px;
    letter-spacing: 1px;
}
.form .btn-primary:focus,
.form .btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus{
    box-shadow: 0 0 0 0;
}
.form .btn-primary:hover{
    background-color: #2ac4b7;
    border-color: #2ac4b7;
}

.form .btn-primary:active{
    background-color: #2ac4b7!important;
    border-color: #2ac4b7!important;
}

.form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: 'Open Sans';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
}
.form input::-moz-placeholder { /* Firefox 19+ */
    font-family: 'Open Sans';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
}
.form input:-ms-input-placeholder { /* IE 10+ */
    font-family: 'Open Sans';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
}
.form input:-moz-placeholder { /* Firefox 18- */
    font-family: 'Oswald';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
}
.form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: 'Open Sans';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
    padding-top:245px;
}
.form textarea::-moz-placeholder { /* Firefox 19+ */
    font-family: 'Open Sans';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
    padding-top:245px;
}
.form textarea:-ms-input-placeholder { /* IE 10+ */
    font-family: 'Open Sans';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
    padding-top:245px;
}
.form textarea:-moz-placeholder { /* Firefox 18- */
    font-family: 'Open Sans';
    color: #363636;
    font-size: 14px;
    text-transform: capitalize;
    padding-top:245px;
}
/*--------------------*/
/* CONTACT US END */
/*--------------------*/

/*--------------------*/
/* FOOTER */
/*--------------------*/
#footer{
    position: relative;
}
#footer .bg_image{
    margin-top: 0px;
    position: absolute;
    background-position: 0% 60%;
}
#footer .overly{
    background-color: rgba(19, 19, 19, 0.95);
}
.footer{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    padding-top: 40px;
    padding-bottom: 40px;
}
.footer > div{
    max-width: 340px;
    width: 95%;
    padding: 0;
}
.f-content{
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
}
.footer > div:last-child{
    padding-left: 45px;
}
.footer h2{
    font-family: "Oswald";
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}
.footer *{
    color: #888;
}
.footer > div:first-child p{
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 25px;
}
.footer .day_num{
    display: block;
    border: none;
    width: auto;
    height: auto;
    margin-bottom: 10px;
}
.footer .day_num > a{
    display:-webkit-box;
    display:-webkit-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -moz-box-align:center;
    -ms-flex-align:center;
    align-items:center;
}
.footer .day_num span {
    width: 15px;
    font-family: 'Oswald';
    font-size: 24px;
    margin-right: 5px;
    color: #eeeeee;
}
.footer .day_num div {
    line-height: 14px;
    margin-right: 20px;
}
.footer .day_num div p{
    font-family: 'Oswald';
    font-size: 14px;
}
.footer .day_num > a > p{
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 30px;
    margin: 0px;
}
.footer_logo img{
    width: 140px;
}
.footer_logo{
    margin-bottom: 20px;
}
.info p{
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 30px;
    margin: 0;
}
.info p a{
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.info p:hover a{
    color: #2ac4b7;
    text-decoration: none;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.folow{
    margin-top: 35px;
}
.folow ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.folow ul li {
    display: inline-block;
}
.folow ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 21px;
    background-color: #2a2a2a;
    margin-right: 5px;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.folow ul li a i{
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.folow ul li a:hover{
    background-color:#2ac4b7;
    text-decoration:none;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.folow ul li a:hover i{
    color: #fff;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.footer .main_p{
    color: #eeeeee !important;
}
.footer .day_num *{
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.footer .day_num:hover *{
    color: #2ac4b7;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.copyright{
    text-align: center;
    padding: 25px 0px;
    border-top: 1px solid #181818;
}
.copyright *{
    font-family: 'Open Sans';
    font-size: 12px;
    color: #a4a4a4;
}
.f_1{
    margin:0;
    position: relative;
    z-index: 11;
}
.f_1 .col{
    padding: 0;
}
/*--------------------*/
/* FOOTER END*/
/*--------------------*/

/* =================================================  */
/* HOME PAGE END */
/* =================================================  */


/* =================================================  */
/* MUSIC DISCOGRAPHY */
/* =================================================  */

#page-title{
    position: relative;
    margin-top: 140px;
    margin-bottom: 70px;
}
.music-discography #page-title{
    margin-bottom: 70px;
}
.title-image img{
    width: 100%;
    opacity: 0.1;
}
.title-image h1{
    text-transform: uppercase;
    font-size: 17vw;
    text-align: center;
    opacity: 0.3;
    line-height: 13vw;
}
.global-title{
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.global-title h1{
    font-family: 'Oswald';
    font-size: 85px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
}
#discography{
    margin-bottom: 70px;
}
.music-discography #discography .section > div{
    margin-right: -5px;
    margin-left: -5px;
}
.music-banner{
    padding: 5px;
    overflow: hidden;
}
.music-banner > div {
    position: relative;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
}
.music-banner-image{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: -webkit-calc(100% + 50px)!important;
    width: -moz-calc(100% + 50px)!important;
    width: calc(100% + 50px)!important;
    max-width: -webkit-calc(100% + 50px)!important;
    max-width: -moz-calc(100% + 50px)!important;
    max-width: calc(100% + 50px)!important;
    -webkit-transition: opacity .35s,
    -webkit-transform .35s;
    transition: opacity .35s,
    -webkit-transform .35s;
    -o-transition: opacity .35s,
    -o-transform .35s;
    -moz-transition: opacity .35s,
    transform .35s,
    -moz-transform .35s;
    transition: opacity .35s,
    transform .35s;
    transition: opacity .35s,
    transform .35s,
    -webkit-transform .35s,
    -moz-transform .35s,
    -o-transform .35s;
    transition: opacity .35s,transform .35s,
    -webkit-transform .35s;
    -webkit-transform: translate3d(-40px,0,0);
    -moz-transform: translate3d(-40px,0,0);
    transform: translate3d(-40px,0,0);
}
.music-banner-text{
    display: table;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity .2s,-webkit-transform .35s;
    transition: opacity .2s,-webkit-transform .35s;
    -o-transition: opacity .2s,-o-transform .35s;
    -moz-transition: opacity .2s,transform .35s,-moz-transform .35s;
    transition: opacity .2s,transform .35s;
    transition: opacity .2s,transform .35s,-webkit-transform .35s,-moz-transform .35s,-o-transform .35s;
    transition: opacity .2s,transform .35s,-webkit-transform .35s;
    -webkit-transform: translate3d(0,40px,0);
    -moz-transform: translate3d(0,40px,0);
    transform: translate3d(0,40px,0);
    -webkit-transition-delay: .05s;
    -moz-transition-delay: .05s;
    -o-transition-delay: .05s;
    transition-delay: .05s;
    -webkit-transition-duration: .35s;
    -moz-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
}
.dis-name{
    display: table-cell;
    vertical-align: middle;
}
.music-banner:hover .music-banner-text{
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition-delay: .05s;
    -moz-transition-delay: .05s;
    -o-transition-delay: .05s;
    transition-delay: .05s;
    -webkit-transition-duration: .35s;
    -moz-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    opacity: 1;
    -webkit-transition-delay: .05s;
    transition-delay: .05s;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
}
.music-banner:hover .music-banner-image{
    opacity: 0.2;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition-delay: .05s;
    -moz-transition-delay: .05s;
    -o-transition-delay: .05s;
    transition-delay: .05s;
    -webkit-transition-duration: .35s;
    -moz-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
}
.music-banner-text *{
    color: #fff;
}
.music-banner-text h2{
    color: #ffffff;
    font-family: 'Oswald';
    font-weight: 400;
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 5px;
}
.music-banner-text p{
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 0px;
    letter-spacing: 1px;
}
.music-banner-link{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
/* =================================================  */
/* MUSIC DISCOGRAPHY END */
/* =================================================  */


/* =================================================  */
/* MUSIC SINGLE ALBUM */
/* =================================================  */

#video-post .youtube{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
#video-post .youtube img{
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
#discography-post {
    overflow: hidden;
    padding-top: 70px;
}
#discography-post .section > .row {
    margin: 0px;
}
#discography-post .col{
    padding: 0px;
}
#discography-post .mp3{
    border-bottom: 5px solid rgba(24, 24, 24, 0.7803921568627451);
}
#discography-post .mp3 .plyr--audio .plyr__controls{
    position: relative;
    padding: 46px 55px 48px 18px;
}
#discography-post .mp3 .plyr__controls>button:last-of-type{
    top: 48px;
    display: block;
}
#discography-post .mp3 .plyr .plyr__progress{
    display: block;
    margin-left: 105px;
    max-width: 410px;
}
#discography-post .mp3 .plyr__controls > .plyr__time{
    margin-top: -1px;
    display: block;
    left: 53px;
    font-size: 20px;
}
#discography-post .mp3 .plyr__time+.plyr__time{
    margin-top: -3px;
    display: block;
    position: initial;
    margin-left: 40px;
    margin-right: 52px;
}
#discography-post .mp3 .plyr .plyr__volume{
    margin-top: 3px;
    display: block;
    max-width: 110px;
    margin-right: 20px;
}
#discography-post  .j_c{
    padding-bottom: 0px;
}
#discography-post .sec_2_content{
    max-width: 780px;
    padding-right: 68px!important;
}
#discography-post .music{
    max-width: 865px;
}
#discography-post .plyr--audio .plyr__controls{
    border-color: transparent;
}
#discography-post .plyr__controls>button:last-of-type{
    right: 20px;
}
#discography-post .plyr__controls>button:last-of-type:before{
    font-size: 25px;
    right: 495%;
    top: 0px;
}
.cover-image{
    padding: 10px 0px 20px;
    margin-bottom: 40px;
    background-color: rgb(255, 255, 255);
}
.cover-image img{
    margin: 0px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.music_line{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 20px;
}
.music_line .plyr__time{
    float: right;
}
.play-pause{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 25px;
}
.player-grig {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 0px 10px 8px;
    position: relative;
    background-position: 100% bottom;
    background-repeat: repeat-x;
    -webkit-background-size: 16px 2px;
    -moz-background-size: 16px 2px;
    -o-background-size: 16px 2px;
    background-size: 16px 2px;
    background-image: -webkit-radial-gradient(circle closest-side, #fff -webkit-calc(100% - 0.5px), transparent 100%);
    background-image: -moz-radial-gradient(circle closest-side, #fff -moz-calc(100% - 0.5px), transparent 100%);
    background-image: -o-radial-gradient(circle closest-side, #fff calc(100% - 0.5px), transparent 100%);
    background-image: radial-gradient(circle closest-side, #fff calc(100% - 0.5px), transparent 100%);
}
.playlist .music_line:hover .player-grig {
    background-image: -webkit-radial-gradient(circle closest-side, #2ac4b7 -webkit-calc(100% - 0.5px), transparent 100%);
    background-image: -moz-radial-gradient(circle closest-side, #2ac4b7 -moz-calc(100% - 0.5px), transparent 100%);
    background-image: -o-radial-gradient(circle closest-side, #2ac4b7 calc(100% - 0.5px), transparent 100%);
    background-image: radial-gradient(circle closest-side, #2ac4b7 calc(100% - 0.5px), transparent 100%);
}
.playlist .plyr__time{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.music-name{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.play-pause svg{
    width:20px;
    height: 20px;
    cursor:pointer;
}
.play-pause svg polygon,
.play-pause svg path{
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.play-pause svg:hover polygon,
.play-pause svg:hover path{
    fill:#2ac4b7;
}
#discography-post .plyr .plyr__volume input[type=range]{
    top: 3px;
}
body.firefox #discography-post .plyr .plyr__volume input[type=range]{
    top: 0px;
}
body.firefox .plyr .plyr__volume input[type=range]{
    top: 0px;
}
.music_line .plyr--audio .plyr__controls {
    padding: 0px 0px 0px 0px;
}
.music_line .plyr .plyr__progress,
.music_line .plyr .plyr__volume,
.music_line .plyr__controls>button:last-of-type,
.music_line .plyr__controls > .plyr__time{
    display:none;
}
.music_line .plyr__time+.plyr__time{
    display: block;
    position: absolute;
    right: 0;
    width: fit-content;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.playlist .music_line .plyr--audio .plyr__controls{
    background-color: rgba(0, 0, 0, 0);
    border-color: transparent;
}
#discography-post .plyr__controls button svg{
    width: 20px;
    height: 20px;
}
.playlist .music_line > span {
    color: #888;
    font-size: 18px;
    line-height: 30px;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.playlist-title h2{
    font-family: 'Oswald';
    font-size: 40px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.music_line .plyr__controls button svg{
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.playlist .music_line:hover .plyr__time+.plyr__time{
    color:#2ac4b7;
}
.playlist .music_line:hover > span,.playlist .music_line:hover .plyr__controls button svg{
    color:#2ac4b7;
}
.playlist .music_line:hover .plyr__time:after{
    color:#2ac4b7;
}
.playlist .music_line:hover .play-pause svg polygon,
.playlist .music_line:hover .play-pause svg path{
    fill:#2ac4b7;
}
.playlist{
    margin-top: 30px;
}
.playlist-title{
    margin-bottom: 30px;
}
.playlist .plyr__controls button {
    padding:0px;
}
.music_date{
    margin-bottom: 0px!important;
}
.music_date i{
    width: 22px;
    margin-bottom: 0;
}
.music_date p{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 8px;
}
.music_date span{
    margin-left: 8px;
}
.music_date *{
    font-size: 18px;
    color: #888;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.music_date a{
    display:block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0;
}
.music_date a:hover *{
    color: #2ac4b7;
}
.music_after{
    margin-bottom: 16px!important;
}
.music_after p{
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 8px;
}
.music_after a{
    color: #888;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.music_after a:hover{
    color: #2ac4b7;
}
.music_shop{
    margin-bottom: 0;
    margin-top: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.shop_cta{
    font-family: 'Oswald';
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    border: 1px solid #2ac4b7;
    width: 127px;
    height: 50px;
    margin: 0;
    padding-top: 1px;
    border-radius: 8px;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
    margin-right: 15px;
    margin-bottom: 15px!important;
    letter-spacing: 1px;
}
.shop_cta:hover{
    background-color: rgb(42, 196, 183);
    color:#fff;
}
.discography_description p{
    margin-bottom:0px;
}
.discography_description *{
    font-size: 18px;
    line-height: 30px;
    color: #888;
}
#discography-text{
    margin-top: 30px;
}
.social-icons{
    padding-top: 30px;
    border-top: 1px solid #272727;
    margin-bottom: 70px;
    margin-top: 30px;
}
.social-icons > span{
    font-family: 'Oswald';
    font-size: 16px;
    color:#ccc;
    text-transform: uppercase;
    margin-right: 15px;
    letter-spacing: 3px;
}
.social-icons a{
    font-size:18px;
    color: #656565;
    margin-right: 15px;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.social-icons a:hover {
    color:#2ac4b7;
}
/* =================================================  */
/* MUSIC SINGLE ALBUM END */
/* =================================================  */


/* =================================================  */
/* ALL EVENTS*/
/* =================================================  */


body.all-events #on-tour{
    margin-top: 70px;
    padding-bottom: 70px;
}
/* =================================================  */
/* ALL EVENTS END */
/* =================================================  */


/* =================================================  */
/* SINGLE EVENTS */
/* =================================================  */

.slider-info{
    position: relative;
    height: 630px;
    background-color: #000000;
}
#events-banner .row{
    margin:0px;
}
#events-banner .col{
    padding:0px;
}
.events-slider{
    width: 52%;
    height: 100%;
}
.events-slider img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.events-info{
    width: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
.events-slider .carousel-item img{
    width: auto;
    height:100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.events_date *{
    font-size:30px;
    color:#bbb;
}
.events_date p{
    line-height: 30px;
    margin-bottom: 22px;
}
.events_date i{
    width: 33px;
    margin-right:15px;
    text-align: center;
    color: #fff;
}
.event-tickets a{
    font-family: 'Oswald';
    font-size: 20px;
    border: 1px solid rgb(42, 196, 183);
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 3px;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    margin-top: 10px;
}
.event-tickets{
    margin-top: 68px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.event-tickets a{
    padding: 30px 65px 28px;
}
.event-tickets a:first-child{
    margin-right: 35px;
}
.event-tickets a:last-child{
    padding: 31px 49px;
}
.event-tickets a:hover:first-child{
    border-color: rgb(42, 196, 183);
    background-color: rgb(42, 196, 183);
}
.event-tickets a:hover:last-child{
    background-color: rgb(42, 196, 183);
    border-color: rgb(42, 196, 183);
}
#text-and-video .row{
    margin: 0;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#text-and-video .row > div{
    padding: 0px;
}
#text-and-video .row > div:first-child{
    margin-right: 35px;
    max-width: 765px;
    -webkit-box-flex: initial;
    -webkit-flex: initial;
    -moz-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
}
.single-events-text{
    margin-top: -10px;
}
.single-events-text p{
    font-size: 18px;
    line-height: 30px;
    color:#888;
    margin-bottom: 40px;
}
#text-and-video .row > div:last-child{
    max-width: 845px;
    -webkit-box-flex: initial;
    -webkit-flex: initial;
    -moz-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
}
#text-and-video{
    margin-top:70px;
    margin-bottom: 70px;
}
#text-and-video .youtube{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
#text-and-video .youtube img{
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
#text-and-video .social-icons{
    margin-top: 30px;
    padding-left: 0;
    margin-bottom: 0;
}
#map{
    margin-bottom: 70px;
}
#map iframe{
    width:100%;
    height: 405px;
    border:none;
    margin-bottom: -6px;
}

/* =================================================  */
/* SINGLE EVENTS END */
/* =================================================  */


/* =================================================  */
/* VIDEOS */
/* =================================================  */
.videos #page-title{
    margin-bottom: 0px;
}
#videos{
    padding-bottom: 70px;
}
#videos .embed-responsive{
    height:290px;
    background-color: rgb(0, 0, 0);
}
#videos .embed-responsive .youtube{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    -o-object-fit: cover;
    object-fit: cover;
}
#videos .embed-responsive .youtube img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
#videos .youtube .play{
    background-image: url(../images/play-video.png);
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
#videos .youtube:hover img{
    opacity: 0.6;
}
#videos .youtube:hover .play{
    opacity: 1;
}
#videos .video-img-banner{
    position: relative;
    height: 290px;
}
#videos .video-img-banner img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
#videos .video-img-banner .play{
    background-image: url(../images/play-video.png);
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9;
}
#videos .w-100:hover img{
    opacity: 0.6;
}
#videos .w-100:hover .play{
    opacity: 1;
}

.video-banner-name {
    font-family: 'Oswald';
}
.video-banner-name h2{
    font-family: "Oswald";
    font-weight: 400;
    color:#fff;
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
#videos .w-100:hover .video-banner-name h2{
    color: #2ac4b7;
}
.video-banner-name p{
    color:#888;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}
.video-block {
    margin-top: 70px;
}
/* =================================================  */
/* VIDEOS END */
/* =================================================  */


/* =================================================  */
/* SINGLE VIDEOS */
/* =================================================  */

body.single-video #discography-text {
    margin-top: 70px;
}
body.single-video .social-icons{
    margin-top: 70px;
    margin-bottom: 70px;
}
body.single-video #video-post .youtube img{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
/* =================================================  */
/* SINGLE VIDEOS END */
/* =================================================  */


/* =================================================  */
/* GALLERY-PHOTOGALLERY */
/* =================================================  */

body.gallery-photogallery #discography{
    margin-top: 0px;
    margin-bottom: 0px;
}
body.gallery-photogallery #discography > .row{
    margin: 0;
}
body.gallery-photogallery #discography .music-banner{
    padding:0px;
}
body.gallery-photogallery .music-banner > div{
    background-color: rgb(42, 196, 183);
}
body.gallery-photogallery .music-banner-text h2{
    font-size: 40px;
}
body.gallery-photogallery .music-banner-text p{
    font-size: 20px;
    line-height: 30px;
}

/* =================================================  */
/* GALLERY-PHOTOGALLERY END */
/* =================================================  */

/* =================================================  */
/* SINGLE GALLERY */
/* =================================================  */

#single-gallery .grid-item{
    height: 400px;
    width: 33.3333%;

}
#single-gallery .grid-item:nth-child(3),
#single-gallery .grid-item:nth-child(6n+1){
    height:400px;
}

#single-gallery .grid-item img{
    width:100%;
    height:100%;
    -o-object-fit: cover;
    object-fit: cover;
}
body.gallery-single-gallery #discography-text{
    margin-top: 70px;
}
.sm-title{
    margin-bottom: 70px;
}
.sm-title h2{
    font-family: 'Oswald';
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}
.sm-section .discography_description p{
    font-size: 16px;
    line-height: 30px;
}
.sm-section .social-icons{
    padding-top: 30px;
    padding-left: 0px;
    margin-bottom: 70px;
    text-align: center;
}
/* =================================================  */
/* SINGLE GALLERY END */
/* =================================================  */


/* =================================================  */
/* BLOG GRID */
/* =================================================  */

#blog-grid-gallery{
    padding-bottom: 70px;
}
#blog-grid-gallery .section{
    max-width: 1685px;
    overflow: hidden;
}
.grid-gallery ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.grid-gallery figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.grid-gallery figcaption h3 {
    font-family: 'Oswald';
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    color: #353738;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.grid-gallery figcaption .post-publish-date{
    font-family: 'Open Sans';
    font-size: 16px;
    text-transform: capitalize;
    color: #888;
    font-style: italic;
}
.grid-gallery figcaption p {
    font-family: 'Open Sans';
    font-size: 18px;
    line-height: 30px;
    color: #5f5f5f;
    margin-bottom: 0;
    margin-top: 10px;
}
.grid li {
    width: 33.333%;
    padding:0px 20px 40px 20px;
    float: left;
    cursor: pointer;
}
.grid li.grid-sizer{
    padding:0px;
}
.grid figure {
    margin:0px;
}
.grid li:hover figcaption {
    background-color: rgb(42, 196, 183);
}
.grid li:hover figcaption *{
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.grid li:hover figcaption *{
    color:#fff;
}
.grid figcaption {
    background-color: rgb(255, 255, 255);
    padding: 35px 45px 45px;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.grid li:nth-of-type(2) .blog-grid-image,
.grid li:nth-of-type(4) .blog-grid-image,
.grid li:nth-of-type(5) .blog-grid-image,
.grid li:nth-of-type(6) .blog-grid-image,
.grid li:nth-of-type(7) .blog-grid-image,
.grid li:nth-of-type(10) .blog-grid-image{
    height: 330px;
}
.grid li:nth-of-type(3) .blog-grid-image,
.grid li:nth-of-type(8) .blog-grid-image,
.grid li:nth-of-type(9) .blog-grid-image{
    height: 520px;
}
/* =================================================  */
/* BLOG GRID END */
/* =================================================  */


/* =================================================  */
/* BLOG SINGLE POST*/
/* =================================================  */
.blog-content{
    margin-bottom:70px;
}
.featured-image{
    position: relative;
    height: 540px;
    margin-bottom: 60px;
}
.featured-overly{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    opacity: 0.3;
    background-image: radial-gradient( rgba(40, 59, 94, 0.43137254901960786), rgb(40, 59, 94) );
}
.featured-image img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 0 15%;
    object-position: 0 15%;
}
.post-text{
    text-align: center;
}
.post-category{
    font-family: 'Open Sans';
    font-size: 16px;
    color:#888;
}
.post-heading h2{
    font-family:'Oswald';
    font-weight: 700;
    font-size: 40px;
    line-height: 30px;
    color:#fff;
    margin: 20px 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.post-by{
    font-family: 'Open Sans';
    font-style: italic;
}
.post-by *{
    font-size: 14px;
    color: #656565;
    letter-spacing: 1px;
}
.post-by i{
    margin-right: 13px;
}
.post-text p{
    font-size: 18px;
    line-height: 30px;
    color:#888;
    text-align: left;
    letter-spacing: .02px;
    margin-top: 60px;
}
p.post-quote{
    position: relative;
    width: 100%;
    float: none;
    margin: 60px auto;
    padding: 0px 50px;
    font-style: italic;
    color: #eee;
}
p.post-quote:after{
    content: '';
    display: block;
    width: 32px;
    height: 30px;
    position: absolute;
    background-image: url(../images/quote_2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    top: -7px;
    right: 0%;
}
p.post-quote:before{
    content: '';
    display: block;
    width: 32px;
    height: 30px;
    position: absolute;
    background-image: url(../images/quote_11.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    top: -7px;
    left: 0%;
}
.post-share{
    margin-top: 30px;
    text-align: left;
}
.post-share span{
    font-family: 'Oswald';
    font-size: 16px;
    color:#ddd;
    margin-right: 15px;
    letter-spacing: 3px;
}
.post-share a{
    font-size: 18px;
    color: #656565;
    margin-right: 15px;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.post-share a:hover{
    color:rgb(42, 196, 183);
}
.post-author{
    margin-top: 70px;
    clear: both;
}
.author-info:after{
    content: '';
    display: block;
    clear: both;
}
.author-image{
    width:60px;
    height: 60px;
    float: left;
    margin-bottom: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.author-image img{
    width: 100%;
    border-radius: 50%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 0 10%;
    object-position: 0 10%;
}
.author-image img.no-pic{
    width: 60%;
    height: 60%;
    -o-object-fit: contain;
    object-fit: contain;
}
.author-name-date{
    float: left;
    margin-left: 10px;
    margin-top: 5px;
}
.author-info em{
    display: block;
    clear: both;
    font-size: 16px;
    color: #ffffff;
}
.author-description{
    margin-top: 6px;
    clear: both;
}
.author-name-date p:nth-of-type(1){
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    color:#fff;
    margin-bottom: 2px;
}
.author-name-date p:nth-of-type(2){
    font-size: 16px;
    color: #868686;
    margin-bottom: 0px;
    font-style: italic;
}
.author-description p{
    font-size: 18px;
    line-height: 30px;
    color: #888;
}
.reply{
    float: right;
    margin-top: 0px;
    margin-bottom: 70px;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.reply:hover{
    color:#2ac4b7;
}
.reply i{
    margin-left: 10px;
}
#blog-post .form{
    clear: both;
}
#blog-post .form h2{
    font-family: 'Oswald';
    font-size: 24px;
    text-align: left;
    color: #eee;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 3px;
}
#blog-post .form .btn-primary{
    border-color:rgb(42, 196, 183);
    padding: 20px 38px 20px;
}
.blog-content > div.post-content{
    padding: 0px;
}
.blog-content > div.sitebar{
    padding-top: 15px;
    padding-left: 50px;
    padding-right: 0px;
}
.blog-search form{
    height: 55px;
    border-left: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}
.blog-search form input{
    font-family: 'Oswald';
    text-transform: capitalize;
    margin-right: 0px!important;
    width: 85%;
    height: 100%;
    border:none;
    padding-left:20px;
    padding-top: 3px;
    background-color: rgb(255, 255, 255);
}
.blog-search form input:focus{
    outline: none;
}
.blog-search form button:focus{
    outline: none;
}
.blog-search form button{
    width: 15%;
    height: 100%;
    cursor: pointer;
    border: none;
    background-color: rgb(33, 33, 33);
}
.blog-search form button i{
    font-size:20px;
    color:#fff;
}
.blog-search form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: 'Oswald';
    color: #000;
    font-size: 16px;
    text-transform: capitalize;
}
.blog-search form input::-moz-placeholder { /* Firefox 19+ */
    font-family: 'Oswald';
    color: #000;
    font-size: 16px;
    text-transform: capitalize;
}
.blog-search form input:-ms-input-placeholder { /* IE 10+ */
    font-family: 'Oswald';
    color: #000;
    font-size: 16px;
    text-transform: capitalize;
}
.blog-search form input:-moz-placeholder { /* Firefox 18- */
    font-family: 'Oswald';
    color: #000;
    font-size: 16px;
    text-transform: capitalize;
}
.blog-categories{
    margin-top: 46px;
}
.blog-categories h2,.blog-recent-post h2{
    font-family: 'Oswald';
    font-size: 24px;
    line-height: 30px;
    text-align: left;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 400;
}
.categories-line{
    font-size: 16px;
    line-height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #656565;
    text-transform: capitalize;
    padding: 3px 0px;
}
.categories-line:hover{
    color: #2ac4b7;
}
.blog-recent-post{
    margin-top:30px;
}
.resent-posts-line {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px 0px 5px;
}
.resent-posts-line:after{
    content: '';
    display: block;
    clear: both;
}
.resent-posts-line:hover .recent-post-name h3{
    color: #2ac4b7;
}
.recent-post-image{
    width: 90px;
    height: 70px;
    margin-right: 10px;
}
.recent-post-image img{
    width: 90px;
    height: 70px;
    object-fit: cover;
    -o-object-fit: cover;
}
.recent-post-name{
    position: relative;
    display: -ms-grid;
    display: grid;
}
.recent-post-name h3{
    font-family: 'Open Sans';
    font-size: 16px;
    color: #ccc;
    line-height: 22px;
    text-transform: capitalize;
    letter-spacing: 1px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.recent-post-name span{
    font-family: 'Open Sans';
    font-size: 14px;
    color: #868686;
    font-style: italic;
    text-transform: capitalize;
    letter-spacing: 1px;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}
/* =================================================  */
/* BLOG SINGLE POST END */
/* =================================================  */

/* =================================================  */
/* BLOG STANDARD */
/* =================================================  */

#standard-blog{
    position: relative;
}
#standard-blog .blog-content {
    padding-bottom: 94px;
    margin-bottom: 0;
}
#standard-blog .blog-content > div.sitebar{
    padding-top: 0px;
}
@media(min-width:901px){
    #standard-blog .post-content > .standard-post-item:last-child{
        margin-bottom: 28px;
    }
}
.standard-post-item{
    margin-bottom: 93px;
}
.standard-blog-title h2{
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.standard-blog-title:hover h2{
    color: #2ac4b7;
}

.post-category{
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.categories-name:hover span{
    color: #2ac4b7;
}
.categories-name:hover{
    color: #2ac4b7;
}
.post-cta{
    text-align:center;
    margin-top: 64px;
}
.post-cta a{
    font-family: 'Oswald';
    font-size: 15px;
    color: #fff;
    letter-spacing: 7px;
    text-transform: uppercase;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 24px 13px 24px 20px;
}
.post-cta a:hover{
    background-color: rgb(42, 196, 183);
    border-color: rgb(42, 196, 183);
}
/* =================================================  */
/* BLOG STANDARD END */
/* =================================================  */

/* =================================================  */
/* BLOG MANSORY */
/* =================================================  */
#blog-mansory-section .grid-item.active{
    background-color: #fff;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
#blog-mansory-section .grid-item.active .g_t{
    opacity: 0.5;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
#blog-mansory-section .grid-item.active .grid-item-img img{
    opacity: 0.5;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.grid:after {
    display: block;
    content: '';
    clear: both;
}
.grid-sizer{
    width: 33.33333333%;
}
.grid-item {
    width:100%;
}
.grid-item--width1{
    width:100%;
    height: 720px;
}
.grid-item--width2 {
    width: 33.33333333%;
    height: 1440px;
}
.grid-item--width3 {
    width: 66.666666%;
    height: 720px;
}
.grid-item--width4 {
    width: 66.7%;
    height: 720px;
}
.grid-item-img{
    position: relative;
    height: 100%;
    float: left;
}
.grid-item-img img{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 8;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0.5;
    -o-object-fit: cover;
}
.grid-item-content{
    display: table;
    position: relative;
    height: 100%;
    float: left;
    background-color:#fff;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.grid-item--width1 .grid-item-img{
    width: 66.666666%;
}
.grid-item--width1 .grid-item-content{
    width: 33.33333333%;
}
.grid-item--width2 .grid-item-img{
    width:100%;
    height: 50%;
}
.grid-item--width2 .grid-item-content{
    height:50%;
    width: 100%;
}
.grid-item--width3 .grid-item-img{
    width: 50%;
}
.grid-item--width3 .grid-item-content{
    width:50%;
}
.grid-item--width4 .grid-item-img{
    width: 50%;
}
.grid-item--width4 .grid-item-content{
    width:50%;
}
.grid-item-content:after{
    content:'';
    display:block;
    width: 0;
    height: 0;
    position: absolute;
    z-index: 9;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.grid-item--width1 .grid-item-content:after,
.grid-item--width4 .grid-item-content:after{
    border-top: 15px solid transparent;
    border-right: 15px solid #fff;
    border-bottom: 15px solid transparent;
    top: 47.5%;
    left: -14px;
}
.g_t *{
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.g_t{
    display: table-cell;
    vertical-align: middle;
    padding: 0px 70px;
}
.g_t h3{
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 8px;
    font-family: 'Oswald';
    font-weight: 500;
    text-align: center;
    color:#353738;
    margin-bottom: 18px;
}
.g_t p{
    font-size: 18px;
    line-height: 30px;
    color:#5f5f5f;
}
.grid-item:hover .grid-item-content{
    background-color: rgb(42, 196, 183);
}
.grid-item:hover .g_t *{
    color:#fff;
}
.grid-item--width1:hover .grid-item-content:after,
.grid-item--width4:hover .grid-item-content:after{
    border-right-color: rgb(42, 196, 183);
}
.grid-item--width2 .grid-item-content:after{
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    top: -14px;
    left: 47.5%;
}
.grid-item--width2:hover .grid-item-content:after{
    border-bottom-color: rgb(42, 196, 183);
}
.grid-item--width3 .grid-item-content:after{
    border-top: 15px solid transparent;
    border-left: 15px solid #fff;
    border-bottom: 15px solid transparent;
    top: 47.5%;
    right:-14px;
}
.grid-item--width3:hover .grid-item-content:after{
    border-left-color: rgb(42, 196, 183);
}
.see-more{
    text-align: center;
    margin-top: 94px;
    margin-bottom: 94px;
}
.see-more a{
    font-family: 'Oswald';
    font-size: 15px;
    color: #fff;
    padding: 24px 13px 24px 20px;
    letter-spacing: 7px;
    border: 1px solid #fff;
    border-radius: 10px;
}
.see-more a:hover{
    background-color: rgb(42, 196, 183);
    border-color: rgb(42, 196, 183);
}
.grid-item-img:after {
    content: '';
    display: block;
    width: 375px;
    height: 50px;
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.grid-item--width2 .grid-item-img:after{
    top: auto;
    bottom:15%;
}
/* =================================================  */
/* BLOG MANSORY END */
/* =================================================  */


/* =================================================  */
/* CONTACT US */
/* =================================================  */

body.contact-us-page #contact-us .overly {
    background-color: rgba(19,19,19,.85);
}
body.contact-us-page #contact-us{
    padding: 70px 0px 70px;
}
.contact-info{
    width: 60%;
}
.contact-info h2{
    font-family: 'Oswald';
    font-weight: 400;
    width: 82%;
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-bottom: 10px;
    margin-bottom: 40px;
}
.contact-info p{
    font-size: 18px;
    line-height: 30px;
    color: #888;
    margin-bottom: 0px;
}
.contact-adress{
    margin-top:40px;
    margin-bottom: 40px;
}
.contact-adress > a,
.contact-adress > p{
    display:block;
    font-size:16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color:#ccc;
    margin-bottom: 5px;
}
.contact-adress > a:hover{
    color: #2ac4b7;
}
.contact-adress > a i,
.contact-adress > p i{
    width: 20px;
    margin-right: 15px;
}
.form .fild_2{
    margin-bottom: 20px;
}
body.contact-us-page .form .btn-primary{
    border-color:#2ac4b7;
}

body.contact-us-page .form textarea{
    padding-top: 20px;
}
body.contact-us-page .form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-style: initial;
}
body.contact-us-page .form input::-moz-placeholder { /* Firefox 19+ */
    font-style: initial;
}
body.contact-us-page .form input:-ms-input-placeholder { /* IE 10+ */
    font-style: initial;
}
body.contact-us-page .form input:-moz-placeholder { /* Firefox 18- */
    font-style: initial;
}
body.contact-us-page .form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-style: initial;
    padding-top:0px;
}
body.contact-us-page .form textarea::-moz-placeholder { /* Firefox 19+ */
    font-style: initial;
    padding-top:0px;
}
body.contact-us-page .form textarea:-ms-input-placeholder { /* IE 10+ */
    font-style: initial;
    padding-top:0px;
}
body.contact-us-page .form textarea:-moz-placeholder { /* Firefox 18- */
    font-style: initial;
    padding-top:0px;
}

/* =================================================  */
/* CONTACT US END */
/* =================================================  */


/* =================================================  */
/* CART */
/* =================================================  */

#cart-order{
    padding-bottom: 70px;
}
.product-cart > .row > div:first-child{
    padding: 0px;
}
.cart-name{
    font-family: 'Open Sans';
    border-bottom:2px solid #464646;
    padding-bottom: 8px;
    margin-top: -8px;
}
.cart-name *{
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 700;
}
.cart-item{
    padding: 30px 0px;
    border-bottom:1px solid #464646;
}
.cart-item:after{
    content:'';
    display: block;
    clear: both;
}
.cart-item > div:after{
    content: '';
    display: block;
    clear: both;
}
.cart-image{
    width:230px;
    height: 230px;
    border: 2px solid #fff;
    border-radius: 20px;
    overflow: hidden;
    float: left;
    margin-right: 45px;
    background-color: rgb(255, 255, 255);
}
.cart-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}
.cart-description{
    width: 60%;
    padding-top: 15px;
    padding-right: 20px;
    float: left;
}
.cart-description a,
.cart-description h2{
    font-size: 30px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 20px;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.cart-description a:hover h2{
    color: #2ac4b7;
}
.cart-description p{
    font-size: 18px;
    line-height: 30px;
    color: #888;
    margin-bottom: 0;
}
.product-total:after{
    content:'';
    display:block;
    clear: both;
}
.product-total{
    position: absolute;
    width: 100%;
    height: 27px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.product-price *{
    font-size: 30px;
    line-height: 30px;
    color: #888;
}
.delete-product{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 25px;
    height: 25px;
}
.delete-product svg{
    width: 23px;
    height: 23px;
    cursor: pointer;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.delete-product svg path{
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.delete-product svg:hover path{
    fill: #2ac4b7;
}
.order-coupon:after{
    content:'';
    display: block;
    clear: both;
}
.order-coupon{
    margin-top: 70px;
}
.enter-coupon,.order-button{
    max-width: 520px;
    width:100%;
}
.enter-coupon{
    float: left;
}
.order-button{
    float: right;
}
.coupon-title h3{
    font-size: 30px;
    line-height: 30px;
    color: #ccc;
    margin-bottom: 0;
    text-transform: uppercase;
}
.coupon-title span{
    font-size:20px;
    line-height: 30px;
    color: #656565;
}
.coupon-form{
    margin-top: 25px;
}
.coupon-form form{
    height: 55px;
}
.coupon-form form input{
    width: 73%;
    height: 100%;
    margin-right: 0px!important;
    color: #fff;
    text-transform: uppercase;
    padding-left: 15px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-right: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.coupon-form form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #4a4a4a;
    opacity: 0;
}
.coupon-form form input::-moz-placeholder { /* Firefox 19+ */
    color: #4a4a4a;
    opacity: 0;
}
.coupon-form form input:-ms-input-placeholder { /* IE 10+ */
    color: #4a4a4a;
    opacity: 0;
}
.coupon-form form input:-moz-placeholder { /* Firefox 18- */
    color: #4a4a4a;
    opacity: 0;
}
.coupon-form form input:focus{
    outline: 0;
    border-color: #2ac4b7;
}
.coupon-form form button{
    width:27%;
    height: 100%;
    cursor: pointer;
    background-color: rgb(42, 196, 183);
    border: 2px solid #2ac4b7;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.order-button:after,.glob-price:after,.cart-buttons:after{
    content:'';
    display: block;
    clear: both;
}
.o-t{
    float: left;
}
.g-p{
    float: right;
}
.o-t *{
    font-size: 30px;
    line-height: 30px;
    color: #ccc;
}
.g-p *{
    font-size:40px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
}
.cart-buttons{
    margin-top: 25px;
    margin-bottom: 25px;
}
.cart-buttons a{
    font-size: 18px;
    color: #fff;
    padding: 14px 55px;
    background-color: rgb(140, 140, 133);
    border-radius: 5px;
    letter-spacing: 1px;
}
.cart-buttons a:hover{
    background-color: rgb(42, 196, 183);
}
.cart-buttons a:first-child{
    float: left;
}
.cart-buttons a:last-child{
    float: right;
    padding: 14px 68px;
    background-color: rgb(42, 196, 183);
}
.c-t *{
    font-size: 18px;
    line-height: 30px;
    color: #656565;
    margin-bottom: 0;
}
.plusminus {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    width: 145px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}
.plusminus button {
    display: block;
    width: 45px;
    height: 60px;
    position: absolute;
    margin: 0;
    padding: 0;
    border: 0;
    background: #fff;
    color: #505050;
    line-height: 1;
    cursor: pointer;
}
.plusminus button:focus {
    outline: none;
    background-color: rgb(42, 196, 183);
    color:#fff;
}
.plusminus button:disabled {
    background: #999;
    color: #ccc;
    cursor: default;
}
.plusminus button:first-child {
    left: 0;
    bottom: 0;
    /* border-right: 1px solid #e0e0e0; */
}
.plusminus button:first-child:before {
    content: "";
    display: block;
    width: 15px;
    height: 2px;
    background-color: #505050;
    margin: auto;
}
.plusminus button:focus:first-child:before{
    background-color:rgb(255, 255, 255);
}
.plusminus button:last-child{
    right: 0;
    top: 0;
    /* border-left: 1px solid #e0e0e0; */
}
.plusminus button:last-child:before{
    content: "+";
    font-size: 30px;
}
.plusminus input[type="number"] {
    width: 55px;
    height: 60px;
    position: absolute;
    left: 45px;
    top: 0px;
    margin: 0;
    border: 0;
    font-size: 20px;
    color: #3a3a3a;
    font-weight: bold;
    text-align: center;
    -moz-appearance: textfield;
}
.plusminus input::-webkit-outer-spin-button,
.plusminus input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.prise-mobile,
.total-mobile{
    display:none;
}

/* =================================================  */
/* CART END */
/* =================================================  */


/* =================================================  */
/* 404 PAGE */
/* =================================================  */

.page-404 #header-404 .bg_image{
    background-position: 50% 100%;
}
.page-404 #header-404 .overly{
    background-color: rgba(0, 0, 0, 0.79);
}
.page-404 .big-title{
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    opacity: 1;
    bottom:30%;
}
.page-404 .big-title img{
    width: auto;
    opacity: 1;
}
.page-404 .big-title h2{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: absolute;
    top: 63%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgb(255, 255, 255);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 15px;
    padding: 0px 10px 0px 30px;
    color:#656565;
}
.search-404{
    max-width: 1080px;
    width: 100%;
    position: absolute;
    bottom: 38%;
    left: 0;
    right: 0;
    margin: auto;
}
.search-404 form{
    height: 60px;
}
.search-404 form input{
    width: 82%;
    height: 100%;
    margin-right: 0!important;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    padding-left:40px;
    border: 2px solid #fff;
    text-transform: capitalize;
}
.search-404 form input:focus{
    outline: none;
    border-color: rgb(42, 196, 183);
}
.search-404 form button{
    width: 18%;
    height: 100%;
    background-color: rgb(54, 54, 54);
    border: 2px solid rgb(54, 54, 54);
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.search-404 form button:hover{
    background-color: rgb(42, 196, 183);
    border-color: rgb(42, 196, 183);
}

.search-404 form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #363636;
}
.search-404 form input::-moz-placeholder { /* Firefox 19+ */
    color: #363636;
}
.search-404 form input:-ms-input-placeholder { /* IE 10+ */
    color: #363636;
}
.search-404 form input:-moz-placeholder { /* Firefox 18- */
    color: #363636;
}
.content-404{
    max-width: 540px;
    position: absolute;
    bottom: 21%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.content-404 h2{
    font-size: 34px;
    color: #fff;
    margin-bottom: 5px;
}
.content-404 p{
    font-size: 16px;
    color: #888;
    margin-top: 1rem;
}
.content-404 a{
    font-size: 24px;
    color: #ababab;
}
.content-404 a:hover{
    color: rgb(42, 196, 183);
}
.content-404 a i{
    margin-right: 20px;
}
/* =================================================  */
/* 404 PAGE END  */
/* =================================================  */

/* =================================================  */
/* SEARCH RESULT  */
/* =================================================  */

body.search-result .global-title h2{
    font-family: 'Oswald';
    font-weight: 900;
    font-size: 55px;
    color: rgb(42, 196, 183);
    margin-top: 15px;
}
body.search-result .blog-content{
    margin-bottom: 0px;
}
body.search-result .blog-content > div.sitebar{
    padding-top: 0px;
}

.t-shirt-image{
    height: 800px;
}
.t-shirt-image img{
    width:100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}
.t-shirt-description{
    padding: 40px 5px 94px;
    text-align: center;
}
.t-shirt-description a:hover h2{
    color: rgb(42, 196, 183);
}
.t-shirt-description h2{
    font-family: 'Oswald';
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.t-shirt-description p{
    font-size: 18px;
    line-height: 30px;
    color: #888;
    text-align: left;
}
.t-shirt-description .post-cta {
    margin-top: 70px;
}

/* =================================================  */
/* SEARCH RESULT END */
/* =================================================  */


/* =================================================  */
/* SHOP */
/* =================================================  */

body.shop #shop-contanier > .section{
    max-width: 1725px;
    overflow: hidden;
}
.results:after{
    content: '';
    display: block;
    clear: both;
}
.results{
    padding: 0px 35px 45px 35px;
}
.results-text{
    font-family: 'Open Sans';
    float: left;
    margin-top: 15px;
}
.results-text *{
    font-size: 20px;
    line-height: 30px;
    color: #888;
}
.results-select{
    float: right;
}
.results-select .btn-primary{
    font-family: 'Open Sans';
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0);
    border-color: #888;
    color: #888;
    padding: 10px 54px 10px 40px;
    border-radius: 10px;
}
.results-select .dropdown-toggle::after{
    color: #888;
    vertical-align: 0.2em;
}
.results-select .btn-primary:not(:disabled):not(.disabled):active,
.results-select .btn-primary:not(:disabled):not(.disabled).active,
.results-select .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: rgb(42, 196, 183);
    border-color: rgb(42, 196, 183);
}
.results-select .btn-primary:not(:disabled):not(.disabled):active:after,
.results-select .btn-primary:not(:disabled):not(.disabled).active:after,
.results-select .show > .btn-primary.dropdown-toggle:after{
    color: #fff;
}
.results-select .btn-primary:focus{
    outline: none;
    box-shadow: none!important;
}
.results-select .dropdown-menu.show{
    width:100%;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0px, 61px, 0px)!important;
    -moz-transform: translate3d(0px, 61px, 0px)!important;
    transform: translate3d(0px, 61px, 0px)!important;
}
.results-select .dropdown-menu{
    display: block!important;
    visibility: hidden;
    opacity: 0;
    width:100%;
    background-color: rgb(27, 27, 27);
    border-color: rgb(42, 196, 183);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -webkit-transform: translate3d(0px, 80px, 0px)!important;
    -moz-transform: translate3d(0px, 80px, 0px)!important;
    transform: translate3d(0px, 80px, 0px)!important;
}
.results-select .dropdown-item,
#checkout-list form .form-group .chosen-results li{
    color: #6a6a6a;
    padding: 7px 20px;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
#checkout-list form .form-group .chosen-results li{
    font-size:16px;
    cursor: pointer;
}
.results-select .dropdown-item:hover,
.results-select .dropdown-item:focus,
#checkout-list form .form-group .chosen-results li:hover,
#checkout-list form .form-group .chosen-results li:focus{
    background-color: rgb(42, 196, 183);
    color: #fff;
}
.results-select .dropdown-item:hover a,
.results-select .dropdown-item:focus a{
    color: #fff;
}
.results-select .dropdown-item a{
    display: block;
    color: #6a6a6a;
}

.shop-items{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.s-item{
    position: relative;
    margin-bottom: 70px;
    padding: 0px 35px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.s-item-image{
    overflow: hidden;
    border-radius: 10px;
}
.s-item:hover .s-item-image img{
    -webkit-transform: rotate(5deg) scale(1.1);
    -moz-transform: rotate(5deg) scale(1.1);
    -ms-transform: rotate(5deg) scale(1.1);
    -o-transform: rotate(5deg) scale(1.1);
    transform: rotate(5deg) scale(1.1);
}
.s-item-image img{
   
    object-fit: cover;
    -o-object-fit: cover;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.s-item-name{
    padding-top: 20px;
    padding-bottom: 5px;
    text-align: center;
}
.s-item-name h2{
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: #fff;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.s-item:hover .s-item-name h2{
    color: rgb(42, 196, 183);
}
.s-item-name p{
    font-size: 20px;
    font-weight: 500;
    color: rgb(42, 196, 183);
}
.sale{
    position: relative;
    font-size: 18px;
    color: #888;
}
span.sale:after{
    content: '';
    width: 75%;
    height: 1px;
    background-color: #888;
    display: block;
    position: absolute;
    left: 0;
    bottom: 12px;
}
.sale sup{
    position: relative;
}
.sale sup:after{
    content: '';
    width: 100%;
    height: 1px;
    background-color: #888;
    display: block;
    position: absolute;
    left: 2px;
    top: 10px;
}
.ad-to-card-button {
    margin-top: 28px;
}
.ad-to-card-button a{
    font-size: 15px;
    color: #888;
    border: 1px solid #888;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0px 2px;
}
.ad-to-card-button a.view-cart{
    border: none;
    padding: 0px 0px 0px 10px;
}
.ad-to-card-button a.view-cart:hover{
    background-color: transparent;
}
.ad-to-card-button a:hover{
    color:#fff;
    border-color: rgb(42, 196, 183);
    background-color: rgb(42, 196, 183);
}
.best-offer{
    width: 105px;
    height: 105px;
    position: absolute;
    top: -60px;
    left: 35px;
    z-index: 9;
    padding-top: 25px;
    background-repeat: no-repeat;
    background-size: contain;
}
.best-offer *{
    color:#fff;
    letter-spacing: 2px;
    -webkit-transform: rotate(-35deg);
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    transform: rotate(-35deg);
}
.best-offer h4{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size:22px;
    font-weight: bold;
    margin: 0px 30px auto auto;

}
.best-offer p{
    font-size: 18px;
    font-weight: bold;
    margin: -8px auto auto 25px;
}
.best-offer hr{
    width: 18px;
    height: 4px;
    min-height: 4px;
    border: none;
    background-color: #fff;
    border-radius: 8px;
    margin: 3px 27px auto auto;
}
/* =================================================  */
/* SHOP END */
/* =================================================  */


/* =================================================  */
/* CHECKOUT */
/* =================================================  */

#checkout-list form h3{
    font-size: 30px;
    line-height: 30px;
    color: #ffffff;
    margin-bottom: 17px;
}
.add-info{
    margin-top: 50px;
}
#checkout-list form .form-group{
    margin-bottom: 20px;
}
#checkout-list form .form-group label{
    font-size: 18px;
    color: #888;
    margin-bottom: 11px;
}
#checkout-list form .form-group input,#checkout-list form .form-group textarea{
    font-size: 18px;
    background-color: rgb(38, 38, 38);
    color: #959595;
    text-transform: capitalize;
    border: none;
    height: 60px;
    border-radius: 10px;
}
#checkout-list form .form-group textarea{
    height:auto;
}
#checkout-list form .form-group input:focus,
#checkout-list form .form-group textarea:focus{
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
#checkout-list form .form-group a.bfh-selectbox-toggle{
    background-color: rgb(38, 38, 38);
    color: #959595;
    text-transform: capitalize;
    border: none;
    height: 60px;
    border-radius: 10px;
}
#checkout-list form .form-group a.bfh-selectbox-toggle:after{
    color: #959595;
    vertical-align: 0.2em;
    content: '\f107 ';
    font-family: fontawesome;
    border: none;
    position: absolute;
    font-size: 26px;
    right: 20px;
    top: 20%;
}
#checkout-list form .form-group a.bfh-selectbox-toggle:focus{
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
#checkout-list form .form-group a.bfh-selectbox-toggle span.bfh-selectbox-option{
    font-size: 19px;
    color: #959595;
    height: 100%;
    padding-top: 10px;
}
#checkout-list form .form-group .bfh-selectbox .bfh-selectbox-options{
    background-color: rgb(38, 38, 38);
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 10px;
}
#checkout-list form .form-group .bfh-selectbox .bfh-selectbox-options ul{
    max-height: 290px;
    margin: 0;
    width: 99%;
    max-width: 100%;
}
#checkout-list form .form-group .bfh-selectbox .bfh-selectbox-options ul li > a{
    font-size: 19px;
    color: #959595;
    padding: 4px 10px;
}
#checkout-list form .form-group .bfh-selectbox .bfh-selectbox-options ul li > a:hover,
#checkout-list form .form-group .bfh-selectbox .bfh-selectbox-options ul li > a:focus{
    background-color: rgb(42, 196, 183);
    color:#fff;
}


#checkout-list form .form-group .bfh-selectbox .bfh-selectbox-options ul::-webkit-scrollbar-track,
#checkout-list form .form-group .chosen-results::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
    background-color: rgb(27, 27, 27);
    border-radius: 5px;
}

#checkout-list form .form-group .bfh-selectbox .bfh-selectbox-options ul::-webkit-scrollbar,
#checkout-list form .form-group .chosen-results::-webkit-scrollbar{
    width: 3px;
    background-color: rgb(149, 149, 149);
    border-radius: 5px;
}

#checkout-list form .form-group .bfh-selectbox .bfh-selectbox-options ul::-webkit-scrollbar-thumb,
#checkout-list form .form-group .chosen-results::-webkit-scrollbar-thumb {
    background-color: rgb(149, 149, 149);
    border-radius: 5px;
}
#checkout-list form .form-group .results-select{
    float: none;
}
#checkout-list form .form-group .results-select .btn-group{
    width: 100%;
}
#checkout-list form .form-group .results-select .btn-primary,
#checkout-list form .form-group .chosen-single{
    font-size: 19px;
    padding: 16px 20px 16px 20px;
    background-color: rgb(38, 38, 38);
    color: #959595;
    text-transform: capitalize;
    border: none;
    border-radius: 10px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
}
#checkout-list form .form-group .chosen-single{
    height:60px;
}
#checkout-list form .form-group .results-select .dropdown-toggle::after,
#checkout-list form .form-group .chosen-single:after{
    color: #959595;
    vertical-align: 0.2em;
    content: '\f107 ';
    font-family: fontawesome;
    border: none;
    position: absolute;
    font-size: 26px;
    right: 36px;
    top: 22%;
}
#checkout-list form .form-group .results-select .dropdown-menu{
    background-color: rgb(38, 38, 38);
    border: none;
    border-radius: 10px;
}
#checkout-list form .form-group .chosen-results{
    background-color: rgb(38, 38, 38);
    border: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 380px;
    overflow-y: scroll;
    margin-top: 1px;
}
.chosen-search:after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-image: url("../images/country-search.svg");
    position: absolute;
    top: 24px;
    right: 35px;
    z-index: 99;
    background-size: cover;
}
#checkout-list form .form-group .results-select .dropdown-item a{
    color: #959595;
}
#checkout-list form .form-group .results-select .dropdown-item:hover a,
#checkout-list form .form-group .results-select .dropdown-item:focus a{
    color:#fff;
}
#checkout-list form .form-group .results-select > p{
    font-size: 18px;
    line-height: 30px;
    color: #868686;
    margin-bottom: 11px;
    margin-top: 20px;
}
.payment-method{
    margin-top: 50px;
}
.payment-method .custom-radio{
    padding-left: 60px;
}
.payment-method .custom-radio.ubs{
    margin-top: 30px;
}
.pay-text{
    clear:both;
}
.custom-control-label{
    cursor: pointer;
}
.pay-text p{
    color: #656565;
    font-size: 16px;
    line-height: 22px;
    padding-top: 10px;
    font-style: italic;
}
.payment-method .custom-radio > label span{
    font-size: 18px;
    line-height: 30px;
    color: #888;
    margin-bottom: 18px;
}
.payment-method .custom-radio label div.payment-cart-paypal{
    padding: 0;
    border: none;
}
.payment-method .custom-control.custom-radio.paypal{
    margin-top: 30px;
}
.payment-method .custom-control.custom-radio.paypal:after{
    content:'';
    display:block;
    clear: both;
}
.payment-method .custom-control.custom-radio.paypal label{
    float: left;
}
.payment-method .custom-control.custom-radio.paypal label:after,
.payment-method .custom-control.custom-radio.paypal label:before{
    top: 28%;
}
.payment-method .custom-control.custom-radio.paypal .custom-control-input:checked ~ .custom-control-label::after{
    top: 24px;
}
.payment-method .custom-radio label:before,
.payment-method .custom-radio label:after{
    left: -60px;
    top: 0px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.payment-method .custom-radio label:focus{
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.payment-method .custom-radio .custom-control-input:checked ~ .custom-control-label::before{
    background-color: transparent;
    border: 1px solid #fff;
}
.payment-method .custom-control-input:active ~ .custom-control-label::before{
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
}
.payment-method .custom-control-label::before{
    background-color: transparent;
    border: 1px solid #fff;
    height: 30px;
    width: 30px;
    top: -45px;
}
.payment-method .custom-radio .custom-control-input:checked ~ .custom-control-label::after{
    background-image: none;
    width: 16px;
    height: 16px;
    background-color: rgb(42, 196, 183);
    border-radius: 50%;
    left: -53px;
    top: 7px;
}
.payment-method .other-payment .custom-control-label::before{
    top: 0px;
}
.payment-method .custom-radio.other-payment .custom-control-input:checked ~ .custom-control-label::after{
    top: 7px;
}
.what-is-paypal{
    margin-left: 15px;
    float: left;
}
.what-is-paypal a{
    font-size: 18px;
    color: #868686;
    text-decoration: underline;
    margin-top: 15px;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.what-is-paypal img{
    margin-left: 5px;
}
.payment-method .custom-control.custom-radio.other-payment{
    margin-top: 30px;
}
.other-payment label{
    padding: 10px;
    border: 1px solid #9b9b9b;
    border-radius: 7px;
    background-color: rgb(38, 38, 38);
    max-width: 253px;
}
.other-payment label img{
    float: left;
    margin: 0px 4px 5px 4px;
}
.other-payment label img:first-child{
    margin: 0px 72px 5px;
}
.other-payment label img:nth-child(2){
    clear: both;
}
.other-payment label img:last-child{
    padding: 4px 10px;
    border:1px solid rgba(255, 255, 255, 0.4117647058823529);
    border-radius: 2px;
}
.p-carts{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.p-carts img {
    margin: 5px;
}
.p-carts div{
    width: 68px;
    height: 42px;
    margin: 5px;
    border: 1px solid #9b9b9b;
    border-radius: 3px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.create-password{
    margin-top: 60px;
}
.create-password .form-group p{
    font-size: 19px;
    color: #5f5f5f;
    margin-bottom: 24px;
    line-height: 21px;
    margin-top: 14px;
}
.create-password .checkbox label span{
    font-size: 18px;
    line-height: 30px;
    color: #888;
    margin-bottom: 17px;
    text-transform: uppercase;
}
.shipping-method .results-select .dropdown-menu{
    -webkit-transform: translate3d(0px, 80px, 0px)!important;
    -moz-transform: translate3d(0px, 80px, 0px)!important;
    transform: translate3d(0px, 80px, 0px)!important;
}
.shipping-method .results-select .dropdown-menu.show{
    -webkit-transform: translate3d(0px, 61px, 0px)!important;
    -moz-transform: translate3d(0px, 61px, 0px)!important;
    transform: translate3d(0px, 61px, 0px)!important;
}
.create-password .checkbox label{
    cursor: pointer
}
.create-password .checkbox label input[type="checkbox"]{
    display: none
}
.create-password .checkbox label input[type="checkbox"] + .label-text:before {
    display: inline-block;
    transition: all 0.2s ease-in-out;
    margin: -6px 30px 0 0;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    border: 1px solid #e1e1e1;
    border-radius: 7px;
    content: '';
}
.create-password .checkbox label input[type="checkbox"]:checked + .label-text:before {
    content: '\f00c';
    font-family: fontawesome;
    font-size: 18px;
    text-align: center;
    line-height: 26px;
    color: rgb(42, 196, 183);
}
#checkout-list{
    padding-bottom: 50px;
}
#checkout-list.table th, .table td {
    border-top: 1px solid #5f5f5f;
}
.privacy-policy p{
    font-size: 18px;
    margin-bottom: 24px;
    color: #656565;
}
.privacy-policy a{
    color: #656565;
}
.privacy-policy a:hover{
    color:#2ac4b7;
}
#checkout-list table.table {
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 24px;
    margin-bottom: 24px;
}
#checkout-list table.table tr th,
#checkout-list table.table tr td {
    padding: 20px 30px;
}
#checkout-list table.table tr td{
    font-size: 18px;
    color: #888;
}
#checkout-list table.table tr th{
    font-size: 18px;
    color: #888;
}
#checkout-list table.table tr th span{
    color: #888;
    margin-left: 10px;
}
#checkout-list table.table tr th:first-child,
#checkout-list table.table tr td:first-child {
    border-left: 1px solid #5f5f5f;
}
#checkout-list table.table tr th:last-child,
#checkout-list table.table tr td:last-child {
    border-right: 1px solid #5f5f5f;
    text-align:right;
}
#checkout-list table.table tr th {
    border-top: 1px solid #5f5f5f;
    text-align: left;
}

#checkout-list table.table tr:first-child th{
    border-bottom: 0px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}
/* top-left border-radius */
#checkout-list table.table tr:first-child th:first-child {
    border-top-left-radius: 10px;
}
/* top-right border-radius */
#checkout-list table.table tr:first-child th:last-child {
    border-top-right-radius: 10px;
}
#checkout-list table.table tbody tr:last-child th{
    background-color: #5f5f5f;
}
/* bottom-left border-radius */
#checkout-list table.table tbody tr:last-child th:first-child {
    border-bottom-left-radius: 10px;
    border-bottom: 1px solid #5f5f5f;
    font-size:22px;
    color:#fff;
    font-weight: 700;
    padding-top: 29px;
}

/* bottom-right border-radius */
#checkout-list table.table tbody tr:last-child th:last-child {
    border-bottom-right-radius: 10px;
    border-bottom: 1px solid #5f5f5f;
    font-size:35px;
    color:#fff;
    font-weight:400;
}
#checkout-list form button.btn-primary{
    font-family: 'Oswald';
    width:100%;
    font-size:20px;
    letter-spacing: 2px;
    background-color: transparent;
    border-color:rgb(42, 196, 183);
    text-transform: uppercase;
    padding-top: 24px;
    padding-bottom: 23px;
    -o-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
#checkout-list form button.btn-primary:hover{
    background-color: rgb(42, 196, 183);
}
#checkout-list form .form-group input:focus,
#checkout-list form .form-group textarea:focus{
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0px #fff, 0 0 0 0rem rgba(0, 123, 255, 0)!important;
}
#checkout-list form button.btn-primary:focus{
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.login-and-cupon{
    margin-bottom: 70px;
}
.login-and-cupon .form-group{
    padding-left: 0;
}
.login-and-cupon a.btn-primary{
    background-color: transparent;
    border: none;
    padding: 0;
}
.login-and-cupon a.btn-primary:focus{
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.login-and-cupon a.btn-primary:not(:disabled):not(.disabled):active,
.login-and-cupon a.btn-primary:not(:disabled):not(.disabled).active{
    background-color: transparent;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.to-login{
    margin-bottom:14px;
}
.l-b *,.c-b *{
    font-size:20px;
    line-height: 30px;
    color: #888;
}
.l-b i,.c-b i{
    color: rgb(42, 196, 183);
    margin-right: 5px;
}
.l-b a,.c-b a{
    display: inline-block;
    color: #fff;
    margin-left: 6px;
    margin-top: -3px;
}
.l-b a:hover,.c-b a:hover{
    color: rgb(42, 196, 183);
}
.l-form{
    padding: 15px 15px 30px 0px;
    border-radius: 10px;
    margin-top: 10px;
}
.l-f form p{
    font-size: 18px;
    line-height: 30px;
    color: #5f5f5f;
}
.l-f form .create-password {
    margin-top: 0px;
}
.l-f form .create-password .checkbox label input[type="checkbox"] + .label-text:before{
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin-right: 5px;
    margin-top: -4px;
}
.l-f form .create-password .checkbox label span{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
    text-transform: capitalize;
}
.l-f form .create-password .checkbox label input[type="checkbox"]:checked + .label-text:before{
    font-size: 10px;
    line-height: 12px;
}
.l-f form .create-password .checkbox label{
    margin-bottom: 0;
    margin-top: 8px;
    margin-left: 10px;
}
#checkout-list .l-f form button.btn-primary{
    font-size: 16px;
    padding-top: 11px;
    padding-bottom: 9px;
    width: 210px;
    max-width: 210px;
}
.l-form > a{
    font-size: 19px;
    color: #959595;
    margin-top: 20px;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.l-form > a:hover{
    color:rgb(42, 196, 183);
}
.c-f .l-form form{
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}
.coupon-btn{
    margin-bottom:0px;
}
#checkout-list .c-f form button.btn-primary {
    font-size: 16px;
    padding-top: 11px;
    padding-bottom: 9px;
    margin-top: 15px;
    width: 210px;
    max-width: 210px;
}
/* =================================================  */
/* CHECKOUT END */
/* =================================================  */

/* =================================================  */
/* SINGLE PRODUCT */
/* =================================================  */
body.single-product #single-product-section > .section {
    max-width: 1725px;
    overflow: hidden;
}
html.magnifying > body {
    overflow-x: hidden !important;
}
.product-container{
    /*margin-top:50px;*/
}
.shop-view-cart{
    padding: 0px 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden;
}
.name-title *{
    font-size:20px;
}
.name-title i{
    color:rgb(42, 196, 183);
    margin-right:10px;
}
.name-title span{
    color: #888;
}
.single-product .ad-to-card-button a {
    color: #888;
    border-color:#888;
    font-weight: 600;
}
.single-product .ad-to-card-button a:hover{
    color:#fff;
    border-color:rgb(42, 196, 183);
}
.shop-view-cart .ad-to-card-button{
    margin-top:0px;
}
.single-image{
    padding: 0px 20px 0px 35px;
}
.product-description{
    padding:20px 35px 0px 20px;
}
.magnify,
.magnify > .magnify-lens,
.magnify-mobile,
.lens-mobile { /* Reset */
    min-width: 0;
    min-height: 0;
    animation: none;
    border: none;
    float: none;
    margin: 0;
    opacity: 1;
    outline: none;
    overflow: visible;
    padding: 0;
    text-indent: 0;
    transform: none;
    transition: none;
}
.magnify {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: none;
    display: inline-block;
    z-index: inherit;
}
.magnify > .magnify-lens { /* Magnifying lens */
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    /* Multiple box shadows to achieve the glass lens effect */
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85),
    0 0 7px 7px rgba(0, 0, 0, 0.25),
    inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
    cursor: none;
    display: none;
    z-index: 99;
}
.magnify > .magnify-lens.loading {
    background: #333 !important;
    opacity: 0.8;
}
.magnify > .magnify-lens.loading:after { /* Loading text */
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: #fff;
    content: 'Loading...';
    font: italic normal 16px/1 Calibri, sans-serif;
    letter-spacing: 1px;
    margin-top: -8px;
    text-align: center;
    text-shadow: 0 0 2px rgba(51, 51, 51, 0.8);
    text-transform: none;
}
.product-image{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 30px 0px;
}
.product-image > a{
    width:75%;
}
.magnify img{
    width:100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}
.single-pr-name h3{
    font-family: 'Oswald';
    font-size: 40px;
    line-height: 30px;
    color:#fff;
    font-weight: 400;
    letter-spacing: 1px;
}
.single-price p{
    font-family: 'Oswald';
    font-size:30px;
    color:rgb(42, 196, 183);
    font-weight: 300;
    margin-top: 1rem;
}
.single-price .sale{
    font-family: 'Open Sans';
    font-size:26px;
    margin-left: 38px;
}
.single-price span.sale:after{
    width: 100%;
    bottom: 17px;
}
.single-star:after{
    content:'';
    display: block;
    clear: both;
}
.single-star ul:after{
    content:'';
    display:block;
    clear:both;
}
.single-star ul li{
    float:left;
    margin-right: 10px;
}
.single-star ul i{
    font-size:25px;
    color:#f5c314;
}
.single-star ul li:last-child i{
    color:#fff;
}
.single-button-count:after{
    content:'';
    display:block;
    clear: both;
}
.single-button-count{
    margin-top: 15px;
    margin-bottom: 15px;
}
.catd-button{
    float: left;
    margin-top: 15px;
    margin-right: 25px;
}
.catd-button a{
    position:relative;
    font-size: 15px;
    color: #fff;
    border:2px solid rgb(42, 196, 183);
    border-radius: 7px;
    padding: 14px 50px 15px 85px;
}
.catd-button a:hover{
    background-color: rgb(42, 196, 183);
}
.catd-button a img{
    position:absolute;
    left: 25px;
    top: 12px;
}
.single-button-count .plusminus{
    position:relative;
    float: left;
    width: 135px;
    height: 55px;
    border-radius: 3px;
}
.single-button-count .plusminus button{
    width: 40px;
    height:55px;
}
.single-button-count .plusminus input[type="number"]{
    left: 40px;
    height: 55px;
    font-size: 18px;
    font-weight: 400;
}
.single-button-count .plusminus button:first-child{
    border-right:0px
}
.single-button-count  .plusminus button:last-child{
    border-left: 0px;
}
.single-text{
    margin-top:15px;
}
.single-text *{
    font-size:18px;
    line-height: 30px;
    color: #888;
    margin-bottom: 17px;
}
.single-code *{
    font-size:16px;
    color:#888;
}
.single-style a {
    color: #ebebeb;
}
.single-style a:hover {
    color: rgb(42, 196, 183);
}
.single-product .sale{
    color: #888;
}
.single-product span.sale:after{
    background-color: #888;
}
.sku{
    color: #888;
}
.single-code p > span {
    margin-right: 3px;
}
.single-code{
    margin-top: 15px;
}
.single-tab-content .tab-content .fade:not(.show){
    opacity: 1;
}
.single-tab-content{
    padding:0px 35px;
    margin-top: 70px;
}
.single-tab-content .nav-tabs{
    border-bottom: 2px solid #ebebeb;
}
.single-tab-content .nav-tabs .nav-item {
    margin-bottom: -3px;
}
.single-tab-content .nav-tabs .nav-link{
    font-size:20px;
    color: #ebebeb;
    padding: 0px 0px 12px;
    border:0px;
    border-bottom:5px solid transparent;
}
.single-product .author-name-date p:nth-of-type(1){
    color: #ffffff;
}
.single-tab-content .nav-tabs .nav-item:last-child .nav-link{
    padding-left: 24px;
    padding-right: 24px;
    margin-left: 30px;
}
.single-tab-content .nav-tabs .nav-link:hover,
.single-tab-content .nav-tabs .nav-link:focus{
    border-color:rgb(42, 196, 183);
    color:rgb(42, 196, 183);
}
.single-tab-content .nav-tabs .nav-link.active,
.single-tab-content .nav-tabs .nav-item.show .nav-link{
    background-color: transparent;
    border-color:rgb(42, 196, 183);
    color:rgb(42, 196, 183);
}
.single-tab-content .tab-content{
    margin-top:45px;
}
.first-tab-pane *{
    font-size:20px;
    line-height: 30px;
    color:#888;
    margin-bottom: 20px;
}
body.single-product #releated-products{
    background-color: rgb(19, 19, 19);
    padding-top: 70px;
    margin-top: 70px;
}
body.single-product #releated-products > .section {
    max-width: 1725px;
    overflow: hidden;
}
.related-product-title{
    padding: 0px 35px;
    margin-bottom: 70px;
}
.related-product-title h3{
    font-family: 'Oswald';
    font-weight: 400;
    font-size: 30px;
    color:#fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
}
#single-product-section #blog-post .form h2{
    text-align: left;
}
.single-tab-content #blog-post .form{
    margin-top: 70px;
}
.comment-form-rating{
    margin-bottom: 35px;
}
.comment-form-rating > label{
    color: #7b7b7b;
    margin-bottom: 0;
}
.comment-form-rating p.stars a {
    color: #fff;
    cursor: auto;
}
.comment-form-rating p.stars a i {
    color: #fff;
}
.comment-form-rating p.stars a.star-1 i,
.comment-form-rating p.stars a.star-2 i,
.comment-form-rating p.stars a.star-3 i{
    color: #f5c314;
}
/* =================================================  */
/* SINGLE PRODUCT END */
/* =================================================  */


/**************** BODY CSS END *******************/

/* ========================================================== */
/*   RESPONSIVE CSS
/* ========================================================== */

@media(max-width:1730px){
    .plyr .plyr__volume{
        max-width: 100px;
        margin-right: 30px;
    }
    .plyr__controls>button:last-of-type{
        right:2%;
    }
    #discography-post .plyr__controls>button:last-of-type{
        right:1%;
    }
    #discography-post .mp3 .plyr--audio .plyr__controls{
        padding: 46px 20px 48px 4px;
    }
    #discography-post .plyr__controls>button:last-of-type:before{
        right: 415%;
    }
}

@media(max-width:1690px){
    #header ul.nav > li > a{
        font-size: 37px;
    }
    #header .nav > li ul.child-item{
        left: 185px;
    }
    .plyr__controls>button:last-of-type{
        right:3%;
    }
    .plyr__controls>button:last-of-type:before{
        right: 390%;
    }
    .plyr__time+.plyr__time{
        margin-right: 50px;
    }
    /***** Single Events *****/
    .event-tickets a{
        padding: 25px 55px 25px;
    }
    .event-tickets a:first-child{
        margin-right: 25px;
    }
    .event-tickets a:last-child{
        padding: 25px 30px;
    }

    /***** Checkout ****/
    #checkout-list table.table tr:first-child th{
        font-size: 16px;
    }
    #checkout-list table.table tr th,
    #checkout-list table.table tr td{
        font-size: 16px;
        padding: 15px;
    }
    #checkout-list table.table tbody tr:last-child th:first-child{
        font-size: 18px;
        padding-top: 21px;
    }
    #checkout-list table.table tbody tr:last-child th:last-child{
        font-size: 26px;
    }
}

@media(max-width:1600px){
    #header ul.nav > li > a{
        font-size: 35px;
    }
    .news > div > div{
        margin: 0px 20px;
    }
}
@media(max-width:1560px){

    /***** Cart *****/
    .cart-image{
        width: 200px;
        height: 200px;
        margin-right: 30px;
    }
    .cart-description a, .cart-description h2{
        margin-bottom: 10px;
    }
    .plusminus,.plusminus button,.plusminus input[type="number"]{
        height: 50px;
    }

}
@media(max-width: 1530px){
    /***** Blog Single Post *****/
    .recent-post-image img,.recent-post-image{
        width: 70px;
    }
}
@media(max-width:1500px){
    .news > div > div{
        max-width: 400px;
    }
    .slider-info{
        height: 560px;
    }

    /***** Search Result *****/
    .t-shirt-image {
        height: 600px;
    }

    /*** Shop ***/
    .results-select .btn-primary{
        padding: 8px 54px 10px 40px;
    }
    .results-select .dropdown-menu{
        -webkit-transform: translate3d(0px, 70px, 0px)!important;
        -moz-transform: translate3d(0px, 70px, 0px)!important;
        transform: translate3d(0px, 70px, 0px)!important;
    }
    .results-select .dropdown-menu.show{
        -webkit-transform: translate3d(0px, 51px, 0px)!important;
        -moz-transform: translate3d(0px, 51px, 0px)!important;
        transform: translate3d(0px, 51px, 0px)!important;
    }
}
@media(max-width:1430px){
    .buy a{
        padding: 11px 30px 10px;
    }
}
@media(max-width: 1400px){
    .plyr--audio .plyr__controls{
        padding: 60px 20px 25px 18px;
    }
    .plyr__controls button svg{
        width: 20px;
        height: 20px;
    }
    .plyr__controls > .plyr__time{
        left: 50px;
    }
    .plyr .plyr__progress{
        margin-left: 70px;
    }
    .plyr__time+.plyr__time{
        margin-left: 15px;
        margin-right: 30px;
    }
    .plyr__controls>button:last-of-type{
        right: 4%;
        top: 51%;
    }
    .plyr__controls>button:last-of-type:before{
        font-size: 24px;
        top: 0px;
        right: 380%;
    }
    .plyr__time{
        font-size: 18px;
    }
    .buy a{
        font-size: 21px;
        padding: 11px 33px 11px;
    }
    .name p{
        font-size: 40px;
        line-height: 45px;
    }
    .day_num{
        width: 130px;
        height: 45px;
        line-height: 24px;
    }
    .day_num span{
        font-size: 54px;
    }
    .day_num div p{
        font-size: 22px;
    }
    #discography-text{
        margin-top: 5px;
    }
    .plyr .plyr__volume{
        margin-right: 32px;
    }

    /***** Blog Mansory *****/
    .grid-item--width2 {
        height: 1140px;
    }
    .grid-item--width1,
    .grid-item--width3,
    .grid-item--width4 {
        height: 570px;
    }
    .grid-item-img:after{
        width: 270px;
        height: 35px;
    }
}

@media (max-width: 1380px) {
    .privacy-policy p{
        font-size: 16px;
    }
    #single-gallery .section{
        max-width: 1220px;
    }
    .header-title h1{
        font-size: 40px;
    }
    .title h1{
        font-size: 36px;
    }
    .title p{
        font-size: 14px;
        line-height: 28px;
    }
    .sec_2_content{
        line-height: 28px;
    }
    .sec_2_content *{
        font-size: 16px;
    }
    .cta a{
        font-size: 14px;
    }
    #page-title{
        margin-top: 110px;
        margin-bottom: 55px;
    }
    .music-discography #page-title {
        margin-bottom: 55px;
    }
    #header .nav > li{
        width: 165px;
    }
    #header ul.nav > li > a {
        font-size: 25px;
    }
    #header .nav > li ul.child-item{
        left: 155px;
        top: 10%;
    }
    #header .nav > li ul.child-item > li a{
        font-size: 21px;
        line-height: 30px;
    }
    .logo{
        max-width: 250px;
    }
    .header_items > div{
        height: 24px;
    }
    .title{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    #gallery .title, #video .title, #news .title {
        padding-bottom: 60px;
    }
    .m_img{
        height: 100px;
    }
    .plyr__controls button svg{
        height: 16px;
    }
    .plyr__time{
        font-size: 16px;
    }
    .plyr__controls > .plyr__time{
        margin-top: 0px;
        margin-left: 4px;
    }
    .plyr__controls>button:last-of-type:before{
        font-size: 18px;
    }
    .plyr .plyr__volume {
        margin-right: 30px;
    }
    .plyr__controls>button:last-of-type{
        top: 53%;
    }
    .plyr .plyr__progress{
        margin-left: 60px;
    }
    .plyr__time+.plyr__time::before{
        top: -1px;
    }
    .mp3 > span{
        left: 30px;
        font-size: 16px;
    }
    .cta{
        margin-top: 60px;
    }
    .j_c{
        padding-bottom: 60px;
    }
    #on-tour{
        padding-bottom: 60px;
    }
    .day_num{
        line-height: 23px;
        border-right-width: 5px;
    }
    .day_num span{
        font-size: 50px;
    }
    .name p {
        font-size: 35px;
    }
    .row.ticket > div{
        padding: 30px 20px;
    }
    .buy a{
        text-align: center;
        font-size: 18px;
        padding: 9px 25px 10px;
    }
    .news .cta {
        margin-top: 90px;
    }
    .n_c *{
        font-size: 16px;
        line-height: 28px;
    }
    .carousel_content * {
        font-size: 16px;
        line-height: 28px;
    }
    .buy p{
        font-size: 24px;
    }
    .img_gallery{
        height: 1000px;
    }
    #gallery {
        padding-bottom: 84px;
    }
    #gallery .cta a{
        padding: 24px 25px 26px;
    }
    #gallery .cta {
        margin-top: 84px;
    }
    #video {
        padding-bottom: 60px;
    }
    #video .embed-responsive{
        max-width:1000px;
        border-width: 15px;
    }
    #news {
        padding-bottom: 60px;
    }
    .news_content{
        padding-top: 52px;
    }
    .news_content h2{
        font-size: 32px;
    }
    #testimonials {
        padding-bottom: 60px;
    }
    #contact-us {
        padding-bottom: 60px;
    }

    /***** Music Single Album *****/
    #discography-post{
        padding-top: 50px;
    }
    .social-icons{
        margin-top: 25px;
        margin-bottom: 55px;
        padding-top: 25px;
    }

    /***** Cart *****/
    .cart-image{
        width: 180px;
        height: 180px;
        margin-right: 20px;
    }
    .enter-coupon, .order-button{
        max-width: 430px;
    }
    .cart-buttons a{
        font-size: 16px;
        padding: 14px 35px;
    }
    .cart-buttons a:last-child{
        padding: 14px 47px;
    }
    #cart-order {
        padding-bottom: 55px;
    }
    /******* Music Discography   **********/
    .global-title h1{
        font-size: 70px;
    }
    .music-banner-text h2{
        font-size: 36px;
        line-height: 40px;
    }
    .music-banner-text p{
        font-size: 18px;
        line-height: 28px;

    }
    body.gallery-photogallery .music-banner-text h2{
        font-size: 36px;
    }
    body.gallery-photogallery .music-banner-text p {
        font-size: 18px;
        line-height: 28px;
    }
    #discography-post .mp3 .plyr__controls > .plyr__time{
        font-size: 18px;
    }
    .playlist-title h2{
        font-size: 36px;
    }
    .playlist .music_line > span{
        font-size: 16px;
        line-height: 28px;
    }
    .discography_description *{
        font-size: 16px;
        line-height: 28px;
    }
    .shop_cta{
        font-size: 14px;
    }
    /**** All Events ****/
    body.all-events #on-tour{
        margin-top: 0px;
        padding-bottom: 55px;
    }

    /***** Single Events *****/
    #map{
        margin-bottom: 55px;
    }
    #text-and-video{
        margin-bottom: 55px;
        margin-top: 55px;
    }
    #text-and-video .social-icons {
        margin-top: 25px;
    }
    .event-tickets a {
        padding: 20px 45px 20px;
    }
    .event-tickets a:last-child{
        padding: 20px 30px;
    }
    .events-info{
        width: 60%;
    }
    .events_date *{
        font-size: 26px;
        line-height: 28px;
    }
    .single-events-text p{
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 30px;
    }
    .video-banner-name p{
        font-size: 18px;
        line-height: 28px;
        margin-bottom: -4px;
    }
    .video-banner-name h2{
        font-size: 26px;
    }
    body.single-video #discography-text {
        margin-top: 55px;
    }
    body.single-video .social-icons{
        margin-top: 25px;
        margin-bottom: 55px;
    }
    .blog-content {
        margin-bottom: 55px;
    }
    #standard-blog .blog-content{
        padding-bottom: 55px;
    }
    .social-icons > span {
        font-size: 16px;
    }
    .social-icons a {
        font-size: 18px;
    }
    /****** Single Gallery ****/
    body.gallery-single-gallery #discography-text {
        margin-top: 55px;
    }
    .sm-title {
        margin-bottom: 55px;
    }
    .sm-section .social-icons {
        padding-top: 25px;
        margin-bottom: 55px;
    }
    .sm-title h2 {
        font-size: 26px;
        line-height: 28px;
    }
    /****** Blog Grid ****/
    .grid li {
        padding: 0px 15px 30px 15px;
    }
    .grid figcaption{
        padding: 25px 30px 30px;
    }
    #blog-grid-gallery {
        padding-bottom: 30px;
    }
    .grid-gallery figcaption h3{
        font-size: 26px;
        line-height: 28px;
    }
    .grid-gallery figcaption .post-publish-date{
        font-size: 15px;
    }
    .grid-gallery figcaption p{
        font-size: 16px;
        line-height: 28px;

    }
    /***** Blog Single Post *****/
    .featured-image{
        height: 400px;
        margin-bottom: 50px;
    }
    .blog-categories h2, .blog-recent-post h2{
        font-size: 20px;
        line-height: 28px;
    }
    .categories-line{
        font-size: 15px;
        line-height: 28px;
    }
    .recent-post-name h3{
        font-size: 15px;
        line-height: 20px;
    }
    .recent-post-name span{
        font-size: 12px;
    }
    .post-text p{
        font-size: 16px;
        line-height: 28px;
        margin-top: 50px;
    }
    #blog-post .form h2{
        font-size: 20px;
    }
    #single-product-section #blog-post .form h2{
        font-size: 26px;
        margin-bottom: 25px;
    }
    .comment-form-rating{
        margin-bottom: 30px;
    }
    .author-name-date p:nth-of-type(1){
        font-size: 18px;
        line-height: 28px;
    }
    .author-name-date p:nth-of-type(2) {
        font-size: 15px;
    }
    .author-info em {
        font-size: 15px;
    }
    .author-description p {
        font-size: 16px;
        line-height: 28px;
    }
    .reply {
        font-size: 18px;
        margin-bottom: 55px;

    }
    .post-category, .post-by * {
        font-size: 15px;
    }
    .post-share {
        margin-top: 25px;
    }
    .post-author {
        margin-top: 55px;
    }

    /**** Blog Standard ****/
    .see-more {
        text-align: center;
        margin-top: 79px;
        margin-bottom: 79px;
    }
    .standard-post-item {
        margin-bottom: 78px;
    }
    .post-heading h2{
        font-size: 36px;
        line-height: 28px;
    }
    .g_t h3{
        font-size: 26px;
        line-height: 28px;
    }
    .g_t p {
        font-size: 18px;
        line-height: 28px;
    }
    .cart-name * {
        font-size: 18px;
        line-height: 28px;
    }
    .cart-description a, .cart-description h2 {
        font-size: 26px;
        line-height: 28px;
    }
    .cart-description p {
        font-size: 16px;
        line-height: 28px;
    }
    .product-price *{
        font-size: 26px;
        line-height: 28px;
    }
    .coupon-title h3 {
        font-size: 26px;
        line-height: 28px;
    }
    .coupon-title span {
        font-size: 18px;
        line-height: 28px;
    }
    .o-t * {
        font-size: 26px;
        line-height: 28px;
    }
    .g-p * {
        font-size: 36px;
        line-height: 28px;
    }
    .c-t * {
        font-size: 16px;
        line-height: 28px;
    }
    .l-b *, .c-b * {
        font-size: 18px;
        line-height: 28px;
    }
    .l-f form p, .l-form > a {
        font-size: 18px;
        line-height: 28px;
    }
    .l-f form .create-password .checkbox label span {
        font-size: 18px;
        line-height: 28px;
    }
    .l-f form p, .l-form > a {
        font-size: 18px;
        line-height: 28px;
    }
    #checkout-list form h3 {
        font-size: 26px;
        line-height: 28px;
    }
    #checkout-list form .form-group .results-select > p {
        font-size: 18px;
        line-height: 28px;
    }
    .pay-text p {
        font-size: 14px;
    }
    .create-password .checkbox label span {
        font-size: 18px;
        line-height: 28px;
    }
    #checkout-list table.table tr:first-child th {
        font-size: 15px;
    }
    .what-is-paypal a {
        font-size: 16px;
    }
    .contact-info h2{
        font-size: 36px;
        margin-bottom: 40px;
    }
    .contact-info p {
        font-size: 18px;
        line-height: 28px;
    }
    .contact-adress > a, .contact-adress > p {
        font-size: 15px;
        margin-bottom: 10px;
    }
    /***** Search Result *****/
    .t-shirt-image {
        height: 460px;
    }
    .t-shirt-description{
        padding: 30px 5px 79px;
    }
    .t-shirt-description .post-cta {
        margin-top: 60px;
    }
    body.search-result .global-title h2{
        font-size: 45px;
    }
    .t-shirt-description h2 {
        font-size: 26px;
        line-height: 28px;
        margin-bottom: 30px;
    }
    .t-shirt-description p {
        font-size: 18px;
        line-height: 28px;
    }
    /*** Shop ***/
    .s-item{
        margin-bottom: 55px;
    }
    .results-select .btn-primary {
        font-size: 18px;
        padding: 8px 30px 8px 25px;
    }
    .best-offer{
        width: 95px;
        height: 95px;
    }
    .best-offer h4{
        font-size:18px;
        margin-bottom: 0px;
    }
    .best-offer p{
        font-size:14px;
    }
    .results-text{
        margin-top: 5px;
    }
    .results-text *{
        font-size: 18px;
        line-height: 28px;
    }
    .results-select .dropdown-menu{
        -webkit-transform: translate3d(0px, 70px, 0px)!important;
        -moz-transform: translate3d(0px, 70px, 0px)!important;
        transform: translate3d(0px, 70px, 0px)!important;
    }
    .results-select .dropdown-menu.show{
        -webkit-transform: translate3d(0px, 44px, 0px)!important;
        -moz-transform: translate3d(0px, 44px, 0px)!important;
        transform: translate3d(0px, 44px, 0px)!important;
    }
    .s-item-name h2 {
        font-size: 16px;
        line-height: 28px;
    }
    .s-item-name p {
        font-size: 18px;
    }
    .sale{
        font-size: 18px;
    }
    span.sale:after{
        bottom: 11px;
    }
    .sale sup:after {
        top: 9px;
    }
    .ad-to-card-button a{
        font-size: 14px;
    }

    /***** Checkout ******/
    #checkout-list {
        padding-bottom: 40px;
    }
    #checkout-list .l-f form button.btn-primary{
        padding-top: 9px;
        padding-bottom: 7px;
    }
    #checkout-list .c-f form button.btn-primary{
        margin-top: 22px;
        padding-top: 9px;
        padding-bottom: 7px;
    }
    #checkout-list form .form-group input,
    .chosen-container-single .chosen-search,
    #checkout-list form .form-group .chosen-single{
        height: 50px;
    }
    .chosen-search:after{
        top:20px;
    }
    #checkout-list form .form-group .results-select .dropdown-toggle::after, #checkout-list form .form-group .chosen-single:after{
        top: 16%;
    }
    #checkout-list form .form-group .results-select .btn-primary, #checkout-list form .form-group .chosen-single{
        padding: 11px 20px 10px 20px;
    }
    .chosen-container.chosen-with-drop .chosen-drop{
        -webkit-transform: translate3d(0px, -50px, 0px)!important;
        -moz-transform: translate3d(0px, -50px, 0px)!important;
        transform: translate3d(0px, -50px, 0px)!important;
    }
    #checkout-list form .form-group {
        margin-bottom: 15px;
    }
    #checkout-list form .form-group a.bfh-selectbox-toggle{
        height: 50px;
    }
    #checkout-list form .form-group a.bfh-selectbox-toggle span.bfh-selectbox-option{
        padding-top: 4px;
    }
    #checkout-list form .form-group .results-select .btn-primary{
        padding: 11px 20px 11px 20px;
    }
    #checkout-list form .form-group .results-select .dropdown-toggle::after{
        top: 14%;
    }
    .shipping-method .results-select .dropdown-menu.show {
        -webkit-transform: translate3d(0px, 51px, 0px)!important;
        -moz-transform: translate3d(0px, 51px, 0px)!important;
        transform: translate3d(0px, 51px, 0px)!important;
    }
    #checkout-list table.table tr th, #checkout-list table.table tr td{
        font-size: 15px;
    }
    #checkout-list table.table tbody tr:last-child th:first-child {
        font-size: 16px;
        padding-top: 19px;
    }
    #checkout-list table.table tbody tr:last-child th:last-child {
        font-size: 21px;
    }
    .what-is-paypal {
        margin-left: 8px;
    }
    .what-is-paypal img{
        width: 35px;
    }
    .login-and-cupon {
        margin-bottom: 55px;
    }

    /***** Cart *****/
    .order-coupon {
        margin-top: 55px;
    }

    /***** Single Product *****/
    .product-description {
        padding: 0px 35px 0px 20px;
    }
    .single-price p{
        font-size: 26px;
        margin-bottom: 1rem;
    }
    .single-style *{
        margin-bottom: 10px;
    }
    .single-star ul i{
        font-size: 18px;
    }
    .single-button-count {
        margin-top: 20px;
    }
    .catd-button{
        margin-top: 12px;
    }
    .catd-button a{
        font-size: 14px;
        padding: 12px 30px 12px 70px;
        border-radius: 3px;
    }
    .catd-button a img{
        left: 25px;
        top: 10px;
        width: 18px;
    }
    .single-button-count .plusminus{
        width: 120px;
        height: 44px;
    }
    .single-button-count .plusminus button{
        height: 44px;
    }
    .single-button-count .plusminus input[type="number"]{
        width: 40px;
        height: 44px;
        font-size: 21px;
    }
    .single-code {
        margin-top: 10px;
    }
    .single-pr-name h3{
        font-size: 36px;
        line-height: 28px;
    }
    .single-style * {
        font-size: 18px;
    }
    .single-text * {
        font-size: 18px;
        line-height: 28px;
    }
    .first-tab-pane *{
        font-size: 18px;
        line-height: 28px;
    }
    .single-tab-content .nav-tabs .nav-link {
        font-size: 18px;
    }
    .related-product-title h3 {
        font-size: 26px;
    }
    body.single-product #releated-products{
        padding-top: 55px;
        margin-top: 25px;
    }
    .related-product-title{
        margin-bottom: 55px;
    }
    #releated-products .s-item{
        margin-bottom: 55px;
    }
    .single-tab-content {
        margin-top: 55px;
    }

    /***** Blog Mansory *****/
    .grid-item--width1 {
        margin-top: -3px;
    }

    body.contact-us-page #contact-us {
        padding: 55px 0px 55px;
    }
}

@media(max-width:1260px){
    /***** Videos ****/
    #videos .embed-responsive,
    #videos .video-img-banner{
        height: 210px;
    }

}
@media(max-width:1180px){
    .privacy-policy p{
        font-size: 14px;
    }
    .add-info{
        margin-top: 30px;
    }
    .header-title h1 {
        font-size: 30px;
    }
    .header-title{
        bottom: 45%;
    }
    .title h1{
        font-size: 32px;
        line-height: 35px;
        margin-bottom: 10px;
    }
    .title p{
        font-size: 13px;
        line-height: 26px;
    }
    .sec_2_content{
        padding-right: 30px!important;
        line-height: 26px;
    }
    .sec_2_content *{
        font-size: 14px;
    }
    .plyr .plyr__volume{
        max-width: 74px;
    }
    .plyr .plyr__volume {
        margin-right: 24px;
    }
    .plyr__controls>button:last-of-type:before {
        right: 295%;
    }
    .mp3 > span{
        font-size: 14px;
    }
    .buy a{
        display: block;
        padding-left: 5px;
        padding-right: 5px;
        font-size: 16px;
    }
    .row.ticket > div{
        padding: 25px 20px;
    }
    .cta a{
        padding: 20px 20px 22px;
        font-size: 12px;
    }
    .news .cta a{
        font-size: 12px;
        padding: 20px 13px 20px 20px;
    }
    .name p{
        font-size: 32px;
    }
    .img_gallery {
        height: 800px;
    }
    #gallery .banner_1 > div:first-child{
        padding-bottom: 10px;
    }
    #gallery .banner_1 > div:first-child > div:first-child {
        margin-right: 10px;
    }
    #gallery .banner_1 > div:first-child > div:last-child {
        margin-left: 10px;
    }
    #gallery .banner_1 > div:nth-child(2) {
        padding: 10px 0px;
    }
    #gallery .banner_1 > div:last-child {
        padding-top: 10px;
    }
    .banner_1{
        padding-right: 10px;
    }
    .banner_2{
        padding-left: 10px;
    }
    #gallery .banner_2 > div:first-child {
        padding-bottom: 10px;
    }
    #gallery .banner_2 > div:nth-child(2) {
        padding: 10px 0px;
    }
    #gallery .banner_2 > div:last-child {
        padding-top: 10px;
    }
    #gallery .cta a {
        padding: 24px 13px 24px 20px;
    }
    #gallery .banner_1 > div:last-child > div:first-child {
        margin-right: 10px;
    }
    #gallery .banner_1 > div:last-child > div:last-child {
        margin-left: 10px;
    }
    .popup_arrow{
        height: 90px;
        width: 150px;
    }
    .popup_right{
        padding-left: 10px;
    }
    .popup_left{
        padding-right: 10px;
    }
    .popup_arrow i{
        font-size: 24px;
    }
    .j_c {
        padding-bottom: 60px;
    }
    #on-tour {
        padding-bottom: 60px;
    }
    #gallery {
        padding-bottom: 84px;
    }
    #gallery .cta {
        margin-top: 84px;
    }
    #video {
        padding-bottom: 60px;
    }
    #news{
        padding-bottom: 60px;
    }
    .news > div > div{
        margin: 0px 10px;
    }
    .news_content h2 {
        font-size: 32px;
    }
    .carousel_content *{
        font-size: 16px;
        line-height: 26px;
        padding: 0px 15px;
    }
    .carousel_content:before{
        width: 30px;
        height: 30px;
        left: -5%;
    }
    .carousel_content:after{
        width: 30px;
        height: 30px;
        right: -5%;
    }
    .n_c *{
        font-size: 14px;
        line-height: 26px;
    }
    .news .cta {
        margin-top: 70px;
    }
    .news_content {
        padding-top: 34px;
        padding-bottom: 61px;
    }
    #testimonials{
        padding-bottom: 60px;
    }
    .flex-control-nav{
        margin-top: 25px;
    }
    .carousel-indicators{
        bottom: -70px;
    }
    .form .btn-primary{
        font-size: 12px;
    }
    .form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        font-size: 12px;
    }
    .form input::-moz-placeholder { /* Firefox 19+ */
        font-size: 12px;
    }
    .form input:-ms-input-placeholder { /* IE 10+ */
        font-size: 12px;
    }
    .form input:-moz-placeholder { /* Firefox 18- */
        font-size: 12px;
    }
    .form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        font-size: 12px;
    }
    .form textarea::-moz-placeholder { /* Firefox 19+ */
        font-size: 12px;
    }
    .form textarea:-ms-input-placeholder { /* IE 10+ */
        font-size: 12px;
    }
    .form textarea:-moz-placeholder { /* Firefox 18- */
        font-size: 12px;
    }
    .form form input, .form form textarea{
        font-size: 14px;
    }
    .footer{
        padding-top: 40px;
    }
    .footer > div:first-child{
        padding-right: 50px;
    }
    .footer > div:first-child p{
        line-height: 26px;
        margin: 0;
    }
    .footer .day_num > a > p{
        line-height: 18px;
    }
    .info p{
        line-height: 26px;
    }
    .folow {
        margin-top: 15px;
    }
    .folow ul li a{
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .carousel_content{
        max-width: 570px;
    }
    .see-more a{
        font-size: 12px;
    }
    /***** Cart *****/
    .cart-image{
        width: 110px;
        height: 110px;
    }
    .cart-description{
        padding-top: 0px;
    }
    .enter-coupon, .order-button {
        max-width: 380px;
    }
    .plusminus{
        width: 100px;
        height: 35px;
    }
    .plusminus button{
        height: 35px;
        width:30px
    }
    .plusminus input[type="number"]{
        width:40px;
        height: 35px;
        left:30px;
        font-size: 16px;
    }
    .product-price *{
        font-size: 24px;
        line-height: 26px;
    }
    .delete-product svg {
        width: 20px;
        height: 20px;
    }
    .cart-name *{
        font-size: 16px;
        line-height: 26px;
    }
    .cart-description a, .cart-description h2{
        font-size: 24px;
        line-height: 26px;
    }
    .cart-description p{
        font-size: 16px;
        line-height: 26px;
    }
    .g-p *{
        font-size: 32px;
        line-height: 26px;
    }
    .o-t * {
        font-size: 24px;
        line-height: 26px;
    }
    .c-t *{
        font-size: 16px;
        line-height: 26px;
    }
    .coupon-title h3{
        font-size: 24px;
        line-height: 26px;
    }
    .coupon-title span{
        font-size: 16px;
        line-height: 26px;
    }
    /******* Music Discography   **********/
    .global-title h1{
        font-size: 60px;
    }
    .playlist .music_line > span{
        font-size: 16px;
        line-height: 26px;
    }
    #discography-post .mp3 .plyr__controls > .plyr__time{
        font-size: 16px;
    }
    .music-banner-text h2{
        font-size: 32px;
        line-height: 38px;
    }
    .playlist-title h2{
        font-size: 32px;
    }
    .music-banner-text p{
        font-size: 16px;
        line-height: 26px;
    }
    .play-pause{
        margin-right: 15px;
    }
    .play-pause svg{
        width: 15px;
        height: 15px;
    }
    .music_date p,.music_after p{
        font-size: 14px;
        line-height: 26px;
    }
    #discography-post .plyr__controls button svg{
        height: 16px;
    }
    #discography-post .plyr__controls>button:last-of-type:before{
        font-size: 18px;
        top: 1px;
    }
    .shop_cta{
        width: 110px;
        font-size: 12px;
    }
    #discography-post .mp3 .plyr__controls>button:last-of-type{
        top: 36px;
    }
    #discography-post .plyr__controls>button:last-of-type:before{
        right: 305%;
    }
    #discography-post .mp3 .plyr .plyr__progress{
        margin-left: 60px;
    }
    #discography-post .mp3 .plyr__controls > .plyr__time{
        left: 34px;
    }
    #discography-post .mp3 .plyr__time+.plyr__time{
        margin-left: 15px;
    }
    #discography-post .mp3 .plyr--audio .plyr__controls{
        padding: 36px 20px 38px 4px;
    }
    #discography-post .mp3 .plyr .plyr__volume{
        max-width: 70px;
        margin-top: 0px;
    }
    .discography_description *{
        font-size: 14px;
        line-height: 26px;
    }
    /******** All Events *****/

    /***** Single Events *****/
    .events_date *{
        font-size: 24px;
    }
    .events_date p{
        line-height: 26px;
    }
    .events_date i {
        width: 25px;
    }
    .single-events-text p{
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    .single-events-text {
        margin-top: -7px;
    }
    .event-tickets{
        margin-top: 40px;
    }
    .event-tickets a{
        font-size: 18px;
    }
    .events-info {
        width: 57%;
    }
    .social-icons > span {
        font-size: 16px;
    }
    .social-icons a {
        font-size: 18px;
    }
    .video-banner-name h2{
        font-size: 24px;
    }
    .video-banner-name p{
        font-size: 16px;
        line-height: 26px;
    }

    body.gallery-photogallery .music-banner-text h2{
        font-size:32px;
    }
    body.gallery-photogallery .music-banner-text p{
        font-size: 16px;
        line-height: 26px;
    }

    /***** Single Gallery *****/
    .sm-title h2{
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 0;
    }
    .sm-section .discography_description p{
        font-size: 14px;
        line-height: 26px;
    }
    body.gallery-single-gallery #discography-text {
        margin-top: 50px;
    }
    .sm-title {
        margin-bottom: 50px;
    }

    /****** Blog Grid ****/
    .grid li:nth-of-type(2) .blog-grid-image,
    .grid li:nth-of-type(4) .blog-grid-image,
    .grid li:nth-of-type(5) .blog-grid-image,
    .grid li:nth-of-type(6) .blog-grid-image,
    .grid li:nth-of-type(7) .blog-grid-image,
    .grid li:nth-of-type(10) .blog-grid-image {
        height: 280px;
    }
    .grid li:nth-of-type(3) .blog-grid-image,
    .grid li:nth-of-type(8) .blog-grid-image,
    .grid li:nth-of-type(9) .blog-grid-image{
        height: 470px;
    }
    .grid-gallery figcaption h3{
        font-size: 24px;
        line-height: 26px;
    }
    .grid-gallery figcaption p{
        font-size: 14px;
        line-height: 26px;
    }
    .grid-gallery figcaption .post-publish-date{
        font-size: 14px;
    }
    .grid figcaption{
        padding: 25px;
    }

    /***** Blog Single Post *****/
    .blog-search form{
        height: 45px;
    }
    .blog-search form button{
        width: 20%;
    }
    .blog-search form input{
        width: 80%;
    }
    p.post-quote{
        font-size: 18px;
    }
    .post-category,.post-by *{
        font-size: 12px;
    }
    .post-heading h2{
        font-size: 32px;
        line-height: 26px;
    }
    .post-text p{
        font-size: 14px;
        line-height: 26px;
        margin: 40px auto 0;
    }
    .post-share span{
        font-size: 14px;
    }
    .post-share a{
        font-size: 16px;
    }
    .author-name-date p:nth-of-type(2){
        font-size: 14px;
    }
    .author-name-date p:nth-of-type(1){
        font-size: 16px;
        line-height: 26px;
    }
    .author-info em{
        font-size: 14px;
    }
    .author-description p{
        font-size: 14px;
        line-height: 26px;
    }
    .reply{
        font-size: 16px;
    }
    #blog-post .form h2{
        font-size: 18px;
    }
    .blog-categories h2, .blog-recent-post h2{
        font-size: 18px;
        line-height: 26px;
    }
    .categories-line{
        font-size: 12px;
        line-height: 26px;
    }
    .recent-post-name h3{
        font-size: 12px;
        line-height: 18px;
    }
    .recent-post-name span {
        font-size: 10px;
    }
    /**** Blog Standard ****/
    .standard-post-item {
        margin-bottom: 77px;
    }
    .post-cta a{
        font-size: 12px;
        padding: 24px 13px 24px 20px;
    }

    /**** Contact us *****/
    .contact-info {
        width: 70%;
    }
    .contact-info h2{
        font-size:32px;
        margin-bottom: 40px;
    }
    .contact-info p{
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 0px;
    }
    .contact-adress{
        margin-bottom: 40px;
    }
    .contact-adress > a,
    .contact-adress > p{
        font-size: 14px;
        margin-bottom: 5px;
    }
    .contact-adress > a i,
    .contact-adress > p i {
        width: 23px;
        margin-right: 15px;
    }


    /***** Search Result *****/
    body.search-result .global-title h2{
        font-size: 30px;
        margin-top: 15px;
    }
    .t-shirt-description h2{
        font-size: 24px;
        line-height: 26px;
    }
    .t-shirt-description p{
        font-size: 16px;
        line-height: 26px;
    }

    /***** Shop *****/
    .results-text * {
        font-size: 16px;
        line-height: 26px;
    }
    .s-item-name h2{
        font-size: 16px;
        line-height: 26px;
    }
    .results {
        padding: 0px 15px 45px 15px;
    }
    .results-select .btn-primary{
        font-size: 16px;
    }
    .best-offer {
        width: 70px;
        height: 70px;
        top: -45px;
        left: 15px;
        padding-top: 20px;
    }
    .best-offer h4{
        font-size:13px;
        margin: 0px 20px auto auto;
    }
    .best-offer p{
        font-size:10px;
        margin: -3px auto auto 17px;
    }
    .best-offer hr{
        height: 2px;
        min-height: 2px;
        margin: 5px 16px auto auto;
    }
    .s-item{
        padding: 0px 15px;
    }
    .s-item-name{
        padding-top: 20px;
    }
    .s-item-name p{
        font-size: 16px;
    }
    .sale{
        font-size: 16px;
    }
    span.sale:after{
        bottom: 11px;
    }
    .sale sup:after{
        left: 2px;
        top: 8px;
    }

    /***** Checkout *****/
    .l-b *, .c-b *{
        font-size: 16px;
        line-height: 26px;
    }
    #checkout-list {
        padding-bottom: 40px;
    }
    #checkout-list form h3{
        font-size: 24px;
        line-height: 26px;
    }
    .payment-method .custom-radio > label span{
        font-size: 16px;
        line-height: 26px;
    }
    #checkout-list form .form-group label{
        font-size: 16px;
        margin-bottom: 5px;
    }
    #checkout-list form .form-group{
        margin-bottom: 10px;
    }
    #checkout-list form .form-group input ,
    .chosen-container-single .chosen-search, #checkout-list form .form-group .chosen-single{
        height: 40px;
    }
    #checkout-list form .form-group a.bfh-selectbox-toggle {
        height: 40px;
    }
    #checkout-list form .form-group .bfh-selectbox .bfh-selectbox-options ul li > a {
        font-size: 15px;
        padding: 3px 10px;
    }
    #checkout-list form .form-group a.bfh-selectbox-toggle span.bfh-selectbox-option {
        font-size: 15px;
        padding-top: 2px;
    }
    #checkout-list form .form-group .results-select .btn-primary,
    #checkout-list form .form-group .chosen-single{
        font-size: 16px;
        padding: 8px 20px 8px 20px;
    }
    #checkout-list form .form-group .results-select .dropdown-toggle::after,
    #checkout-list form .form-group .chosen-single:after{
        font-size: 18px;
        top: 22%;
    }
    #checkout-list form .form-group .chosen-single:after{
        right: 20px;
    }
    .chosen-search:after {
        top: 14px;
        right: 20px;
    }
    .chosen-container.chosen-with-drop .chosen-drop {
        -webkit-transform: translate3d(0px, -40px, 0px)!important;
        -moz-transform: translate3d(0px, -40px, 0px)!important;
        transform: translate3d(0px, -40px, 0px)!important;
    }
    .shipping-method .results-select .dropdown-menu.show{
        -webkit-transform: translate3d(0px, 41px, 0px)!important;
        -moz-transform: translate3d(0px, 41px, 0px)!important;
        transform: translate3d(0px, 41px, 0px)!important;
    }
    #checkout-list form .form-group .results-select > p{
        font-size: 16px;
        line-height: 26px;
        margin-top: 10px;
    }
    .payment-method {
        margin-top: 30px;
    }
    .payment-method .custom-radio {
        padding-left: 30px;
    }
    .payment-method .custom-radio label:before, .payment-method .custom-radio label:after{
        height: 20px;
        width: 20px;
        top: 3px;
    }
    .payment-method .custom-radio .custom-control-input:checked ~ .custom-control-label::after{
        width: 10px;
        height: 10px;
    }
    .payment-method .custom-radio .custom-control-input:checked ~ .custom-control-label::after{
        top: 8px;
        left: -25px;
    }
    .payment-method .custom-radio.other-payment .custom-control-input:checked ~ .custom-control-label::after {
        top: 5px;
    }
    .payment-method .custom-control.custom-radio.paypal .custom-control-input:checked ~ .custom-control-label::after{
        top: 22px;
    }
    .pay-text p{
        font-size: 14px;
        padding-top: 5px;
    }
    .payment-method .custom-radio label:before, .payment-method .custom-radio label:after{
        left: -30px;
    }
    .payment-method .custom-radio > p{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .create-password .checkbox label span{
        font-size: 16px;
        line-height: 26px;
    }
    .create-password .checkbox label input[type="checkbox"] + .label-text:before{
        width: 20px;
        height: 20px;
        border-radius: 3px;
        margin: -6px 5px 0 0;
    }
    .create-password {
        margin-top: 30px;
    }
    .create-password .form-group p{
        font-size: 16px;
    }
    .create-password .checkbox label input[type="checkbox"]:checked + .label-text:before{
        font-size: 16px;
        line-height: 17px;
    }
    .p-carts img {
        margin: 3px;
        width: 60px;
        object-fit: contain;
        -o-object-fit: contain;
    }
    .p-carts div{
        width: 60px;
    }
    .p-carts div img{
        width: 40px;
    }
    .p-services img{
        width:60px;
        object-fit: contain;
        -o-object-fit: contain;
    }
    #checkout-list table.table tr th, #checkout-list table.table tr td{
        padding: 10px;
        font-size: 13px;
    }
    #checkout-list table.table tr:first-child th{
        font-size: 14px;
    }
    #checkout-list table.table tbody tr:last-child th:first-child {
        font-size: 14px;
        padding-top: 14px;
    }
    #checkout-list table.table tbody tr:last-child th:last-child {
        font-size: 19px;
    }
    #checkout-list form button.btn-primary{
        font-size: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .l-f form p,.l-form > a{
        font-size: 16px;
        line-height: 26px;
    }
    .l-f form .create-password .checkbox label span{
        font-size: 16px;
        line-height: 26px;
    }
    #checkout-list form .form-group input, #checkout-list form .form-group textarea{
        font-size: 16px;
    }
    .what-is-paypal a{
        font-size: 15px;
    }
    /***** Single Product *****/

    .magnify > .magnify-lens{
        width: 150px;
        height: 150px;
    }
    .single-tab-content .tab-content {
        margin-top: 30px;
    }
    .first-tab-pane *{
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    .single-tab-content .post-author{
        margin-top: 40px;
    }
    .single-tab-content .author-description p{
        font-size: 14px;
        line-height: 23px;
    }
    .single-tab-content #blog-post .form {
        margin-top: 40px;
    }
    #single-product-section #blog-post .form h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }
    .comment-form-rating {
        margin-bottom: 25px;
    }
    .related-product-title h3{
        font-size: 24px;
    }
    #releated-products .s-item {
        margin-bottom: 50px;
    }
    body.single-product #releated-products {
        padding-top: 50px;
        margin-top: 50px;
    }
    .related-product-title {
        margin-bottom: 50px;
        padding: 0px 15px;
    }
    /***** Blog Mansory *****/
    .grid-item--width1,
    .grid-item--width3,
    .grid-item--width4 {
        height: 470px;
    }
    .grid-item--width2 {
        height: 940px;
    }
    .g_t{
        padding: 0px 15px;
    }
    .g_t h3{
        font-size: 24px;
        line-height: 26px;
        letter-spacing: 6px;
    }
    .g_t p{
        font-size: 16px;
        line-height: 26px;
    }
    .single-pr-name h3{
        font-size:32px;
        line-height: 26px;
    }
    .single-style *{
        font-size: 16px;
    }
    .single-text *{
        font-size: 16px;
        line-height: 26px;
    }
}
@media(max-width:1100px){
    /***** Single Events *****/
    .events_date p {
        margin-bottom: 10px;
    }
    .slider-info {
        height: 470px;
    }
    .events-info {
        width: 55%;
    }
    .event-tickets a {
        font-size: 16px;
    }
    .event-tickets a:first-child {
        margin-right: 10px;
        padding: 20px 30px 20px;
    }
    .event-tickets a:last-child{
        padding: 20px 20px;
    }
    .events-slider {
        width: 50%;
    }

    /****** Single gallery ****/
    #single-gallery .grid-item{
        height:250px;
    }
    #single-gallery .grid-item:nth-child(3),
    #single-gallery .grid-item:nth-child(6n+1){
        height:500px;
    }

    /****** Blog Grid ****/
    .grid li {
        padding: 0px 10px 20px 10px;
    }
    .grid li:nth-of-type(2) .blog-grid-image,
    .grid li:nth-of-type(4) .blog-grid-image,
    .grid li:nth-of-type(5) .blog-grid-image,
    .grid li:nth-of-type(6) .blog-grid-image,
    .grid li:nth-of-type(7) .blog-grid-image,
    .grid li:nth-of-type(10) .blog-grid-image {
        height: 250px;
    }
    .grid li:nth-of-type(3) .blog-grid-image,
    .grid li:nth-of-type(8) .blog-grid-image,
    .grid li:nth-of-type(9) .blog-grid-image{
        height: 400px;
    }

    /***** Blog Single Post *****/
    .featured-image {
        height: 330px;
        margin-bottom: 40px;
    }
    .blog-content > div.sitebar{
        padding-left: 30px;
    }
    .recent-post-image img, .recent-post-image{
        width: 60px;
        height: 60px;
    }
    .blog-search form{
        height: 40px;
    }
    .blog-search form input {
        width: 75%;
        padding-left: 10px;
    }
    .blog-search form button {
        width: 25%;
    }
    .blog-search form button i {
        font-size: 17px;
    }
    .blog-categories {
        margin-top: 30px;
    }
    p.post-quote:before,p.post-quote:after{
        width: 25px;
        height: 25px;
        top: -2px;
    }

    /***** Cart *****/
    .cart-item{
        padding: 15px 0px;
    }
    .product-price *{
        font-size: 18px;
    }
    .delete-product svg {
        width: 15px;
        height: 15px;
    }

    /***** Single Product *****/
    .single-price p {
        font-size: 24px;
    }
    .single-price .sale{
        font-size: 24px;
        margin-left: 20px;
    }
    .single-price span.sale:after {
        bottom: 13px;
    }
    .catd-button {
        margin-top: 7px;
    }
    .catd-button a {
        font-size: 13px;
        padding: 9px 30px 9px 50px;
    }
    .catd-button a img {
        left: 15px;
        top: 8px;
        width: 15px;
    }
    .single-button-count .plusminus{
        height: 40px;
    }
    .single-button-count .plusminus button {
        height: 40px;
    }
    .single-button-count .plusminus input[type="number"] {
        height: 40px;
    }
    .single-star ul li{
        margin-right: 5px;
    }
    .single-star ul i {
        font-size: 16px;
    }
    .single-button-count {
        margin-top: 15px;
    }
    .single-tab-content{
        margin-top: 50px;
    }
    .single-tab-content .nav-tabs .nav-link{
        padding: 0px 0px 7px;
    }
    .single-tab-content .nav-tabs .nav-item:last-child .nav-link{
        margin-left: 60px;
    }

    /***** Blog Mansory *****/
    .grid-item--width1,
    .grid-item--width3,
    .grid-item--width4 {
        height: 400px;
    }
    .grid-item--width2 {
        height: 800px;
    }
    .grid-item-img:after {
        width: 240px;
    }
    .see-more {
        margin-top: 74px;
        margin-bottom: 74px;
    }

    /***** Single Product *****/
    .name-title * {
        font-size: 16px;
    }
    .shop-view-cart .ad-to-card-button a{
        padding: 10px 20px;
    }

    /***** Shop *****/
    .ad-to-card-button a{
        padding: 12px 10px;
        font-size: 12px;
        border-radius: 6px;
    }
}
@media(max-width:1024px){
    #map{
        margin-bottom: 50px;
    }
    .social-icons, .single-video .social-icons,
    body.single-video .social-icons{
        margin-top: 20px!important;
        margin-bottom: 50px;
        padding-top: 20px;
    }
    body.single-video #discography-text {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}
@media(max-width:991px){

    /***** Checkout *****/
    #checkout-list .section > form > div{
        margin-top:30px;
    }
    .login-and-cupon {
        margin-bottom: 0;
    }
    /***** Single Product *****/
    .single-image {
        padding: 0;
    }
    .product-description {
        padding: 0;
        margin-top: 30px;
    }
    .single-tab-content{
        padding: 0;
        margin-top: 20px;
    }
}
@media(max-width:980px){
    .plyr .plyr__volume{
        max-width: 70px;
        margin-right: 27px;
    }
    .plyr__controls>button:last-of-type{
        right: 5%;
    }
    .plyr__controls>button:last-of-type:before {
        right: 285%;
    }
    /***** Shop *****/
    .results {
        padding: 0px 15px 60px 15px;
    }
    .s-item{
        margin-bottom: 40px;
    }
    .s-item-name {
        padding-top: 15px;
    }

    .results-select .btn-primary{
        padding: 7px 20px 8px 25px;
    }
    .results-select .dropdown-menu {
        -webkit-transform: translate3d(0px, 60px, 0px)!important;
        -moz-transform: translate3d(0px, 60px, 0px)!important;
        transform: translate3d(0px, 60px, 0px)!important;
    }
    .results-select .dropdown-menu.show {
        -webkit-transform: translate3d(0px, 40px, 0px)!important;
        -moz-transform: translate3d(0px, 40px, 0px)!important;
        transform: translate3d(0px, 40px, 0px)!important;
    }
    .results-select .dropdown-item a{
        font-size: 14px;
    }
    .results-select .dropdown-item{
        padding: 5px 20px;
    }
    .name p {
        font-size: 33px;
    }
    .name span:first-child {
        margin-right: 15px;
    }
    .ad-to-card-button a{
        margin: 0px 0px;
        padding: 12px 9px;
    }

    /***** Cart *****/
    .cart-item > div:nth-child(3),
    .cart-name > div:nth-child(3){
        padding-left:0px;
    }
}



@media(max-width:900px){
    .plyr--audio .plyr__controls{
        padding: 60px 25px 25px 18px;
    }
    .plyr .plyr__progress {
        margin-left: 50px;
    }
    .plyr .plyr__volume {
        max-width: 50px;
        margin-right: 20px;
    }
    .plyr__time+.plyr__time{
        margin-right: 15px;
    }
    .plyr__controls>button:last-of-type:before {
        right: 230%;
    }
    #discography-post .mp3 .plyr .plyr__volume {
        max-width: 50px;
    }
    #discography-post .sec_2_content{
        padding-right: 30px!important;
    }
    .play-pause {
        margin-right: 5px;
    }
    .playlist .music_line > span {
        font-size: 14px;
        line-height: 28px;
    }
    .name{
        padding-left: 10px;
    }
    .name p {
        font-size: 28px;
    }
    .day_num{
        width: 110px;
    }
    .buy a{
        font-size: 12px;
        letter-spacing: 1px;
    }
    .buy p {
        font-size: 16px;
    }
    .news_content h2 {
        font-size: 24px;
    }
    .news_content .day_num span{
        font-size: 24px;
    }
    .news_content .day_num div p{
        font-size: 12px;
    }
    .news_content .day_num div{
        line-height: 12px;
    }
    .news_content {
        padding-top: 20px;
        padding-bottom: 35px;
    }
    .n_c * {
        font-size: 14px;
        line-height: 22px;
    }
    .news .cta a{
        letter-spacing: 3px;
    }
    .folow ul li a{
        margin-right: 0px;
        width: 34px;
        height: 34px;
    }

    /******* Music Discography   **********/
    .title-image img{
        height: 100%;
        object-fit: contain;
        -o-object-fit: contain;
    }
    .global-title{
        height: 67px;
        top: 0;
        bottom: 0;
    }
    .global-title h1{
        font-size: 50px;
        margin-bottom: 0px;
    }
    .music-banner-text h2 {
        margin-bottom: 10px;
    }
    .music-banner-text p{
        font-size: 18px;
    }
    #discography-post .plyr__controls>button:last-of-type:before{
        right: 250%;
    }
    #discography-post .mp3 .plyr .plyr__progress{
        margin-left: 45px;
    }
    #discography-post .mp3 .plyr__controls > .plyr__time {
        left: 25px;
    }
    #discography-post .mp3 .plyr__time+.plyr__time {
        margin-left: 5px;
        margin-right: 20px;
    }
    #discography-post .mp3 .plyr--audio .plyr__controls {
        padding: 31px 20px 33px 2px;
    }
    #discography-post .mp3 .plyr__controls>button:last-of-type {
        top: 30px;
    }

    /***** Single Events *****/
    .events-slider{
        width: 100%;
    }
    .events-info{
        max-width:420px;
        float: none;
        width: 100%;
        left: 0;
    }
    .event-tickets {
        margin-top: 10px;
    }
    .events-slider .carousel-item img{
        width: 100%;
    }
    .event-tickets a:last-child{
        padding: 15px 20px;
    }
    .event-tickets a:first-child{
        padding: 15px 30px 15px;
    }

    /****** Videos *****/
    #videos .embed-responsive,
    #videos .video-img-banner{
        height: 140px;
    }

    #videos .youtube .play{
        width: 50px;
        height: 50px;
        margin-left: -26px;
        margin-top: -22px;
    }
    #videos .video-img-banner .play{
        width: 50px;
        height: 50px;
    }

    /****** Blog Grid ****/
    .grid li{
        width: 50%;
    }

    /***** Blog Single Post *****/
    .row.blog-content{
        display:block;
    }
    .blog-content > div.post-content,
    .blog-content > div.sitebar{
        max-width: 100%;
    }
    .blog-content > div.sitebar{
        padding-top: 50px;
        padding-left: 0px;
    }

    /**** Contact us *****/
    .contact-info {
        width: 100%;
    }
    .contact-info h2{
        width: 60%;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }

    .contact-adress{
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .contact-adress > a i,
    .contact-adress > p i{
        width: 20px;
        margin-right: 10px;
    }

    /***** Cart *****/
    .order-coupon {
        margin-top: 50px;
    }
    .enter-coupon, .order-button {
        max-width: 320px;
    }
    .coupon-form {
        margin-top: 20px;
    }
    .coupon-form form {
        height: 40px;
    }
    .coupon-form form button{
        font-size: 16px;
    }


    .cart-buttons{
        margin-top: 34px;
        margin-bottom: 15px;
    }
    .cart-buttons a{
        font-size: 14px;
        padding: 9.5px 25px;
    }
    .cart-buttons a:last-child{
        padding: 9.5px 35px;
    }

    /***** Search Result *****/
    .t-shirt-image {
        height: 380px;
    }
    .search-result #blog-post{
        margin-bottom: 50px;
    }
    /***** Blog Mansory *****/
    .grid-item--width1,
    .grid-item--width3,
    .grid-item--width4 {
        height: 350px;
    }
    .grid-item--width2 {
        height: 700px;
    }
    .g_t h3{
        margin-bottom: 10px;
    }
    .grid-item-img:after {
        width: 165px;
        height: 22px;
    }
    .blog-categories h2, .blog-recent-post h2{
        margin-bottom: 10px;
    }
    #standard-blog .blog-content {
        padding-bottom: 38px;
    }
}
@media(min-width:768px) and (max-width:900px){
    .news .cta a{
        letter-spacing: 1px;
        padding: 10px 9px;
        border-radius: 5px;
    }
    .n_c {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .news_content h2 {
        margin-bottom: 10px;
    }
    .news .cta{
        margin-top: 40px;
    }
}

@media (min-width:768px)  and (max-width:1024px){
    #header{
        top: 6px;
    }
    #album-release{
        top: 5px;
        z-index: 9;
    }
    .home #on-tour{
        top: 5px;
    }
    #gallery{
        position: relative;
        top: 4px;
    }
    #video{
        top: 3px;
        position: relative;
    }
    #news{
        top: 2px;
    }
    #testimonials{
        top: 2px;
        position: relative;
        z-index: 2;
    }
    #contact-us{
        top: 1px;
        z-index: 1;
    }

    /******** Photogallery *****/
    body.gallery-photogallery .music-banner > div{
        height: 101%;
    }
    body.gallery-photogallery .music-banner-image{
        top: -1px;
    }
}
@media(max-width: 767px) {
    #single-product-section #blog-post .form h2 {
        margin-bottom: 10px;
        font-size: 16px;
    }
    .comment-form-rating {
        margin-bottom: 20px;
    }
    #header .search-bar form input {
        height: 50px;
    }

    #header .search-bar form button i {
        font-size: 21px;
    }

    .header-title {
        bottom: 50%;
    }

    .header-title h1 {
        font-size: 25px;
    }

    .title {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .title h1 {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 3px;
    }

    .title p {
        font-size: 12px;
        line-height: 22px;
    }

    .j_c {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .music, .sec_2_content {
        -webkit-flex-basis: initial;
        -ms-flex-preferred-size: initial;
        flex-basis: initial;
        -webkit-box-flex: initial;
        -webkit-flex-grow: initial;
        -moz-box-flex: initial;
        -ms-flex-positive: initial;
        flex-grow: initial;
    }

    .sec_2_content {
        line-height: 22px;
        padding-right: 0px !important;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .sec_2_content *{
        font-size: 14px;
    }
    .music_date i {
        width: 15px;
    }
    .music {
        margin-bottom: 3px;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .mp3 > span {
        font-size: 14px;
    }
    .plyr--audio .plyr__controls {
        padding: 45px 25px 25px 18px;
    }
    .plyr__time {
        font-size: 14px;
    }
    .plyr__controls>button:last-of-type {
        right: 3%;
    }
    .plyr__controls>button:last-of-type{
        top: 46%;
    }
    .plyr .plyr__volume{
        margin-right: 23px;
    }
    .plyr__time + .plyr__time {
        margin-left: 30px;
        margin-right: 30px;
    }
    .plyr .plyr__volume{
        max-width: 85px;
    }
    .plyr__controls>button:last-of-type:before {
        right: 345%;
        top: 0px;
    }
    #discography-post .mp3 .plyr .plyr__volume{
        max-width: 70px;
    }
    #discography-post .mp3 .plyr__controls > .plyr__time {
        font-size: 14px!important;
    }
    .music_date p, .music_after p {
        font-size: 14px;
        line-height: 22px;
    }
    .shop_cta{
        font-size: 12px;
    }
    .cta {
        width: 100%;
        text-align: center;
    }

    .cta a, #gallery .cta a {
        font-size: 12px;
        padding: 19px 10px 20px;
    }

    #on-tour {
        padding-bottom: 50px;
    }

    #gallery .cta a {
        letter-spacing: 7px;
        padding: 20px 13px 20px 20px;
    }
    #gallery .title, #video .title, #news .title {
        padding-bottom: 50px;
    }

    #video {
        padding-bottom: 50px;
    }
    #news {
        padding-bottom: 15px;
    }
    #testimonials {
        padding-bottom: 50px;
    }
    #contact-us {
        padding-bottom: 50px;
    }
    .footer .day_num div {
        margin-right: 15px;
    }
    .j_c {
        padding-bottom: 50px;
    }
    #on-tour .section {
        width: 100%;
    }

    .row.ticket:after {
        height: 2px;
    }

    .row.ticket > div {
        padding: 40px 0px;
    }

    .row.ticket > div > div {
        display: block;
        margin: 0px;
    }

    a.ticket-link {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: auto;
        max-width: 100%;
        padding: 0;
    }

    .day {
        float: left;
    }

    .day_num {
        width: 120px;
    }

    .name {
        float: left;
        max-width: 85%;
        margin-bottom: 30px;
        padding-left: 20px;
    }

    .name p {
        font-size: 30px;
    }

    .name span:first-child {
        margin-right: 5px;
    }

    .name span:last-child {
        margin-left: 5px;
    }

    .buy {
        clear: both;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .buy a {
        display: initial;
        padding-left: 25px;
        padding-right: 25px;
    }

    #gallery {
        padding-bottom: 70px;
    }

    #gallery .row, #gallery .col {
        display: block;
        padding: 0px !important;
        margin: 0px !important;
        height: 100%;
        min-height: 100%;
        max-width: 100%;
    }

    #gallery .col {
        height: 300px;
    }

    .banner_1 {
        max-width: 100%;
        padding: 0;
    }

    .banner_2 {
        max-width: 100%;
        padding: 0;
    }

    #gallery .col.cta {
        height: auto;
        margin-top: 70px !important;

    }

    .news > div.row {
        display: block;
    }

    .news > div > div {
        max-width: 685px;
        width: 100%;
        margin: auto auto 35px;
    }

    .news_content h2 {
        font-size: 24px;
    }

    .news_content {
        padding-top: 100px;
        padding-bottom: 130px;
    }

    .news_content .day_num span {
        font-size: 22px;
    }

    .news_content .day_num div {
        line-height: 10px;
    }

    .news_content .day_num div p {
        font-size: 10px;
    }

    .news_content .day_num div p:first-child {
        margin-top: -1px;
    }

    .news_content .day_num div p:last-child {
        margin-top: 2px;
    }

    .news_content .day_num > p {
        font-size: 12px;
    }

    .n_c * {
        font-size:14px;
        line-height: 22px;
    }

    .news .cta a {
        letter-spacing: 7px;
    }

    .d-md-block {
        display: block !important;
    }

    .carousel_content {
        width: 80%;
    }
    .carousel_content * {
        font-size: 14px;
        line-height: 22px;
    }
    #footer .bg_image {
        background-position: 50%;
    }

    .footer {
        display: block;
    }

    .footer > div:first-child {
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .footer > div:first-child p{
        line-height: 22px;
    }
    .footer .day_num > a > p {
        line-height: 22px;
    }
    .info p {
        line-height: 22px;
    }
    .footer > div {
        max-width: 100%;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: auto;
    }

    .footer > div:last-child {
        padding-left: 0;
        width: 100%;
        margin-top: 40px;
        text-align: center;
    }
    .footer h2{
        text-align: center;
    }

    .popup_block {
        height: 50%;
    }

    #popup-container ul {
        bottom: 18%;
    }

    .form .btn-primary {
        padding: 10px 15px 11px;
        font-size: 12px;
        margin-top: 14px;
    }

    .form form textarea {
        height: 190px;
    }

    .form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        padding-top: 150px;
    }

    .form textarea::-moz-placeholder { /* Firefox 19+ */
        padding-top: 150px;
    }

    .form textarea:-ms-input-placeholder { /* IE 10+ */
        padding-top: 150px;
    }

    .form textarea:-moz-placeholder { /* Firefox 18- */
        padding-top: 150px;
    }

    /******* Music Discography   **********/
    .global-title{
        height: 53px;
    }
    .global-title h1 {
        font-size: 40px;
    }
    .music-banner-text h2{
        font-size: 24px;
        line-height: 30px;
    }
    .music-banner-text p {
        font-size: 16px;
        line-height: 22px;
    }
    #discography-post .sec_2_content {
        padding-right: 0px !important;
    }

    #discography-text {
        margin-top: 0px;
    }

    .discography_description * {
        font-size: 14px;
        line-height: 22px;
    }
    body.single-video #discography-text {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .social-icons {
        margin-top: 15px;
        margin-bottom: 30px;
        padding-top: 30px;
    }

    .social-icons a {
        font-size: 16px;
        margin-right: 10px;
    }
    .playlist-title {
        margin-bottom: 21px;
    }
    .playlist-title h2{
        font-size: 24px;
    }
    #discography-post {
        padding-top: 30px;
    }

    #discography-post .mp3 .plyr__time + .plyr__time {
        margin-right: 50px;
    }
    #discography-post .mp3 .plyr .plyr__progress {
        margin-left: 55px;
    }
    #discography-post .mp3 .plyr__controls > .plyr__time {
        left: 35px;
    }
    #discography-post .mp3 .plyr__controls>button:last-of-type {
        top: 31px;
    }
    .playlist {
        margin-top: 20px;
    }
    #discography-post .plyr__controls>button:last-of-type:before {
        right: 300%;
        top: 0px;
    }
    #discography-post .mp3 .plyr--audio .plyr__controls {
        padding: 31px 20px 33px 5px;
    }
    .play-pause{
        margin-right: 10px;
    }

    /***** Single Events *****/
    .events_date *{
        font-size: 18px;
    }
    .events_date p{
        line-height: 22px;
    }
    .events_date i {
        width: 18px;
        margin-right: 10px;
    }
    #text-and-video .row {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #text-and-video .row > div:first-child {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
        margin: 30px auto auto;
    }
    #text-and-video .social-icons{
        margin-top: 30px;
        padding-top: 20px;
    }
    .single-events-text p{
        font-size: 14px;
        line-height: 22px;
    }
    #text-and-video .row > div:last-child {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    #map{
        margin-bottom: 30px;
    }
    #map iframe {
        height: 300px;
    }

    #text-and-video {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .social-icons > span {
        font-size: 14px;
        margin-right: 10px;
    }
    /****** Videos *****/
    #videos .embed-responsive,
    #videos .video-img-banner{
        height: 200px;
    }
    .video-banner-name h2{
        font-size: 18px;
        margin-bottom: 0px;
    }
    .video-banner-name p{
        font-size: 14px;
        line-height: 22px;
    }

    #single-gallery .column {
        max-width: 100%;
        -webkit-box-flex: 100%;
        -webkit-flex: 100%;
        -moz-box-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
        padding: 0;
    }

    #single-gallery .column:nth-of-type(2) .gallery-image:nth-of-type(3) {
        width: 100%;
    }

    #single-gallery .gallery-image {
        height: 270px !important;
        padding-top: 1px !important;
    }

    .sm-title {
        margin-bottom: 20px;
    }

    body.gallery-single-gallery #discography-text {
        margin-top: 30px;
    }
    .sm-title h2 {
        font-size: 18px;
        line-height: 22px;
    }
    .sm-section .discography_description p {
        font-size: 14px;
        line-height: 22px;
    }
    .sm-section .social-icons{
        margin-bottom: 30px;
        padding-top: 30px;
    }

    /******** Photogallery *****/
    body.gallery-photogallery .music-banner-text h2{
        font-size:24px;
        line-height: 22px;
    }
    body.gallery-photogallery .music-banner-text p{
        font-size: 14px;
        line-height: 22px;
    }

    /***** Blog Single Post *****/
    .recent-post-name h3 {
        font-size: 12px;
        line-height: 14px;
    }
    .recent-post-name span {
        font-size: 10px;
    }
    #standard-blog .blog-content {
        padding-bottom: 20px;
    }
    .post-category, .post-by * {
        font-size: 12px;
    }
    .post-heading h2 {
        font-size: 24px;
        line-height: 22px;
        margin: 10px 0px;
    }
    .post-text p {
        font-size: 14px;
        line-height: 22px;
        margin-top: 30px;
    }
    .author-name-date p:nth-of-type(1){
        font-size: 14px;
        line-height: 22px;
    }
    .author-name-date p:nth-of-type(2) {
        font-size: 12px;
    }
    .author-info em {
        font-size: 12px;
    }
    .author-description p {
        font-size: 14px;
        line-height: 22px;
    }
    .reply {
        font-size: 14px;
    }
    #blog-post .form h2,.blog-categories h2, .blog-recent-post h2 {
        font-size: 16px;
        line-height: 22px;
    }
    .blog-categories h2, .blog-recent-post h2{
        margin-bottom: 10px;
    }
    .blog-recent-post {
        margin-top: 20px;
    }
    #blog-post .form h2{
        margin-bottom: 30px;
    }
    .blog-content {
        margin-bottom: 30px;
    }
    .post-share span{
        font-size: 12px;
    }
    .post-share a{
        font-size: 14px;
    }
    .post-cta a{
        letter-spacing: 7px;
        padding: 20px 13px 20px 20px;
    }
    .categories-line{
        font-size: 12px;
        line-height: 22px;
    }

    /***** Blog Grid *****/
    .grid-gallery figcaption h3{
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 5px;
    }
    .grid-gallery figcaption .post-publish-date{
        font-size: 12px;
    }
    .grid-gallery figcaption p {
        font-size: 14px;
        line-height: 22px;
        margin-top: 5px;
    }

    /***** Cart *****/
    .cart-name * {
        font-size: 14px;
        line-height: 22px;
    }
    .cart-description p {
        font-size: 14px;
        line-height: 22px;
    }
    .cart-item {
        position: relative;
        display: block;
        padding: 15px 0px 45px;
    }

    .cart-item > div {
        max-width: 100%;
        display: block;
        padding: 0;
    }

    .cart-image {
        width: 100px;
        height: 100px;
        margin: auto;
        float: none;
    }

    .cart-description {
        width: 100%;
        float: none;
        padding: 0;
        text-align: center;
        margin-top: 20px;
    }

    .cart-description a, .cart-description h2 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 5px;
    }

    .product-count {
        width: 100px;
        height: 35px;
        margin: 15px auto auto auto;
    }
    .plusminus input[type="number"] {
        font-size: 14px;
    }
    .delet-line {
        width: 15px;
        position: absolute;
        z-index: 9;
        top: 9px;
        bottom: auto;
        right: 0;
    }
    .delete-product{
        position: initial;
        width: 15px;
    }
    .product-total {
        position: static;
    }

    .total-name-line .product-price {
        position: static;
        text-align: right;
        width: 100%;
    }

    .enter-coupon, .order-button {
        float: none;
        max-width: 100%;
    }

    .order-coupon {
        position: relative;
        margin-top: 15px;
        padding-top: 45px;
    }

    .glob-price {
        position: absolute;
        top: 0;
        width: 100%;
    }

    .g-p * {
        font-size: 24px;
        line-height: 22px;
    }
    .o-t *{
        font-size: 18px;
        line-height: 22px;
    }
    .g_t h3{
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 4px;
    }
    .g_t p{
        font-size: 14px;
        line-height: 22px;
    }
    .c-t * {
        font-size: 14px;
        line-height: 22px;
    }
    .cart-buttons {
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .cart-buttons a {
        display: block;
        float: none !important;
        text-align: center;
    }

    .cart-buttons a:first-child {
        margin-bottom: 15px;
    }

    .coupon-form {
        margin-top: 15px;
    }

    .coupon-title{
        display:none;
    }
    .coupon-form form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        opacity: 1;
    }
    .coupon-form form input::-moz-placeholder { /* Firefox 19+ */
        opacity: 1;
    }
    .coupon-form form input:-ms-input-placeholder { /* IE 10+ */
        opacity: 1;
    }
    .coupon-form form input:-moz-placeholder { /* Firefox 18- */
        opacity: 1;
    }
    .cart-name > div {
        display: none;
    }

    .cart-name > div:first-child {
        display: block;
    }

    #cart-order {
        padding: 0px 0px 30px;
    }
    .prise-mobile,
    .total-mobile{
        display:inline-block;
        margin-right: 5px;
        color: #656565;
    }
    .price-name-line{
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50%;
    }
    .total-name-line{
        position: absolute;
        width: 50%;
        right: 0;
        bottom: 0;
    }
    .price-name-line .product-price{
        position: static;
        width:100%;
        text-align: left;
    }
    .product-price * {
        font-size: 14px;
    }
    .l-b *, .c-b *{
        font-size: 14px;
        line-height: 22px;
    }
    .l-f form p, .l-form > a {
        font-size: 14px;
        line-height: 22px;
    }
    .l-f form .create-password .checkbox label span {
        font-size: 14px;
        line-height: 22px;
    }
    #checkout-list .l-f form button.btn-primary {
        font-size: 14px;
        padding-top: 7px;
    }
    #checkout-list .c-f form button.btn-primary{
        font-size: 14px;
        padding-top: 7px;
    }
    .contact-info h2{
        font-size:24px;
        margin-bottom: 30px;
    }
    .contact-info p{
        font-size:14px;
        line-height: 22px;
    }
    #checkout-list form .form-group label{
        font-size: 14px;
    }
    .contact-adress > a, .contact-adress > p{
        font-size:14px;
    }
    #checkout-list form .form-group input, #checkout-list form .form-group textarea{
        font-size: 14px;
    }
    #checkout-list form h3{
        font-size: 18px;
        line-height: 22px;
    }
    .create-password .checkbox label span {
        font-size: 14px;
        line-height: 22px;
    }
    #checkout-list form .form-group .results-select > p{
        font-size: 14px;
        line-height: 22px;
    }
    .payment-method .custom-radio > label span{
        font-size: 14px;
        line-height: 22px;
    }
    .what-is-paypal a{
        font-size: 14px;
    }
    #checkout-list form .form-group .results-select .btn-primary, #checkout-list form .form-group .chosen-single{
        font-size: 14px;
        padding: 9px 20px 8px 20px;
    }
    #checkout-list form .form-group .chosen-results li{
        font-size: 14px;
    }
    #checkout-list form button.btn-primary{
        font-size: 16px;
        padding-bottom: 8px;
    }
    /***** 404 Page ******/
    .page-404 .big-title img {
        width: 90%
    }

    .page-404 .big-title h2 {
        width:90%;
        letter-spacing: 8px;
    }

    .search-404 form {
        height: 50px;
    }

    .search-404 form input {
        padding-left: 15px;
    }

    /***** Search Result *****/
    body.search-result .blog-content {
        padding-top: 0px;
    }

    body.search-result .global-title h2 {
        font-size: 18px;
        margin-top: 5px;
    }

    .t-shirt-image {
        height: 300px;
    }

    .t-shirt-description {
        padding: 35px 5px 60px;
    }

    .t-shirt-description h2 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .t-shirt-description p {
        font-size: 14px;
        line-height: 22px;
    }

    .t-shirt-description .post-cta {
        margin-top: 50px;
    }

    /***** Shop *****/
    .results-text * {
        font-size: 14px;
        line-height: 22px;
    }
    .s-item-name h2 {
        font-size: 14px;
        line-height: 22px;
    }
    .results {
        padding: 0px 15px 30px 15px;
    }

    .results-select .btn-primary, .results-select .dropdown-menu {
        border-radius: 5px;
        font-size: 14px;
    }

    .s-item {
        margin-bottom: 40px;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -moz-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
     .s-item-name p {
        font-size: 14px;
    }
    .sale{
        font-size: 14px;
    }
    .sale sup:after {
        top: 7px;
    }
    span.sale:after {
        bottom: 8px;
    }
    /***** Single Gallry *****/
    #single-gallery .grid-item,
    #single-gallery .grid-sizer{
        width: 50%;
    }
    #single-gallery .grid-item:nth-child(9n+1){
        width:100%;
    }

    /***** Blog Mansory *****/
    .grid > div {
        width: 100%;
    }
    .grid > div.grid-item {
        height: 300px;
    }
    .grid > div .grid-item-img {
        width: 65%;
        height: 100%;
    }
    .grid > div .grid-item-content {
        width: 35%;
        height: 100%;
    }
    .grid > div:nth-child(odd) .grid-item-img {
        float: right;
    }
    .grid > div:nth-child(odd) .grid-item-content {
        float: left;
    }
    .grid > div:nth-child(odd) .grid-item-content:after {
        border-top: 15px solid transparent;
        border-left: 15px solid #fff;
        border-bottom: 15px solid transparent;
        border-right: none;
        top: 47.5%;
        right: -14px;
        left: auto
    }
    .grid > div:nth-child(odd):hover .grid-item-content:after {
        border-left-color: rgb(42, 196, 183);
    }
    .grid > div:nth-child(even) .grid-item-img {
        float: left;
    }
    .grid > div:nth-child(even) .grid-item-content {
        float: right;
    }
    .grid > div:nth-child(even) .grid-item-content:after {
        border-top: 15px solid transparent;
        border-right: 15px solid #fff;
        border-bottom: 15px solid transparent;
        border-left: none;
        top: 47.5%;
        left: -14px;
    }
    .grid > div:nth-child(even):hover .grid-item-content:after {
        border-right-color: rgb(42, 196, 183);
    }
    .grid-item--width2 .grid-item-img:after {
        top: 0;
        bottom: 0;
    }
    .see-more {
        margin-top: 66px;
        margin-bottom: 68px;
    }
    .see-more a{
        letter-spacing: 7px;
        padding: 20px 13px 20px 20px;
    }

    /**** Single Product *****/
    #single-product-section {
        padding-top: 0;
    }
    .shop-view-cart{
        display: block;
        text-align: center;
        margin-top: 0;
        /*        margin-bottom: 35px;*/
        padding: 0px;
    }
    .shop-view-cart .ad-to-card-button {
        margin-top: 20px;
    }
    .name-title * {
        font-size: 14px;
    }
    .shop-view-cart .ad-to-card-button a{
        font-size: 13px;
    }

    .single-pr-name h3{
        font-size:24px;
        line-height: 22px;
    }
    .single-price p {
        font-size: 18px;
    }
    .single-price .sale{
        font-size: 16px;
    }
    .single-style * {
        font-size: 14px;
    }
    .single-button-count .plusminus input[type="number"]{
        font-size: 18px;
    }
    .single-text * {
        font-size: 14px;
        line-height:22px;
    }
    .single-code *{
        font-size:14px;
    }
    .single-tab-content .nav-tabs .nav-link{
        font-size: 16px;
    }
    .first-tab-pane *{
        font-size: 14px;
        line-height:22px;
    }
    .related-product-title h3 {
        font-size: 18px;
    }
    body.single-video .social-icons{
        margin-top: 30px;
        margin-bottom: 30px;
        padding-top: 30px;
    }
}

@media(max-width: 736px) {
    .social-icons {
        padding-top: 30px;
    }
    .home .footer {
        padding-top: 30px;
        padding-bottom: 25px;
    }
    .footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    body.all-events #on-tour {
        padding-bottom: 30px;
    }
    body.single-video #discography-text {
        margin-top: 30px;
    }
    body.single-video .social-icons {
        margin-top: 30px;
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .sm-section .social-icons {
        margin-bottom: 30px;
    }
    .sm-section .social-icons {
        padding-top: 15px;
        text-align: left;
        margin-top: 15px!important;
    }
    .see-more {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    #blog-grid-gallery {
        padding-bottom: 20px;
    }
    .post-author {
        margin-top: 30px;
    }
    .post-share {
        margin-top: 30px;
    }
    .blog-content {
        margin-bottom: 20px;
    }
}

@media(max-width:575px){
    .header-continer{
        padding: 20px 0px;
    }
    .header_items > div{
        height: 20px;
        width: 17px;
    }
    .header_items svg{
        width: 17px;
    }
    .search_icon, .shop_icon {
        margin-right: 10px;
    }
    .header_items i {
        font-size: 18px;
    }
    .card_count{
        width: 15px;
        height: 15px;
        font-size: 8px;
        top: -3px;
        right: -2px;
    }
    .big-title{
        height: 140px;
    }
    .plyr__time + .plyr__time {
        margin-left: 15px;
        margin-right: 15px;
    }
    .plyr .plyr__volume {
        max-width: 82px;
    }
    .form .fild_1 > div:first-child {
        margin-bottom: 20px;
    }
    #header ul.nav > li > a {
        font-size: 20px;
        padding-left: 20px;
    }
    #header .nav > li {
        width: 120px;
    }
    #header .nav > li ul.child-item {
        left: 105px;
        padding: 10px 20px 10px 20px;
        top: 3%;
    }
    #header .nav > li ul.child-item:after {
        border-top-width: 8px;
        border-right-width: 15px;
        border-bottom-width: 8px;
        left: -15px;
    }
    #header .nav > li ul.child-item > li a {
        font-size: 18px;
        line-height: 26px;
    }
    .carousel_content:before,.carousel_content:after{
        width: 30px;
        height: 30px;
    }
    .row.ticket > div {
        padding: 25px 0px;
    }
    .day_num{
        width: 75px;
        line-height: 13px;
        height: 28px;
        border-right-width: 4px;
    }
    .day_num span {
        font-size: 33px;
    }
    .day_num div {
        margin-left: 3px;
        line-height: 16px;
    }
    .day_num div p {
        font-size: 14px;
    }
    .name{
        padding-left: 10px;
        padding-right: 0;
        margin-bottom: 30px;
    }
    .name p {
        font-size: 16px;
        line-height: 29px;
    }
    .buy a {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 12px;
    }
    .buy p {
        font-size: 15px;
    }

    /******* Music Discography   **********/
    #page-title{
        margin-top: 93px;
        margin-bottom: 50px;
    }
    .global-title {
        height: 32px;
    }
    .global-title h1{
        font-size: 24px;
    }
    #discography-post .mp3 .plyr__time + .plyr__time {
        margin-right: 25px;
    }
    #discography-post .mp3 .plyr__controls>button:last-of-type {
        top: 32px;
    }
    #discography-post .mp3 .plyr--audio .plyr__controls {
        padding: 31px 20px 33px 2px;
    }
    /********** All Events ******/
    body.all-events #on-tour{
        margin-top: 30px;
    }

    /***** Single Events *****/
    .events-info{
        max-width: 260px;
    }
    .event-tickets{
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .event-tickets a:first-child{
        margin-right: 0px;
    }
    .event-tickets a:last-child{
        margin-top: 10px;
    }
    .event-tickets a{
        font-size: 14px;
    }
    .events-slider .carousel-item img{
        -o-object-fit: cover;
        object-fit: cover;
    }

    #text-and-video .social-icons{
        margin-top: 30px;
    }
    #map .section,#events-banner .section{
        width: 100%;
    }

    /***** Single Gallry *****/
    #single-gallery .grid-item{
        height: 150px;
    }
    #single-gallery .grid-item:nth-child(3), #single-gallery .grid-item:nth-child(6n+1) {
        height: 300px;
    }
    /****** Blog Grid ****/
    .grid li{
        width: 100%;
    }
    .grid li:nth-of-type(3) .blog-grid-image,
    .grid li:nth-of-type(8) .blog-grid-image,
    .grid li:nth-of-type(9) .blog-grid-image{
        height: 250px;
    }

    /***** Blog Single Post *****/
    .featured-image{
        height: 200px;
        margin-bottom: 30px;
    }
    .post-text p{
        padding: 0;
    }
    p.post-quote{
        padding: 0 33px;
        margin: 30px auto;
    }
    .reply{
        margin-top: 10px;
        margin-bottom: 30px;
    }

    /**** Contact us *****/
    body.contact-us-page #contact-us {
        padding: 60px 0px 60px;
    }
    .contact-info h2{
        width:100%;
    }
    .contact-adress > a i,
    .contact-adress > p i{
        width: 17px;
    }

    /***** 404 Page ******/
    .page-404 .big-title{
        /*height: 165px;*/
    }
    .page-404 .big-title h2{
        top: 0;
        bottom: 0;
        font-size: 18px;
        letter-spacing: 2px;
    }
    .search-404 {
        bottom: 45%;
    }
    .search-404 form {
        height: 45px;
    }
    .search-404 form input{
        width: 70%;
        font-size: 14px;
    }
    .search-404 form button{
        width: 30%;
        font-size: 13px;
    }
    .content-404 {
        /*bottom: 25%;*/
    }
    .content-404 a {
        font-size: 21px;
    }

    /***** Search Result *****/
    .t-shirt-image {
        height: 230px;
    }
    .t-shirt-description {
        padding: 30px 15px 60px;
    }

    /***** Shop *****/
    .s-item{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -moz-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    /***** Checkout *****/
    .l-form,#checkout-list form .form-group .bfh-selectbox .bfh-selectbox-options,
    #checkout-list form .form-group input,
    #checkout-list form .form-group textarea,
    #checkout-list form .form-group a.bfh-selectbox-toggle,
    #checkout-list form .form-group .results-select .btn-primary,
    #checkout-list form .form-group .results-select .dropdown-menu,
    .payment-method .custom-radio.ubs label,
    .payment-cart-other-payment{
        border-radius: 3px;
    }
    #checkout-list form .form-group .chosen-single{
        border-radius: 3px;
    }
    #checkout-list table.table tr:first-child th:first-child {
        border-top-left-radius: 3px;
    }
    #checkout-list table.table tr:first-child th:last-child {
        border-top-right-radius: 3px;
    }
    #checkout-list table.table tbody tr:last-child th:first-child{
        border-bottom-left-radius: 3px;
    }
    #checkout-list table.table tbody tr:last-child th:last-child{
        border-bottom-right-radius: 3px;
    }
    #checkout-list form .form-group .chosen-results{
        height: 240px;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
    }
    #checkout-list{
        padding-top:0px;
    }
    .login-and-cupon {
        margin-bottom: 0px;
    }
    .login-and-cupon a.btn-primary{
        display: block;
        text-align: left;
    }
    .login-and-cupon .form-group{
        padding-right: 0;
    }
    #checkout-list .l-f form button.btn-primary,
    #checkout-list .c-f form button.btn-primary{
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }
    .l-form{
        padding: 20px 0px 20px 0px;
    }
    .l-f form .create-password .checkbox label{
        margin-left: 0;
    }
    /***** Blog Mansory *****/
    .grid > div .grid-item-img {
        width: 50%;
    }
    .grid > div .grid-item-content {
        width: 50%;
    }
}
@media (max-width:480px) {
    #video .embed-responsive {
        border-width: 10px;
        border-radius: 30px;
    }
    .plyr__controls button{
        padding: 5px;
    }
    .plyr__controls button svg {
        height: 13px;
    }
    .plyr__time {
        font-size: 11px!important;
    }
    .plyr__controls > .plyr__time {
        margin-top: 0px;
    }
    .plyr__controls > .plyr__time {
        left: 39px;
    }
    .plyr .plyr__progress {
        margin-left: 24px;
    }
    .plyr__time+.plyr__time {
        margin-left: 15px;
        margin-right: 15px;
    }
    .plyr .plyr__volume {
        max-width: 40px;
        margin-right: 18px;
    }
    .plyr__volume input[type=range]::-webkit-slider-thumb{
        height:13px;
        width:13px;
    }
    .plyr .plyr__volume input[type=range]{
        top: 4px;
    }
    .plyr__controls>button:last-of-type {
        right: 5%;
        top: 50%;
    }
    .plyr__controls>button:last-of-type:before {
        right: 225%;
        top: -2px;
        font-size: 16px;
    }
    .j_c .mp3_3 .plyr__controls>button:last-of-type{
        top: 48%;
    }
    .j_c .mp3_3 .plyr__controls>button:last-of-type:before{
        top: -1px;
    }
    .carousel_content{
        padding: 0px 20px;
    }
    .news_content h2 {
        font-size: 22px;
    }
    .news_content {
        padding-top: 60px;
        padding-bottom: 80px;
    }
    #discography-post .mp3 .plyr__time+.plyr__time {
        margin-right: 20px;
        margin-top: 0px;
    }
    #discography-post .plyr__controls>button:last-of-type {
        right: 1%;
    }
    #discography-post .mp3 .plyr .plyr__progress {
        margin-left: 50px;
    }
    #discography-post .plyr__controls>button:last-of-type:before {
        right: 280%;
        top: -2px;
    }
    #discography-post .mp3 .plyr__controls>button:last-of-type {
        top: 32px;
    }
    #discography-post .mp3 .plyr .plyr__volume {
        max-width: 55px;
        margin-top: 2px;
        margin-right: 8px;
    }
    #discography-post .mp3 .plyr--audio .plyr__controls {
        padding: 31px 25px 33px 1px;
    }

    .social-icons {
        padding-top: 30px;
    }

    /***** Shop *****/
    .results{
        text-align: center;
    }
    .results-text{
        float: none;
        margin-top: 0;
    }
    .results-select{
        float: none;
        margin-top: 15px;
    }
    .results .btn-group{
        width: 100%;
    }
    .results-select .btn-primary{
        width: 100%;
        text-align: left;
    }
    .results-select .dropdown-toggle::after{
        position: absolute;
        right: 20px;
        top: 17px;
    }
    #blog-grid-gallery {
        padding-bottom: 20px;
    }

    /***** Blog Mansory *****/
    .grid > div.grid-item {
        height: 600px;
    }
    .grid > div.grid-item > a{
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .grid > div .grid-item-img {
        width: 100%;
        height: 50%;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        float: none;
    }
    .grid > div .grid-item-content {
        width: 100%;
        height: 50%;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        float: none;
    }
    .grid > div .grid-item-content:after{
        top: -28px!important;
        left: 47.5%!important;
        border-left: 15px solid transparent!important;
        border-right: 15px solid transparent!important;
        border-bottom: 15px solid #fff!important;
    }
    .grid-item:hover .grid-item-content:after{
        border-bottom-color:rgb(42, 196, 183)!important;
    }

    .post-cta {
        margin-top: 50px;
    }
    .standard-post-item {
        margin-bottom: 50px;
    }
    .post-author {
        margin-top: 30px;
    }
    .post-share {
        margin-top: 15px;
    }
    .blog-content {
        margin-bottom: 20px;
    }
}
@media(max-width:400px){
    .playlist .music_line > span {
        font-size: 13px;
    }
}
@media(max-width:390px){
    /***** Checkout *****/
    .other-payment label{
        max-width: 175px;
    }
    .other-payment label img:first-child {
        margin: 0px 35px 5px;
    }

    /***** Single Product *****/
    #single-product-section {
        padding-top: 0px;
    }
    .single-pr-name h3 {
        font-size: 21px;
    }
    .single-price .sale {
        font-size: 18px;
        margin-left: 10px;
    }
    .single-price span.sale:after {
        bottom: 10px;
    }
    .single-style * {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .catd-button{
        float: none;
    }
    .single-button-count .plusminus{
        float: none;
        margin-top: 30px;
    }
    .single-text {
        margin-top: 10px;
    }
    .single-tab-content .nav-tabs .nav-link{
        font-size: 14px;
        padding: 0px 0px 5px;
        border-bottom: 3px solid transparent;
    }
    .single-tab-content .nav-tabs .nav-item {
        width:100%;
        margin-bottom: -2px;
    }
    .single-tab-content .nav-tabs .nav-item:last-child .nav-link {
        margin-left: 0px;
        padding-left: 0;
        padding-right: 0;
    }
    .first-tab-pane * {
        font-size: 14px;
        line-height: 21px;
    }
    .single-tab-content .author-description p {
        font-size: 14px;
        line-height: 21px;
    }
    body.single-product #releated-products{
        padding-top: 30px;
        margin-top: 30px;
        padding-bottom: 0;
    }
    .related-product-title {
        padding: 0;
        margin-bottom: 30px;
    }
    #releated-products .s-item {
        padding: 0;
    }
    .single-tab-content #blog-post{
        padding: 0;
    }
    #releated-products .s-item {
        margin-bottom: 24px;
    }

    /***** 404 Page ******/
    .page-404 .big-title h2{
        font-size: 14px;
    }
    .search-404 {
        bottom: 45%;
    }

    /***** Single Gallry *****/
    #single-gallery .grid-item,
    #single-gallery .grid-sizer {
        width: 100%;
    }
    #single-gallery .grid-item {
        height: 250px;
    }
    #single-gallery .grid-item:nth-child(3),
    #single-gallery .grid-item:nth-child(6n+1) {
        height: 250px;
    }
}
@media(max-width:380px){
    .header-title h1 {
        font-size: 20px;
    }
    body.search-result .global-title h2{
        font-size: 20px;
    }
}
@media(min-width:768px) and (max-height: 720px){

    /***** 404 Page *****/
    .search-404{
        bottom: 30%;
    }
    .content-404{
        bottom: 8%;
    }
}
@media(max-width:767px) and (max-height: 720px){

    /***** 404 Page *****/
    .search-404 {
        bottom: 42%;
    }
    .content-404 {
        bottom: 13%;
    }
}
@media(min-width:1025px) and (max-width:1366px){
    #page-title{
        margin-top: 110px;
    }
    .music-discography #page-title {
        margin-bottom: 55px;
    }
    #discography {
        margin-bottom: 55px;
    }
}
@media(min-width:1025px) and (max-width:1380px){
    .video-block{
        margin-top: 55px;
    }
    #videos {
        padding-bottom: 55px;
    }
}
@media(min-width:768px) and (max-width:1024px){
    body.contact-us-page #contact-us {
        padding: 50px 0px 50px;
    }
    #page-title{
        margin-top: 100px;
        margin-bottom: 50px;
    }
    .music-discography #page-title {
        margin-bottom: 50px;
    }
    #discography {
        margin-bottom: 50px;
    }
    .video-block{
        margin-top: 50px;
    }
    #videos {
        padding-bottom: 50px;
    }
}
@media(max-width:767px){
    #page-title {
        margin-top: 90px;
        margin-bottom: 30px;
    }
    .music-discography #page-title {
        margin-bottom: 30px;
    }
    #discography {
        margin-bottom: 30px;
    }
    .video-block{
        margin-top: 30px;
    }
    #videos {
        padding-bottom: 30px;
    }
    body.contact-us-page #contact-us {
        padding: 25px 0px 30px;
    }
    body.single-product #releated-products {
        padding-top: 30px;
        margin-top: 30px;
    }
    #releated-products .s-item {
        margin-bottom: 30px;
    }
    .related-product-title {
        margin-bottom: 30px;
    }
    .single-price p {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .search-result #blog-post {
        margin-bottom: 20px;
    }
    .featured-image{
        margin-bottom: 30px;
    }
    .post-cta {
        margin-top: 41px;
    }
    .standard-post-item {
        margin-bottom: 48px;
    }
}
@media(max-width:575px){
    #page-title {
        margin-top: 77px;
    }
    .popup_block {
        height: 35%;
    }
    #popup-container ul {
        bottom: 29%;
    }
    .footer .day_num div {
        margin-left: 5px;
    }
}
@media(max-height: 565px){
    #header .nav{
        height: 230px;
        display: block;
        top: 50px;
        overflow-y: scroll;
    }
    .header-title {
        bottom: 35%;
    }
    .big-title{
        height: 100px;
    }
    .n_c *{
        text-align: center;
    }
    .popup_block{
        height: 60%;
        top: 19%;
    }
    #popup-container ul {
        bottom: 4%;
    }
}

@media(max-height: 520px){
    /***** 404 Page *****/
    .search-404 {
        bottom: 42%;
    }
    .content-404 {
        bottom: 13%;
    }
    .page-404 .big-title {
        height: 80px;
        bottom: 65%;
    }
    .page-404 .big-title img{
        max-width: 200px;
    }
    .page-404 .big-title h2 {
        font-size: 13px;
        max-width: 350px;
        bottom: 0;
        letter-spacing: 8px;
    }
    .search-404 {
        bottom: 48%;
    }
    .search-404 form {
        height: 35px;
    }
    .search-404 form input,.search-404 form button{
        font-size: 14px;
    }
    .content-404 h2 {
        font-size: 26px;
        margin-bottom: 0;
    }
    .content-404 p {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .content-404 a {
        font-size: 18px;
    }
}
@media(max-width:420px){
    #page-title {
        margin-top: 75px;
    }
}
@media(max-width:380px){
    #page-title {
        margin-top: 70px;
    }
}

/*--------------------*/
/* FOR MOZILA FIREFOX */
/*--------------------*/

body.firefox .events-info{
    display: table;
    top: 130px;
}
body.gallery-photogallery.firefox .music-banner-text{
    display: table;
    position: relative;
}
body.page-404.firefox .big-title{
    display: table;
    top: 20%;
}
body.page-404.firefox .big-title h2{
    display: table;
    top: 63%;
}
@media(max-width: 1380px){
    body.firefox .events-info{
        top: 110px;
    }
}
@media(max-width: 1180px){
    body.firefox .events-info{
        top: 120px;
    }
}
@media(max-width: 1100px){
    body.firefox .events-info{
        top: 100px;
    }
}
@media(max-width: 900px){
    body.firefox .events-info{
        top: 120px;
    }
}
@media(max-width: 570px){
    body.firefox .events-info{
        top: 90px;
    }
}
@media(max-height: 670px){
    body.firefox #header .nav {
        height: 230px;
        display: block;
        top: 50px;
        overflow-y: scroll;
    }
}


/*--------------------*/
/* FOR INTERNET EXPLORER */
/*--------------------*/
body.net .compat-object-fit img{
    display:none!important;
}
body.net .header-title h1{
    font-weight: 600;
}
body.net .global-title h1{
    font-weight: 600;
}
body.net .title p{
    font-weight: 400;
}
body.net .name p{
    font-weight: 200;
}
body.net .footer h2{
    font-weight: 600;
}
body.net .video-banner-name p{
    font-weight: 200;
}
body.net .post-heading h2{
    font-weight: 600;
}
body.net .recent-post-name{
    display: table;
}
body.net .single-price p{
    font-weight: 200;
}
body.net #blog-post .form h2{
    font-weight: 200;
}
body.net .coupon-form form{
    border:1px solid #2ac4b7;
    border-radius: 5px;
}
body.net .coupon-form form input:focus{
    border: none;
}
body.search-result.net .global-title h2{
    font-weight: 600;
}
body.net .t-shirt-description h2{
    font-weight: 600;
}
body.net #header .search-bar form button{
    margin-top: -15px!important;
}
body.net a.popup-image img{
    width:auto;
}
body.net .global-title h1{
    font-weight:600;
}
body.net .header-title h1{
    font-weight:600;
}
body.net .title p{
    font-weight:400;
}
body.net .name p{
    font-weight:200;
}
body.net .music-banner-text h2{
    font-weight:400;
}
body.net .playlist-title h2{
    font-weight:400;
}
body.net #header .nav{
    height: 605px;
}
body.net .news .col{
    flex-basis: inherit;
}
body.net #footer .col{
    flex-basis: inherit;
}
.compat-object-fit{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.compat-object-fit img{
    display:none
}
body.net .events-info{
    top: 130px;
}
body.gallery-photogallery.net .music-banner > div{
    display: table;
}

.net .content-404{
    max-width:100%;
}
.page-404.net .big-title h2{
    top:76%;
    bottom:auto;
    left:31.8%;
    right:auto;
}
body.net .plyr__controls > .plyr__time{
    margin-top: -9px;
}
body.net .plyr__time + .plyr__time{
    position: absolute;
    right: 20%;
    width: 50px;
    left:auto;
}
body.net .plyr .plyr__volume{
    right:-20%;

}

body.net #discography-post .mp3 .plyr__controls > .plyr__time{
    margin-top: -9px!important;
}
body.net #discography-post .mp3 .plyr__time + .plyr__time{
    position: absolute;
    right: 20%;
    width: 50px;
    left:auto!important;
}
body.net #discography-post .mp3 .plyr .plyr__volume{
    right:-15%;

}
body.net #header .nav-menu.nav-demo-2 .nav{
    top:0;
}
body.home-demo-2.net .header-continer.active{
    padding-bottom: 30px;
}
body.home-demo-2.net #header .header-continer.active .nav-menu.nav-demo-2 .nav > li ul.child-item{
    top:59px;
}
body.net .plyr .plyr__volume input[type=range]{
    top:-1px;
}
body.net .plyr__progress input[type=range]{
    margin-top:0px;
}
body.net #discography-post .plyr .plyr__volume input[type=range]{
    top:-1px;
}
body.net .footer h2{
    font-weight: 600;
}
body.net .coupon-form form input{
    border-width: 1px;
}
body.net #header .nav > li ul.child-item{
    width:250px;
}
@media(max-width: 1380px){
    body.net #header .nav{
        height: 405px;
    }
    body.net .events-info{
        top: 110px;
    }
}
@media(max-width: 1180px){
    body.net .events-info{
        top: 120px;
    }
}
@media(max-width: 1100px){
    body.net .events-info{
        top: 100px;
    }
}
@media(max-width: 900px){
    body.net .events-info{
        top: 120px;
    }
}
@media(max-width: 570px){
    body.net .events-info{
        top: 90px;
    }
}
@media(max-height: 670px){
    body.net #header .nav {
        height: 230px;
        display: block;
        top: 50px;
        overflow-y: scroll;
    }
}


























