@font-face {
    font-family: "Ethereal Demo";
    src: url('../fonts/ethereal-demo/EtherealDemo-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

/* 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;
}

/* ------------------------------------- */

:root {
    --green: #303D30;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    position: relative;
}



.btn {
    display: inline-flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 48px;
    border: 0.5px solid #303D30;
    backdrop-filter: blur(1px);
    color: #303D30;
    text-align: center;
    font-family: Mulish;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    background: transparent;
    transition: .35s ease all;
    cursor: pointer;
}

.btn:hover {
    background: #303C30;
    color: #fff;
}

/* HERO */
.hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%), url('../images/hero-section.png') lightgray 50% / cover no-repeat;
    padding: 100px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: #FFF;
    font-family: Chopard;
    font-size: 40px;
    font-style: normal;
    font-weight: 200;
    line-height: 42px;
    /* 105% */
    text-transform: uppercase;
}

.intro {
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.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: 833px;
    margin-bottom: 30px;
}

/* PROGRAMS */
.programs {
    background: #F4EFDE;
    padding: 70px 20px 50px;
    text-align: center;
}

.programs h2 {
    color: #303C30;
    font-family: Chopard;
    font-size: 32px;
    font-style: normal;
    font-weight: 200;
    line-height: 32px;
    /* 100% */
    text-transform: uppercase;
}

.programs>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: 618px;
    margin: 12px auto 40px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.program-card {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    background: #303C30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 40px 30px;
}

.program-icon {
    width: 118px;
    height: auto;
    margin-bottom: 42px;
}

.program-card h3 {
    width: 100%;
    color: #FFF;
    text-align: center;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 12px;
    transition: ease all 0.3s;
}

.program-arrow {
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
    opacity: 0.2;
    transition: ease all 0.3s;
}

.program-card:hover .program-arrow {
    opacity: 1;
}

.program-card:hover h3 {
    border-color: rgba(255, 255, 255, 0.93);
}

/* THERAPIES */
.therapies {
    display: flex;
    padding: 50px;
    justify-content: center;
    gap: 48px;
    background: #DCDACB;
}

.therapy-img {
    width: 100%;
    max-width: 583px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.therapy-img::after {
    content: "";
    position: absolute;
    left: -10%;
    bottom: -40px;
    width: 120%;
    height: 140px;
    background: rgba(255, 255, 255, .95);
    filter: blur(20px);
}

.therapy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.therapy-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.therapy-content h2 {
    color: #303C30;
    font-family: Chopard;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    /* 125% */
    text-transform: uppercase;
}

.therapy-content>p {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    max-width: 545px;
    margin: 11px 0 20px;
}

.therapy-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.therapy-box {
    padding: 20px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.70);
}

.therapy-box h4 {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    /* 125% */
    text-transform: uppercase;
    padding: 0 10px;
    margin-bottom: 16px;
}

.therapy-box ul {
    list-style: none;
}

.therapy-box li {
    position: relative;
    margin-bottom: 2px;
}

.therapy-box li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 21px;
    flex-shrink: 0;
    background-image: url('../images/chevron.svg');
    background-size: cover;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
}

.therapy-box li::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url('../images/arrow-2.svg');
    background-size: cover;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
}

.therapy-box li a {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    width: 100%;
    display: inline-flex;
    padding: 6px 32px;
    transition: ease all 0.3s;
    border-radius: 6px;
}

.therapy-box li:hover a {
    background: #DCDACB;
}


/* ASSESSMENTS */
.assessments {
    background: #F4EFDE;
    padding: 70px 50px;
    display: flex;
    justify-content: space-around;
    gap: 50px;
}

.assessment-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.assessment-content h2 {
    color: #303C30;
    font-family: Chopard;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    /* 125% */
    text-transform: uppercase;
}

.assessment-content p {
    color: #303C30;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    /* 131.25% */
    max-width: 592px;
    margin: 11px 0 23px;
}

.assessment-list {
    list-style: none;
}

.assessment-list li {
    width: 100%;
    max-width: 505px;
    display: flex;
    width: 505px;
    height: 55px;
    padding: 16px;
    align-items: center;
    gap: 20px;
    transition: ease all 0.3s;
    border-radius: 10px;
}

.assessment-list li:hover {
    background: rgba(255, 255, 255, 0.50);
}

