/** Font */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Nothing+You+Could+Do&family=Zen+Kurenaido&display=swap');

/* Common Css */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
:root {
    --primary-color: #ff6101;
    --white-color: #fff;
    --black-color: #000000;
    --gray-color: #b3b3b3;
    --light-black: #262626;
    --footer-text: #787a88;
    --header-offset: 140px;
}
html {
    scroll-behavior: smooth;
}
html.i18n-pending [data-i18n],
html.i18n-pending [data-i18n-html] {
    visibility: hidden;
}
body {
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    background-color: rgb(252, 246, 236);
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
a {
    text-decoration: none;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    color: var(--white-color);
    transition: all .3s ease;
}

/* Container */
.container {
    width: 1320px;
    margin: 0 auto;
}
.mhn-container {
    width: 950px;
    margin: 0 auto;
}
.container-fluid {
    width: 100%;
    margin: 0 auto;
}

/* Header Css */
.header-area {
    -webkit-transition: background-color .35s ease, -webkit-box-shadow .35s ease;
    transition: background-color .35s ease, -webkit-box-shadow .35s ease;
    -o-transition: background-color .35s ease, box-shadow .35s ease;
    transition: background-color .35s ease, box-shadow .35s ease;
    transition: background-color .35s ease, box-shadow .35s ease, -webkit-box-shadow .35s ease;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    width: 100%;
}
.header-top-area {
    background-color: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.header-info-slider {
    position: relative;
    max-width: 100%;
    padding: 5px 44px;
}
.header-info-slide {
    text-align: center;
}
.header-info-slide span {
    font-family: "Instrument Serif", serif;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .03em;
    color: var(--white-color);
    display: inline-block;
}
.header-info-slider .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    width: 28px;
    height: 28px;
}
.header-info-slider .slick-arrow:hover {
    color: var(--white-color);
}
.header-info-slider .slick-prev {
    left: 10px;
}
.header-info-slider .slick-next {
    right: 10px;
}
.header-bottom-area {
    -webkit-transition: background-color .35s ease, -webkit-backdrop-filter .35s ease, -webkit-box-shadow .35s ease;
    transition: background-color .35s ease, -webkit-backdrop-filter .35s ease, -webkit-box-shadow .35s ease;
    -o-transition: background-color .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
    transition: background-color .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
    transition: background-color .35s ease, backdrop-filter .35s ease, box-shadow .35s ease, -webkit-backdrop-filter .35s ease, -webkit-box-shadow .35s ease;
}
.header-area.sticky .header-bottom-area, .header-area.page-header .header-bottom-area {
    background-color: rgba(252, 246, 236, 0.58);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
            backdrop-filter: saturate(180%) blur(14px);
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 0;
    -webkit-transition: padding .35s ease;
    -o-transition: padding .35s ease;
    transition: padding .35s ease;
}
.header-area.sticky .header, .header-area.page-header .header {
    padding: 15px 0;
}
.logo {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
}
.logo img {
    max-width: 140px;
}
.logo img {
    max-width: 140px;
    -webkit-transition: -webkit-filter .35s ease;
    transition: -webkit-filter .35s ease;
    -o-transition: filter .35s ease;
    transition: filter .35s ease;
    transition: filter .35s ease, -webkit-filter .35s ease;
}
.header-area.sticky .logo img, .header-area.page-header .logo img {
    -webkit-filter: brightness(0);
            filter: brightness(0);
}
.header-menu {
    -ms-flex-preferred-size: 78%;
        flex-basis: 78%;
}
.header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header-menu .menu ul li a {
    font-family: "Instrument Serif", serif;
    font-size: 20px;
    line-height: 26px;
    display: block;
    color: rgb(252, 246, 236);
    font-weight: 500;
    padding: 0 20px;
    -webkit-transition: color .35s ease;
    -o-transition: color .35s ease;
    transition: color .35s ease;
}
.header-area.sticky .header-menu .menu ul li a, .header-area.page-header .header-menu .menu ul li a {
    color: var(--black-color);
}
.header-area.sticky .header-menu .menu ul li a:hover, .header-area.page-header .header-menu .menu ul li a:hover {
    color: var(--black-color);
    opacity: 0.7;
}
.header-menu .menu ul li a:hover {
    color: var(--white-color);
}
.header-btn a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px 20px;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    border: 1px solid rgb(252, 246, 236);
    color: rgb(252, 246, 236);
    border-radius: 50px;
    margin-left: 30px;
}
.header-btn a:hover {
    color: rgb(252, 246, 236);
    opacity: 0.7;
}
.header-area.sticky .header-btn a, .header-area.page-header .header-btn a {
    border-color: var(--black-color);
    color: var(--black-color);
}
.header-area.sticky .header-btn a:hover, .header-area.page-header .header-btn a:hover {
    color: var(--black-color);
    opacity: 0.7;
}
.stellarnav.desktop li.has-sub a.dd-toggle {
    display: none;
}
.stellarnav.desktop li.has-sub a:after {
    display: none;
}
.stellarnav.desktop li.has-sub ul {
    max-width: 180px;
    background-color: var(--white-color);
    -webkit-box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 11px 0px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 11px 0px;
}
.stellarnav.desktop li.has-sub ul li {
    margin-bottom: 7px;
    padding: 7px 0;
}
.stellarnav.desktop li.has-sub ul li:last-child {
    margin-bottom: 0;
}
.stellarnav.desktop li.has-sub ul li a {
    color: var(--black-color);
}
.stellarnav.desktop li.has-sub ul li:hover {
    background-color: var(--primary-color);
}

