/* TypoGraphy */
* {
    box-sizing: border-box;
}

:focus {
    outline: none !important;
    box-shadow: none;
    border-color: inherit;
}

::-webkit-scrollbar {
    width: 0px;
}

textarea.form-control {
    resize: none;
    overflow: hidden;
}

html,
body {
    width: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    background: #FFF6DD;
    overflow-x: hidden;
    font-size: 16px;
    color: #000;
    font-weight: 300;
    /* max-width: 1440px;
	margin: 0 auto; */
}

img {
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
    height: auto;
}

a,
a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px 0 20px;
    padding: 0px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #000;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: #B32725;
}

h1 {
    font-weight: bold;
    font-size: 98px;
    line-height: 84px;
    color: #585B5D;
}

h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 37px;
    color: #585B5D;
}

h3 {
    font-weight: bold;
    font-size: 28px;
    line-height: 43px;
    color: #585B5D;
}

h4 {
    font-weight: bold;
    font-size: 26px;
    line-height: 30px;
    color: #585B5D;
}

h5 {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    color: #585B5D;
}

h6 {
    font-weight: bold;
    font-size: 20px;
    line-height: normal;
    color: #585B5D;
}

p {
    font-size: 18px;
    line-height: 24px;
    color: #161616;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    padding: 0px 0 20px 18px;
    margin: 0px;
}

ol {
    padding-bottom: 20px;
    padding-left: 15px;
}

ol li {
    position: relative;
    padding-left: 5px;
}

li {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #1A1A1A;
}

li a {
    color: #01a4ec;
}

li a:hover {
    color: #1A1A1A;
}

a {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    color: #03b1e7;
}

a:hover {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    color: #1A1A1A;
}

button {
    padding: 0;
    background-color: transparent;
    border: none;
}

body.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.btn {
    background: #161616;
    border: 1px solid #161616;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    min-width: 150px;
    min-height: 45px;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
}

.btn:hover {
    background: #fff;
    color: #161616;
    border-color: #fff;
}

/** ================== // HEADER CSS START // ================== **/
.header {
    background: #FFF6DD;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 30px 0px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    animation: slideDown 0.5s ease-out forwards;
}

@keyframes slideDown {
    from {
        top: -50%;
    }

    to {
        top: 0;
    }
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 232px;
}

.menu-icon {
    position: relative;
    right: 0px;
    width: 31px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.navigation .moblelogo {
    display: none;
}

.main-nav .menu-bar {
    display: none;
}

.nav-manu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-manu ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style-type: none;
}

.nav-manu ul li {
    padding: 0 0;
    position: relative;
    margin-right: 55px;
}

.nav-manu ul li a {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    position: relative;
}

.nav-manu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 2px;
    bottom: -5px;
    background: #fff;
    transition: 0.7s;
}

.nav-manu ul li a:hover::after {
    width: 100%;
}

.nav-manu ul li.current-menu-item a::after {
    width: 100%;
}

/** SUB MENU **/
.navigation ul li ul.sub-menu {
    position: absolute;
    display: block;
    top: 36px;
    width: auto;
    transform: scale(1, 0);
    transition: all 0.5s;
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    min-width: 208px;
    padding: 0;
    left: 0;
    z-index: 1999;
    padding: 0;
    width: auto;
}

.navigation ul li ul.sub-menu.shop-submenu {
    left: auto;
    right: 0;
}

.navigation ul li:hover>ul.sub-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.navigation ul li ul.sub-menu.shop-submenu::before {
    left: auto;
    right: 40px;
}

.navigation ul li ul.sub-menu li:first-child {
    border-radius: 10px 10px 0px 0px;
}

.navigation ul li ul.sub-menu li:last-child {
    border-radius: 0px 0px 10px 10px;
}

.navigation ul li ul.sub-menu li {
    padding: 0;
    width: 100%;
    margin: 0px 0 0;
    transition: .4s;
    background-color: #5f1111;
    border-bottom: none;
    position: relative;
    box-shadow: 0 20px 30px rgb(88 91 93 / 15%);
    border-radius: 0;
    border-bottom: 1px solid #784848;
}

.navigation ul li ul.sub-menu li::after {
    display: none;
}

