/* Universe Lt Std */

/* Light */
@font-face {
    font-family: 'Univers LT Std';
    src: url('../font/universe-lt/UniversLTStd-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Regular */
@font-face {
    font-family: 'Univers LT Std';
    src: url('../font/universe-lt/UniversLTStd.otf') format('opentype');
    font-weight: 400;
}

/* Bold */
@font-face {
    font-family: 'Univers LT Std';
    src: url('../font/universe-lt/UniversLTStd-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --white: #FFFFFF;
    --font-heading: "Univers LT Std";
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

.section-label {
    display: inline-block;
    color: #DBA5AB;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    margin-bottom: 6px;
}

.section-heading {
    color: #4E5859;
    font-family: "Univers LT Std";
    font-size: 36px;
    font-style: normal;
    font-weight: 300;
    line-height: 50px;
    /* 138.889% */
    text-transform: uppercase;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
    display: inline-flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: #FFF;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 129.412% */
    text-transform: uppercase;
    cursor: pointer;
    transition: all .45s ease;
    transform-origin: left;
}

.btn img {
    width: 14px;
    height: auto;
    object-fit: cover;
    transition: transform 0.45s ease;
    transform-origin: left;
}

.btn:hover {
    background: #9ABDAA;
    padding-right: 24px;
}

.btn:hover img {
    transform: scaleX(1.2);
}

.btn-secondary {
    background: #DBA5AB;
    border: 1px solid #DBA5AB;
}

.btn-secondary:hover {
    background: #EAB5BA;
    border-color: #EAB5BA;
}

.btn-green {
    background: #9ABDAA;
    border: 1px solid #9ABDAA;
}

.btn-green:hover {
    background: #B7E4CC;
    border-color: #B7E4CC;
}

.call-btn {
    display: flex;
    width: 46px;
    height: 46px;
    padding: 7px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    transition: background 0.45s ease;
}

.call-btn svg {
    width: 18px;
    height: 18px;
    object-fit: cover;
}


.call-btn svg path {
    transition: all 0.45s ease;
}

.call-btn:hover {
    background: #9ABDAA;
}

.call-btn-outline {
    border: 1px solid #4E5859;
}

.call-btn-outline:hover {
    border-color: #DBA5AB;
    background: #DBA5AB;
}

.call-btn-outline svg path {
    fill: #4E5859;
}

.call-btn-outline:hover svg path {
    fill: #fff;
}

.call-btn-outline-white {
    border: 1px solid #fff;
    background: transparent;
}

.call-btn-outline-white:hover {
    border-color: #DBA5AB;
    background: #DBA5AB;
}

.btn-wrapper {
    width: 100%;
    display: flex;
    gap: 12px;
}



/* ==========================================================================
   HEADER
   ========================================================================== */
.header-wrapper {
    width: calc(100% - 40px);
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 15px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
}

.logo img {
    width: 162px;
    height: auto;
    object-fit: cover;
}

.main-nav {
    display: flex;
    gap: 36px;
    justify-content: flex-end;
    flex: 1;
}

.navbar {
    display: flex;
    align-items: stretch;
    gap: 30px;
    margin-left: auto;
    position: static;
}

.navbar>a,
.nav-item>a {
    color: #FFF;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 120% */
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.nav-item>a img {
    width: 20px;
    height: auto;
    object-fit: cover;
}

.nav-item>a img {
    transition: all 0.3s ease;
}

.nav-item.active>.nav-link img {
    transform: rotate(180deg);
}

/*==================================================
    Navbar
==================================================*/

.nav-item {
    position: static;
}

.nav-link,
.nav-link-simple {
    height: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;

    color: #FFF;
    font-family: Poppins;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    gap: 6px;

    transition: .3s;
}

.nav-link img {
    width: 20px;
    transition: .3s;
}

.nav-item.active>.nav-link img {
    transform: rotate(180deg);
}


/*==================================================
    Dropdown
==================================================*/

.dropdown-menu {
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    width: 240px;
    background: #fff;
    border-radius: 10px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
}

.has-dropdown {
    position: relative;
}

.nav-item.active>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    transition: all 0.3s ease;
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.dropdown-menu a:hover {
    background: #f7f7f7;
    color: #DBA5AB;
}


/*==================================================
    Mega Menu
==================================================*/

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 20px);
    background: #fff;
    border-radius: 12px;
    padding: 36px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.35s ease;
    border-radius: 6px;
    background: #FFF;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.19);

}

.nav-item.active>.mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;

}


/*==================================================
    Sidebar
==================================================*/

.mega-sidebar {
    display: flex;
    flex-direction: column;
    border-right: 2px solid rgba(78, 88, 89, 0.20);
    padding-right: 40px;
}

.mega-tab {
    border: 0;
    background: none;
    text-align: left;
    cursor: pointer;
    padding: 10px 0;
    color: #4E5859;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 130% */
    transition: all 0.3s ease;

}

.mega-tab:hover {
    color: #DBA5AB;
}

.mega-tab.active {
    color: #DBA5AB;
}


/*==================================================
    Panels
==================================================*/

.mega-panels {
    position: relative;
    min-height: 280px;
}

.mega-panel {
    position: absolute;
    inset: 0;
    display: none;
}

.mega-panel.active {
    display: block;
}

.mega-links {
    column-count: 2;
}

.mega-links a {
    display: flex;
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    transition: all 0.3s ease;
}

.mega-links a+a {
    margin-top: 20px;
}

.mega-links a:hover {
    color: #DBA5AB;
}


/*==================================================
    Watermark
==================================================*/

.mega-watermark {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 267px;
    height: 265px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    pointer-events: none;
}

.mega-watermark img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


/*==================================================
    Burger
==================================================*/

.menu-toggle {

    display: none;

    width: 28px;

    background: none;
    border: 0;

    padding: 0;

    cursor: pointer;

    flex-direction: column;

    justify-content: space-between;

    height: 20px;

}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/*==================================================
    Mobile Placeholder
==================================================*/

.mobile-nav {
    display: none;
}


.header-btn {
    display: flex;
    align-items: center;
    gap: 12px;
}



/* ==========================================================================
   HERO Section
   ========================================================================== */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    justify-content: center;
    padding: 60px 40px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    pointer-events: none;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to top,
            rgba(154, 189, 170, 0.9) 0%,
            rgba(154, 189, 170, 0.5) 40%,
            rgba(154, 189, 170, 0) 100%);
}

.hero-content {
    width: 100%;
    max-width: 676px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    color: var(--white, #FFF);
    text-align: center;
    font-family: "Univers LT Std";
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 58px;
    /* 145% */
    text-transform: uppercase;
    position: relative;
    margin-bottom: 16px;
}

.hero-content h1::after {
    content: '';
    width: 256px;
    height: 1px;
    background: #fff;
    display: block;
    margin: 12px auto 0;
    pointer-events: none;
}

.hero-content h1::before {
    content: '';
    width: 48px;
    height: 4px;
    background: #9ABDAA;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-content p {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin-bottom: 24px;
}

.welcome-strip {
    width: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F7F5;
    position: relative;
    height: 86px;
    overflow: hidden;
}

.welcome-strip p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    text-align: center;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 64px);
    margin: 0;
    opacity: 0;
    animation: fadeText 15s infinite;
    transition: opacity 0.6s ease;
}