/* 3. Flags Css */
.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.flag-menu {
    margin-left: 30px;
    position: relative;
    cursor: pointer;
}
.flag-menu img {
    max-width: 24px;
}
.flags-btn i {
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
}
.flags-btn.expand i {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
}
.flags-btn i {
    display: inline-block;
    font-size: 14px;
    color: var(--white-color);
    margin-left: 3px;
}
.flag-box {
    display: none;
    position: absolute;
    top: 200%;
    left: 0;
    width: 280px;
    background-color: #ffffff10;
    padding: 8px;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 19px 0 rgba(0, 0, 0, .35);
            box-shadow: 0 3px 19px 0 rgba(0, 0, 0, .35);
    -webkit-backdrop-filter: blur(22px);
            backdrop-filter: blur(22px);
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
    z-index: 99;
}
.flag-box.show {
    display: block;
}
.flag-item-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: var(--black-color);
    padding: 16px 16px 0;
    border-radius: 10px;
}
.flag-item {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
}
.flag-item ul li {
    margin-bottom: 7px;
    padding-bottom: 7px;
}
.flag-item ul li a {
    font-size: 14px;
    color: var(--white-color);
}
.flag-item ul li a span {
    margin-left: 10px;
}
.mobile-flag {
    display: none !important;
}
.lang-selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    margin-left: 16px;
}
.lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    line-height: 0;
    vertical-align: top;
    -webkit-appearance: none;
    appearance: none;
    opacity: 0.65;
    -webkit-transition: opacity .35s ease, border-color .35s ease, -webkit-transform .35s ease;
    transition: opacity .35s ease, border-color .35s ease, -webkit-transform .35s ease;
    -o-transition: opacity .35s ease, border-color .35s ease, transform .35s ease;
    transition: opacity .35s ease, border-color .35s ease, transform .35s ease;
    transition: opacity .35s ease, border-color .35s ease, transform .35s ease, -webkit-transform .35s ease;
}
.lang-flag svg {
    display: block;
    width: 100%;
    height: 100%;
}
.lang-flag:hover,
.lang-flag.active {
    opacity: 1;
}
.lang-flag.active {
    border-color: rgb(252, 246, 236);
}
.lang-flag:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}
.header-area.sticky .lang-flag.active,
.header-area.page-header .lang-flag.active {
    border-color: var(--black-color);
}
.lang-selector--desktop {
    display: flex;
}
.lang-text {
    cursor: pointer;
}
.lang-menu-item {
    display: none !important;
}

/** Banner Css */
.banner-area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 0;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}
.banner-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .4;
    width: 100%;
    height: 100%;
    background: var(--black-color);
}
.banner-content {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 620px;
    margin: 0 auto;
    padding-bottom: 40px;
}
.banner-content h2 {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin: 0;
}
.banner-content p {
    font-family: "Instrument Serif", serif;
    color: #fff;
    font-size: 52px;
    line-height: 58px;
    font-weight: 500;
    margin: 20px 0 0;
}
.banner-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    margin-top: 15px;
}
.banner-btn a:first-child {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 200px;
    padding: 6px 24px;
    min-height: 44px;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    background-color: rgb(252, 246, 236);
    color: var(--black-color);
    border-radius: 50px;
}
.banner-btn a:first-child:hover {
    background-color: rgb( 252, 246, 236);
    opacity: 0.7;
}
.banner-btn a:last-child {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 200px;
    padding: 6px 24px;
    min-height: 44px;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    border: 1px solid rgb(252, 246, 236);
    color: rgb(252, 246, 236);
    border-radius: 50px;
}
.banner-btn a:last-child:hover {
    color: rgb(252, 246, 236);
    opacity: 0.7;
}