.navigation ul li ul.sub-menu li::before {
    right: 15px;
    transform: rotate(-40deg) translateY(-20%);
    top: 43%;
}

.navigation ul li ul.sub-menu li a {
    display: block;
    padding: 15px 15px;
    line-height: 20px;
    color: #fff;
}

.navigation ul li ul.sub-menu li a::after {
    display: none;
}

.navigation ul li ul.sub-menu li:last-child a {
    border-bottom: none;
}

.navigation ul li ul.sub-menu li:hover {
    background-color: #172135;
}

.navigation ul li ul.sub-menu li.current-menu-item {
    background-color: #e04f26;
}

.navigation ul li ul.sub-menu li.current-menu-item a {
    color: #fff;
}

.navigation ul li ul.sub-menu li:hover a {
    color: #fff;
}

.navigation ul li ul.sub-menu ul.sub-menu {
    left: 100%;
    top: 0;
    width: max-content;
    margin-left: 3px;
}

.navigation ul li ul.sub-menu li:last-child {
    border-bottom: none;
}

.navigation ul li ul.sub-menu ul.sub-menu li {
    border-left: 0;
}

.navigation .menu-item-has-children>a::before {
    content: "";
    position: absolute;
    top: 55%;
    right: -12px;
    width: 7px;
    height: 7px;
    transform: translateY(-50%);
    transition: 0.4s;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #000000;
    margin-top: 2px;
}

.navigation ul li.menu-item-has-children:hover a::before {
    border-top-color: #f20;
    transition: 0.4s;
}

.navigation ul li.current-menu-item ul.sub-menu li a::before {
    display: none;
}

.navigation ul li ul.sub-menu li::before {
    display: none;
}

.navigation ul li ul.sub-menu li:hover::before {
    border-color: #fff;
}

.navigation ul li ul.sub-menu li a:hover {
    color: #fff;
}

.navigation ul li ul.sub-menu ul.sub-menu li a {
    color: #08161D;
}

.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
    color: #fff;
}

.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li:hover a {
    color: #fff;
}

.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li ul.sub-menu a {
    color: #08161D;
}

.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li ul.sub-menu li:hover a {
    color: #fff;
}

.navigation ul li.menu-item-has-children ul.sub-menu li:hover a::before {
    border-top-color: #fff;
}

.navigation ul li.menu-item-has-children ul.sub-menu li:hover ul.sub-menu li a::before {
    border-top-color: #e04f26;
}

.navigation ul li.menu-item-has-children ul.sub-menu li:hover ul.sub-menu li:hover a::before {
    border-top-color: #fff;
}

.navigation .menu-item-has-children ul.sub-menu li a::before {
    right: 10px;
    transform: rotate(-95deg);
    top: 46%;
    border-top-color: #fff;
}

.nav_overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(22, 22, 22, .8);
    z-index: 21;
    transition: display 100ms linear;
}

.mobile-menu .nav_overlay {
    display: block;
}

.side-menu {
    background: #161616;
    box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 0;
    right: -150%;
    width: 550px;
    height: 100%;
    z-index: 9999;
    transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    overflow-y: auto;
    padding: 55px 45px;
    margin: 0;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
}

.side-menu.active {
    right: 0;
}

.close-side-menu {
    text-align: center;
    margin-bottom: 25px;
}

