/*--------------------*/
/* BASIC TYPOGRAPHY */
/*--------------------*/
@font-face {
    font-family: 'Montserrat Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Regular'), url('../fonts/Montserrat-Regular.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Italic'), url('../fonts/Montserrat-Italic.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat Thin';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Thin'), url('../fonts/Montserrat-Thin.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat Thin Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Thin Italic'), url('../fonts/Montserrat-ThinItalic.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat ExtraLight';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat ExtraLight'), url('../fonts/Montserrat-ExtraLight.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat ExtraLight Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat ExtraLight Italic'), url('../fonts/Montserrat-ExtraLightItalic.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat Light';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Light'), url('../fonts/Montserrat-Light.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat Light Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Light Italic'), url('../fonts/Montserrat-LightItalic.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Medium'), url('../fonts/Montserrat-Medium.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat Medium Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Medium Italic'), url('../fonts/Montserrat-MediumItalic.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat SemiBold';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat SemiBold'), url('../fonts/Montserrat-SemiBold.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat SemiBold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat SemiBold Italic'), url('../fonts/Montserrat-SemiBoldItalic.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Bold'), url('../fonts/Montserrat-Bold.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Bold Italic'), url('../fonts/Montserrat-BoldItalic.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat ExtraBold';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat ExtraBold'), url('../fonts/Montserrat-ExtraBold.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat ExtraBold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat ExtraBold Italic'), url('../fonts/Montserrat-ExtraBoldItalic.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat Black';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Black'), url('../fonts/Montserrat-Black.woff') format('woff');
}


@font-face {
    font-family: 'Montserrat Black Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Black Italic'), url('../fonts/Montserrat-BlackItalic.woff') format('woff');
}

/***** Preloader *****/
#preloader {
    width: 100%;
    height: 100%;
    background-color: rgb(29, 29, 29);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

body,
html {
    padding: 0px;
    margin: 0px;
}

body {
    font-family: 'Montserrat Regular', 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: 1200px;
    width: 90%;
    margin: auto;
    float: none;
}

.title {
    text-align: center;
    padding-top: 105px;
    padding-bottom: 105px;
}

.title h1 {
    font-family: Montserrat Regular;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0px;
    color: #2ac4b7;
    margin-bottom: 10px;
    line-height: 40px;
}

.title p {
    font-family: 'Montserrat Regular', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 8px;
    color: #ffffff;
    margin-bottom: 0px;
}
.category-title {
    color: #2ac4b7;
    margin-bottom: 30px;
}
.category-section{
	 margin-bottom: 50px;
}
/*--------------------*/
/* 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: 'Montserrat Regular';
    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 a {
    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: 0;
    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: 'Montserrat Regular';
    color: #888;
    font-size: 20px;
}

#header .search-bar form input::-moz-placeholder {
    /* Firefox 19+ */
    font-family: 'Montserrat Regular';
    color: #888;
    font-size: 20px;
}

#header .search-bar form input:-ms-input-placeholder {
    /* IE 10+ */
    font-family: 'Montserrat Regular';
    color: #888;
    font-size: 20px;
}

#header .search-bar form input:-moz-placeholder {
    /* Firefox 18- */
    font-family: 'Montserrat Regular';
    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;
    background: #111;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

.header-continer.active {
    background-color: #111;
    padding: 10px 0 !important;
}

.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;
}

