/* Chopard Font Family */

@font-face {
    font-family: 'Chopard';
    src: url('../fonts/Chopard-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Chopard';
    src: url('../fonts/Chopard-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Chopard';
    src: url('../fonts/Chopard-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Chopard';
    src: url('../fonts/Chopard-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Chopard';
    src: url('../fonts/Chopard-RegularItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Chopard';
    src: url('../fonts/Chopard-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Chopard';
    src: url('../fonts/Chopard-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Chopard';
    src: url('../fonts/Chopard-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --color_base: 48, 61, 48;
    /* #303D30 */
    --primary1: 244, 239, 222;
    /* #F4EFDE */
    --primary2: 220, 218, 203;
    /* #DCDACB */
    --primary3: 111, 124, 100;
    /* #6F7C64 */
    --color_white: 255, 255, 255;
    --color_black: 0, 0, 0;
    --baseFont: "Mulish", sans-serif;
    --titleFont: "Mulish", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    margin: 0;
    font-family: var(--baseFont);
}

body.active {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    position: relative;
}

button {
    font-family: inherit;
    cursor: pointer;
    background: transparent;
    border: 0;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    transition: all 0.3s ease;
}

.header.active {
    background: rgb(var(--color_base));
}

.container-fluid {
    width: 100%;
    padding: 0 28px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
    min-height: 153px;
}

.header * {
    transition: all 0.3s ease;
}

.navbar-brand {
    display: block;
    width: 130px;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
    top: 20px;
}

.navbar-brand img {
    width: 100%;
    height: auto;
    display: block;
}

.menu-wrap {
    display: flex;
    align-items: center;
    width: 50%;
}

#main-menu {
    width: 100%;
    display: block;
}

.desktop-nav {
    width: 100%;
    display: flex;
    align-items: center;
}

.nav-item {
    position: static;
}

.nav-link {
    color: rgb(var(--primary1));
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    margin-right: 16px;
    padding: 0;
    position: relative;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    opacity: 0.7;
}

.menu-icon .nav-link {
    margin-right: 22px;
}

.icon-wrap .icon {
    width: 24px;
    height: 18px;
    display: block;
    position: relative;
}

.icon-wrap .icon::before,
.icon-wrap .icon::after,
.icon-wrap .icon {
    border-top: 1px solid rgb(var(--primary1));
}

.icon-wrap .icon::before,
.icon-wrap .icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
}

.icon-wrap .icon::before {
    top: 8px;
}

.icon-wrap .icon::after {
    top: 16px;
}

.dropdown.open .icon-wrap .icon {
    border-color: transparent;
}

.dropdown.open .icon-wrap .icon::before {
    top: 8px;
    transform: rotate(45deg);
}

.dropdown.open .icon-wrap .icon::after {
    top: 8px;
    transform: rotate(-45deg);
}

.close-icon02 {
    width: 24px;
    height: 24px;
    display: none;
    position: relative;
    margin-right: 18px;
    transform: scale(0);
    z-index: 9999;
}

.close-icon02::before,
.close-icon02::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 2px;
    width: 1px;
    height: 22px;
    background: rgb(var(--primary1));
}

.close-icon02::before {
    transform: rotate(45deg);
}

.close-icon02::after {
    transform: rotate(-45deg);
}

.close-icon02.active {
    display: block;
    transform: scale(1);
}

/* Right links */
.top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    width: 33.33%;
    position: relative;
    z-index: 99999;
}

.top-right a {
    color: rgb(var(--primary1));
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--primary1));
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgb(var(--primary1));
    font-size: 12px;
    font-weight: 300;
}

.btn-custom:hover {
    background: rgb(var(--primary1));
    color: #2c170f;
}

/* Dropdown / Mega menu */
.dropdown-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgb(var(--color_base));
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    padding: 0;
}

.dropdown.open>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-container {
    height: 100%;
    padding: 0 28px;
    display: flex;
    flex-direction: column;
}

.top-space {
    height: 188px;
    flex-shrink: 0;
    position: relative;
}

.top-space::before {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    bottom: 30px;
    height: 1px;
    background: rgb(var(--primary3));
}

.dropdown-menu-wrap {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 40px;
}

.primary-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
}