.side-menu-holder ul {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.side-menu-holder ul li {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #FFFFFF;
}

.side-menu-holder ul li a {
    color: #FFFFFF;
}

.side-menu-holder ul li a:hover {
    color: #D63939;
}

.side-menu-stay-connected {
    margin-top: 45px;
}

.side-menu-stay-connected p {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.side-menu-stay-connected ul {
    display: flex;
    justify-content: flex-start;
    column-gap: 20px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.mobile-menu {
    position: fixed;
    overflow: hidden;
}

/** ================== // HEADER CSS END // ================== **/

/** ================== // BANNER CSS START // ================== **/
.banner-section.home-banner {
    height: 508px;
}

.banner-section {
    background: #000;
    position: relative;
}

.banner-img-holder {
    height: 100%;
    width: 100%;
    position: relative;
}

.banner-slide-item {
    position: relative;
    height: 100%;
    width: 100%;
}

.banner-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content-absolute {
    position: absolute;
    top: 0;
    left: 0px;
    right: 0px;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.home-banner-img-card {
    width: 784px;
}

.home-banner-info-card {
    width: 385px;
    margin-left: auto;
}

.home-banner-info-card h1 {
    font-weight: 300;
    font-size: 30px;
    line-height: 36px;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0;
}

.home-banner .home-banner-info-card {
    position: relative;
    left: 60px;
}

/** ================== // BANNER CSS END // ================== **/

/** ================== // PAUL MOTIAN SECTION CSS START // ================== **/
.section {
    padding: 100px 0px;
    position: relative;
}

.section-top {
    padding-top: 50px;
}

.section.paul-motian-section {
    padding-bottom: 120px;
}

.paul-motian-section .container {
    position: relative;
}

.paul-motian-heading {
    position: absolute;
    top: -85px;
    left: -127px;
    right: 0;
    margin: auto;
    opacity: 0.6 !important;
}

.paul-motian-heading h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 500px;
    line-height: 250px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #E0CC96;
    opacity: 0.65;
}

.paul-motian-heading h3 span {
    opacity: 1;
    color: #FFEEC3;
    display: block;
    text-align: left;
    position: relative;
    left: 45px;
}

.paul-motian-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-top: -30px;
    left: 10px;
}

.paul-motian-left-col {
    width: 399px;
}

.heading {}

.heading h2 {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #161616;
}

.heading p {}

.heading p strong a {
    font-weight: 400;
    text-decoration-line: underline;
    color: #161616;
}

.heading p strong a:hover {
    color: #B32725;
}

.paul-motian-right-col {
    width: 350px;
}

.paul-motian-img-card img {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/** ================== // PAUL MOTIAN SECTION CSS END // ================== **/

/** ================== // HOME VIDEO SECTION CSS START // ================== **/
.home-video-section {
    background: #B32725;
    padding: 120px 0px;
}

.home-video-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.home-video-wrap::before {
    content: "";
    position: absolute;
    background: url("../images/video-vector-bg.svg");
    left: -50px;
    top: -105px;
    width: 785px;
    height: 685px;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-video-left-col {
    width: 620px;
    position: relative;
    z-index: 1;
}

.home-video-holder {
    margin-bottom: 20px;
}

.home-video-holder iframe {
    width: 100%;
    height: 367px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.home-video-info-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.home-video-info {
    width: 366px;
    min-height: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home-video-info p {
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

.home-video-right-col {
    width: 166px;
    position: relative;
    z-index: 1;
}

.home-video-thubnail {
    height: 395px;
    overflow-y: auto;
}

.home-video-thubnail::-webkit-scrollbar {
    width: 0px;
}

.home-video-item {
    width: 100%;
    height: 100px;
    margin-bottom: 35px;
}

.home-video-item:last-child {
    margin-bottom: 0;
}

.home-video-item .vid-lnk,
.home-video-item .home-video-thumb {
    display: block;
    width: 100%;
    height: 100%;
}

.home-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-video-thubnail-text {
    display: none;
}

.home-video-socail {
    padding-top: 35px;
}

.home-video-socail ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

/** ================== // HOME VIDEO SECTION CSS END // ================== **/

/** ================== // QUARTET SECTION CSS START // ================== **/
.af-quartet-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.af-quartet-left-col {
    width: 400px;
}

.af-quartet-right-col {
    width: 340px;
}

.af-quartet-img-card a {
    display: block;
}

.af-quartet-img-card a img {
    border: 1px solid #fff;
    width: 100%;
}

.af-quartet-img-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
}

/** ================== // QUARTET SECTION CSS END // ================== **/

/** ================== // UPCOMING CONCERTS SECTION CSS START // ================== **/
.upcoming-concerts-section {
    background: #DFCEA3;
}

.upcoming-concerts-left-col {
    width: 521px;
    position: relative;
}

.upcoming-concerts-wrap {
    min-height: 430px;
}

.upcoming-concerts-inner {
    background: rgba(206, 185, 130, 0.63);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 20px;
}

.upcoming-concerts-heading h2 {
    font-size: 24px;
    line-height: 32px;
    color: #161616;
    font-weight: normal;
}

.upcoming-concerts-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.upcoming-concerts-head::after {
    content: "";
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    width: 0;
    height: 0;
    margin: 30px auto;
    border-left: 30px solid #D3C08E;
    position: absolute;
    right: -60px;
    bottom: -35px;
    display: none;
}

.concerts-active .upcoming-concerts-head::after {
    display: block;
}

.upcoming-concerts-time {
    width: 50px;
    height: 50px;
    background: #D63939;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upcoming-concerts-time h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #FBFFF1;
    margin: 0;
    font-family: "Quicksand", sans-serif;
}

.upcoming-concerts-name {
    width: calc(100% - 50px);
    padding-left: 15px;
    position: relative;
}

.upcoming-concerts-name h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #161616;
    margin-bottom: 0;
}

.upcoming-concerts-name p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #161616;
    margin-bottom: 5px;
}

.upcoming-concerts-name p:last-child {
    margin-bottom: 0;
}

.upcoming-concerts-name p a {
    font-weight: normal;
    text-decoration-line: underline;
    color: #49454F;
}

.upcoming-concerts-name p a:hover {
    color: #B32725;
}

.bottom-more-view-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    right: 0;
    bottom: -20px;
    position: absolute;
}

.bottom-more-view-row p {
    margin-bottom: 0 !important;
}

.view-icon a {
    color: #000000;
    font-size: 18px;
}

.upcoming-concerts-item.concerts-active .view-icon a {
    color: #D63939;
}

.view-icon a:hover {
    color: #D63939;
}

.upcoming-concerts-item {
    border-bottom: 1px solid rgb(0 0 0 / 80%);
    padding: 20px 10px 15px;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
}

.upcoming-concerts-item:hover,
.upcoming-concerts-item.concerts-active {
    background: #E5D4A5;
}

.upcoming-concerts-body {
    position: absolute;
    left: 620px;
    top: 0;
    width: 360px;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
    background: #E5D4A5;
    border: 1px solid #CEB982;
    transition: 0.7s;
    opacity: 0;
    visibility: hidden;
}

.concerts-active .upcoming-concerts-body {
    opacity: 1;
    visibility: visible;
}

.upcoming-concerts-body-top-info {
    padding: 45px 15px;
}

.upcoming-concerts-body-top-info h4 {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #161616;
}

.upcoming-concerts-body-top-info p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #161616;
    margin-bottom: 5px;
}

.upcoming-concerts-body-top-info p:last-child {
    margin-bottom: 0px;
}

.upcoming-concerts-body-bottom-info {
    background: #D63939;
    padding: 35px 15px;
}

.upcoming-concerts-body-bottom-info p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #FBFFF1;
    margin-bottom: 10px;
}

.upcoming-concerts-body-bottom-info p:last-child {
    margin-bottom: 0px;
}

.upcoming-concerts-body-bottom-info p a {
    color: #fff;
    text-decoration: underline;
}

.upcoming-concerts-body-bottom-info p a:hover {
    text-decoration: none;
}

/** ================== // UPCOMING CONCERTS SECTION CSS END // ================== **/

/** ================== // SITE FOOTER CSS START // ================== **/
.footer {
    background: #161616;
}

.footer-wrap {
    width: 527px;
}

.footer-wrap {
    width: 527px;
    display: flex;
    flex-direction: column;
    row-gap: 45px;
}

.footer-info h2 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}