.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 {
    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: 'Montserrat Regular', 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 */
/*--------------------*/

/*--------------------*/
/* NEW ALBUM RELEASE */
/*--------------------*/

#album-release {
    position: relative;
    background-image: -webkit-linear-gradient(bottom, #222, #000);
    background-image: -moz-linear-gradient(bottom, #222, #000);
    background-image: -o-linear-gradient(bottom, #222, #000);
    background-image: linear-gradient(0deg, #222, #000);
    overflow: hidden;
    padding-bottom: 97px;
}

.section_bg_image {
    position: absolute;
    z-index: 7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

.sec_2_content {
    font-family: 'Montserrat Regular';
    line-height: 30px;
}

.sec_2_content * {
    font-size: 16px;
    line-height: 30px;
    color: #999;
    margin-bottom: 0;
}

.sec_2_content .cta a {
    letter-spacing: 1px;
}

#album-release .col {
    min-height: auto;
    padding: 0;
}

#album-release .buy {
    margin-top: 49px;
}

#album-release .section>.row {
    margin: 0;
}

.disc_cover img {
    width: 58%;
    top: -5%;
}

.disc {
    position: relative;
    left: 15px;
    z-index: 99;
    border: 10px solid #ddd;
}

.cd {
    position: absolute;
    left: 37%;
    top: 2% !important;
    width: 53% !important;
    z-index: 9;
    -webkit-animation: spin 15s linear infinite;
    -moz-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite;
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.cta {
    margin-top: 30px;
}

.cta a {
    font-family: 'Montserrat Regular';
    font-size: 12px;
    color: #fff;
    padding: 15px 10px;
    border: 1px solid #fff;
    border-radius: 0;
    -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;
    color: #fff;
}

#album-release .cta {
    margin-top: 58px;
}

#album-release .cta a {
    color: #fff;
    border-color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#album-release .cta a:hover {
    border-color: #2ac4b7;
    color: #fff;
}

.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: 60px;
}

.j_c .mp3_1 .plyr__controls {
    border-radius: 0;
}

.j_c .mp3_3 .plyr__controls {
    border-radius: 0;
}

/*--------------------*/
/* NEW ALBUM RELEASE 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: 'Montserrat Regular';
    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: 'Montserrat Regular';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
}

.form input::-moz-placeholder {
    /* Firefox 19+ */
    font-family: 'Montserrat Regular';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
}

.form input:-ms-input-placeholder {
    /* IE 10+ */
    font-family: 'Montserrat Regular';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
}

.form input:-moz-placeholder {
    /* Firefox 18- */
    font-family: 'Montserrat Regular';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
}

.form textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-family: 'Montserrat Regular';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
    padding-top: 245px;
}

.form textarea::-moz-placeholder {
    /* Firefox 19+ */
    font-family: 'Montserrat Regular';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
    padding-top: 245px;
}

.form textarea:-ms-input-placeholder {
    /* IE 10+ */
    font-family: 'Montserrat Regular';
    color: #888;
    font-size: 14px;
    text-transform: capitalize;
    padding-top: 245px;
}

.form textarea:-moz-placeholder {
    /* Firefox 18- */
    font-family: 'Montserrat Regular';
    color: #363636;
    font-size: 14px;
    text-transform: capitalize;
    padding-top: 245px;
}

/*--------------------*/
/* CONTACT US END */
/*--------------------*/

/*--------------------*/
/* FOOTER */
/*--------------------*/
#footer {
    position: relative;
    margin: 0;
    z-index: 11;
    background: #111;
}

#footer a {
    color: #fff;
}

.folow {
    text-align: center;
    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: #222;
    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;
}

.copyright {
    text-align: center;
    padding: 25px 0px;
}

.copyright * {
    font-family: 'Montserrat Regular';
    font-size: 12px;
    color: #a4a4a4;
}

#footer .col {
    padding: 0;
}

/*--------------------*/
/* FOOTER 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: 'Montserrat Regular';
    font-size: 85px;
    color: #2ac4b7;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
}
.single-albums .global-title h1 {
    font-size: 65px;
    letter-spacing: 0px;
}

#discography {
    padding: 70px 0;
    background: #010101;
}
#discography .content-info{
    width:100%;
	margin-bottom:100px
}
.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: #111
}

.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: 'Montserrat Regular';
    font-weight: 400;
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.music-banner-text p {
    font-family: 'Montserrat Regular';
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 0;
    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 {
    padding: 70px 0;
    background: #010101;
}

#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: 70px 0 0;
    background: #010101;
}

#discography-post .section>.row {
    margin: 0;
}

#discography-post .col {
    padding: 0;
}

#discography-post .mp3 {
    border-bottom: 5px solid rgba(24, 24, 24, 0.7803921568627451);
}

#discography-post .mp3 .plyr--audio .plyr__controls {
    position: relative;
    padding: 20px 55px 20px 18px;
}

#discography-post .mp3 .plyr__controls>button:last-of-type {
    top: 20px;
    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: 0;
}

#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: 0;
}

.cover-image {
    padding: 10px 0px 20px;
    margin-bottom: 40px;
    /*    background-color: #fff;
*/
}