/** Member Css */
.member-area {
    padding: 20px 0;
}
.header-area.page-header ~ .member-area,
.header-area.page-header ~ .product-details-top,
.header-area.page-header ~ .enquiries-area,
.header-area.page-header ~ .member-login-area {
    padding-top: calc(var(--header-offset) + 24px);
}
.member-title {
    margin-bottom: 20px;
}
.member-title h4 {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    margin: 0;
}
.member-title h2 {
    font-family: "Instrument Serif", serif;
    font-size: 48px;
    line-height: 54px;
    font-weight: 500;
    margin: 10px 0;
}
.member-title p {
    font-family: "Instrument Serif", serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    margin: 0;
}

.member-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5%;
}
.single-member {
    -ms-flex-preferred-size: 23.5%;
        flex-basis: 23.5%;
    margin-bottom: 30px;
    height: 100%;
}
a.single-member {
    display: block;
    text-decoration: none;
    color: inherit;
}
.member-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.member-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 97, 1, 0.16)), color-stop(45%, rgba(35, 24, 15, 0.08)), to(rgba(0, 0, 0, 0.18)));
    background: -o-linear-gradient(top, rgba(255, 97, 1, 0.16) 0%, rgba(35, 24, 15, 0.08) 45%, rgba(0, 0, 0, 0.18) 100%);
    background: linear-gradient(180deg, rgba(255, 97, 1, 0.16) 0%, rgba(35, 24, 15, 0.08) 45%, rgba(0, 0, 0, 0.18) 100%);
    pointer-events: none;
    z-index: 1;
}
.member-image img {
    min-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 432px;
    min-height: 432px;
    height: 100%;
    border-radius: 10px;
        -webkit-filter: saturate(0.78) contrast(1.08) brightness(0.93) sepia(0.08);
            filter: saturate(0.78) contrast(1.08) brightness(0.93) sepia(0.08);
}
.member-image span {
    position: absolute;
    top: 5px;
    left: 5px;
    display: inline-block;
    background-color: var(--black-color);
    color: rgb( 252, 246, 236);
    font-size: 12px;
    line-height: 16px;
    border-radius: 20px;
    padding: 2px 5px;
    z-index: 2;
}
.member-image span.green {
    background-color: #086c05;
}
.single-member h4 {
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: var(--black-color);
    margin: 0;
    margin-top: 12px;
}
.member-btn {
    text-align: center;
}
.member-btn a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 200px;
    padding: 6px 24px;
    min-height: 44px;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    background-color: var(--black-color);
    color: rgb(252, 246, 236);
    border-radius: 50px;
}
.member-btn a:hover {
    opacity: 0.7;
}

/** Partner Css */
.partner-area {
    padding: 40px 0 20px;
}
.partner-title {
    margin-bottom: 30px;
}
.partner-title h2 {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    font-size: 48px;
    line-height: 54px;
    font-weight: 500;
    font-family: "Instrument Serif", serif;
    margin-bottom: 50px;
}
.partner-title h2 span {
    font-family: "Nothing You Could Do", cursive;
}
.partner-title p {
    text-align: center;
}
.partner-img img {
    min-width: 390px;
    min-height: 690px;
    max-height: 690px;
    -webkit-transform: scale(0.92);
        -ms-transform: scale(0.92);
            transform: scale(0.92);
    max-width: 390px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
}
.partner-content {
    text-align: center;
    max-width: 390px;
    margin-top: 20px;
    display: none;
}
.partner-content h2 {
    font-family: "Instrument Serif", serif;
    font-size: 32px;
    line-height: 38px;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 500;
}
.partner-content p {
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
}
.partner-wrapper .slick-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--black-color);
    color: rgb(252, 246, 236);
    border: 0;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
    cursor: pointer;
    position: absolute;
    top: 40%;
    z-index: 2;
}
.partner-wrapper .slick-arrow:hover {
    opacity: 0.7;
}
.partner-wrapper .slick-arrow.slick-prev {
    left: 385px;
}
.partner-wrapper .slick-arrow.slick-next {
    right: 435px;
}
.partner-wrapper .slick-center .partner-img img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}
.partner-wrapper .slick-center .partner-content {
    display: block;
}