.subscribe-form {
    max-width: 480px;
}

.subscribe-form-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.subscribe-form-flex .gem-form-wrapper {
    width: 100%;
}

.subscribe-form-flex .gem-form-wrapper form {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
}

.subscribe-form-flex .gem-form-wrapper form p {
    margin: 0;
}

.subscribe-form-flex .gem-form-wrapper form p br {
    display: none;
}

.subscribe-form-flex>p {
    width: 100%;
    margin: 0;
}

.subscribe-form-flex .gem-form-wrapper form p label {
    display: block !important;
}

.subscribe-form-flex .gem-form-wrapper p.gem-suppressed.gem-success {
    color: #fff !important;
}

.subscribe-form-flex label {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: #FFFFFF;
    font-weight: normal;
    margin-bottom: 7px;
}

.form-group-input {
    width: 320px;
}

.form-group-input .medium {
    background: #F2F1F1;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    height: 45px;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: normal;
}

.form-group-btn {
    width: 135px;
    position: relative;
}

.form-group-btn span.wpcf7-spinner {
    position: absolute;
    right: 5px;
    top: 12px;
    margin: 0;
}

.form-group-btn .btn {
    background: #D63939;
    border-color: #B32725;
    min-width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
}

.form-group-btn .btn:hover {
    background: #fff;
    border-color: #fff;
    color: #D63939;
}