.cover-image img {
    margin: 0;
    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: 0;
}

body.firefox .plyr .plyr__volume input[type=range] {
    top: 0;
}

.music_line .plyr--audio .plyr__controls {
    padding: 0;
}

.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: 16px;
    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: 'Montserrat Regular';
    font-size: 34px;
    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: 0;
}

.music_date {
    margin-bottom: 0 !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: 16px;
    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: 'Montserrat Regular';
    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: 10px;
    color: #fff;
    border: 1px solid #2ac4b7;
    margin: 0;
    padding-top: 1px;
    border-radius: 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;
    margin-right: 15px;
    margin-bottom: 15px !important;
    letter-spacing: 1px;
    padding: 10px;
    text-transform: uppercase;
}

.shop_cta:hover {
    background-color: rgb(42, 196, 183);
    color: #fff;
}

.discography_description p {
    margin-bottom: 0;
}

.discography_description * {
    font-size: 16px;
    line-height: 30px;
    color: #888;
}

#discography-text {
    padding-bottom: 70px;
    background: #010101;
}

.social-icons {
    padding-top: 30px;
    border-top: 1px solid #272727;
    margin-bottom: 70px;
    margin-top: 30px;
}

.social-icons>span {
    font-family: 'Montserrat Regular';
    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 */
/* =================================================  */
#image-gallery .plyr.plyr--audio.plyr--stopped.plyr--ready{
    display:none;
}

.pgc-sgb-cb .plyr.plyr--audio.plyr--stopped.plyr--ready{
    display:none;
}
/* =================================================  */
/* VIDEOS */
/* =================================================  */
.videos #page-title {
    margin-bottom: 0;
}

#videos {
    padding: 70px 0;
    background: #010101;
}

#videos .embed-responsive {
    height: 290px;
    background-color: #111
}

#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: 'Montserrat Regular';
}

.video-banner-name h2 {
    font-family: "Montserrat Regular";
    font-weight: 400;
    color: #fff;
    font-size: 26px;
    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: 16px;
    line-height: 30px;
    font-weight: 300;
}

.video-block {
    margin-top: 70px;
}

/* =================================================  */
/* VIDEOS END */
/* =================================================  */


/* =================================================  */
/* SINGLE VIDEOS */
/* =================================================  */

body.single-video #discography-text {
    padding-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 */
/* =================================================  */

/* =================================================  */
/* archive GALLERY */
/* =================================================  */
#archive-gallery {
    padding: 70px 0;
    background: #010101;
}

#archive-gallery .grid-item {
    height: 400px;
    width: 33.3333%;

}

#archive-gallery .grid-item:nth-child(3),
#archive-gallery .grid-item:nth-child(6n+1) {
    height: 800px;
}

#archive-gallery .grid-item:nth-child(9n+1) {
    width: 66.6666%;
}

#archive-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: 'Montserrat Regular';
    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 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: 0px;
}

.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 */
/* =================================================  */
/*page*/
.page.type-page {
    background: rgb(28, 28, 28);
    padding: 70px 0px 70px;
    position: relative;
    background-position: center;
}

.page.type-page .overly {
    background-color: rgba(19, 19, 19, .50);
    bottom: 0;
}

.content-info {
    width: 80%;
    margin: 0 auto;
}

.content-info ul,
.about-me-content ul {
    padding: 20px 0 20px 50px;
    list-style: circle;
    color: #eee;
    font-size: small;
}

.content-info ul li,
.about-me-content ul li {
    margin-bottom: 10px
}

.content-info h2 {
    font-family: 'Montserrat Regular';
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 40px;
}

.content-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 */
/* =================================================  */

/* =================================================  */
/* 404 PAGE */
/* =================================================  */

.page-404 #header-404 .bg_image {
    background-position: 50% 100%;
}

