/* 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;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--baseFont);
}

body.active {
    overflow: hidden;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    background: transparent;
    border: 0;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 24px 0;
    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;
}

.header * {
    transition: all 0.3s ease;
}

.navbar-brand {
    display: block;
    max-width: 133px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
}

.navbar-brand img {
    width: 100%;
    height: auto;
    display: block;
}

.menu-wrap {
    display: flex;
    align-items: center;
    width: 33.33%;
}

#main-menu {
    display: block;
}

.desktop-nav {
    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;
}

.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: 140px;
    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 ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    position: relative;
}

/* 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;
}


/* ================= Toxopheresis CSS ================= */
.biolite-toxopheresis-page {
    width: 100%;
}

.biolite-toxopheresis-page .btp-hero {
    min-height: 504px;
    background-image: url('../images/toxopheresis-hero.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 128px 100px;
}

.biolite-toxopheresis-page .btp-hero-content h1 {
    color: #fff;
    font-family: Chopard;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 42px;
    /* 105% */
    text-transform: uppercase;
}

.biolite-toxopheresis-page .btp-hero-content p {
    color: #FFF;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    margin-top: 4px;
}

.biolite-toxopheresis-page .btp-intro {
    width: 100%;
    padding: 50px 50px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.biolite-toxopheresis-page .btp-intro 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: 957px;
}

.biolite-toxopheresis-page .btp-two-col {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 70px 70px 90px;
}

.biolite-toxopheresis-page .btp-cream {
    background: #F4EFDE;
}

.biolite-toxopheresis-page .btp-two-col>div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.biolite-toxopheresis-page .btp-two-col>div:first-child {
    max-width: 570px;
}

.biolite-toxopheresis-page .btp-two-col>div:last-child {
    max-width: 594px;
}

.biolite-toxopheresis-page .btp-two-col h2 {
    color: #303C30;
    font-family: Chopard;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    text-transform: uppercase;
    max-width: 492px;
}

.biolite-toxopheresis-page .btp-two-col p {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
}

.biolite-toxopheresis-page .btp-target-sec {
    display: flex;
    gap: 50px;
    align-items: stretch;
    justify-content: center;
    padding: 50px 70px;
    background: #DCDACB;
}

.biolite-toxopheresis-page .btp-target-img{
    width: 100%;
    max-width: 600px;
}

.biolite-toxopheresis-page .btp-target-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.biolite-toxopheresis-page .btp-target-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.biolite-toxopheresis-page .btp-target-content h2 {
    color: #303C30;
    font-family: Chopard;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    /* 125% */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.biolite-toxopheresis-page .btp-target-content p {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
}

.biolite-toxopheresis-page .btp-target-content ul {
    margin: 30px 0 16px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.biolite-toxopheresis-page .btp-target-content li,
.biolite-toxopheresis-page .btp-benefits li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;

    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
}

.biolite-toxopheresis-page .btp-target-content li::before,
.biolite-toxopheresis-page .btp-benefits li::before {
    content: "";
    width: 27px;
    height: 27px;
    aspect-ratio: 1/1;
    background-image: url('../images/list-icon.svg');
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
}



.biolite-toxopheresis-page .btp-consider {
    background: #fff;
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.biolite-toxopheresis-page .btp-consider 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;
}


.biolite-toxopheresis-page .btp-consider 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: 977px;
}



.biolite-toxopheresis-page .btp-journey {
    padding: 70px 100px 50px;
    background: #DCDACB;
}

.biolite-toxopheresis-page .btp-journey h2 {
    color: #303C30;
    font-family: Chopard;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 100% */
    text-transform: uppercase;
}

.biolite-toxopheresis-page .btp-journey>p {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    margin: 20px 0 32px;
}

.biolite-toxopheresis-page .btp-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.biolite-toxopheresis-page .btp-cards div {
    padding: 24px 28px 52px 24px;
    border-radius: 8px;
    background: #FFF;
}

.biolite-toxopheresis-page .btp-cards h3 {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    /* 125% */
    text-transform: uppercase;
    margin-bottom: 12px;
}

.biolite-toxopheresis-page .btp-cards p {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
}

.biolite-toxopheresis-page .btp-benefits {
    padding: 70px 100px 176px;
    background: #F4EFDE;
}

.biolite-toxopheresis-page .btp-benefits h2 {
    color: #303C30;
    font-family: Chopard;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    /* 100% */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.biolite-toxopheresis-page .btp-benefits p {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    max-width: 1092px;
}

.biolite-toxopheresis-page .btp-benefits ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 100px;
    margin: 30px 0;
}

.biolite-toxopheresis-page .btp-recovery {
    width: 90%;
    max-width: 1238px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 70px 96px;
    margin: -136px auto 70px;
    border-radius: 16px;
    background: #303C30;
}

.biolite-toxopheresis-page .btp-recovery h2 {
    color: #FFF;
    text-align: center;
    font-family: Chopard;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
    /* 112.5% */
    text-transform: uppercase;
}

.biolite-toxopheresis-page .btp-recovery p {
    color: #FFF;
    text-align: center;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
}

.biolite-toxopheresis-page .btp-mb-70 {
    margin-bottom: 70px;
}