.footer-info ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

/** ================== // SITE FOOTER CSS END // ================== **/

/** ================== // DISCOGRAPHY PAGE CSS START // ================== **/
.banner-section.inner-banner {
    height: 380px;
}

.banner-section div {
    height: 100%;
}

.slider-content-absolute .container,
.slider-content-absolute .container div {
    height: auto !important;
}

.banner-img-holder.overlay_gradient::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(22, 22, 22, 0.1) 51.48%, #000000 94.27%);
}

.banner-img-holder.overlay_black::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}

.banner-section.inner-banner .home-banner-info-card {
    width: 100%;
    text-align: left;
    left: 0;
}

.banner-section.inner-banner .home-banner-info-card h1 {
    font-weight: 400;
    font-size: 34px;
    line-height: 38px;
}

.breadcrumb-section {
    margin-top: 30px;
}

.breadcrumb-section ol.breadcrumb {
    margin: 0;
    list-style-type: none;
}

.breadcrumb-section ol.breadcrumb li.breadcrumb-item {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: #161616;
    font-weight: 300;
    padding-left: 0.3em;
}

.breadcrumb-section ol.breadcrumb li.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 0.3em;
}

.breadcrumb-section ol.breadcrumb li.breadcrumb-item a {
    color: #161616;
}

.breadcrumb-section ol.breadcrumb li.breadcrumb-item a:hover {
    color: #B32725;
}

.breadcrumb-section ol.breadcrumb li.breadcrumb-item:first-child {
    padding-left: 0;
}

.breadcrumb-section ol.breadcrumb li.breadcrumb-item.active {
    font-weight: normal;
}

.discography-heading {
    width: 100%;
    margin-bottom: 50px;
}

.heading.heading-md {
    max-width: 630px;
}

.heading.heading-md h2 {
    font-weight: 300;
    font-size: 34px;
    line-height: 40px;
    color: #161616;
    margin-bottom: 25px;
}

.discography-albums-wrap {
    max-width: 890px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    column-gap: 70px;
    row-gap: 30px;
}

.discography-albums-card {
    width: 250px;
}

.discography-albums-img-holder {
    margin-bottom: 18px;
}

.discography-albums-img-holder a {
    display: block;
}

.discography-albums-img-holder img {
    width: 100%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    height: auto;
}

.discography-albums-info-holder h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #161616;
    margin-bottom: 5px;
}

.discography-albums-info-holder h3 a {
    color: #161616;
}

.discography-albums-info-holder h3 a:hover {
    color: #B32725;
}

.discography-albums-info-holder p {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: #161616;
}

.appears-section {
    background: #E5D4A5;
}

/** ================== // DISCOGRAPHY PAGE CSS END // ================== **/

/** ================== // FEATURED ALBUM PAGE CSS START // ================== **/
.featured-album-details-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.featured-album-details-left-col {
    width: 480px;
}

.featured-album-details-left-col img {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.featured-album-details-right-col {
    width: 455px;
    padding-left: 85px;
}

.featured-album-details-right-inner.heading h2 {
    margin-bottom: 25px;
}

.featured-album-details-right-inner ul {
    padding: 0;
    list-style-type: none;
    margin-bottom: 25px;
}

.featured-album-details-right-inner ul li,
.featured-album-details-right-inner.heading p,
.featured-album-details-left-inner.heading p {
    font-size: 16px;
    line-height: 20px;
    color: #161616;
    font-weight: 300;
}

.featured-album-details-right-inner ul li strong {
    font-weight: 400;
}

.featured-album-details-right-inner ul li,
.featured-album-details-right-inner p {
    margin-bottom: 4px;
}

.featured-album-details-right-inner ul li:last-child,
.featured-album-details-right-inner p:last-child {
    margin-bottom: 0px;
}

.featured-album-liner-notes-section {
    padding-top: 70px;
}

.featured-album-liner-notes-section .heading h2 {
    margin-bottom: 30px;
}

.featured-album-liner-notes-content {
    column-count: 2;
    column-gap: 20px;
}

.featured-album-liner-notes-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #161616;
    margin-bottom: 30px;
}