.section-404 {
    display: table;
    width: 90%;
    height: 100%;
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.page-404 #header-404 .overly {
    background-color: rgba(0, 0, 0, 0.3);
}

.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: 97px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 15px;
    padding: 0px 10px 0px 30px;
}

body.page-404.firefox .big-title h2 {
    display: table;
    top: 10%;
}

.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-radius: 0;
    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-radius: 0;
    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;
}

body.page-404.firefox .content-404 {
    bottom: auto;
    top: 74%;
}

/* =================================================  */
/* 404 PAGE END  */
/* =================================================  */

/* =================================================  */
/* SEARCH RESULT  */
/* =================================================  */

body.search-result .global-title h2 {
    font-family: 'Montserrat Regular';
    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: 'Montserrat Regular';
    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 */
/* =================================================  */

/* =================================================  */
/* HOME */
/* =================================================  */
body.home {
    background-color: #111
}

.home .menu_icon {
    display: none;
}

.nav-mobile {
    display: none;
}

#header .nav-menu.nav-prime {
    display: block;
    position: inherit;
    padding: 0;
    background-color: transparent;
    transform: none;
    height: auto;
    margin-top: 7px;
}

#header .nav-menu.nav-prime .nav {
    display: block;
    position: initial;
    height: auto;
    overflow: initial;
    text-align: center;
}

#header .nav-menu.nav-prime .nav>li {
    width: auto;
    border-left: none;
    display: inline-block;
}

#header .nav-menu.nav-prime .nav>li>a {
    padding-left: 14px;
    padding-top: 0;
    padding-bottom: 0px;
    font-size: 14px;
    text-transform: uppercase;
}

#header .nav-menu.nav-prime .nav>li ul.child-item {
    width: auto;
    text-align: left;
    left: 14px;
    top: 30px;
    padding: 15px 40px 15px 15px;
    display: block;
    background-color: rgba(0, 0, 0, 0.6588235294117647);
    visibility: hidden;
    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;
    -webkit-transform: translate3d(0px, 20px, 0px) !important;
    -moz-transform: translate3d(0px, 20px, 0px) !important;
    transform: translate3d(0px, 20px, 0px) !important;
}

#header .nav-menu.nav-prime .nav>li ul.child-item:after {
    content: none;
}

#header .nav-menu.nav-prime .nav>li:hover ul.child-item {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    -moz-transform: translate3d(0px, 0px, 0px) !important;
    transform: translate3d(0px, 0px, 0px) !important;
}

.home .header-continer.active {
    padding-bottom: 0;
}

#header .header-continer.active .nav-menu.nav-prime .nav>li>a {
    padding-bottom: 38px;
}

#header .header-continer.active .nav-menu.nav-prime .nav>li ul.child-item {
    top: 68px;
    background-color: #111
}

#header .nav-menu.nav-prime .nav>li ul.child-item>li a {
    display: block;
    color: #fff;
    white-space: nowrap;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
}

#header .nav-menu.nav-prime .nav>li ul.child-item>li a:hover {
    color: rgb(42, 196, 183);
}

.home #header .bg_image {
    -webkit-filter: none;
    filter: none;
}

.home #header .overly {
    background-image: -webkit-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-image: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.home #header .overly {
    background-color: rgba(0, 0, 0, 0);
}

.home .header_items {
    margin-top: 10px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

#my-music {
    position: relative;
    background-color: #222;
    padding-bottom: 145px;
}

#my-music .music-banner {
    padding: 0px;
}

#my-music>div.section>div.row {
    -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-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.music-banner-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 36%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 36%;
    flex: 0 0 36%;
    max-width: 36%;
}

.music-banner-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 32%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    max-width: 32%;
}

.music-banner-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 29%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 29%;
    flex: 0 0 29%;
    max-width: 29%;
}

#about-me {
    position: relative;
    padding-bottom: 105px;
    background-color: rgb(28, 28, 28);
}

#about-me .section_bg_image {
    background-size: cover;
    background-position: 0% 40%;
    opacity: 0.9;
}