/** Testimonial Css */
.testimonial-area {
    margin-bottom: 40px;
}
.testimonial-box {
    background-color:rgb(247, 239, 226);
    padding: 32px;
    border-radius: 10px;
}
.testimonial-title {
    text-align: center;
    margin-bottom: 30px;
}
.testimonial-title p {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 18px;
}
.testimonial-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.single-testimonial {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
}
.testimonial-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}
.single-testimonial p {
    font-family: "Instrument Serif", serif;
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 500;
}
.single-testimonial h4 {
    font-family: "Instrument Serif", serif;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
}

/** Cta Css */
.cta-area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    z-index: 2;
}
.cta-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .4;
    width: 100%;
    height: 100%;
    background: var(--black-color);
}
.cta-top {
    text-align: center;
}
.single-cta-top {
    margin-bottom: 15px;
}
.single-cta-top h4 {
    color: var(--white-color);
}
.single-cta-top p {
    color: var(--white-color);
}
.cta-bottom {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.cta-bottom p {
    color: rgb(252, 246, 236);
    opacity: 0.7;
}
.cta-bottom p span {
    font-weight: 700;
}
.cta-bottom a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 200px;
    padding: 6px 24px;
    min-height: 44px;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    border: 1px solid rgb(252, 246, 236);
    color: rgb(252, 246, 236);
    border-radius: 50px;
    margin-top: 15px;
}
.cta-bottom a:hover {
    color: rgb(252, 246, 236);
    opacity: 0.7;
}

/** Standard Css */
.standard-area {
    padding: 60px 0 40px;
}
.standard-title {
    text-align: center;
    margin-bottom: 30px;
}
.standard-title h4 {
    font-family: "Instrument Serif", serif;
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    margin: 0;
}
.standard-tab ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
}
.standard-tab ul li a {
    display: block;
    font-family: "Instrument Serif", serif;
    font-size: 18px;
    line-height: 24px;
    color: var(--black-color);
    padding: 0 40px 15px;
    border-bottom: 1px  solid transparent;
    opacity: 0.7;
}
.standard-tab ul li.active a {
    border-color: var(--black-color);
    opacity: 1;
}
.standard-tab-content {
    display: none;
}
.standard-tab-content p {
    font-size: 18px;
    line-height: 24px;
}

/** Faq Css */
.faq-area {
    padding: 0 0 40px;
}
.faq-item:first-child {
    border-top: 1px solid var(--gray-color);
}
.faq-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-color);
}
.faq-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
    gap: 10px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.faq-head.active {
    opacity: 0.8;
}
.faq-head i {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq-head.active i {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.faq-head h2 {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
}
.faq-content {
    padding-top: 10px;
    display: none;
}
.faq-content.active {
    display: block;
}
.single-faq-contact-content:not(:last-child) {
    margin-bottom: 10px;
}
.single-faq-contact-content h4 {
    font-weight: 600;
    margin: 0;
}
.single-faq-contact-content a {
    font-size: 14px;
    line-height: 20px;
    color: var(--black-color);
    text-decoration: underline;
}
.faq-content-list ul {
    list-style: disc;
    padding-left: 20px;
}
.faq-content-list ul li:not(:last-child) {
    margin-bottom: 5px;
}
.faq-content-list ul li a {
    font-size: 16px;
    line-height: 22px;
    color: var(--black-color);
    text-decoration: underline;
}

/** Footer Css */
.footer-area {
    padding: 0 0 40px;
}
.footer-newsletter {
    max-width: 320px;
    border-bottom: 1px solid var(--black-color);
    margin: 0 auto;
    margin-bottom: 20px;
}
.footer-newsletter form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
}
.footer-newsletter form input {
    width: 100%;
    padding: 10px 0;
    border: 0;
    background-color: transparent;
    font-size: 16px;
}
.footer-newsletter form button {
    border: 0;
    background-color: transparent;
    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
    font-weight: 400;
}
.footer-terms-mark {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}
.footer-terms-mark input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border: 1px solid var(--black-color);
    background: rgb(252, 246, 236) !important;
    cursor: pointer;
}
.footer-terms-mark p {
   font-size: 12px;
   line-height: 18px;
}
.footer-terms-mark p a {
    color: var(--black-color);
    text-decoration: underline;
}
.footer-copyright {
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 20px;
}
.footer-copyright p {
    margin-bottom: 10px;
}
.footer-text p {
    text-align: center;
    font-size: 12px;
    line-height: 18px;
}