.album-reviews-section {
    background: #E5D4A5;
}

.album-reviews-heading .heading.heading-md {
    text-align: center;
    margin: 0 auto;
    max-width: 550px;
}

.album-reviews-heading .heading.heading-md h2 {
    font-style: italic;
    font-weight: 300;
    font-size: 32px;
    line-height: 40px;
    margin: 0;
}

.album-reviews-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.album-reviews-left-col {
    width: 521px;
}

.album-reviews-heading.heading h2 {
    color: #000;
    margin-bottom: 0;
}

.album-reviews-content {
    margin-bottom: 15px;
}

.album-reviews-item p {
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.album-reviews-content p {
    margin-bottom: 10px;
}

.album-reviews-content p:last-child {
    margin-bottom: 0px;
}

.album-reviews-item p a {
    text-decoration-line: underline;
    color: #000000;
}

.album-reviews-item p a:hover {
    color: #D63939;
}

.album-reviews-item p strong {
    font-weight: normal;
}

.album-reviews-author p {
    margin-bottom: 5px;
}

.album-reviews-author p:last-child {
    margin-bottom: 0px;
}

.album-reviews-item {
    position: relative;
    padding: 25px 0px;
}

.album-reviews-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background: #D63939;
    width: 150px;
    height: 2px;
}

.album-reviews-right-col {
    width: 450px;
}

.album-reviews-play-list iframe {
    width: 100%;
    height: 415px;
}

.home-video-section.featured-album-video-section .home-video-wrap::before {
    display: none;
}

.featured-album-video-section.home-video-section {
    background: #B32725;
    padding: 100px 0px;
}

.featured-album-video-section .heading {
    margin-bottom: 50px;
}

.featured-album-video-section .heading h2 {
    color: #FFFFFF;
    margin-bottom: 0;
}

.featured-album-video-section .home-video-wrap {
    max-width: 855px;
    margin: 0 auto;
}

.more-albums-link {
    max-width: 890px;
    margin: 70px auto 0;
    text-align: right;
}

.more-albums-link p {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #161616;
}

.more-albums-link p a {
    text-decoration-line: underline;
    color: #161616;
}

.more-albums-link p a:hover {
    color: #B32725;
}

.featured-album-details-wrap.single-album-details-wrap {
    margin-top: 50px;
}

.single-album-details-wrap .featured-album-details-right-inner img {
    border: 1px solid #D9D9D9;
}

/** ================== // FEATURED ALBUM PAGE CSS END // ================== **/

/** ================== // GALLERY PAGE CSS START // ================== **/
.gallery-wrap {
    max-width: 890px;
    margin: 0 auto;
}

.gallery-tab-head {
    margin-bottom: 60px;
}

.gallery-tab-head ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-tab-head ul li {
    width: calc(50% - 8px);
}

.gallery-tab-head ul li button {
    background: #E5D4A5;
    border: 1px solid #A8A8A8;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 73px;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: #161616;
    transition: 0.7s;
}

.gallery-tab-head ul li button.active,
.gallery-tab-head ul li button:hover {
    background: #B32725;
    border: 1px solid #AA4465;
    color: #fff;
}

.galley-photo-wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 70px;
    row-gap: 50px;
}

.galley-item {
    width: 250px;
}

.gallery-item img {
    border: 1px solid #D9D9D9;
}

.gallery-itemgallery-item a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.galley-photos .galley-item {
    display: none;
}

.load-more-cmn {
    margin-top: 50px;
    text-align: center;
}

.load-more {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.5px;
    text-decoration-line: underline;
    color: #161616;
}

.load-more:hover {
    text-decoration-line: underline;
    color: #B32725;
}

.lightboxOverlay {
    opacity: 0.85;
}

.glightbox-clean .gslide-description {
    background: transparent;
    max-height: max-content;
}