.menu-wrapper {
    display: flex;
    width: 100%;
    gap: 50px;
}

.tabs-list {
    width: 28%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tabs-list li {
    margin-bottom: 18px;
}

.tab-btn {
    color: rgba(var(--primary3), 1);
    font-family: var(--titleFont);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    text-align: left;
    padding: 0;
}

.tab-btn.active,
.tab-btn:hover {
    color: rgb(var(--primary1));
}

.tab-content {
    width: 72%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.submenu,
.only-links,
.normal-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu {
    display: flex;
    flex-wrap: wrap;
}

.submenu li {
    width: calc(33.333% - 10px);
    margin-bottom: 14px;
    padding-right: 10px;
}

.submenu a,
.only-links a,
.normal-links a {
    color: rgb(var(--primary1));
    font-size: 16px;
    font-weight: 200;
}

.submenu a:hover,
.only-links a:hover,
.normal-links a:hover {
    color: rgba(var(--primary1), 0.7);
}

.primary-menu .tabs-list {
    width: 30%;
}

.primary-menu .tab-content {
    width: 70%;
}

.primary-menu .submenu li {
    width: calc(50% - 10px);
}

.normal-links li {
    margin-bottom: 18px;
}

.normal-links a {
    font-family: var(--titleFont);
    font-size: 28px;
    font-weight: 300;
}

.only-links {
    display: flex;
    flex-wrap: wrap;
}

.only-links li {
    width: 25%;
    margin-bottom: 16px;
    padding-right: 12px;
}

.menu-bottom {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.menu-links,
.social-media {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-links a,
.social-media a,
.social-media span {
    color: rgb(var(--primary1));
    font-size: 14px;
    font-weight: 250;
    text-transform: uppercase;
}

/* Mobile toggler */
.navbar-toggler {
    display: none;
    width: 28px;
    height: 22px;
    padding: 0;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1003;
}

.navbar-toggler span {
    display: block;
    height: 1px;
    background: rgb(var(--primary1));
}

.navbar-toggler.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
    display: none;
}

.accordion-menu {
    padding: 20px 0 40px;
}

.accordion-menu>a,
.accordion-button,
.accordion-sub-button {
    width: 100%;
    color: rgb(var(--primary1));
    display: block;
    text-align: left;
    padding: 14px 0;
    border-bottom: 1px solid rgba(var(--primary1), 0.15);
    text-transform: uppercase;
    font-size: 15px;
}

.accordion-button {
    position: relative;
}

.accordion-button::after {
    content: "+";
    position: absolute;
    right: 0;
}

.accordion-item.active>.accordion-button::after {
    content: "-";
}

.accordion-body {
    display: none;
    padding: 10px 0 14px;
}

.accordion-item.active>.accordion-body {
    display: block;
}

.accordion-body ul {
    display: none;
    margin: 0;
    padding: 0 0 10px 12px;
    list-style: none;
}

.accordion-sub-button.active+ul,
.accordion-body>ul {
    display: block;
}

.accordion-body li a {
    color: rgb(var(--primary1));
    display: block;
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.85;
}

/* ================= Footer CSS ================= */

/* MAP */
.map {
    width: 100%;
    padding: 0 100px;
    position: relative;
    margin-bottom: -100px;
    z-index: 99;
}

.map iframe {
    width: 100%;
    border-radius: 16px;
}


/* FOOTER */
.footer {
    background: #303D30;
    color: rgba(255, 255, 255, .78);
    padding-top: 154px;
    position: relative;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 75px;
}

.footer-logo img {
    width: 285px;
    height: auto;
    object-fit: cover;
}



.footer-grid {
    width: calc(100% - 20px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 50px 40px;
    gap: 50px;
    border-top: 1px solid rgba(243, 237, 221, 0.20);
    border-bottom: 1px solid rgba(243, 237, 221, 0.20);
}

.footer-grid>div {
    display: flex;
    flex-direction: column;
}

.footer p,
.footer a {
    color: #FFF;
    font-family: Mulish;
    font-size: 18px;
    font-style: normal;
    font-weight: 250;
    line-height: 23px;
    /* 127.778% */
    margin-bottom: 20px;
    display: inline-flex;
}

.footer p {
    max-width: 215px;
}

.footer h4 {
    color: #FFF;
    font-family: Chopard;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 80px;
}

.social-links>div:nth-child(2) {
    display: flex;
    gap: 12px;
}

.social-links>div>img {
    width: 59px;
    height: 59px;
    aspect-ratio: 1/1;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 6px;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    background: #F3EDDD;
}

.socials a img {
    height: 100%;

}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 60px 50px;
}

.footer-bottom span,
.footer-bottom span a {
    color: rgba(255, 255, 255, 0.50);
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 250;
    line-height: 23px;
    /* 143.75% */
}

.footer-bottom span a {
    margin-bottom: 0;
}


/* ================= Xerf CSS ================= */
.xerf-btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #303D30;
    font-size: 12px;
    font-weight: 300;
    margin-top: 10px;
    color: #303D30;
    transition: ease all 0.3s;
}

.xerf-btn-custom:hover {
    background: #303D30;
    color: #fff;
}

.xerf-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.new-page h2 {
    color: #303C30;
    text-align: center;
    font-family: Chopard;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    /* 100% */
    text-transform: uppercase;
}

/* Hero */
.xerf-hero {
    width: 100%;
    height: 661px;
    max-height: 100vh;
    background-image: url('../images/xerf-hero.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.xerf-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
}


/* Intro */
.xerf-intro-section {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.xerf-intro-section p {
    color: #303C30;
    text-align: center;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    max-width: 812px;
    margin-bottom: 21px;
}

.xerf-intro-section p:last-child {
    margin-bottom: 0;
}


/* Reasons */
.xerf-reasons-section {
    width: 100%;
    padding: 70px 40px;
    background: #F4EFDE;
}

.xerf-reasons-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.xerf-reason-card {
    padding: 30px 36px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.50);
}

.xerf-reason-card>div {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.xerf-reason-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #303C30;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xerf-reason-icon img {
    width: 36px;
    height: auto;
    object-fit: cover;
}

.xerf-reason-card h3 {
    color: #303C30;
    font-family: Chopard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 131.25% */
}

.xerf-reason-card p {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    max-width: 301px;
}

/* Before After */
.xerf-before-after-section {
    width: 100%;
    padding: 70px 40px;
    background: #DCDACB;
}

.xerf-before-after-slider {
    width: 100%;
    max-width: 740px;
    margin: 32px auto 0;
}

.xerf-before-after-card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.xerf-before-after-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.xerf-before-after-slider .splide__arrow {
    background: transparent;
    opacity: 1;
}

.xerf-before-after-slider .splide__arrow svg {
    fill: #25352a;
    width: 23px;
    height: 46px;
    aspect-ratio: 1/2;
}

.xerf-before-after-slider .splide__arrow--prev {
    left: -100px;
}

.xerf-before-after-slider .splide__arrow--next {
    right: -100px;
}

/* Info Dark */
.xerf-info-dark-section {
    width: 100%;
    padding: 70px 50px;
    background: #303C30;
}

.xerf-info-dark-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.xerf-info-box h2 {
    text-align: left;
    line-height: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.xerf-info-box p {
    color: #FFF;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    margin-bottom: 21px;
}

.xerf-info-box p:last-child {
    margin-bottom: 0;
}

/* Suitable */
.xerf-suitable-section {
    width: 100%;
    padding: 70px 40px;
}

.xerf-suitable-section h2 {
    max-width: 852px;
    margin: 0 auto;
}

.xerf-suitable-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 36px 0 50px;
}

.xerf-suitable-card {
    padding: 36px 26px;
    border-radius: 20px;
    background: #DCDACB;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.xerf-suitable-card img {
    width: 40px;
    height: auto;
    object-fit: cover;
}

.xerf-suitable-card h3 {
    color: #303C30;
    text-align: center;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    /* 125% */
    text-transform: uppercase;
}

.xerf-suitable-card p {
    color: #303C30;
    text-align: center;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    max-width: 242px;
}

.xerf-suitable-section .xerf-container>p {
    color: #303C30;
    text-align: center;
    font-family: Mulish;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 161.538% */
    text-transform: uppercase;
    max-width: 916px;
    margin: 0 auto;
}

/* Treatment */
.xerf-treatment-section {
    width: 100%;
    padding: 50px 40px;
    background: #F4EFDE;
}

.xerf-treatment-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 50px;
}

.xerf-treatment-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 593px;
}

.xerf-treatment-content h2 {
    text-align: left;
    max-width: 466px;
    margin-bottom: 20px;
}

.xerf-treatment-content p {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    margin-bottom: 21px;
}

.xerf-treatment-content p:last-child {
    margin-bottom: 0;
}

.xerf-treatment-content .xerf-btn-custom {
    margin-top: 10px;
}

.xerf-treatment-image {
    width: 100%;
    max-width: 523px;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
}

.xerf-treatment-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Journey */
.xerf-journey-section {
    width: 100%;
    padding: 70px 50px 60px;
    background: #303C30;
}

.xerf-journey-section h2 {
    color: #FFF;
}

.xerf-journey-tabs {
    width: 100%;
    max-width: 645px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(246, 242, 232, 0.25);
}

.xerf-journey-tab {
    background: transparent;
    border: 0;
    padding: 0 0 12px;
    cursor: pointer;
    color: #FFF;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    /* 125% */
    text-transform: uppercase;
    position: relative;
}

.xerf-journey-tab.active::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.xerf-journey-content {
    display: none;
    align-items: center;
    gap: 32px;
    max-width: 645px;
    margin: 0 auto;
}

.xerf-journey-content-default {
    max-width: 780px;
}

.xerf-journey-content.active {
    display: flex;
}

.xerf-journey-image {
    border-radius: 12px;
    overflow: hidden;
}

.xerf-journey-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.xerf-journey-text p {
    color: #FFF;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    max-width: 362px;
}

.xerf-journey-text .xerf-btn-custom {
    margin-top: 40px;
}

.xerf-btn-light {
    color: #f6f2e8;
    border-color: rgba(246, 242, 232, 0.55);
}

.xerf-btn-light:hover {
    background: #f6f2e8;
    color: #23352a;
    border-color: #f6f2e8;
}

.xerf-bullet {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

#before .xerf-bullet li:nth-child(2) {
    max-width: 370px;
}

#during .xerf-bullet li:nth-child(2) {
    max-width: 400px;
}