/** Member Login Css */
.member-login-area {
    padding: 150px 0 80px;
}
.member-login-box {
    max-width: 480px;
    margin: 0 auto;
    background-color: rgb(247, 239, 226);
    padding: 40px 36px;
    border-radius: 10px;
}
.member-login-head h4 {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.member-login-head h2 {
    font-family: "Instrument Serif", serif;
    font-size: 36px;
    line-height: 42px;
    font-weight: 500;
    margin: 0 0 12px;
}
.member-login-head p {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 28px;
}
.member-login-error {
    background-color: rgba(0, 0, 0, 0.06);
    color: var(--black-color);
    font-size: 14px;
    line-height: 20px;
    padding: 12px 14px;
    border-radius: 6px;
    margin: 0 0 20px;
}
.member-login-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
}
.member-login-field {
    display: block;
}
.member-login-field span {
    display: block;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.member-login-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    background-color: rgb(252, 246, 236);
    font-family: inherit;
    font-size: 16px;
    line-height: 22px;
    color: var(--black-color);
}
.member-login-field input:focus {
    outline: none;
    border-color: var(--black-color);
}
.member-login-form button {
    margin-top: 8px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 10px 24px;
    border: 0;
    border-radius: 50px;
    background-color: var(--black-color);
    color: rgb(252, 246, 236);
    font-family: inherit;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    cursor: pointer;
}
.member-login-form button:hover {
    opacity: 0.7;
}

/** Enquiries Page Css */
.enquiries-area {
    padding: 150px 0 40px;
}
.enquiries-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}
.enquiries-img {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
}
.enquiries-img img {
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    height: 100%;
}
.enquiries-info {
    -ms-flex-preferred-size: 56%;
        flex-basis: 56%;
}
.enquiries-content h2 {
    font-family: "Instrument Serif", serif;
    font-size: 54px;
    line-height: 60px;
    font-weight: 500;
    margin: 0;
    margin-bottom: 10px;
}
.enquiries-content p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
    font-family: "Instrument Serif", serif;
}
.enquiries-content p span {
    font-weight: 700;
}
.single-enquirie-detail:not(:last-child) {
    margin-bottom: 10px;
}
.single-enquirie-detail h4 {
    font-weight: 600;
    margin: 0;
}
.single-enquirie-detail a {
    font-size: 14px;
    line-height: 20px;
    color: var(--black-color);
    text-decoration: underline;
}

/** Casting Page Css */
.casting-area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 0;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    margin-bottom: 40px;
}
.casting-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .4;
    width: 100%;
    height: 100%;
    background: var(--black-color);
}
.casting-content {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    color: var(--white-color);
    max-width: 750px;
    margin: 0 auto;
}
.casting-content-top {
    padding: 15px 0;
    border-top: 1px solid var(--gray-color);
}
.casting-content p {
    font-size: 16px;
    line-height: 22px;
    color: rgb(252, 246, 236);
}
.casting-content p span {
    color: var(--white-color);
    font-weight: 700;
}
.casting-content-middle {
    padding: 20px 0;
    border-top: 1px solid var(--gray-color);
    border-bottom: 1px solid var(--gray-color);
}
.casting-content-middle p:not(:last-child) {
    margin-bottom: 15px;
}
.casting-content-bottom {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-color);
    margin-bottom: 30px;
}
.casting-content-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
}
.casting-content-btn a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 200px;
    padding: 6px 24px;
    min-height: 44px;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    border: 1px solid rgb(252, 246, 236);
    color: rgb(252, 246, 236);
    border-radius: 50px;
}
.casting-content-btn a:hover {
    color: rgb(252, 246, 236);
    opacity: 0.7;
}