.glightbox-clean .gslide-title {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

.gclose svg,
.gnext svg,
.gprev svg {
    width: 36px;
}

.glightbox-clean .gclose svg {
    width: 25px;
}

.glightbox-clean .gclose {
    opacity: 1;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    background-color: transparent !important;
}

.video-open.glightbox-clean .gnext {
    top: 83%;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: 2px solid #D63939;
    border-radius: 16px;
    width: 230px;
    height: 80px;
}

.video-open.glightbox-clean .gnext::after {
    font-family: "Roboto", sans-serif;
    content: "Next video";
    position: absolute;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}

.video-open.glightbox-clean .gprev.gbtn,
.video-open.glightbox-clean .gnext svg {
    display: none !important;
}

.galley-item-video {
    display: none;
}

.galley-item.galley-item-full.galley-item-video {
    width: 100%;
    text-align: center;
}

/** ================== // GALLERY PAGE CSS END // ================== **/

/** ================== // DEFAULT PAGE CSS START // ================== **/
.default-content-section .heading.heading-md {
    max-width: 580px;
    margin: 0 auto;
}

.default-content-section .heading p {
    font-size: 16px;
    line-height: 22px;
    color: #161616;
    margin-bottom: 20px;
}

.default-content-section .heading p:last-child {
    margin-bottom: 0px;
}

.default-content-section .discography-heading {
    margin-bottom: 0;
}

.default-content-section figure {
    text-align: center;
    margin: 50px 0 0;
}

.default-content-section figure img {
    border: 1px solid #D9D9D9;
    height: auto;
}

/** ================== // DEFAULT PAGE CSS END // ================== **/

/** ================== // NEWS PAGE CSS START // ================== **/
.news-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.news-blog-item {
    width: 100%;
    border-bottom: 2px solid #B32725;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.news-blog-item:last-child {
    margin-bottom: 0;
}

.news-blog-info {
    max-width: 550px;
}

.news-blog-info h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #161616;
    margin-bottom: 8px;
}

.news-blog-info h3 a {
    color: #161616;
}

.news-blog-info h3 a:hover {
    color: #B32725;
}

.news-blog-info h5 {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 8px;
}

.news-blog-info p {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #161616;
    margin-bottom: 8px;
}

.news-blog-info p:last-child {
    margin-bottom: 0;
}

.news-blog-info .read-more {
    font-weight: 400;
    color: #000000;
    text-decoration: underline;
}

.news-blog-info .read-more:hover {
    color: #B32725;
}

/** ================== // NEWS PAGE CSS END // ================== **/
.video-open.glightbox-container {
    padding-top: 30px;
}

.video-open.glightbox-container .gslider {
    height: 75vh;
}

.video-open.glightbox-container .gslide {
    height: 100%;
}

.video-open.glightbox-container .gslide-inner-content {
    height: 100%;
}

.video-open.glightbox-container .ginner-container.gvideo-container {
    height: 100%;
}

.video-open .gslide-video .gvideo-wrapper {
    height: 100%;
}

.video-open .plyr--video {
    height: 100%;
}

.gslide-media.gslide-video {
    width: 45.89vw !important;
    max-width: 45.89vw !important;
    background: transparent !important;
    box-shadow: none !important;
}

.galley-item-img-card {
    position: relative;
}

.galley-hover-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    background: rgb(179 39 37 / 77%);
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.7s;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    font-size: 30px;
}

.fa-circle-video,
.fa-video-circle {
    --fa: "\e12b";
}

.galley-item-img-card a,
.home-video-thubnail .home-video-item a {
    display: inline-block;
    overflow: hidden;
    position: relative;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.galley-item-img-card a:hover .galley-hover-icon,
.home-video-thubnail .home-video-item a:hover .galley-hover-icon {
    opacity: 1;
    visibility: visible;
}

.home-video-thubnail .home-video-item .galley-hover-icon {
    background: rgb(0 0 0 / 36%);
}

.featured-album-details-left-inner img,
.default-content-section figure img,
.featured-album-details-right-inner img,
.galley-item-img-card img {
    transition: 0.7s;
}

.paul-motian-img-card a,
.af-quartet-img-card a,
.discography-albums-img-holder a,
.paul-motian-img-card a {
    width: 100%;
    display: block;
}

.paul-motian-img-card a:hover,
.af-quartet-img-card a:hover,
.discography-albums-img-holder a:hover,
.featured-album-details-left-inner img:hover,
.default-content-section figure img:hover,
.featured-album-details-right-inner img:hover,
.galley-item-img-card img:hover,
.paul-motian-img-card a:hover {
    transform: scale(1.05);
}

.gallery-banner .banner-img-holder .mobile-banner {
    display: none;
}

.galllery-video-mobile-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 70px;
    row-gap: 50px;
}