.about-me-content * {
    font-size: 16px;
    color: #ddd;
    text-align: left;
    line-height: 30px;
}

.about-me-content a {
    display: inline-block;
    color: #999;

}

.about-me-content a:hover {
    color: #2ac4b7;
}

.signature {
    text-align: right;
}

@media(max-width:1480px) {
    #header .nav-menu.nav-prime .nav>li>a {
        font-size: 18px;
        padding-left: 10px;
    }

    #header .nav-menu.nav-prime .nav>li ul.child-item>li a {
        font-size: 14px;
    }

    #header .nav-menu.nav-prime .nav>li ul.child-item {
        left: 10px;
    }

    #header .header-continer.active .nav-menu.nav-prime .nav>li ul.child-item {
        top: 65px;
    }
}

@media(max-width:1380px) {
    .privacy-policy p {
        font-size: 16px;
    }

    #header .nav-menu.nav-prime {
        margin-top: 2px;
    }

    .home .header_items {
        margin-top: 2px;
    }

    #header .nav-menu.nav-prime .nav>li ul.child-item {
        left: 5px;
    }

    #header .header-continer.active .nav-menu.nav-prime .nav>li ul.child-item {
        top: 60px;
    }

    .sm-title h2 {
        font-size: 26px;
        line-height: 28px;
    }
}

@media(max-width:1280px) {
    #header .nav-menu.nav-prime .nav>li>a {
        font-size: 16px;
        padding-left: 5px;
    }

    #header .nav-menu.nav-prime .nav>li ul.child-item>li a {
        font-size: 12px;
        line-height: 26px;
    }

    #header .header-continer.active .nav-menu.nav-prime .nav>li ul.child-item {
        top: 58px;
    }
}

@media(max-width:767px) {
    .about-me-content * {
        font-size: 14px;
        line-height: 22px;
    }

	#discography .music-banner{
		margin-bottom: 40px;
		border: 1px solid #eee;
	}
    .music-banner-1,
    .music-banner-2,
    .music-banner-3 {
        -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%;
    }

    .music-banner-1,
    .music-banner-2 {
        margin-bottom: 40px;
    }

    .signature {
        text-align: left;
    }

    .signature img {
        width: 40%;
    }

    #about-me .section_bg_image {
        background-position: center center;
    }
}

@media (max-width: 380px) {

    .music-banner-1,
    .music-banner-2 {
        margin-bottom: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    #my-music {
        top: 6px;
    }

    #about-me {
        top: 5px;
    }
}

/* =================================================  */
/* HOME 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: 20px 20px 20px 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;
    }
}

@media(max-width:1600px) {
    #header ul.nav>li>a {
        font-size: 35px;
    }

}

@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:1500px) {

    .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) {
    #archive-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: 14px;
    }

    .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;
    }

    #about-me {
        padding-bottom: 60px;
    }

    .about-me-content * {
        font-size: 16px;
        line-height: 28px;
    }

    #gallery .title,
    #video .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;
    }

    .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;
    }

    .n_c * {
        font-size: 16px;
        line-height: 28px;
    }

    .carousel_content * {
        font-size: 16px;
        line-height: 28px;
    }

    .buy p {
        font-size: 24px;
    }

    .img_gallery {
        height: 500px;
    }

    #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;
    }

    #contact-us {
        padding-bottom: 60px;
    }

    /***** Music Single Album *****/
    #discography-post {
        padding-top: 50px;
    }

    .social-icons {
        margin-top: 25px;
        margin-bottom: 55px;
        padding-top: 25px;
    }

    /******* 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: 14px;
        line-height: 28px;
    }

    .discography_description * {
        font-size: 14px;
        line-height: 28px;
    }

    /****** Single Gallery ****/
    body.gallery-archive-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;
    }

    /***** 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;
    }

}

@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;
    }

    .about-me-content * {
        font-size: 14px;
        line-height: 26px;
    }

    #my-music {
        padding-bottom: 60px;
    }

    .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: 12px;
    }

    .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;
    }

    .name p {
        font-size: 32px;
    }

    .img_gallery {
        height: 300px;
    }

    #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;
    }

    #gallery {
        padding-bottom: 84px;
    }

    #gallery .cta {
        margin-top: 84px;
    }

    #video {
        padding-bottom: 60px;
    }

    .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;
    }

    .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;
    }

    .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: 14px;
        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;
    }

    #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: 12px;
        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-archive-gallery #discography-text {
        margin-top: 50px;
    }

    .sm-title {
        margin-bottom: 50px;
    }

    /**** Contact us *****/
    .content-info {
        width: 70%;
    }

    .content-info h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .content-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;
    }

}