#after .xerf-bullet li {
    max-width: 520px;
}

.xerf-bullet li {
    color: #FFF;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.xerf-bullet li::before {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    aspect-ratio: 1/1;
    background-image: url('../images/bullet.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Combination */
.xerf-combination-section {
    width: 100%;
    padding: 70px 40px;
    background: #DCDACB;
    text-align: center;
}

.xerf-combination-section h2 {
    margin-bottom: 23px;
}

.xerf-combination-section p {
    max-width: 891px;
    color: #303C30;
    text-align: center;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    margin: 0 auto 20px;
}

.xerf-combination-grid {
    width: 100%;
    max-width: 929px;
    margin: 36px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.endo-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1216px;
    gap: 12px;
}

.xerf-combination-grid span {
    width: 100%;
    padding: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(48, 60, 48, 0.10);
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
}

/* FAQ */
.xerf-faq-section {
    width: 100%;
    padding: 70px 50px;
}

.xerf-faq-wrapper {
    width: 100%;
    max-width: 931px;
    margin: 36px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.xerf-faq-item {
    border-radius: 16px;
    overflow: hidden;
    background: #F4EFDE;
    transition: background 0.3s ease;
}

.xerf-faq-question {
    width: 100%;
    padding: 24px 32px 24px 24px;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #333;
    font-family: Chopard;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    text-align: left;
    transition: color 0.3s ease;
}

.xerf-faq-answer {
    max-height: 0;
    overflow: hidden;
    background: transparent;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.3s ease;
}

.xerf-faq-answer-inner {
    padding: 0 24px 36px;
}

.xerf-faq-answer p {
    color: #FFF;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    max-width: 762px;
    margin: 0;
}

.xerf-faq-item.active {
    background: #303C30;
}

.xerf-faq-item.active .xerf-faq-question {
    color: #fff;
}

.xerf-faq-item.active .xerf-faq-answer {
    opacity: 1;
}

.xerf-faq-icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex: 0 0 18px;
}

.xerf-faq-icon div {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 1.5px;
    background: currentColor;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.xerf-faq-icon div:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
}

.xerf-faq-item.active .xerf-faq-icon div:nth-child(1) {
    transform: translate(-50%, -50%) rotate(180deg);
}

.xerf-faq-item.active .xerf-faq-icon div:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}


/* Endolift Page */
.new-hero {
    width: 100%;
    height: 661px;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

.endol-hero {
    background-image: url('../images/endo-hero.png');
}

.new-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
}

.new-hero-content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 9;
    padding: 58px 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.new-hero-content h1 {
    color: #fff;
    font-family: Chopard;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 42px;
    /* 105% */
    text-transform: uppercase;
    margin-bottom: 11px;
}

.new-hero-content p {
    color: #FFF;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    max-width: 656px;
}


/* Endolift Info Section */
.endolift-info-section {
    width: 100%;
    padding: 50px;
}

.endolift-info-box {
    width: 100%;
    max-width: 1238px;
    margin: 0 auto;
    padding: 70px 40px;
    border-radius: 30px;
    background: #303C30;
    text-align: center;
}

.endolift-info-box h2 {
    color: #fff;
    line-height: 36px;
    margin-bottom: 20px;
}

.endolift-info-box p {
    color: #FFF;
    text-align: center;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    max-width: 911px;
    margin: 0 auto 21px;
}

.endolift-info-box p:last-child {
    margin-bottom: 0;
}

/* Endolift Aware Section */
.endolift-aware-section {
    width: 100%;
    padding: 70px 50px;
    background: #DCDACB;
}

.endolift-aware-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.endolift-aware-container>h2 {
    margin-bottom: 50px;
}

.endolift-aware-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.endolift-aware-col h3 {
    color: #303C30;
    font-family: Chopard;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
    /* 180% */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.endolift-aware-col .xerf-bullet li {
    color: #303C30;
}

.endolift-aware-col .xerf-bullet li::before {
    background-image: url('../images/bullet-dark.svg');
}

.bg-beige {
    background: #F4EFDE;
}

.bg-beige .xerf-suitable-card {
    background: rgba(255, 255, 255, 0.80);
}

.endolift-surgery h2 {
    max-width: 770px;
    line-height: 40px;
}

.choose-endolift {
    background: #fff;
    padding: 70px 40px;
}

.choose-endolift .xerf-treatment-content h2 {
    max-width: unset;
    margin-bottom: 30px;
}

.choose-endolift .xerf-treatment-content {
    max-width: 610px;
}

.choose-endolift .xerf-treatment-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 36px;
}

.choose-endolift .xerf-treatment-content ul li {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    max-width: 536px;
}

.choose-endolift .xerf-treatment-content ul li strong {
    font-weight: 500;
}

.choose-endolift .xerf-treatment-content ul li:nth-child(4) {
    max-width: 446px;
}

.xerf-suitable-grid:last-child {
    margin-bottom: 0 !important;
}

/* Hair Transplant */
.hair-transplant-hero {
    background-image: url('../images/hair-transplant-hero.png');
}

.hair-transplant-hero::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
}