.galllery-video-mobile-wrap-scroll {
    width: 100%;
}

.galllery-video-mobile-wrap-scroll .galley-item.galley-item-video a p {
    display: none;
}

.default-content-section figure iframe {
    width: 100%;
    height: 330px;
}

.view-all-videos {
    margin-top: 25px;
    text-align: center;
}

.view-all-videos .cta {
    color: #fff;
}

.view-all-videos .cta:hover {
    color: #fff;
    text-decoration: underline;
}

.view-all-videos .btn {
    width: 100%;
}


/* ================== // CONTACT PAGE CSS START // ================== */
.contact-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: -52px;
    bottom: 0;
    width: 50%;
    background-color: #E5D4A5;
    z-index: -1;
}

.contact-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-left_contact {
    margin-left: 90px;
}

.contact-right_form h2,
.contact-info h3 {
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: normal;
    color: #000;
}

.contact-right_form label,
.contact-info h4,
.contact-info p {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    color: #000;
}

.contact-info p a {
    color: #000;
}

.contact-info p a:hover {
    color: #000;
    text-decoration: underline;
}

.contact-info:not(:last-child) {
    margin-bottom: 20px;
}

.contact-info h4 {
    font-weight: 400;
    margin-top: 8px;
}

.contact-right_form {
    min-width: 360px;
}

.contact-right_form h2 {
    margin-bottom: 25px;
}

.contact-right_form .form-control {
    min-height: 40px;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    box-shadow: none;
    outline: none;
    color: #000;
    font-size: 16px;
}

.contact-right_form .form-group {
    margin: 0 0 10px;
}

.contact-right_form textarea.form-control {
    min-height: 138px;
}

.contact-right_form .form-group.form-group-submit {
    margin: 24px 0 0;
    text-align: right;
}

.contact-right_form .form-group.form-group-submit .btn {
    border: 1px solid #B32725;
    background: #D63939;
    min-height: 33px;
    box-shadow: none;
    min-width: 133px;
}

.contact-right_form .form-group.form-group-submit .btn:hover {
    border: 1px solid #fff;
    background: #fff;
    min-height: 33px;
}

.subscribe-form .wpcf7-not-valid-tip {
    font-size: 14px !important;
    margin: 5px 0 0 !important;
    position: absolute;
    bottom: -45px;
}

.subscribe-form .wpcf7-response-output {
    color: #fff !important;
    padding: 0 !important;
    border: 0 !important;
    font-size: 14px !important;
    margin: 40px 0 0 !important;
}

.form-group.form-group-submit {
    position: relative;
}

.form-group.form-group-submit .wpcf7-spinner {
    position: absolute;
    right: 10px;
    margin: 0;
    top: 5px;
}

.contact-right_form .wpcf7-form.invalid .wpcf7-not-valid {
    border-color: #D63939;
}

.contact-right_form .wpcf7-form.invalid .wpcf7-not-valid-tip {
    display: none;
}

.contact-right_form .wpcf7-form.invalid .wpcf7-response-output {
    border: 0;
    color: #D63939;
    padding: 0;
}

.contact-right {
    width: 360px;
}

/* ================== // CONTACT PAGE CSS END // ================== */
.featured-album-details-right-inner.album-order-details ul li a {
    color: #000;
    text-decoration: underline;
    font-weight: 400;
}

.featured-album-details-right-inner.album-order-details ul li a:hover {
    text-decoration: none;
}

.album-reviews-img-holder img {
    width: auto;
    max-height: 45px;
}

.project-image {
    text-align: center;
    margin: 0 auto;
    float: none;
}

h3.order-online {
    font-size: 18px;
    font-weight: 500;
}

hr.gape-section {
    margin-top: 100px;
}

.mc4wp-alert.mc4wp-success p {
    color: #fff !important;
    padding: 0 !important;
    border: 0 !important;
    font-size: 14px !important;
    margin: 10px 0 0 !important;
}

.footer-copyright a {
    color: #DFCEA3;
}
p.footer-copyright  {
    font-size: 17px;
}