@media(max-width:1100px) {
    #header .nav-menu.nav-prime .nav>li>a {
        font-size: 14px;
        padding-right: 10px;
    }

    /****** Single gallery ****/
    #archive-gallery .grid-item {
        height: 250px;
    }

    #archive-gallery .grid-item:nth-child(3),
    #archive-gallery .grid-item:nth-child(6n+1) {
        height: 500px;
    }

}

@media(max-width:1024px) {
    #header .nav-menu.nav-prime {
        display: none;
    }

    .home .header-continer.active {
        padding-bottom: 30px;
    }

    .home .menu_icon {
        display: block;
    }

    .nav-mobile {
        display: block;
    }

    #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: 12px;
        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;
    }

    .n_c * {
        font-size: 14px;
        line-height: 22px;
    }

    .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;
    }

    /****** 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;
    }

    /**** Contact us *****/
    .content-info {
        width: 100%;
    }

    .content-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;
    }

}

@media(min-width:768px) and (max-width:900px) {
    .n_c {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (min-width:768px) and (max-width:1024px) {
    #header {
        top: 6px;
    }

    #album-release {
        top: 5px;
        z-index: 9;
    }

    #gallery {
        position: relative;
        top: 4px;
    }

    #video {
        top: 3px;
        position: relative;
    }

    #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) {
    #about-me {
        padding-bottom: 50px;
    }

    #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;
    }

    .cta {
        width: 100%;
        text-align: center;
    }

    .cta a,
    #gallery .cta a {
        font-size: 12px;
        padding: 19px 10px 20px;
    }

    #gallery .cta a {
        letter-spacing: 7px;
        padding: 20px 13px 20px 20px;
    }

    #gallery .title,
    #video .title {
        padding-bottom: 50px;
    }

    #video {
        padding-bottom: 50px;
    }

    #contact-us {
        padding-bottom: 50px;
    }

    .j_c {
        padding-bottom: 50px;
    }

    .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;

    }

    .n_c * {
        font-size: 14px;
        line-height: 22px;
    }

    .d-md-block {
        display: block !important;
    }

    .carousel_content {
        width: 80%;
    }

    .carousel_content * {
        font-size: 14px;
        line-height: 22px;
    }

    .info p {
        line-height: 22px;
    }

    .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: 12px;
        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;
    }

    /****** 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: 12px;
        line-height: 22px;
    }

    #archive-gallery .column {
        max-width: 100%;
        -webkit-box-flex: 100%;
        -webkit-flex: 100%;
        -moz-box-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
        padding: 0;
    }

    #archive-gallery .column:nth-of-type(2) .gallery-image:nth-of-type(3) {
        width: 100%;
    }

    #archive-gallery .gallery-image {
        height: 270px !important;
        padding-top: 1px !important;
    }

    .sm-title {
        margin-bottom: 20px;
    }

    body.gallery-archive-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;
    }

    /***** 404 Page ******/
    .page-404 .big-title img {
        width: 90%
    }

    .page-404 .big-title h2 {
        width: 90%;
    }

    .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: 0;
        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 *****/
    #archive-gallery .grid-item,
    #archive-gallery .grid-sizer {
        width: 50%;
    }

    #archive-gallery .grid-item:nth-child(9n+1) {
        width: 100%;
    }

}

@media(max-width: 736px) {
    .social-icons {
        padding-top: 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;
    }

    .post-author {
        margin-top: 30px;
    }

    .post-share {
        margin-top: 30px;
    }
}