.hair-transplant-hero .new-hero-content {
    padding: 100px;
}

.hair-transplant-hero .new-hero-content p {
    max-width: 559px;
}

.hair-intro-section p {
    max-width: 1052px;
}

/* Before After */
.ht-before-after-section {
    padding: 50px 30px;
    background: #F4EFDE;
}

.ht-before-after-section h2 {
    margin-bottom: 32px;
}

.ht-before-slider {
    width: 100%;
}

.ht-before-slider .splide__track {
    overflow: hidden;
}

.ht-before-card {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.ht-before-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.ht-before-slider .splide__arrows {
    position: relative;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ht-before-slider .splide__arrow {
    position: static;
    transform: none;
    background: transparent;
    opacity: 1;
}


.ht-before-slider .splide__arrow svg {
    fill: #25352a;
    width: 18px;
    height: 36px;
    aspect-ratio: 1/2;
}

/* Doctor Section */
.ht-doctor-section {
    padding: 50px;
}

.ht-doctor-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ht-doctor-content h2 {
    line-height: 36px;
    margin-bottom: 8px;
    text-align: left;
}

.ht-doctor-content span {
    display: block;
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ht-doctor-content p {
    max-width: 582px;
    margin-bottom: 21px;
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
}

.ht-doctor-content p:last-child {
    margin-bottom: 0;
}

.ht-doctor-content .xerf-btn-custom {
    margin-top: 15px;
}

.ht-doctor-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.ht-doctor-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Technique */
.ht-technique-section {
    padding: 70px 40px;
    background: #DCDACB;
}

.ht-section-heading {
    max-width: 831px;
    margin: 0 auto 36px;
    text-align: center;
}

.ht-section-heading h2 {
    margin-bottom: 20px;
}

.ht-section-heading h2:last-child {
    margin-bottom: 0;
}

.ht-section-heading p {
    color: #303C30;
    text-align: center;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
}

.ht-technique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ht-technique-card,
.ht-process-card {
    display: inline-flex;
    padding: 32px 38px 46px 32px;
    flex-direction: column;
    border-radius: 12px;
    background: #FFF;
}

.ht-process-card {
    padding: 32px 38px 40px 32px;
}

.ht-technique-card h3,
.ht-process-card h3 {
    color: #303C30;
    font-family: Chopard;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 120% */
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ht-technique-card p,
.ht-process-card p {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
}

.ht-technique-card p:not(:last-child) {
    margin-bottom: 21px;
}

/* Approach */
.ht-approach-section {
    padding: 55px 40px;
}

.ht-approach-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ht-approach-image {
    border-radius: 12px;
    overflow: hidden;
}

.ht-approach-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ht-approach-content h2 {
    line-height: 36px;
    margin-bottom: 20px;
    text-align: left;
}

.ht-approach-content p {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
}

.ht-approach-content p:not(:last-child) {
    margin-bottom: 21px;
}

/* Benefit */
.ht-benefit-section {
    padding: 70px 50px;
    background: #303C30;
}

.ht-benefit-section h2 {
    color: #fff;
    margin-bottom: 20px;
    text-align: left;
}

.ht-benefit-section p {
    color: #FFF;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    max-width: 1197px;
    margin-bottom: 21px;
}

.ht-benefit-section p:last-child {
    margin-bottom: 0;
}

.ht-benefit-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 36px 0;
}

.ht-benefit-list li {
    position: relative;
    padding: 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: #FFF;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    display: flex;
    align-items: center;
    gap: 14px;
}

.ht-benefit-list li::before {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    aspect-ratio: 1/1;
    background-image: url('../images/bullet.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

/* Process */
.ht-process-section {
    padding: 50px 40px;
    background: #DCDACB;
}

.ht-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Recovery */
.ht-recovery-section {
    padding: 70px 40px 240px;
    background: #F4EFDE;
}

.ht-recovery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.ht-recovery-content h2 {
    text-align: left;
    line-height: 36px;
    margin-bottom: 20px;
}

.ht-recovery-content p {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
}

.ht-recovery-content p:not(:last-child) {
    margin-bottom: 21px;
}

.ht-suitable-section {
    margin-top: -170px;
    padding: 0 40px 70px;
}

.ht-suitable-box {
    padding: 70px 40px 50px;
    border-radius: 16px;
    background: #303C30;
    text-align: center;
}

.ht-suitable-box h2 {
    color: #fff;
    line-height: 36px;
    margin-bottom: 20px;
}

.ht-suitable-box p {
    color: #FFF;
    text-align: center;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    max-width: 885px;
    margin: 0 auto 21px;
}

.ht-suitable-box p:last-child {
    margin-bottom: 0;
}

/* Choose */
.ht-choose-section {
    padding: 50px 40px;
    margin-bottom: 70px;
    background: #DCDACB;
}

.ht-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.ht-choose-content h2 {
    line-height: 36px;
    text-align: left;
    margin-bottom: 20px;
}

.ht-choose-content p {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
}

.ht-choose-content p:not(:last-child) {
    margin-bottom: 21px;
}

.ht-choose-image {
    border-radius: 12px;
    overflow: hidden;
}

.ht-choose-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}