.assessment-list li::before {
    content: "";
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    display: block;
    background-image: url('../images/chevron-2.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

.assessment-content .btn {
    margin-top: 32px;
}

.assessment-img {
    width: 100%;
    max-width: 543px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.assessment-img::after {
    content: "";
    position: absolute;
    left: -10%;
    bottom: -30px;
    width: 120%;
    height: 120px;
    background: rgba(255, 255, 255, .95);
    filter: blur(20px);
}

.assessment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* FORM */
.appointment {
    padding: 70px 50px 90px;
}

.form-box {
    width: 100%;
    max-width: 1204px;
    margin: 0 auto;
    padding: 110px 50px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #303D30;
}

.form-box h2 {
    color: #fff;
    font-family: Chopard;
    font-size: 32px;
    font-style: normal;
    font-weight: 100;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 58px;
}

.appointment-form {
    width: 684px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.appointment-form input {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #44523F;
    outline: 0;
    color: #F4EFDE;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 250;
    line-height: normal;
    letter-spacing: 0.32px;
    margin-bottom: 24px;
    padding-bottom: 12px;
}

.appointment-form input::placeholder {
    color: #F4EFDE;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 250;
    line-height: normal;
    letter-spacing: 0.32px;
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 10px 0 48px;
    cursor: pointer;
    position: relative;
    color: #F4EFDE;
    font-family: Mulish;
    font-size: 14px;
    font-style: normal;
    font-weight: 250;
    line-height: normal;
    letter-spacing: 0.28px;
}

/* hide default checkbox */
.check-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* custom box */
.checkmark {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #F4EFDE;
    position: relative;
    transition: .3s ease;
}

/* tick */
.checkmark:after {
    content: "";
    position: absolute;
    left: 3px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #111;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg) scale(0);
    transition: .25s ease;
}

/* checked state */
.check-row input:checked+.checkmark {
    background: #fff;
    border-color: #fff;
}

.check-row input:checked+.checkmark:after {
    transform: rotate(45deg) scale(1);
}

/* hover */
.check-row:hover .checkmark {
    border-color: #fff;
}

.submit-wrap {
    text-align: center;
}

.submit-btn {
    background: transparent;
    display: inline-flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 48px;
    border: 0.5px solid #F4EFDE;
    backdrop-filter: blur(1px);
    cursor: pointer;
    transition: .3s ease;
    color: #F4EFDE;
    text-align: center;
    font-family: Mulish;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #fff;
    color: var(--green);
}

/* AS SEEN */
.seen {
    padding: 90px 24px 80px;
}

.seen h2 {
    color: #303C30;
    font-family: Chopard;
    font-size: 32px;
    font-style: normal;
    font-weight: 100;
    line-height: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.logo-item {
    width: 100%;
}


/* 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: var(--green);
    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% */
}



/* Banner */

.longevity-banner {
    display: flex;
    justify-content: space-around;
    width: 100%;
    background: #F4EFDE;
}

.banner-left {
    width: 100%;
    padding: 100px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-left h1 {
    color: #303D30;
    font-family: "Ethereal Demo";
    font-size: 48px;
    font-style: normal;
    font-weight: 100;
    line-height: 45px;
    /* 93.75% */
    letter-spacing: 0.96px;
    text-transform: capitalize;
    margin-bottom: 24px;
}

.banner-left h1 span {
    font-family: Chopard;
}

.banner-left>p {
    color: #303D30;
    font-family: Mulish;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 133.333% */
    max-width: 600px;
}

.stats-wrap {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.stat-center {
    width: 178px;
    height: 178px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.biological-age {
    background-image: url('../images/biological-afe.svg');
}

.superior-range {
    background-image: url('../images/superior-range.svg');
}

.optimal-range {
    background-image: url('../images/optimal-range.svg');
}

.stat-center span {
    display: block;
    color: #303D30;
    text-align: center;
    font-family: Mulish;
    font-size: 12px;
    font-style: normal;
    font-weight: 200;
    line-height: 17px;
    /* 141.667% */
    margin-bottom: 6px;
}

.stat-center h3 {
    color: #303D30;
    font-family: "Ethereal Demo";
    font-size: 28px;
    font-style: normal;
    font-weight: 100;
    line-height: 40px;
    /* 142.857% */
    text-align: center;
}

.stat-center h3 span {
    font-family: Chopard;
    color: #303D30;
    font-size: 28px;
    font-style: normal;
    font-weight: 200;
    line-height: 40px;
    display: inline;
}

.stat-center small {
    color: #303D30;
    text-align: center;
    font-family: Mulish;
    font-size: 9px;
    font-style: normal;
    font-weight: 200;
    line-height: 17px;
    /* 188.889% */
}

.stat-box p {
    margin: 16px auto 0;
    color: #303D30;
    text-align: center;
    font-family: Mulish;
    font-size: 18px;
    font-style: normal;
    font-weight: 200;
    line-height: 22px;
    /* 122.222% */
    max-width: 150px;
}

.benefits h4 {
    color: #303D30;
    font-family: "Ethereal Demo";
    font-size: 20px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.check {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 70px;
    padding: 0;
    list-style: none;
}

.benefits .check {
    margin-bottom: 55px;
}

.check li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #303D30;
    font-family: Mulish;
    font-size: 18px;
    font-style: normal;
    font-weight: 200;
    line-height: 22px;
    /* 122.222% */
    position: relative;
}

.check li::before {
    content: "";
    display: block;
    background-image: url('../images/banner-check.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


.banner-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.banner-right {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 599px;
}

.banner-right::after {
    content: "";
    position: absolute;
    left: -10%;
    bottom: -40px;
    width: 120%;
    height: 140px;
    background: rgba(255, 255, 255, .95);
    filter: blur(20px);
}

.banner-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}