/** Product Page Css */
.product-details-top {
    padding: 150px 0 40px;
}
.model-profile-head h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.model-profile-head h2 {
    font-family: "Instrument Serif", serif;
    font-size: 42px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 16px;
}
.model-profile-intro {
    font-family: "Instrument Serif", serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--black-color);
    max-width: 760px;
    margin: 0 0 30px;
}
.model-profile-collage {
    width: 100%;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-auto-rows: minmax(0, 195px);
    gap: 10px;
    margin-bottom: 36px;
}
.model-profile-collage-main {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background-color: #181513;
    cursor: zoom-in;
    -webkit-tap-highlight-color: transparent;
    height: 100%;
    min-height: 0;
}
.model-profile-collage-item,
.model-profile-collage-wide,
.model-profile-collage-extra {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background-color: #181513;
    cursor: zoom-in;
    -webkit-tap-highlight-color: transparent;
    height: 100%;
    min-height: 0;
}
.model-profile-collage-wide {
    grid-column: 1 / -1;
}
.model-profile-collage-extra:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}
.model-profile-collage-main img,
.model-profile-collage-item img,
.model-profile-collage-wide img,
.model-profile-collage-extra img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
    pointer-events: none;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -webkit-filter: saturate(0.78) contrast(1.08) brightness(0.93) sepia(0.08);
            filter: saturate(0.78) contrast(1.08) brightness(0.93) sepia(0.08);
    -webkit-transition: -webkit-filter .35s ease, -webkit-transform .35s ease;
    transition: -webkit-filter .35s ease, -webkit-transform .35s ease;
    -o-transition: filter .35s ease, transform .35s ease;
    transition: filter .35s ease, transform .35s ease;
    transition: filter .35s ease, transform .35s ease, -webkit-filter .35s ease, -webkit-transform .35s ease;
}
.model-profile-collage-main:hover img,
.model-profile-collage-item:hover img,
.model-profile-collage-wide:hover img,
.model-profile-collage-extra:hover img {
    -webkit-filter: saturate(0.88) contrast(1.08) brightness(0.96) sepia(0.05);
            filter: saturate(0.88) contrast(1.08) brightness(0.96) sepia(0.05);
}
@media (hover: hover) {
    .model-profile-collage-main:hover img,
    .model-profile-collage-item:hover img,
    .model-profile-collage-wide:hover img,
    .model-profile-collage-extra:hover img {
        -webkit-transform: scale(1.02);
            -ms-transform: scale(1.02);
                transform: scale(1.02);
    }
}
.model-details-box {
    background-color: rgb(247, 239, 226);
    padding: 32px;
    border-radius: 10px;
}
.model-details-title {
    text-align: center;
    margin-bottom: 30px;
}
.model-details-title p {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 18px;
    margin: 0;
}
.model-details-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 2%;
}
.single-model-detail {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    background-color: rgb(252, 246, 236);
    padding: 24px 20px;
    border-radius: 10px;
}
.single-model-detail h4 {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 10px;
    color: var(--light-black);
}
.single-model-detail p {
    font-family: "Instrument Serif", serif;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin: 0;
    color: var(--black-color);
}
.product-details-content-top h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.product-details-content-top h2 {
    font-family: "Instrument Serif", serif;
    font-size: 42px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 10px;
}
.product-details-content-top p {
    font-family: "Instrument Serif", serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}
.product-details-content-top-author h3 {
    font-family: "Instrument Serif", serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    margin-bottom: 0;
}
.product-details-content-top-author span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
}
.product-details-content-top-img {
    margin: 10px 0 60px;
}
.product-details-content-top-img img {
    width: 100%;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
}


.product-details-content-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.product-details-content-info {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
}
.product-detail-info:first-child {
    border-top: 1px solid var(--gray-color);
}
.product-detail-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-color);
}
.product-detail-info span {
    font-size: 14px;
    line-height: 20px;
    color: var(--black-color);
    font-weight: 600;
}
.product-details-content-bottom-img {
    -ms-flex-preferred-size: 34%;
        flex-basis: 34%;
}
.product-details-content-bottom-img img {
    width: 100%;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 700px;
}

.product-details-content-cta {
    text-align: center;
    margin-top: 50px;
}
.product-details-content-cta p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
}
.product-details-content-cta a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 200px;
    padding: 6px 24px;
    min-height: 44px;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    background-color: var(--black-color);
    color: rgb(252, 246, 236);
    border-radius: 50px;
}
.product-details-content-cta a:hover {
    opacity: 0.7;
}

.product-faq-wrapper .faq-head h2 {
    font-weight: 600;
}
.product-faq-wrapper .faq-desc-content p:first-child {
    margin-bottom: 10px;
}

.featured-area {
    padding: 0 0 20px;
    background-color: rgb(247, 239, 226);
}
.featured-box {
    padding: 0 0 20px;
    background-color: rgb(247, 239, 226);
}
.featured-box-title {
    padding: 30px;
}
.featured-box-title h2 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

/* overrides */

.stellarnav.mobile li a {
    border: none !important;
}