.welcome-strip p:nth-child(1) {
    animation-delay: 0s;
}

.welcome-strip p:nth-child(2) {
    animation-delay: 5s;
}

.welcome-strip p:nth-child(3) {
    animation-delay: 10s;
}

@keyframes fadeText {

    0%,
    100% {
        opacity: 0;
    }

    10%,
    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }
}

.welcome-strip p span {
    color: #9ABDAA;
}

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */
.trust-badges {
    width: 100%;
    padding: 70px 40px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.badge-item {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 6px;
    background: rgba(78, 88, 89, 0.04);
}

.badge-item img {
    width: 68px;
    height: auto;
    object-fit: cover;
}

.badge-item:nth-child(3) img {
    width: 135px;
}

.badge-item:nth-child(4) img {
    width: 165px;
}

.badge-item span {
    color: #4E5859;
    text-align: center;
    font-family: "Univers LT Std";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    /* 138.889% */
    text-transform: uppercase;
    max-width: 193px;
    margin-top: 20px;
}

.stars-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.badge-item span+.stars-wrapper {
    margin-top: 10px;
}

.stars-wrapper img {
    width: 21px;
    height: auto;
    object-fit: cover;
}

.badge-item p {
    color: #4E5859;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    /* 128.571% */
    max-width: 228px;
    margin-top: 10px;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-section {
    width: 100%;
    padding: 70px 40px;
    background: rgba(154, 189, 170, 0.12);
    position: relative;
}

.floating-watermark {
    position: absolute;
    top: 26px;
    right: 40px;
    width: 280px;
    height: 279px;
    z-index: 1;
    pointer-events: none;
}

.floating-watermark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-heading-wrapper {
    width: 100%;
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.about-heading-wrapper .section-heading {
    max-width: 521px;
    width: 100%;
}

.about-heading-wrapper p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 748px;
    width: 100%;
    padding-top: 17px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.about-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 2;

    background: linear-gradient(to top,
            rgba(154, 189, 170, 0.85) 0%,
            rgba(154, 189, 170, 0.55) 50%,
            rgba(154, 189, 170, 0) 100%);
}

.about-image img {
    width: 100%;
    border-radius: 6px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.about-content p+p {
    margin-top: 22px;
}

.about-content p+.btn-wrapper {
    margin-top: 36px;
}



/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-section {
    padding: 70px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-section>p {
    color: #4E5859;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 748px;
    margin: 6px 0 32px;
}

.services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.service-card {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 110px;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to top,
            rgba(154, 189, 170, 0.85) 0%,
            rgba(154, 189, 170, 0.60) 35%,
            rgba(154, 189, 170, 0.25) 70%,
            rgba(154, 189, 170, 0) 100%);
}

.service-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -200px;
    width: 100%;
    height: 200px;
    pointer-events: none;
    z-index: 2;

    background: linear-gradient(to top,
            rgba(154, 189, 170, 0.80) 0%,
            rgba(154, 189, 170, 0.60) 35%,
            rgba(154, 189, 170, 0.30) 70%,
            rgba(154, 189, 170, 0) 100%);
    transition: all 0.45s ease;
}

.service-card:hover::after {
    bottom: 0;
}

.service-card-img,
.service-card-img img {
    width: 100%;
    height: 100%;
}

.service-card-img {
    position: relative;
    overflow: hidden;
}

.service-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(78, 88, 89, 0.40);
    pointer-events: none;
    z-index: 1;
}

.service-card-img img {
    object-fit: cover;
    transition: all 0.45s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-content {
    position: absolute;
    inset: 0;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card-content>div {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.45s ease;
}

.service-card:hover .service-card-content>div {
    max-height: 400px;
    visibility: visible;
    opacity: 1;
}

.service-card-content span {
    color: #FFF;
    text-align: center;
    font-family: "Univers LT Std";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    /* 116.667% */
    text-transform: uppercase;
    display: block;
    max-width: 245px;
}

.service-card-content p {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 245px;
    padding: 10px 0 24px;
}

.service-card-content a {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    display: block;
}

/* ==========================================================================
   CLINICS
   ========================================================================== */
.clinics-section {
    width: 100%;
    padding: 70px 56px;
    background: #F3F7F5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clinics-section>p {
    color: #4E5859;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 546px;
    margin: 6px 0 40px;
}

.clinics-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.clinic-card {
    width: 100%;
    border-radius: 6px;
    background: #9ABDAA;
    overflow: hidden;
}

.clinic-image {
    width: 100%;
    overflow: hidden;
}

.clinic-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.clinic-body {
    padding: 24px 20px 20px;
}

.clinic-body>div {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.clinic-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 23.5px;
    background: rgba(255, 255, 255, 0.80);
}

.clinic-icon img {
    width: 26px;
    height: auto;
    object-fit: cover;
}

.clinic-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clinic-body span {
    color: #FFF;
    font-family: "Univers LT Std";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    /* 138.889% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.clinic-body p,
.clinic-body div a {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 200px;
}

.clinic-body .btn {
    margin-top: 8px;
    width: 100%;
    background: #EAB5BA;
}

.clinic-body .btn:hover {
    padding-right: 20px;
    background: #DBA5AB;
}

.clinic-body .btn:hover img {
    transform: scaleX(1);
}


/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-section {
    width: 100%;
    padding: 70px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #9ABDAA;
}

.process-section-heading {
    width: 100%;
    max-width: 849px;
}

.process-section-heading .section-heading {
    color: #fff;
    margin-bottom: 6px;
    text-align: center;
}

.process-section-heading p {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.process-steps {
    width: 100%;
    max-width: fit-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    margin: 114px 0 53px;
}

.process-step {
    width: 289px;
    height: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../images/process-card-bg-1.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}

.process-step:nth-child(2) {
    height: 286px;
    background-image: url('../images/process-card-bg-2.svg');
    padding-top: 30px;
}

.process-icon {
    width: 102px;
    height: 102px;
    border-radius: 50%;
    background: #DBA5AB;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-45px);
    position: relative;
    box-shadow: -10px 16px 22px rgba(0, 0, 0, 0.25);
}


.process-step:nth-child(2) .process-icon {
    transform: translateY(54px);
    box-shadow: -10px -16px 22px rgba(0, 0, 0, 0.25);
}

.process-icon img {
    width: 58px;
    height: 58px;
}

.process-step span {
    color: #FFF;
    text-align: center;
    font-family: "Univers LT Std";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    /* 138.889% */
    text-transform: uppercase;
    display: block;
    max-width: 170px;
    margin-bottom: 10px;
}

.process-step:nth-child(2) span {
    max-width: 209px;
}

.process-step p {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    /* 128.571% */
    max-width: 232px;
}

.process-step:first-child p {
    max-width: 182px;
}

.process-step:last-child p {
    max-width: 232px;
}

.process-step::after {
    content: '';
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.process-step:first-child::after {
    width: 312px;
    height: 376px;
    background-image: url('../images/process-line-1.svg');
    top: -68px;
    right: -100px;
}

.process-step:nth-child(2)::after {
    width: 312px;
    height: 376px;
    background-image: url('../images/process-line-2.svg');
    bottom: -70px;
    right: -100px;
}

.process-step:nth-child(3)::after {
    width: 138px;
    height: 51px;
    background-image: url('../images/process-line-3.svg');
    top: -68px;
    left: 75px;
}

/* ==========================================================================
   DOCTORS
   ========================================================================== */
.doctors-section {
    padding: 70px 40px;
}

.doctors-heading {
    width: 100%;
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.doctors-heading .section-heading {
    width: 100%;
    max-width: 521px;
}

.doctors-heading p {
    width: 100%;
    max-width: 748px;
    padding-top: 17px;
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.doctor-card {
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.doctor-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 120px;
    pointer-events: none;
    z-index: 2;

    background: linear-gradient(to top,
            rgba(154, 189, 170, 0.85) 0%,
            rgba(154, 189, 170, 0.60) 40%,
            rgba(154, 189, 170, 0.25) 75%,
            rgba(154, 189, 170, 0) 100%);
    transition: all 0.45s ease;
}

.doctor-card:hover::after {
    max-height: 180px;
}

.doctor-card-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    background: #F3F7F5;
}


.doctor-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.doctor-card:hover .doctor-card-img img {
    transform: scale(1.1);
}

.doctor-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 9;
    padding: 16px;

}

.doctor-card span {
    color: #FFF;
    text-align: center;
    font-family: "Univers LT Std";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 34px;
    /* 141.667% */
    text-transform: uppercase;
    display: block;
    transition: all 0.45s ease;
}

.doctor-card p {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    /* 128.571% */
    padding-top: 2px;
    max-width: 342px;
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.45s ease;
}

.doctor-card:hover p {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
}

.doctors-slider-arrows .splide__arrow {
    width: 56px;
    height: 56px;
    background: rgba(78, 88, 89, 0.12);
    backdrop-filter: blur(20px);
}

.doctors-slider-arrows .splide__arrow svg {
    fill: #fff;
    width: 28px;
    height: auto;
}

/* ==========================================================================
   MEMBERSHIP
   ========================================================================== */
.membership-section {
    position: relative;
    padding: 120px 40px;
    background: url('../images/membership-bg.png') center/cover no-repeat;
    overflow: hidden;
}

.membership-section::before {
    content: '';
    width: 100%;
    max-width: 730px;
    height: 120%;
    position: absolute;
    left: -50px;
    top: -10%;
    background: rgba(154, 189, 170, 0.89);
    filter: blur(100px);
    filter: blur(20px);
    pointer-events: none;
}

.membership-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
}

.membership-section .section-heading {
    color: var(--white);
    margin-bottom: 16px;
}

.membership-section p {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    margin-bottom: 52px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    padding: 70px 40px;
    background: #F3F7F5;
}

.testimonials-section .section-heading {
    text-align: center;
    margin-bottom: 36px;
}

.testimonial-card {
    width: 100%;
    padding: 36px 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.70);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card p {
    color: #4E5859;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    margin: 24px 0;
}

.user-img img {
    width: 60px;
    height: 60px;
    border-radius: 99px;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
}

.testimonial-card span {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
    letter-spacing: 0.32px;
    display: block;
}

.testimonial-card span:last-child {
    font-weight: 300;
    margin-top: 4px;
}

.testimonials-arrows {
    display: none;
}

/* ==========================================================================
   SOCIAL WALL
   ========================================================================== */
.social-wall-section {
    padding: 70px 50px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.social-item {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.social-item::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    background-color: rgba(78, 88, 89, 0.77);
    background-image: url('../images/insta-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 73px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.45s ease;
}

.social-item:hover::after {
    opacity: 1;
    visibility: visible;
}

.social-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.45s ease;
}

.social-item:hover img {
    transform: scale(1.1);
}

/* ==========================================================================
   APPOINTMENT FORM
   ========================================================================== */
.appointment-section {
    width: 100%;
    position: relative;
    padding: 70px 40px;
    background: linear-gradient(0deg, rgba(78, 88, 89, 0.80) 0%, rgba(78, 88, 89, 0.80) 100%), url('../images/appointment-bg.png') lightgray 50% / cover no-repeat;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.appointment-heading {
    width: 100%;
    max-width: 363px;
}

.appointment-heading .section-heading {
    color: #fff;
}

.appointment-form-wrap {
    width: 100%;
    max-width: 736px;
}

.appointment-form-wrap form {
    width: 100%;
    border-radius: 6px;
    background: rgba(154, 189, 170, 0.76);
    backdrop-filter: blur(7.550000190734863px);
    padding: 50px 50px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.appointment-form-wrap input,
.appointment-form-wrap textarea {
    width: 100%;
    padding: 16px 27px;
    border-radius: 6px;
    border: 1px solid #FFF;
    background: transparent;
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    outline: none;
}

.appointment-form-wrap input::placeholder,
.appointment-form-wrap textarea::placeholder {
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.appointment-form-wrap textarea {
    resize: none;
    height: 111px;
}

.appointment-form-wrap .btn {
    outline: none;
}

/* ==========================================================================
   MAP
   ========================================================================== */
.map-section {
    width: 100%;
    padding: 70px 40px;
    display: grid;
    grid-template-columns: 386px 1fr;
}

.locations-list {
    display: flex;
    flex-direction: column;
    background: #9ABDAA;
}

.location-item {
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-item.active,
.location-item:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.location-item span {
    color: #FFF;
    font-family: "Univers LT Std";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    /* 138.889% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.location-item p {
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    /* 128.571% */
}

.location-item p:nth-child(2)+p {
    margin-top: 16px;
}


.location-item p+p {
    margin-top: 8px;
}

.map-area {
    width: 100%;
    overflow: hidden;
}

#map-container,
#map-container iframe {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-wrapper {
    width: 100%;
    padding-top: 50px;
    background: #FCFCFC;
}

.footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.footer-logo img {
    width: 206px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 0 40px 70px;
}

.footer-col {
    border-left: 2px solid rgba(78, 88, 89, 0.12);
    padding-left: 20px;
}

.footer-col span {
    color: #4E5859;
    font-family: "Univers LT Std";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    /* 100% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
    display: block;
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
}

.footer-col a {
    margin-bottom: 12px;
}

.footer-col a:last-child {
    margin-bottom: 0;
}

.social-links {
    margin-top: 50px;
}

.social-links div {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #DBA5AB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.company-details span {
    color: #4E5859;
    font-family: "Univers LT Std";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 19px;
    /* 126.667% */
    text-transform: uppercase;
    margin-bottom: 2px;
}

.company-details span:nth-of-type(2) {
    margin-top: 18px;
}

.footer-bottom {
    width: 100%;
    display: flex;
    padding: 17px 40px;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background: #4E5859;
}

.footer-bottom div {
    width: 100%;
    max-width: fit-content;
}

.footer-bottom p {
    color: #FCFCFC;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
}

.footer-bottom p+p {
    margin-top: 4px;
}

/* NHS InnerPages */

.nhs-innerpages .hero-section,
.innerpages .hero-section {
    max-height: 700px;
}

.nhs-innerpages .hero-content h1,
.innerpages .hero-content h1 {
    padding-bottom: 0;
    margin-bottom: 0;
}

.nhs-innerpages .hero-content h1::before,
.nhs-innerpages .hero-content h1::after,
.innerpages .hero-content h1::before,
.innerpages .hero-content h1::after {
    display: none;
}

.nhs-patient-hero {
    background-image: url('../images/nhs-patient-hero.png');
    background-position: right;
}

.nhs-patient-hero::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
}

.providing-services-sec {
    width: 100%;
    padding: 40px 70px 50px;
}

.providing-services-container {
    width: 100%;
    background: #F3F7F5;
    display: flex;
    align-items: stretch;
    gap: 70px;
    padding: 22px 50px;
}

.providing-services-img {
    width: 100%;
    max-width: 280px;
    padding-right: 50px;
    border-right: 2px solid rgba(78, 88, 89, 0.20);
    display: flex;
    align-items: center;
}

.providing-services-img img {
    width: 226px;
    height: auto;
    object-fit: cover;
}

.providing-services-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.providing-services-content span {
    color: #4E5859;
    font-family: "Univers LT Std";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 130% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.providing-services-content p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: italic;
    font-weight: 275;
    line-height: 22px;
    /* 137.5% */
    max-width: 801px;
}

.bg-pink {
    background: rgba(219, 165, 171, 0.12) !important;
}

.badges-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1015px;
    margin: 0 auto;
}

.bg-pink .badge-item {
    background: rgba(255, 255, 255, 0.50);
}

.trust-badges:has(.badges-grid-3) {
    padding: 50px;
}

.service-benefits-sec {
    width: 100%;
    padding: 50px 50px;
    background: #9ABDAA;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-benefits-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-benefits-grid+.btn {
    margin-top: 36px;
}

.service-benefits-card {
    width: 100%;
    padding: 36px 36px 50px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-benefits-card>div {
    display: flex;
    align-items: center;
    gap: 16px;
}


.service-benefits-card img {
    width: 28px;
    height: 28px;
}

.service-benefits-card p {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 276px;
}

.bg-white {
    background: #fff !important;
}

.bg-white .testimonial-card {
    background: #F3F7F5;
}

.nhs-process-section {
    width: 100%;
    padding: 70px;
}

.common-heading {
    color: #4E5859;
    text-align: center;
    font-family: "Univers LT Std";
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 42px;
    /* 140% */
    text-transform: uppercase;
}

.nhs-process-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.nhs-process-grid>div {
    width: 100%;
    padding: 36px;
    border: 3px solid #DBA5AB;
    border-radius: 20px;
    position: relative;
}

.nhs-process-grid>div:not(:last-child) {
    border-right: none;
    border-radius: 20px 0 0 20px;
}

.nhs-process-grid>div:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -7px;
    background-image: url('../images/arrow-head.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 10px;
    height: 11px;
}

.nhs-process-grid>div:not(:last-child)::before {
    content: '';
    position: absolute;
    right: -14px;
    bottom: -8px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid #DBA5AB;
}

.nhs-process-grid>div p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 157.143% */
    max-width: 220px;
}

.who-are-sec {
    width: 100%;
    padding: 50px 70px;
    background: #F3F7F5;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    gap: 40px;
    position: relative;
}

.who-are-content {
    width: 100%;
    max-width: 574px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-are-content .common-heading {
    text-align: left;
    margin-bottom: 16px;
}

.who-are-content p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.who-are-content p span {
    color: #9ABDAA;
    font-weight: 500;
    display: block;
}

.who-are-content p+.check {
    margin-top: 32px;
}

.who-are-content .check+p {
    margin-top: 16px;
}

.check {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check li {
    width: 100%;
    position: relative;
    padding-left: 40px;
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.check li::before {
    content: '';
    width: 19px;
    height: 19px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../images/check.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

.who-are-content .btn-wrapper {
    margin-top: 36px;
}

.who-are-img {
    width: 100%;
    max-width: 591px;
    border-radius: 6px;
    overflow: hidden;
}

.who-are-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-section {
    width: 100%;
    padding: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.treatment-section .common-heading {
    margin-bottom: 12px;
}

.treatment-section>p {
    color: #4E5859;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 692px;
}

.treatment-grid {
    margin: 26px 0 38px;
    width: 100%;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.treatment-card {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 6px;
    background: #9ABDAA;
}

.treatment-card-icon {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.90);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-card-icon img {
    width: 40px;
    height: 40px;
}

.treatment-card span {
    color: #FFF;
    text-align: center;
    font-family: "Univers LT Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 112.5% */
    text-transform: uppercase;
    display: block;
    margin: 20px 0 6px;
}

.treatment-card p {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    max-width: 275px;
}

.treatment-section .btn-wrapper {
    justify-content: center;
}

.nhs-content-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background: #F3F7F5;
}

.nhs-content-section .common-heading {
    margin-bottom: 16px;
}

.nhs-content-section p {
    color: #4E5859;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 953px;
}

.nhs-content-section p+p {
    margin-top: 22px;
}

.nhs-content-section p+.btn-wrapper {
    margin-top: 36px;
    justify-content: center;
}

.doctors-section>.section-heading {
    max-width: 612px;
    text-align: center;
    margin: 0 auto;
}

.doctors-section>.section-heading+.doctors-slider {
    margin-top: 36px;
}



.faq-section {
    width: 100%;
    padding: 70px;
    background: #F3F7F5;
}

.faq-section .section-heading {
    margin-bottom: 50px;
    text-align: center;
}

.faq-item {
    border-top: 1px solid rgba(78, 88, 89, 0.20);
    padding: 30px 0;
}

.faq-question {
    width: 100%;
    border: 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    color: #4E5859;
    font-family: "Univers LT Std";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.faq-icon {
    width: 30px;
    height: auto;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.faq-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: all 0.45s ease;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    padding-top: 14px;
    margin: 0;
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    max-width: 958px;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.nhs-gps-hero {
    background-image: url('../images/nhs-gps-hero.png');
}

.service-benefits-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.service-benefits-sec .common-heading {
    color: #fff;
    margin-bottom: 12px;
}

.service-benefits-sec>p {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 942px;
}

.service-benefits-sec>p+.service-benefits-grid {
    margin-top: 30px;
}

.service-benefits-card span {
    color: #FFF;
    font-family: "Univers LT Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 112.5% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.service-benefits-grid-2 .service-benefits-card p {
    max-width: 483px;
}

.service-benefits-card>div:has(span) {
    align-items: flex-start;
}

.nhs-gps-page .doctors-section>.section-heading {
    max-width: 100%;
}

.nhs-gps-page .nhs-content-section p {
    max-width: 833px;
}

.leaders-section {
    width: 100%;
    padding: 70px;
}

.leaders-section:has(+.doctors-section) {
    padding-bottom: 0 !important;
}

.leaders-content-wrapper {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.leaders-content {
    width: 100%;
    max-width: 970px;
    border-radius: 6px;
    background: #F3F7F5;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.leaders-content .common-heading {
    text-align: left;
    margin-bottom: 16px;
}

.leaders-content>span {
    color: #4E5859;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 110% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 22px;
}

.leaders-content>p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.leaders-content p:has(+div) {
    margin-bottom: auto;
}

.leaders-content p+div {
    margin-top: 20px;
}

.leaders-content div span {
    color: #9ABDAA;
    font-family: "Univers LT Std";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
    text-transform: uppercase;
}

.leaders-content div p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    /* 128.571% */
    margin-top: 2px;
}

.leaders-img {
    width: 100%;
    max-width: 310px;
    border-radius: 6px;
    background: #F3F7F5;
    overflow: hidden;
}

.leaders-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.refers-section {
    width: 100%;
    padding: 70px;
    background: #9ABDAA;
}

.refers-section .common-heading {
    color: #fff;
}

.refers-grid {
    width: 100%;
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.refers-card {
    width: 100%;
    padding: 36px 36px 49px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
}

.refers-card span {
    color: #FFF;
    font-family: "Univers LT Std";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 31px;
    /* 155% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.refers-card p {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 496px;
}

.refers-card .btn {
    margin-top: 36px;
}

.resources-section {
    width: 100%;
    padding: 70px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.resources-heading {
    width: 44%;
}

.resources-heading .common-heading {
    text-align: left;
    margin-bottom: 12px;
}

.resources-heading p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.resources-grid {
    width: 56%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.resources-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px;
    border-radius: 6px;
    background: #FBF4F5;
}

.resource-icon {
    width: 83px;
    height: 83px;
    border-radius: 50%;
    background: #9ABDAA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon img {
    width: 48px;
    height: 48px;
}

.resources-card span {
    color: #4E5859;
    text-align: center;
    font-family: "Univers LT Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
    display: block;
    margin: 20px 0 24px;
}

.blood-test-hero {
    background-image: url('../images/blood-test-hero.png');
}

.bg-gray {
    background: #F3F7F5 !important;
}

.nhs-content-section.bg-white .nhs-content-container {
    background: #FBF4F5;
}

.nhs-content-container {
    border-radius: 6px;
    padding: 70px;
}

.nhs-content-container p {
    max-width: 925px;
}

.service-benefits-sec .check li {
    color: #fff;
}

.service-benefits-sec .check li::before {
    background-image: url('../images/arrow.svg');
}

.service-benefits-grid-2+p {
    margin-top: 40px;
    max-width: 976px;
}

.service-benefits-sec .btn-wrapper {
    margin-top: 24px;
    justify-content: center;
}

.who-are-content p+p {
    margin-top: 22px;
}

.cards-section {
    width: 100%;
    padding: 70px;
}

.cards-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cards-grid>div {
    width: 100%;
    padding: 36px;
    border-radius: 6px;
    background: #FBF4F5;
}

.cards-grid .common-heading {
    margin-bottom: 21px;
    text-align: left;
}

.cards-grid p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.cards-grid p+p {
    margin-top: 22px;
}

.blood-types-section {
    width: 100%;
    padding: 70px;
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 50px;
}

.blood-type-heading .common-heading {
    text-align: left;
    max-width: 396px;
    margin-bottom: 24px;
}

.blood-type-heading p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.blood-type-heading p+p {
    margin-top: 22px;
}

.blood-type-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.blood-type-cards>div {
    width: 100%;
    padding: 24px;
    border-radius: 6px;
    background: #FBF4F5;
}

.service-benefits-sec>p+p {
    margin-top: 22px;
}

.cancer-screening-hero {
    background-image: url('../images/cancer-screening-hero.png');
}

.cancer-screening-page .service-benefits-grid-2+p {
    max-width: 950px;
}


.two-col-section {
    width: 100%;
    padding: 70px;
}

.two-col-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.two-col-grid .common-heading {
    text-align: left;
    margin-bottom: 24px;
}

.two-col-grid p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 595px;
}

.two-col-grid p+p {
    margin-top: 22px;
}

.two-col-section.bg-gray {
    padding-top: 50px;
    padding-bottom: 50px;
}

.mint-cards .cards-grid>div {
    background-color: #9ABDAA;
}

.mint-cards .cards-grid>div .common-heading,
.mint-cards .cards-grid>div p {
    color: #fff;
}

.cards-section.mint-cards {
    padding-top: 50px;
    padding-bottom: 50px;
}

.adhd-assessment-hero {
    background-image: url('../images/adhd-assessment-hero.png');
}

.gray-cards .cards-grid>div {
    background: #F3F7F5;
}

.consider-section {
    width: 100%;
    padding: 70px;
    display: flex;
    gap: 50px;
}

.consider-heading {
    width: 100%;
    max-width: 396px;
}

.consider-heading .common-heading {
    text-align: left;
}

.consider-content {
    width: 100%;
}

.consider-content p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 827px;
}

.consider-content p+p {
    margin-top: 20px;
}


.consider-content .check {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 50px;
}

.consider-content p+.check {
    margin-top: 24px;
}

.consider-content .check+p {
    margin-top: 24px;
}

.what-happens-sec {
    width: 100%;
    padding: 70px;
    background: #9ABDAA;
}

.what-happens-sec .common-heading {
    color: #fff;
    text-align: left;
    margin-bottom: 36px;
}


.what-happens-content-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
}

.what-happens-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-happens-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.what-happens-content p {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.what-happens-content p+p {
    margin-top: 22px;
}

.what-happens-content p+.btn-wrapper {
    margin-top: 36px;
}

.after-assessment-section {
    width: 100%;
    padding: 70px;
    background: #FBF4F5;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.after-assessment-heading {
    width: 100%;
    max-width: 360px;
}

.after-assessment-heading .common-heading {
    text-align: left;
}

.after-assessment-content {
    width: 100%;
}

.after-assessment-content p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 810px;
}

.after-assessment-content p+p {
    margin-top: 22px;
}

.choose-section {
    width: 100%;
    padding: 50px 70px;
}

.choose-container {
    width: 100%;
    padding: 32px;
    gap: 50px;
    border-radius: 6px;
    background: #9ABDAA;
    display: flex;
    align-items: stretch;
}

.choose-container>div {
    width: 100%;
}

.choose-content {
    padding: 30px 30px;
}

.choose-content .common-heading {
    color: #fff;
    text-align: left;
    margin-bottom: 16px;
}

.choose-content p {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.choose-content p+p {
    margin-top: 22px;
}

.choose-content p+.btn-wrapper {
    margin-top: 36px;
}

.choose-img {
    width: 100%;
}

.choose-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-assessment-section:has(+.choose-section.mt-220) {
    padding-bottom: 290px;
}

.choose-section.mt-220 {
    margin-top: -220px;
    padding-top: 0 !important;
    padding-bottom: 50px;
}

.cyst-removal-hero {
    background-image: url('../images/cyst-removal-hero.png');
}

.bg-pink .cards-grid>div {
    background: rgba(255, 255, 255, 0.70);
}

.menopause-management-hero {
    background-image: url('../images/menopause-management-hero.png');
}

.bg-mint {
    background: #9ABDAA;
}

.bg-mint .common-heading,
.bg-mint p {
    color: #fff;
}

.contact-hero {
    background-image: url('../images/contact-hero.png');
}

.nhs-content-section:has(+.contact-section) {
    padding-bottom: 0 !important;
}

.contact-section {
    width: 100%;
    padding: 50px 50px 70px;
    display: flex;
    justify-content: center;
}

.contact-content-wrapper {
    width: 100%;
    max-width: 1243px;
    border-radius: 6px;
    background: #F3F7F5;
    padding: 20px;
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.contact-sec-img {
    width: 42%;
}

.contact-sec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-wrapper {
    width: 58%;
    padding: 20px 20px 20px 0;

}

.contact-form-wrapper form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.contact-form-wrapper form input,
.contact-form-wrapper form textarea {
    width: 100%;
    background: transparent;
    border-radius: 4px;
    border: 1px solid rgba(78, 88, 89, 0.46);
    padding: 11px 24px;
    outline: none;

    color: rgba(78, 88, 89, 0.51);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.contact-form-wrapper form textarea {
    resize: none;
    height: 177px;
}


.contact-form-wrapper form input::placeholder,
.contact-form-wrapper form textarea::placeholder {
    color: rgba(78, 88, 89, 0.51);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.contact-form-wrapper form button {
    margin-top: 20px;
}

.contact-form-wrapper form select {
    width: 100%;
    background: transparent;
    border-radius: 4px;
    border: 1px solid rgba(78, 88, 89, 0.46);
    padding: 11px 24px;
    outline: none;

    color: rgba(78, 88, 89, 0.51);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding-right: 32px;
    background-image: url("../images/dropdown-icon.svg");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
    cursor: pointer;
}

.our-doctors-hero {
    background-image: url('../images/our-doctors-hero.png');
}

.our-doctors-sec {
    width: 100%;
    padding: 0 40px 70px;
}

.doctors-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.our-doctors-page .nhs-content-section p {
    max-width: 888px;
}

.about-hero {
    background-image: url('../images/about-hero.png');
}

.about-intro p {
    color: #9ABDAA;
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    /* 166.667% */
    text-transform: uppercase;
    max-width: 796px;
}

.about-page .choose-content {
    padding: 0 !important;
}

.about-page .choose-container {
    padding: 50px;
}

.bg-gray .common-heading,
.bg-gray p {
    color: #4E5859;
}

.about-page .choose-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.about-page .nhs-content-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.about-content-section span {
    color: #4E5859;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 275;
    line-height: 22px;
    /* 157.143% */
    max-width: 888px;
    margin-top: 50px;
}

.membership-hero {
    background-image: url('../images/membership-hero.png');
}

.membership-page .nhs-content-section {
    padding-bottom: 0 !important;
}

.membership-page .nhs-content-section p {
    max-width: 888px;
}

.membership-plans {
    width: 100%;
    padding: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.membership-plan-card {
    width: 100%;
    padding: 50px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 6px;
    background: #F3F7F5;
}

.membership-card-icon img {
    width: 80px;
    height: auto;
    object-fit: cover;
}

.membership-name {
    color: #4E5859;
    text-align: center;
    font-family: "Univers LT Std";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 31px;
    /* 129.167% */
    text-transform: uppercase;
    display: block;
    margin: 35px 0 10px;
}

.membership-price {
    color: #9ABDAA;
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 33px;
    /* 137.5% */
    display: block;
}

.membership-plan-card .check {
    width: 100%;
    padding: 24px;
    border-radius: 6px;
    background: rgba(154, 189, 170, 0.12);
    margin: 30px 0 20px;
    flex: 1;
}

.membership-plan-card .btn {
    width: 100%;
}

.membership-plan-card:last-child {
    background: #9ABDAA;
}

.membership-plan-card:last-child .membership-name,
.membership-plan-card:last-child .membership-price,
.membership-plan-card:last-child .check li {
    color: #fff;
}

.membership-plan-card:last-child .check {
    background: rgba(255, 255, 255, 0.12);
}

.membership-plan-card:last-child .check li::before {
    background-image: url('../images/arrow.svg');
}

.oxted-clinic-hero {
    background-image: url('../images/oxted-clinic-hero.png');
}

.clinic-info-section {
    width: 100%;
    padding: 70px 70px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.clinic-info-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    border-right: 2px solid rgba(78, 88, 89, 0.12);
    background: #F3F7F5;
}

.clinic-info-card:last-child {
    border-right: none;
}

.clinic-card-icon {
    width: 66px;
    height: 66px;
    border-radius: 35px;
    background: #DBA5AB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.clinic-card-icon img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.clinic-info-card span {
    color: #4E5859;
    text-align: center;
    font-family: "Univers LT Std";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    /* 138.889% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.clinic-info-card p,
.clinic-info-card a {
    color: #4E5859;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    max-width: 200px;
}

.oxted-clinic-page .nhs-content-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.oxted-clinic-page .nhs-content-section p {
    max-width: 992px;
}

.oxted-clinic-page .map-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.opening-time-sec {
    width: 100%;
    padding: 70px;
    display: grid;
    grid-template-columns: 0.81fr 1fr;
    gap: 40px;
}

.opening-time-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.opening-time-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.opening-time-content .common-heading {
    text-align: left;
    margin-bottom: 16px;
}

.opening-time-content p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
}

.opening-time-wrapper {
    width: 100%;
    padding: 32px 20px;
    border-radius: 6px;
    background: #FBF4F5;
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.opening-time-wrapper>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.opening-time-wrapper>div:first-child {
    padding-right: 24px;
    border-right: 2px solid rgba(78, 88, 89, 0.12);
}

.opening-time-wrapper>div>div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.opening-time-wrapper span {
    color: #4E5859;
    font-family: "Univers LT Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
}


/*==========================
    SECTION
==========================*/

.oxted-treatment-section {
    width: 100%;
    padding: 70px;
    background: #F3F7F5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.oxted-treatment-section>.common-heading {
    margin-bottom: 12px;
}

.oxted-treatment-section>p {
    color: #4E5859;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    max-width: 775px;
}


/*==========================
    SEARCH
==========================*/

.treatment-search {
    width: 100%;
    position: relative;
    margin: 50px 0 20px;
}

.treatment-search img {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
}

.treatment-search input {
    width: 100%;
    height: 58px;
    border: 0;
    outline: none;
    border-radius: 6px;
    background: #EDF5F0;
    padding: 0 24px 0 62px;
    color: rgba(78, 88, 89, 0.30);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.treatment-search input::placeholder {
    color: rgba(78, 88, 89, 0.30);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}


/*==========================
    LAYOUT
==========================*/

.treatment-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2.05fr;
    gap: 20px;
}


/*==========================
    LEFT
==========================*/

.treatment-sidebar {
    border-radius: 6px;
    background: rgba(154, 189, 170, 0.12);
    overflow: hidden;
}

.category-item {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 18px 38px;
    cursor: pointer;
    transition: ease all 0.3s;
    border-bottom: 1px solid rgba(78, 88, 89, 0.12);
    text-align: left;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item-icon {
    width: 68px;
    height: 68px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: ease all 0.3s;
}

.category-item svg {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.category-item span {
    color: #4E5859;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    /* 150% */
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.category-item.active .category-item-icon {
    background: #DBA5AB;
}

.category-item .category-item-icon svg path {
    transition: ease all 0.3s;
}

.category-item.active .category-item-icon svg path {
    stroke: #fff;
}

.category-item.active {
    background: #9ABDAA;
}


.category-item.active span {
    color: #fff;
}


/*==========================
    RIGHT
==========================*/

.treatment-content {
    width: 100%;
    border-radius: 6px;
    background: #E7F0EB;
    padding: 40px;
}

.content-top {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(78, 88, 89, 0.12);
}

.content-top span {
    color: #4E5859;
    font-family: "Univers LT Std";
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 42px;
    /* 140% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.content-top p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}


/*==========================
    PANELS
==========================*/

.treatment-panel {
    display: none;
}

.treatment-panel.active {
    display: block;
}


/*==========================
    GRID
==========================*/

.oxted-treatment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}


/*==========================
    CARD
==========================*/

.treatment-card-item {
    width: 100%;
    padding: 17px 20px 17px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
    background: rgba(154, 189, 170, 0.12);
}

.treatment-card-item span {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.treatment-card-item img {
    width: 20px;
    height: auto;
    object-fit: cover;
}

.treatment-card-item:hover {
    background: rgba(154, 189, 170, 0.30);
}


/*==========================
    NO RESULT
==========================*/

.no-result {
    padding: 60px 20px;
    text-align: center;
    font-size: 20px;
    color: #888;
    font-family: var(--font-body);
}


.pink-cards .cards-grid>div {
    background: rgba(219, 165, 171, 0.12);
}

.pink-cards .cards-grid>div .common-heading,
.pink-cards .cards-grid>div p {
    color: #4E5859;
}

.who-are-content .section-heading {
    margin-bottom: 6px;
}

.about-slider-sec>div {
    width: 100%;
    max-width: 100%;
}

.about-slider-sec {
    background: rgba(243, 247, 245, 0.52);
    padding: 70px 70px 90px;
}

.about-slider-sec+.testimonials-section {
    background: #fff;
}

.about-slider-sec+.testimonials-section .testimonial-card {
    background: #F3F7F5;
}

.about-slider-sec .doctor-card-img img {
    background: #F3F7F5;
}

.about-slider-pagination {
    bottom: -40px;
}

.about-slider-pagination .splide__pagination__page {
    width: 12px;
    height: 12px;
    background: rgba(78, 88, 89, 0.12);
}

.about-slider-pagination .splide__pagination__page.is-active {
    background: transparent;
    border: 1px solid #9ABDAA;
}

.about-slider-sec .doctor-card p {
    visibility: visible;
    opacity: 1;
    max-height: 300px;
}

.about-slider-sec .doctor-card::after {
    max-height: 150px;
    background: linear-gradient(to top,
            rgba(154, 189, 170, 0.90) 0%,
            rgba(154, 189, 170, 0.75) 35%,
            rgba(154, 189, 170, 0.50) 70%,
            rgba(154, 189, 170, 0) 100%);
}


.doctor-detail-hero {
    background-image: url('../images/doctor-details-hero.png');
}

.doctor-detail .who-are-content span {
    color: #4E5859;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 110% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.doctor-detail {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

.doctor-detail .who-are-content {
    align-items: flex-start;
}

.doctor-detail .who-are-img {
    max-width: 449px;
}



.adhd-clinic-hero {
    background-image: url('../images/adhd-clinic-hero.png');
}

.adhd-clinic-intro span {
    color: #9ABDAA;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 18px;
}

.adhd-clinic-intro p {
    max-width: 792px;
}

.unsure-section {
    padding: 0 40px 70px;
}

.unsure-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.unsure-content {
    width: 100%;
    padding: 30px 20px;
    border-radius: 6px;
    background: #FBF4F5;
}

.unsure-content span {
    color: #4E5859;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 110% */
    display: block;
    margin-bottom: 12px;
}

.unsure-content p {
    color: #4E5859;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.unsure-content p a {
    color: #DBA5AB;
}

.nhs-content-section:has(+.unsure-section) {
    padding-bottom: 0 !important;
}

.blog-hero {
    background-image: url('../images/blog-hero.png');
}

.blogs-section {
    width: 100%;
    padding: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    width: 100%;
    border-radius: 6px;
    background: #F3F7F5;
    display: flex;
    overflow: hidden;
    position: relative;
}

.blog-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    max-height: 180px;
    pointer-events: none;
    border-radius: 0 0 inherit inherit;

    background: linear-gradient(to top,
            rgba(154, 189, 170, 0.90) 0%,
            rgba(154, 189, 170, 0.75) 35%,
            rgba(154, 189, 170, 0.69) 70%,
            rgba(154, 189, 170, 0) 100%);
    transition: all 0.45s ease;
}

.blog-card:hover::after {
    max-height: 220px;
}

.blog-img {
    width: 100%;
    height: 100%;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.45s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-card-content {
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    transition: all 0.45s ease;
}

.blog-card:hover .blog-card-content {
    bottom: 20px;
}

.blog-card-content p {
    color: #FFF;
    font-family: "Univers LT Std";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    /* 116.667% */
    text-transform: uppercase;
    max-width: 342px;
    margin-bottom: 12px;
}

.blog-card-content span {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    display: block;
    margin-bottom: 2px;
}

.blog-card-content span:last-child {
    font-size: 12px;
    line-height: 19px;
    /* 158.333% */
}

.pagination {
    width: 100%;
    padding: 0 50px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-number {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    border: 1px solid #4E5859;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #4E5859;
    font-family: poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 133.333% */
}

.page-number.current {
    background: #9ABDAA;
    border-color: #9ABDAA;
    color: #fff;
}

.prev,
.next {
    font-size: 0;
    line-height: 0;
    position: relative;
}

.prev::after,
.next::after {
    content: '';
    width: 7px;
    height: 12px;
    aspect-ratio: 1/2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('../images/pagination-chevron.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

.prev::after {
    transform: translate(-50%, -50%) scale(-1);
}

.page-number.disabled {
    opacity: 0.1;
}

.innerblog-hero {
    background-image: url('../images/innerblog-hero.png');
}

.blog-content-wrapper {
    width: 100%;
    max-width: 1220px;
    padding: 60px 40px 100px;
    margin: 0 auto;
}

.blog-doctor-banner {
    width: 100%;
    padding: 26px 50px;
    border-radius: 6px;
    background: #F3F7F5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}

.blog-doctor-left {
    width: fit-content;
    display: flex;
    gap: 20px;
    align-items: center;
}

.blog-doctor-left img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
}

.doctor-name {
    color: #4E5859;
    text-align: center;
    font-family: "Univers LT Std";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    /* 100% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 7px;
}

.doctor-qualification {
    color: #4E5859;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 19px;
    /* 135.714% */
}

.blogpost-date {
    color: rgba(78, 88, 89, 0.55);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 19px;
    /* 118.75% */
    text-transform: uppercase;
}

.innerblog-hero .hero-content {
    max-width: 100%;
}

.blog-content {
    width: 100%;
    max-width: 1077px;
}

.blog-content h2 {
    color: #9ABDAA;
    font-family: "Univers LT Std";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    /* 133.333% */
    text-transform: uppercase;
}

.blog-content h3 {
    color: #9ABDAA;
    font-family: "Univers LT Std";
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase;
}

.blog-content h4 {
    color: #9ABDAA;
    font-family: "Univers LT Std";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    text-transform: uppercase;
}

.blog-content h5 {
    color: #9ABDAA;
    font-family: "Univers LT Std";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    text-transform: uppercase;
}

.blog-content h6 {
    color: #9ABDAA;
    font-family: "Univers LT Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-transform: uppercase;
}

.blog-content p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.blog-content p span {
    color: #9ABDAA;
    font-weight: 500;
}

.blog-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-content ul li {
    width: 100%;
    position: relative;
    padding-left: 40px;
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.blog-content ul li::before {
    content: '';
    width: 19px;
    height: 19px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../images/check.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-content ol {
    padding-left: 20px;
}

.blog-content ol li {
    width: 100%;
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
}

.blog-content p+h2 {
    margin-top: 50px;
}

.blog-content h2+p {
    margin-top: 24px;
}

.blog-content p+p {
    margin-top: 22px;
}

.blog-content p+ul,
.blog-content p+ol {
    margin-top: 20px;
}

.blog-content ul+p,
.blog-content ol+p {
    margin-top: 20px;
}

.adhd-clinic-hero span {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.adhd-clinic-hero .hero-content {
    max-width: 940px;
}

.adhd-clinic-hero .hero-content p {
    max-width: 792px;
    margin-bottom: 36px;
}

.adhd-clinic-hero .btn-wrapper {
    width: fit-content;
}

.adhd-clinic-hero+.trust-badges .badge-item:first-child img {
    width: 186px;
    margin-bottom: 8px;
}

.adhd-clinic-hero+.trust-badges {
    padding: 40px;
}

.adhd-clinic-hero+.trust-badges .badge-item {
    padding-left: 20px;
    padding-right: 20px;
}

.adhd-clinic-hero+.trust-badges .badge-item:first-child p {
    max-width: 247px;
}

.adhd-clinic-hero::after {
    background: linear-gradient(to top,
            rgba(154, 189, 170, 1) 0%,
            rgba(154, 189, 170, 0.7) 25%,
            rgba(154, 189, 170, 0.5) 55%,
            rgba(154, 189, 170, 0.3) 80%,
            rgba(154, 189, 170, 0) 100%);
    height: 70%;
}

.nhs-each-person-hero {
    background-image: url('../images/nhs-each-person-hero.png');
}

.nhs-each-person-hero~.trust-badges .badge-item:nth-child(2) img {
    width: 192px;
}

.nhs-each-person-hero~.trust-badges .badge-item:nth-child(2) span {
    margin-top: 16px;
    max-width: 100%;
}

.nhs-each-person-hero~.trust-badges .badge-item:nth-child(3) span {
    margin-top: 12px;
}

.pricing-hero {
    background-image: url('../images/pricing-hero.png');
}

.pricing-section {
    width: 100%;
    padding: 70px;
    background: #F3F7F5;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.price-card,
.price-accordion {
    border-radius: 6px;
    background: rgba(154, 189, 170, 0.12);
    padding: 23px 30px;
}

.price-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.price-card span,
.accordion-head span,
.sub-item span {
    color: #4E5859;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 35px;
    /* 175% */
}

.price-card .price,
.sub-item .price {
    color: #DBA5AB;
    text-align: right;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 100% */
}

.price-card span span,
.sub-item span span {
    color: #9ABDAA;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 35px;
}

.accordion-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-body {
    margin-top: 20px;
    max-height: 1000px;
    visibility: visible;
    opacity: 1;
    transition: all 0.35s ease;
}

.sub-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(78, 88, 89, 0.20);
}

.accordion-head img {
    transition: all 0.35s ease;
}

.price-accordion-wrapper.active .accordion-head img {
    transform: rotate(0deg);
}

.price-accordion-wrapper:not(.active) .accordion-head img {
    transform: rotate(180deg);
}

.price-accordion-wrapper:not(.active) .accordion-body {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
}

.additional-info {
    width: 100%;
    padding: 50px 50px 70px;
}

.additional-info>div {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    border-radius: 6px;
    background: #FBF4F5;
    padding: 38px;
}

.additional-info p {
    color: #4E5859;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 137.5% */
    text-transform: uppercase;
}

.additional-info p a {
    color: #DBA5AB;
    font-weight: 500;
}


.referral-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9999;
    padding: 20px;
}

.referral-popup.active {
    opacity: 1;
    visibility: visible;
}

.referral-popup-content {
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-close {
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}

.referral-popup .common-heading {
    margin-bottom: 10px;
    text-align: left;
    color: #9ABDAA;
    font-weight: 400;
}

.referral-popup p {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.form-group input {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    outline: none;
}

.checkbox {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.checkbox span {
    color: #4E5859;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.checkbox input {
    margin-top: 4px;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.download-btn,
.close-btn {
    width: 100%;
}

.close-btn {
    display: inline-flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: #FFF;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 12px;
    background: transparent;
    border: 1px solid #9ABDAA;
    color: #9ABDAA;
    transition: all 0.45s ease;
}

.close-btn:hover{
    background: #9ABDAA;
    color: #fff;
}

.referral-popup .btn:hover {
    padding-right: 20px;
}