@media(max-width:575px) {
    .header-continer {
        padding: 20px 0px;
    }

    .header_items>div {
        height: 20px;
        width: 17px;
    }

    .header_items svg {
        width: 17px;
    }

    .search_icon {
        margin-right: 10px;
    }

    .header_items i {
        font-size: 18px;
    }

    .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;
    }

    /***** Single Gallry *****/
    #archive-gallery .grid-item {
        height: 150px;
    }

    #archive-gallery .grid-item:nth-child(3),
    #archive-gallery .grid-item:nth-child(6n+1) {
        height: 300px;
    }

    /**** Contact us *****/
    .page.type-page {
        padding: 60px 0px 60px;
    }

    .content-info h2 {
        width: 100%;
    }

    .contact-adress>a i,
    .contact-adress>p i {
        width: 17px;
    }

    /***** 404 Page ******/
    .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: 0;
    }

    .l-form {
        padding: 20px 0px 20px 0px;
    }

    .l-f form .create-password .checkbox label {
        margin-left: 0;
    }

}

@media (max-width:480px) {
    #video .embed-responsive {
        border-width: 10px;
        border-radius: 0;
    }

    .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;
    }

    #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;
    }
}

@media(max-width:400px) {
    .playlist .music_line>span {
        font-size: 12px;
    }
}

@media(max-width:390px) {

    /***** Single Gallry *****/
    #archive-gallery .grid-item,
    #archive-gallery .grid-sizer {
        width: 100%;
    }

    #archive-gallery .grid-item {
        height: 250px;
    }

    #archive-gallery .grid-item:nth-child(3),
    #archive-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(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;
        top: 0;
        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(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) {
    .page.type-page {
        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;
    }

    .page.type-page {
        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;
    }
	
		
	.content-info ul, 
	.about-me-content ul {
 		 padding: 20px 0 20px 20px;
	}
	
}

@media(max-width:575px) {
    #page-title {
        margin-top: 77px;
    }

    .popup_block {
        height: 35%;
    }

    #popup-container ul {
        bottom: 29%;
    }

}

@media(max-width:420px) {
    #page-title {
        margin-top: 75px;
    }
}

@media(max-width:380px) {
    #page-title {
        margin-top: 70px;
    }
}

/*--------------------*/
/* FOR MOZILA FIREFOX */
/*--------------------*/

body.firefox.home .header_items {
    height: 30px;
}


body.gallery-photogallery.firefox .music-banner-text {
    display: table;
    vertical-align: middle;
    position: relative;
}

body.page-404.firefox .big-title {
    display: table;
    top: 10%;
}

body.page-404.firefox .big-title h2 {
    display: table;
    top: 63%;
}

@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 .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: 0;
}

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 #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.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-prime .nav {
    top: 0;
}

body.home.net .header-continer.active {
    padding-bottom: 30px;
}

body.home.net #header .header-continer.active .nav-menu.nav-prime .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 .coupon-form form input {
    border-width: 1px;
}

@media(max-height: 670px) {
    body.net #header .nav {
        height: 230px;
        display: block;
        top: 50px;
        overflow-y: scroll;
    }

}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    margin: 70px auto;
}

/*.search-pag*/

.search-page {
    max-width: 1080px;
    width: 100%;
    margin: auto;
    padding-top: 50px;
}

.search-page form {
    height: 60px;
}

.search-page form input {
    width: 82% !important;
    height: 100%;
    margin-right: 0 !important;
    border-radius: 0;
    padding-left: 40px;
    border: 2px solid #fff;
    text-transform: capitalize;
}

.search-page form input:focus {
    outline: none;
    border-color: rgb(42, 196, 183);
}

.search-page form button {
    width: 18%;
    height: 100%;
    background-color: rgb(54, 54, 54);
    border: 2px solid rgb(54, 54, 54);
    border-radius: 0;
    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-page form button:hover {
    background-color: rgb(42, 196, 183);
    border-color: rgb(42, 196, 183);
}

.search-page form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #363636;
}

.search-page form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #363636;
}

.search-page form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #363636;
}

.search-page form input:-moz-placeholder {
    /* Firefox 18- */
    color: #363636;
}