:root {
    --font-default: 'Montserrat', serif;
    --font-primary: 'Montserrat', serif;
    --font-secondary: "Raleway", sans-serif;
}

/* Colors */
:root {
    --color-default: #404041;
    --color-hover: rgb(250, 186, 39);
    --color-text-primary-accent: #113f6c;
    --color-primary: rgb(246, 134, 31);
    --color-secondary: #404041;
    --color-primary-blue: rgb(8, 113, 179);
    --color-primary-blue-hover: rgb(25, 144, 219);
    --color-white: #ffffff;
    --accent-color: #FFD700;
    --background-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-default);
}

.position-relative {
    position: relative !important;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: var(--color-hover);
        text-decoration: underline;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    overflow: hidden;
    padding: 80px 0;
}

.section-gray {
    overflow: hidden;
    padding: 115px 0;
    background-color: color-mix(in srgb, #d5af33, transparent 90%);
}

.section-white {
    overflow: hidden;
    padding: 80px 0;
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    padding-bottom: 30px;
}

    .section-header h2 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        color: var(--color-primary-blue);
    }

        .section-header h2:after {
            content: "";
            position: absolute;
            display: block;
            width: 60px;
            height: 2px;
            background: var(--color-primary);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .section-header p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs:before {
    content: "";
    position: absolute;
    inset: 0;
}

.breadcrumbs h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-primary);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
}

    .breadcrumbs ol a {
        color: rgba(255, 255, 255, 0.8);
        transition: 0.3s;
        cursor: pointer;
    }

        .breadcrumbs ol a:hover {
            text-decoration: underline;
        }

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #fff;
            content: "/";
        }

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 210px 0 80px 0;
    text-align: center;
    position: relative;
    height: 400px;
}

    .page-title:before {
        content: "";
        background-color: color-mix(in srgb, var(--background-color), transparent 40%);
        position: absolute;
        inset: 0;
    }

    .page-title h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        justify-content: center;
        padding: 0;
        margin: 0;
        font-size: 16px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 50%);
            }

    .page-title:before {
        z-index: 1;
    }

    .page-title .container {
        position: relative;
        z-index: 2;
    }

/*--------------------------------------------------------------
Tables
--------------------------------------------------------------*/
#Performance-Table {
    background-color: var(--color-white);
}

.table-container {
    width: 100%;
    overflow-x: auto;
    /* Enables horizontal scroll on small screens */
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

table {
    border-collapse: collapse;
    width: 100%;
}

@media screen and (min-width: 1200px) {
    table {
        max-width: 900px;
    }
}

th,
td {
    padding: 12px 16px;
    text-align: center;
    border: 1px solid #ccc;
}

thead {
    background-color: #f2f2f2;
}

tr:nth-child(even):not(:last-child) {
    background-color: #fafafa;
}

tr:last-child {
    background-color: var(--color-primary-blue);
    font-weight: bold;
    color: var(--color-white);
}

#totalRow {
    color: var(--color-white);
}

.source {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

    .source p {
        font-size: 14px;
    }

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/


.team .row {
    align-items: center;
}

@media (max-width: 991px) {
    .team .team-intro {
        margin-bottom: 40px;
    }
}

.team .swiper-slide {
    display: flex;
    height: auto;
}

    .team .swiper-slide > .member-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

.swiper-wrapper {
    align-items: stretch;
}

.team .team-intro .team-intro-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

    .team .team-intro .team-intro-content h2 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
        color: var(--color-primary-blue);
    }

        .team .team-intro .team-intro-content h2:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }

    .team .team-intro .team-intro-content p {
        margin-bottom: 30px;
        font-size: 16px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

.team .team-intro .team-navigation {
    display: flex;
    gap: 10px;
}

    .team .team-intro .team-navigation button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: transparent;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .team .team-intro .team-navigation button:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
        }

.team .member-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


    .team .member-card:hover {
        transform: translateY(-10px);
    }

        .team .member-card:hover .member-image:before {
            opacity: 0.7;
        }

    .team .member-card .member-image {
        position: relative;
        overflow: hidden;
        height: 225px;
    }

        .team .member-card .member-image:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
            opacity: 0.4;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .team .member-card .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team .member-card .member-image:hover img {
            transform: scale(1.05);
        }

    .team .member-card .member-info {
        padding: 25px;
        position: relative;
        flex-grow: 1;
        /* Already here – good */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* Ensures spacing between name and bio */
        background-color: var(--color-white);
    }

        .team .member-card .member-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .team .member-card .member-info span {
            color: var(--accent-color);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 0;
        }

    .team .member-card .member-social {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
    }

        .team .member-card .member-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            border-radius: 6px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

            .team .member-card .member-social a:hover {
                background-color: var(--accent-color);
                color: var(--contrast-color);
                transform: translateY(-3px);
            }

    .team .member-card .member-bio p {
        font-size: 14px;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 0;
    }

    .team .member-card .member-bio ul {
        margin-bottom: 0;
        padding: 1rem 1rem 0 1rem;
    }

        .team .member-card .member-bio ul li {
            font-size: 14px !important;
            line-height: 1.6 !important;
            color: var(--default-color);
            margin-bottom: 0;
        }

.team .team-carousel-wrap {
    overflow-x: hidden;
    padding: 30px 20px;
}

.team .team-carousel {
    overflow: visible;
}

    .team .team-carousel .swiper-slide {
        height: auto;
        display: flex;
    }

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 999em;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .scroll-top:hover {
        background: var(--color-hover);
        color: #fff;
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid var(--color-primary);
        border-top-color: #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 24px 0;
    /*background-color: var(--color-primary-blue);*/
    background: rgb(7, 125, 199);
}

@media (max-width: 1200px) {
    .header {
        padding: 12px 0;
    }
}

@media (max-width: 1199px) {
    .header {
        padding: 5px 0;
        height: 95px;
    }

        .header .logo img {
            max-height: 70px !important;
            width: auto !important;
            height: 70px !important;
        }

    .mobile-nav-toggle {
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .header .logo img {
        margin-left: 15px;
    }
}

.header.sticked {
    background: rgba(8, 113, 179, 0.7);
    padding: 12px 0;
}

.header .logo img {
    max-height: 90px;
    margin-right: 6px;
    width: 100px;
}

@media (min-width: 1200px) {
    .header .logo img {
        width: 125px;
    }
}

.header .logo h1 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-primary);
    margin: 0;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

        .navbar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navbar li {
            position: relative;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0 15px 30px;
            font-family: var(--font-default);
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            white-space: nowrap;
            transition: 0.3s;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover,
            .navbar .active,
            .navbar .active:focus,
            .navbar li:hover > a {
                color: #fff;
                text-decoration: none;
            }

        .navbar .dropdown ul {
            display: block;
            position: absolute;
            left: 14px;
            top: calc(100% + 30px);
            margin: 0;
            padding: 10px 0;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            background-color: #fff;
            box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
            transition: 0.2s;
        }

            .navbar .dropdown ul li {
                min-width: 200px;
            }

            .navbar .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--color-secondary);
            }

                .navbar .dropdown ul a i {
                    font-size: 12px;
                }

                .navbar .dropdown ul a:hover,
                .navbar .dropdown ul .active:hover,
                .navbar .dropdown ul li:hover > a {
                    color: var(--color-primary);
                }

        .navbar .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navbar .dropdown .dropdown-indicator {
            transition: transform 0.3s ease;
        }

        .navbar .dropdown:hover .dropdown-indicator {
            transform: rotate(180deg);
        }

        .navbar .dropdown .dropdown ul {
            top: 0;
            left: calc(100% - 30px);
            visibility: hidden;
        }

        .navbar .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: 100%;
            visibility: visible;
        }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-toggle {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/

@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

        .navbar ul {
            position: absolute;
            inset: 0;
            padding: 50px 0 10px 0;
            margin: 0;
            background: #ffffff;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 7px 20px 15px 20px;
            font-family: var(--font-default);
            font-size: 15px;
            font-weight: 600;
            color: #444444;
            white-space: nowrap;
            transition: 0.3s;
            border-bottom: 1px solid #e8e8e8;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover,
            .navbar .active,
            .navbar .active:focus,
            .navbar li:hover > a {
                color: var(--color-primary);
            }

        .navbar .dropdown ul,
        .navbar .dropdown .dropdown ul {
            position: static;
            display: none;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: #f8f8f8;
        }

        .navbar .dropdown > .dropdown-active,
        .navbar .dropdown .dropdown > .dropdown-active {
            display: block;
        }

        .navbar .dropdown .dropdown-indicator {
            transition: transform 0.3s ease;
        }

        .navbar .dropdown.dropdown-active .dropdown-indicator,
        .navbar .dropdown > .dropdown-active .dropdown-indicator {
            transform: rotate(180deg);
        }

    /* Animated Hamburger Menu */
    .mobile-nav-toggle {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 22px;
        position: fixed;
        right: 20px;
        z-index: 9999;
    }

    .hamburger-line {
        width: 100%;
        height: 3px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .mobile-nav-active .hamburger-line {
        background-color: #888888;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .btn-get-started {
            font-family: var(--font-primary);
            font-weight: 500;
            font-size: 15px;
            letter-spacing: 1px;
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            transition: 0.5s;
            color: #fff;
            background: var(--color-primary);
        }

        /* Hamburger Animation - Active State */
        .mobile-nav-active .mobile-nav-toggle .hamburger-line:nth-child(1) {
            transform: translateY(10px) rotate(45deg);
        }

        .mobile-nav-active .mobile-nav-toggle .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .mobile-nav-active .mobile-nav-toggle .hamburger-line:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
        }

        .mobile-nav-active .navbar {
            right: 0;
        }

            .mobile-nav-active .navbar:before {
                content: "";
                position: fixed;
                inset: 0;
                background: rgba(65, 64, 66, 0.4);
                z-index: 9996;
                cursor: pointer;
            }
}

/* By default, hide it on larger screens */
.mobile-call-btn {
    display: none;
}

/* Show only on screens smaller than 768px (mobile) */
@media (max-width: 767px) {
    .mobile-call-btn {
        display: block;
        padding: 0 20px;
        border-bottom: none !important;
        text-align: center;
    }

        .mobile-call-btn .btn-get-started {
            font-family: var(--font-primary) !important;
            font-weight: 500 !important;
            font-size: 15px !important;
            letter-spacing: 1px !important;
            display: block !important;
            width: 100% !important;
            padding: 12px 30px !important;
            border-radius: 50px !important;
            transition: 0.5s !important;
            color: #fff !important;
            background: var(--color-primary) !important;
            margin: 12px 0 !important;
            text-decoration: none !important;
            border: none !important;
            border-bottom: none !important;
            text-align: center !important;
        }

            .mobile-call-btn .btn-get-started:hover {
                background: var(--color-hover) !important;
                color: #fff !important;
                text-decoration: none !important;
            }

            .mobile-call-btn .btn-get-started:focus {
                color: #fff !important;
                background: var(--color-primary) !important;
                outline: 2px solid var(--color-primary) !important;
                outline-offset: 2px !important;
            }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 220px 0 120px 0;
    z-index: 3;
    min-height: 50vh;
    min-height: 50svh;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

@media (min-width: 1024px) {
    .hero-video {
        top: 90px;
    }
}

@media (min-width: 1200px) {
    .hero-video {
        top: 105px;
    }
}

@media (min-width: 768px) {
    .hero {
        background: url(../img/doctors-talking-mobile.jpg) center center;
        min-height: 71vh;
        min-height: 71svh;
        min-height: none;
        padding: 400px 0 120px 0;
        background-size: 100%;
    }

    .hero-video {
        top: 85px;
        object-fit: cover;
        object-position: center center;
        width: 100%;
        height: 100%;
        max-width: 100%;
    }
}


.hero {
    background: url(../img/doctors-talking-mobile.jpg) center center;
    min-height: 71vh;
    min-height: 71svh;
    background-size: 100%;
    padding: 400px 0 120px 0;
}

@media (min-width: 1366px) {
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        background-repeat: no-repeat;
    }
}

/* Hero Video Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 43, 70, 0.3);
    z-index: 1;
}

/* Hero Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, #202b46 0%, transparent 100%);
    z-index: 1;
}

@media (min-width: 1366px) {
    .hero-gradient-overlay {
        height: 60%;
    }
}

/* Hero CTA Container */
.hero-cta-container {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-cta-text {
    color: #ffffff !important;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    text-align: left;
}

.hero-cta-mid-text {
    color: #ffffff !important;
    font-size: 28px;
    font-weight: 600;
    width: 70%;
    display: block;
    text-align: center;
    margin: auto;
    text-shadow: 1px 1px #000;
    position: relative;
}

@media (max-width: 991px) {
    .hero-cta-text {
        font-size: 32px;
    }

    .hero-cta-mid-text {
        font-size: 28px;
    }
}

.hero .type-container {
    padding: 0 32px;
}

@media (min-width: 768px) {
    .hero .type-container {
        padding: 0;
    }
}

@media (min-width: 1366px) {
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        background-repeat: no-repeat;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-white);
    font-family: var(--font-primary);
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero h2 {
        font-size: 42px;
    }
}

@media (min-width: 1400px) {
    .hero h2 {
        color: var(--color-primary-blue);
    }
}

.hero blockquote {
    color: #fff;
    padding-left: 20px;
    font-size: 15px;
    font-family: var(--font-default);
    border-left: 2px solid var(--color-primary);
    margin: 40px 0;
}

.hero .btn-get-started {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: var(--color-primary);
}

    .hero .btn-get-started:hover {
        background: var(--color-hover);
        text-decoration: none;
    }

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

    .hero .btn-watch-video i {
        color: var(--color-primary);
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    .hero .btn-watch-video:hover {
        color: #fff;
    }

        .hero .btn-watch-video:hover i {
            color: #82cbed;
        }

@media (max-width: 1400px) {

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

/* Hero Content Box - White Background */
.hero-content-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

@media (max-width: 767px) {
    .hero {
        background-image: url('../img/doctors-talking-mobile.jpg');
        background-size: 130%;
        background-position: center 95px;
        background-repeat: no-repeat;
        min-height: auto;
        height: 440px;
        padding: 0;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .hero-video {
        display: none;
    }

    .hero-gradient-overlay {
        position: absolute;
        height: 200px;
        bottom: 0;
        top: auto;
    }

    .hero-cta-container {
        position: relative;
        bottom: auto;
        top: auto;
        padding-bottom: 40px;
        z-index: 2;
    }

    .hero-cta-text {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 0;
        text-align: center;
    }

    .hero-cta-mid-text {
        margin-top: 28%;
        font-size: 14px;
    }

    .hero-cta-container .text-end {
        text-align: center !important;
    }

    .hero-cta-container .btn-get-started {
        font-size: 13px;
        padding: 9px 22px;
    }

    .section-header h2 {
        font-size: 26px;
    }
}

.hero-content-box h2 {
    color: var(--color-primary-blue);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .hero-content-box h2 {
        font-size: 34px;
        line-height: 1.3;
    }
}

@media (min-width: 1200px) {
    .hero-content-box h2 {
        font-size: 38px;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.mission {
    display: block;
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

    .mission .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

        .mission .section-header h2 {
            font-size: 32px;
            font-weight: 600;
            color: var(--color-primary-blue);
            margin-bottom: 0;
        }

    .mission .description {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #444444;
    }

.what-we-know {
    overflow: hidden;
    padding: 115px 0;
}

.mission,
.what-we-knowstrong {
    color: var(--color-primary);
}

.mission,
.what-we-knowh2 {
    color: var(--color-primary-blue);
}

.mission,
.what-we-know.icon-boxes h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission,
.what-we-know.icon-boxes h4 {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-primary);
    font-family: var(--font-primary);
}

.mission,
.what-we-know.icon-box {
    margin-top: 40px;
}

    .mission,
    .what-we-know.icon-box .icon {
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        border: 2px solid #b9d4ec;
        border-radius: 50px;
        transition: 0.5s;
    }

        .mission,
        .what-we-know.icon-box .icon i {
            color: #428bca;
            font-size: 32px;
        }

    .mission,
    .what-we-know.icon-box:hover .icon {
        background: #428bca;
        border-color: #428bca;
    }

        .mission,
        .what-we-know.icon-box:hover .icon i {
            color: #fff;
        }

    .mission,
    .what-we-know.icon-box .title {
        margin-left: 85px;
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 18px;
    }

        .mission,
        .what-we-know.icon-box .title a {
            color: #343a40;
            transition: 0.3s;
        }

            .mission,
            .what-we-know.icon-box .title a:hover {
                color: #428bca;
            }

    .mission,
    .what-we-know.icon-box .description {
        margin-left: 85px;
        line-height: 24px;
        font-size: 14px;
    }

.mission,
.what-we-know.video-box {
    background: url("../img/about.jpg") center center no-repeat;
    background-size: cover;
    min-height: 500px;
}

.mission,
.what-we-know.play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#d5af34 50%, rgba(213, 175, 52, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

    .mission,
    .what-we-know.play-btn::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .mission,
    .what-we-know.play-btn::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation-delay: 0s;
        animation: pulsate-btn 2s;
        animation-direction: forwards;
        animation-iteration-count: infinite;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid #d5af34;
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .mission,
    .what-we-know.play-btn:hover::after {
        border-left: 15px solid #d5af34;
        transform: scale(20);
    }

    .mission,
    .what-we-know.play-btn:hover::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        animation: none;
        border-radius: 0;
    }

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.why-join .process-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.why-join .process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 2.5rem;
}

    .why-join .process-item:last-child {
        padding-bottom: 0;
    }

    .why-join .process-item .content {
        width: 100%;
        position: relative;
        background: #ffffff;
        border: 2px solid color-mix(in srgb, #d5af33, transparent 85%);
        border-radius: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .why-join .process-item .content:hover {
            transform: translateX(10px);
            box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
        }

            .why-join .process-item .content:hover .step-icon {
                background-color: color-mix(in srgb, #d5af33, transparent 90%);
                color: #d5af33;
            }

            .why-join .process-item .content:hover .step-number {
                transform: translateX(-5px);
                opacity: 1;
            }

    .why-join .process-item .step-number {
        display: none;
    }

    .why-join .process-item .card-body {
        padding: 2rem;
        display: flex;
        align-items: flex-start;
        gap: 2rem;
    }

    .why-join .process-item .step-icon {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        background-color: color-mix(in srgb, #d5af33, transparent 90%);
        color: #d5af33;
        border-radius: 12px;
        display: grid;
        place-items: center;
        transition: all 0.3s ease;
    }

        .why-join .process-item .step-icon i {
            font-size: 2rem;
            transition: transform 0.5s ease;
        }

    .why-join .process-item .step-content h3 {
        color: var(--color-primary-blue);
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        font-weight: 700;
    }

    .why-join .process-item .step-content p {
        color: color-mix(in srgb, var(--default-color), transparent 25%);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    .why-join .process-item .arrow {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        margin: 1rem 0;
        width: 100px;
        height: 100px;
        opacity: 0.7;
    }


.why-join .process-item {
    height: 100%;
}

    .why-join .process-item .content {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

@media (max-width: 767.98px) {

    .why-join .process-item .step-number {
        opacity: 1.0;
    }

    .why-join .process-container {
        padding: 1rem 0;
    }

    .why-join .process-item {
        padding-bottom: 2rem;
    }

        .why-join .process-item .content {
            border-width: 1px;
        }

            .why-join .process-item .content:hover {
                transform: translateY(-5px);
            }

        .why-join .process-item .step-number {
            font-size: 3rem;
            left: 50%;
            top: -1.5rem;
            transform: translateX(-50%);
        }

            .why-join .process-item .step-number:hover {
                transform: translateX(-50%);
            }

        .why-join .process-item .card-body {
            padding: 2rem 1.5rem 1.5rem;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }

        .why-join .process-item .step-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
        }

            .why-join .process-item .step-icon i {
                font-size: 1.75rem;
            }

        .why-join .process-item .step-content h3 {
            font-size: 1.25rem;
        }

        .why-join .process-item .arrow {
            height: 60px;
            margin: 0.5rem 0;
        }
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
    padding-bottom: 80px;
}

    .why-us .img-bg {
        min-height: 500px;
        background-size: cover;
    }

    .why-us .slides {
        background-color: #f9f9f9;
        display: flex;
        align-items: center;
        padding: 3rem 15px 0 15px;
    }

@media (min-width: 1200px) {
    .why-us .slides {
        background-color: #f9f9f9;
        display: flex;
        align-items: center;
        padding: 0 3rem;
    }
}

.why-us h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
}

.why-us h4 {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-primary);
    font-family: var(--font-primary);
}

.why-us .swiper {
    margin: 0 110px;
    overflow: hidden;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
    font-size: 24px;
    color: var(--color-secondary);
}

.why-us .swiper-button-prev {
    left: 80px;
    top: 43%;
}

.why-us .swiper-button-next {
    right: 80px;
    top: 43%;
}

.why-us .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

    .why-us .swiper-pagination .swiper-pagination-bullet {
        background-color: var(--color-secondary);
    }

    .why-us .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--color-primary);
    }

@media (max-width: 1200px) {
    .why-us .swiper {
        margin: 0 60px;
    }

    .why-us .swiper-button-prev,
    .why-us .swiper-button-next {
        display: none;
    }
}

@media (max-width: 575px) {
    .why-us .swiper {
        margin: 0 20px;
    }
}

.page-about .why-us {
    padding: 0 0 80px 0;
}

.swiper-wrapper {
    align-items: center;
}

.aco-logo-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 20px;
}

.logo-container {
    width: 100px;
}

    .logo-container img {
        width: 100px;
    }

@media (max-width: 575px) {
    .logo-container {
        width: 90px;
    }

        .logo-container img {
            width: 90px;
        }
}

.break {
    flex-basis: 100%;
    height: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.mission,
.what-we-know.content h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 36px;
    font-family: var(--font-primary);
    color: var(--color-secondary);
}

.mission,
.what-we-know.content p {
    margin: 30px 0;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-primary);
    font-family: var(--font-primary);
}

.mission,
.what-we-know.content ul {
    list-style: none;
    padding: 0;
}

    .mission,
    .what-we-know.content ul li {
        padding: 0 0 15px 26px;
        position: relative;
        font-size: 15px;
        font-weight: 400;
        font-family: var(--font-primary);
    }

    .mission,
    .what-we-know.content ul i {
        position: absolute;
        font-size: 20px;
        left: 0;
        top: -3px;
        color: var(--color-primary);
    }

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
    padding: 0px 0px 80px 0px;
}

    .features .title {
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 18px;
    }

    .features .descricription {
        line-height: 24px;
        font-size: 14px;
    }

    .features .icon-box {
        display: flex;
        align-items: center;
        padding: 20px;
        transition: 0.3s;
        border: 1px solid var(--color-primary);
        justify-content: center;
        border-radius: 30px;
    }

        .features .icon-box:hover {
            border: 1px solid var(--color-primary);
            background-color: var(--color-primary);
            color: #ffffff;
        }

    .features .bi {
        color: var(--color-primary);
    }

    .features .icon-box i {
        font-size: 22px;
        padding-right: 10px;
        line-height: 1;
    }

    .features .icon-box h3 {
        font-weight: 700;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-size: 16px;
    }

        .features .icon-box h3 a {
            color: #37423b;
            transition: 0.3s;
        }

    .features .icon-box:hover {
        border-color: #ffffff;
    }

        .features .icon-box:hover h3 {
            color: #ffffff;
            text-decoration: underline;
        }

        .features .icon-box:hover .bi {
            color: #ffffff;
        }

/*--------------------------------------------------------------
# difference Section
--------------------------------------------------------------*/

.value-based-care .value-based-care-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    text-align: center;
}

    .value-based-care .value-based-care-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background-color: #d5af33;
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .value-based-care .value-based-care-item:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transform: translateY(-5px);
    }

        .value-based-care .value-based-care-item:hover::before {
            transform: scaleY(1);
        }

        .value-based-care .value-based-care-item:hover .difference-icon {
            background-color: #d5af33;
            color: var(--color-white);
            transform: rotateY(180deg);
        }

            .value-based-care .value-based-care-item:hover .difference-icon i {
                transform: rotateY(180deg);
            }

        .value-based-care .value-based-care-item:hover .difference-link i {
            transform: translateX(5px);
        }

.value-based-care .value-based-care-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background-color: color-mix(in srgb, #d5af33, transparent 90%);
    color: #d5af33;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.5s ease;
}

    .value-based-care .value-based-care-icon i {
        font-size: 2rem;
        transition: transform 0.5s ease;
        line-height: 1;
        vertical-align: middle;
    }

.value-based-care .value-based-care-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .value-based-care .value-based-care-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        font-weight: 700;
        color: var(--color-primary-blue);
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .value-based-care .value-based-care-content p {
        margin-bottom: 1.25rem;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        flex-grow: 1;
        text-align: left;
    }

.value-based-care .value-based-care-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .value-based-care .value-based-care-link span {
        margin-right: 0.5rem;
    }

    .value-based-care .value-based-care-link i {
        transition: transform 0.3s ease;
    }

    .value-based-care .value-based-care-link:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
    }

@media (max-width: 767.98px) {
    .value-based-care .value-based-care-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .value-based-care .value-based-care-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }

        .value-based-care .value-based-care-icon i {
            font-size: 1.5rem;
        }

    .value-based-care .value-based-care-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .value-based-care .value-based-care-content p {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .value-based-care .value-based-care-item {
        flex-direction: column;
        text-align: center;
    }

        .value-based-care .value-based-care-item::before {
            width: 100%;
            height: 4px;
            transform: scaleX(0);
            transform-origin: left;
        }

        .value-based-care .value-based-care-item:hover::before {
            transform: scaleX(1);
        }

    .value-based-care .value-based-care-icon {
        margin: 0 auto 1.25rem;
    }

    .value-based-care .value-based-care-link {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# difference Alt Section
--------------------------------------------------------------*/
.difference-alt .content-block {
    margin-right: 30px;
}

    .difference-alt .content-block .subtitle {
        font-size: 0.9rem;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 0.8rem;
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
    }

    .difference-alt .content-block .title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .difference-alt .content-block .description {
        margin-bottom: 1.8rem;
        font-size: 1rem;
        line-height: 1.7;
    }

    .difference-alt .content-block .button-wrapper {
        margin-top: 2rem;
    }

        .difference-alt .content-block .button-wrapper .btn {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            padding: 0.8rem 1.8rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

            .difference-alt .content-block .button-wrapper .btn:hover {
                background-color: color-mix(in srgb, var(--accent-color), #000 10%);
                transform: translateY(-3px);
            }

@media (max-width: 992px) {
    .difference-alt .content-block {
        margin-right: 0;
        margin-bottom: 3rem;
    }
}

.difference-alt .difference-list .difference-item {
    position: relative;
    padding: 2.5rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

    .difference-alt .difference-list .difference-item:first-child {
        padding-top: 0;
    }

    .difference-alt .difference-list .difference-item:hover .difference-icon {
        background-color: var(--accent-color);
    }

        .difference-alt .difference-list .difference-item:hover .difference-icon i {
            color: var(--contrast-color);
        }

    .difference-alt .difference-list .difference-item:hover .difference-content h4 a {
        color: var(--accent-color);
    }

.difference-alt .difference-list .difference-icon {
    height: 5rem;
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .difference-alt .difference-list .difference-icon i {
        font-size: 2.5rem;
        color: var(--accent-color);
        transition: all 0.3s ease;
    }

.difference-alt .difference-list .difference-content {
    position: relative;
    width: 100%;
}

    .difference-alt .difference-list .difference-content h4 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }

        .difference-alt .difference-list .difference-content h4 a {
            color: var(--heading-color);
            transition: color 0.3s;
        }

            .difference-alt .difference-list .difference-content h4 a:hover {
                color: var(--accent-color);
            }

    .difference-alt .difference-list .difference-content p {
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
    }

/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
.our-services {
    background-color: #ffffff;
    padding: 115px 0;
}

    .our-services .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

        .our-services .section-header h2 {
            font-size: 32px;
            font-weight: 600;
            color: var(--color-primary-blue);
            margin-bottom: 0;
        }

    .our-services .services-intro {
        text-align: center;
        margin-bottom: 40px;
    }

        .our-services .services-intro p {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--color-primary-blue);
            margin-bottom: 0;
        }

    .our-services .row {
        margin-bottom: 80px;
    }

        .our-services .row:last-child {
            margin-bottom: 0;
        }

    .our-services img {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-height: 450px;
        width: 100%;
        object-fit: cover;
    }

        .our-services img:hover {
            transform: translateY(-5px);
        }

    .our-services h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--color-primary-blue);
        margin-bottom: 1rem;
    }

    .our-services p {
        font-size: 1rem;
        line-height: 1.8;
        color: var(--color-default);
        margin-bottom: 20px;
    }

    .our-services strong {
        color: var(--color-text-primary-accent);
    }

    .our-services ul {
        margin: 10px 0;
    }

    .our-services li {
        font-size: 1rem;
        line-height: 1.3;
        padding-bottom: 10px;
    }

        .our-services li::marker {
            color: var(--color-primary);
        }

    /* Services Accordion */
    .our-services .services-accordion-item {
        background-color: #ffffff;
        position: relative;
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 10px;
        overflow: hidden;
        border: 2px solid #f0f0f0;
        transition: all 0.3s ease;
    }

        .our-services .services-accordion-item:hover {
            border-color: var(--color-primary);
        }

        .our-services .services-accordion-item:last-child {
            margin-bottom: 0;
        }

        .our-services .services-accordion-item h3 {
            font-weight: 600;
            font-size: 19px;
            line-height: 24px;
            margin: 0 30px 0 0;
            transition: 0.3s;
            cursor: pointer;
            display: flex;
            align-items: center;
            color: var(--color-primary-blue);
        }

            .our-services .services-accordion-item h3:hover {
                color: var(--color-primary-blue);
            }

        .our-services .services-accordion-item .services-accordion-content {
            display: grid;
            grid-template-rows: 0fr;
            transition: 0.3s ease-in-out;
            visibility: hidden;
            opacity: 0;
            overflow: hidden;
        }

            .our-services .services-accordion-item .services-accordion-content > div {
                overflow: hidden;
            }

            .our-services .services-accordion-item .services-accordion-content p {
                margin-bottom: 0;
                color: #444444;
                line-height: 1.7;
            }

    .our-services .services-accordion-active .services-accordion-content p {
        margin-bottom: 15px;
    }

        .our-services .services-accordion-active .services-accordion-content p:last-child {
            margin-bottom: 0;
        }

    .our-services .services-accordion-item .services-accordion-toggle {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 16px;
        line-height: 0;
        transition: 0.3s;
        cursor: pointer;
        color: var(--color-primary-blue);
    }

        .our-services .services-accordion-item .services-accordion-toggle:hover {
            color: var(--color-primary-blue);
        }

    .our-services .services-accordion-active h3 {
        color: var(--color-primary-blue);
    }

    .our-services .services-accordion-active .services-accordion-content {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
        padding-top: 10px;
    }

    .our-services .services-accordion-active .services-accordion-toggle {
        transform: rotate(90deg);
        color: var(--color-primary-blue);
    }


    /* this section carry style from value-base-care */

    .our-services .our-services-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: var(--color-white);
        border-radius: 12px;
        padding: 2rem;
        height: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
        transition: all 0.4s ease;
    }

        .our-services .our-services-item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: var(--color-primary);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        }

    .our-services .our-services-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

        .our-services .our-services-content h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--color-primary-blue);
            min-height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .our-services .our-services-content p {
            margin-bottom: 1.25rem;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            flex-grow: 1;
            text-align: left;
        }

    .our-services .our-services-icon {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        border-radius: 12px;
        background-color: color-mix(in srgb, #d5af33, transparent 90%);
        color: var(--color-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        transition: all 0.5s ease;
    }

        .our-services .our-services-icon i {
            font-size: 2rem;
            transition: transform 0.5s ease;
            line-height: 1;
            vertical-align: middle;
        }

    /* */
    .our-services .our-services:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transform: translateY(-5px);
    }

    .our-services .our-services-item:hover::before {
        transform: scaleY(1);
    }

    .our-services .our-services-item:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transform: translateY(-5px);
    }

        .our-services .our-services-item:hover .difference-icon {
            background-color: var(--color-primary);
            color: var(--color-white);
            transform: rotateY(180deg);
        }

            .our-services .our-services-item:hover .difference-icon i {
                transform: rotateY(180deg);
            }

        .our-services .our-services-item:hover .difference-link i {
            transform: translateX(5px);
        }


@media (max-width: 991px) {
    .our-services {
        padding: 60px 0;
    }

        .our-services .section-header {
            margin-bottom: 40px;
        }

        .our-services h3 {
            font-size: 1.75rem;
            margin-top: 30px;
        }

        .our-services img {
            margin-bottom: 20px;
        }

        .our-services .row {
            margin-bottom: 60px;
        }

        .our-services .services-accordion-item h3 {
            font-size: 17px;
        }
}

@media (max-width: 768px) {
    .difference-alt .difference-list .difference-item {
        padding: 2rem 0;
    }

    .difference-alt .difference-list .difference-icon {
        height: 4rem;
        width: 4rem;
        margin-right: 1rem;
    }

        .difference-alt .difference-list .difference-icon i {
            font-size: 2rem;
        }

    .difference-alt .difference-list .difference-content h4 {
        font-size: 1.25rem;
    }

    .difference-alt .difference-list .difference-content p {
        font-size: 0.9rem;
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    background: linear-gradient(rgba(27, 47, 69, 0.8), rgba(27, 47, 69, 0.8)), url("../img/cta-bg.jpg") center center;
    background-size: cover;
    padding: 100px 0;
}

@media (min-width: 1365px) {
    .call-to-action {
        background-attachment: fixed;
    }
}

.call-to-action h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.call-to-action p {
    color: #fff;
    margin-bottom: 25px;
}

.call-to-action .cta-btn {
    font-family: var(--font-default);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: var(--color-primary);
}

    .call-to-action .cta-btn:hover {
        background: var(--color-hover);
    }

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
/* .features { */
/* padding-bottom: 0; */
/* } */

.features h3 {
    color: var(--color-secondary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.features .icon-list i {
    margin-right: 10px;
    font-size: 24px;
    line-height: 1.2;
}

.features .icon-list span {
    font-size: 18px;
    color: #29486a;
}

.features .phone-wrap {
    position: absolute;
    right: 0;
}

@media (max-width: 768px) {
    .features .phone-wrap {
        position: relative;
    }
}

.features .phone-wrap img {
    width: 340px;
}

@media (max-width: 992px) {
    .features .phone-wrap img {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .features .phone-wrap img {
        width: 100%;
    }
}

.features .details {
    margin-top: 80px;
    padding: 120px 0;
    background-color: #f7f9fc;
}

    .features .details h4 {
        color: var(--color-secondary);
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .features .details p {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .features .details .btn-get-started {
        font-family: var(--font-primary);
        display: inline-block;
        font-weight: 500;
        font-size: 15px;
        letter-spacing: 1px;
        padding: 10px 32px;
        border-radius: 50px;
        transition: 0.5s;
        background-color: var(--color-primary);
        color: #fff;
    }

        .features .details .btn-get-started:hover {
            background: #2aa5df;
        }

/*--------------------------------------------------------------
# Who we are Section
--------------------------------------------------------------*/

.who-we-are {
    display: flex;
}

    .who-we-are h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 25px;
        color: var(--color-primary-blue);
    }

    .who-we-are .copy-container h5 {
        color: var(--color-primary-blue) !important;
        font-weight: 700;
    }

    .who-we-are strong {
        color: var(--color-primary);
    }

    .who-we-are ul {
        margin: 10px 0;
    }

    .who-we-are li {
        font-size: 1rem;
        line-height: 1.3;
        padding-bottom: 10px;
    }

        .who-we-are li::marker {
            color: var(--color-primary);
        }

    .who-we-are img {
        display: block;
        margin: 0 auto;
        max-height: 550px;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 6px;
    }


/*--------------------------------------------------------------
# What We've Done Section
--------------------------------------------------------------*/

.what-weve-done {
    display: flex;
}

    .what-weve-done h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 25px;
        color: var(--color-primary-blue);
    }

    .what-weve-done .copy-container h5 {
        color: var(--color-primary-blue) !important;
        font-weight: 700;
    }

    .what-weve-done strong {
        color: var(--color-primary);
    }

    .what-weve-done ul {
        margin: 10px 0;
    }

    .what-weve-done li {
        font-size: 1rem;
        line-height: 1.3;
        padding-bottom: 10px;
    }

        .what-weve-done li::marker {
            color: var(--color-primary);
        }

    .what-weve-done img {
        display: block;
        margin: 0 auto;
        max-height: 550px;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 6px;
    }

/*--------------------------------------------------------------
# Operating Model
--------------------------------------------------------------*/
.operating-model .col-md-4 {
    position: relative;
}

.operating-model .circle-box {
    width: 100%;
    max-width: 325px;
    aspect-ratio: 1 / 1;
    /* keeps it a perfect circle */
    border-radius: 50%;
    background-color: var(--color-primary-blue);
    color: #fff;
    transition: transform 0.3s ease;
    padding: 2rem;
    text-align: center;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 17px rgba(0, 0, 0, 0.1);
}

    .operating-model .circle-box p {
        font-size: 26px;
        font-weight: 600;
    }

.operating-model strong {
    color: var(--color-primary);
}

.operating-model .circle-box ul li {
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
}

.operating-model .circle-list {
    list-style: none;
    padding: 0;
}

.operating-model h3 {
    color: var(--color-primary);
    margin-top: 20px;
    font-weight: 600;
}

/* Optional: Adjust for very small devices */
@media (max-width: 576px) {
    .operating-model .circle-box {
        max-width: 330px;
        padding: 1.5rem;
    }

        .operating-model .circle-box p {
            font-size: 24px;
            font-weight: 600;
        }

        .operating-model .circle-box ul li {
            font-size: 22px;
            font-weight: 600;
            line-height: 30px;
        }
}

.operating-model .circle-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 15px;
    color: var(--color-primary-blue);
}

.arrow-right {
    position: absolute;
    top: 37%;
    left: calc(33.333% - 18px);
    /* Adjusted for new size */
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 35px solid var(--color-primary);
    /* Bigger arrow */
    transform: translateY(-50%);
    z-index: 2;
}

    /* Second arrow */
    .arrow-right:nth-of-type(2) {
        left: calc(66.666% - 17px);
        /* Adjusted for new size */
    }

@media (min-width: 768px) and (max-width: 991.98px) {
    .operating-model .circle-box {
        max-width: 200px;
        padding: 1rem;
    }

    .arrow-right {
        position: absolute;
        top: 31%;
        left: calc(33.333% - 12px);
        /* Adjusted for new size */
        width: 0;
        height: 0;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-left: 25px solid var(--color-primary);
        /* Bigger arrow */
        transform: translateY(-50%);
        z-index: 2;
    }

    .operating-model .circle-box p,
    .operating-model .circle-box ul li {
        font-size: 18px;
        line-height: 1.4;
    }

    .arrow-right:nth-of-type(2) {
        left: calc(66.666% - 12px);
        /* adjust for second arrow */
    }
}

@media (min-width: 992px) {
    .operating-model .circle-box {
        max-width: 325px;
        padding: 1.5rem;
    }

        .operating-model .circle-box h3 {
            font-size: 22px;
        }

        .operating-model .circle-box p,
        .operating-model .circle-box ul li {
            font-size: 22px;
            line-height: 1.2;
        }

    .arrow-right {
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-left: 35px solid var(--color-primary);
        left: calc(33.333% - 15px);
        /* adjust if needed */
        top: 35%;
    }

        .arrow-right:nth-of-type(2) {
            left: calc(66.666% - 17px);
            /* adjust for second arrow */
        }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .operating-model .circle-box {
        max-width: 260px;
        padding: 1.5rem;
    }

        .operating-model .circle-box p,
        .operating-model .circle-box ul li {
            font-size: 22px;
            line-height: 1.4;
        }

    .arrow-right {
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-left: 28px solid var(--color-primary);
        left: calc(33.333% - 15px);
    }

        .arrow-right:nth-of-type(2) {
            left: calc(66.666% - 15px);
        }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    background: #f9f9f9;
    padding: 70px 0 60px;
}

    .counts .count-box {
        padding: 30px 30px 25px 30px;
        width: 100%;
        position: relative;
        text-align: center;
        background: #fff;
    }

        .counts .count-box i {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 20px;
            background: var(--color-primary);
            color: #fff;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
        }

        .counts .count-box span {
            font-size: 30px;
            display: inline-block;
            font-weight: 600;
            color: #082744;
        }

@media (min-width: 1200px) {
    .counts .count-box span {
        font-size: 36px;
    }
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-default);
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .recent-posts .post-box .post-img {
        overflow: hidden;
        position: relative;
    }

        .recent-posts .post-box .post-img img {
            transition: 0.5s;
        }

    .recent-posts .post-box .meta {
        margin-top: 15px;
    }

        .recent-posts .post-box .meta .post-date {
            font-size: 15px;
            font-weight: 400;
            color: var(--color-primary);
        }

        .recent-posts .post-box .meta .post-author {
            font-size: 15px;
            font-weight: 400;
            color: var(--color-secondary);
        }

    .recent-posts .post-box .post-title {
        font-size: 18px;
        color: var(--color-secondary);
        font-weight: 700;
        margin: 15px 0 0 0;
        position: relative;
        transition: 0.3s;
    }

    .recent-posts .post-box p {
        margin: 15px 0 0 0;
        color: rgba(27, 47, 69, 0.7);
    }

    .recent-posts .post-box .readmore {
        display: flex;
        align-items: center;
        font-weight: 600;
        line-height: 1;
        transition: 0.3s;
        margin-top: 15px;
    }

        .recent-posts .post-box .readmore i {
            line-height: 0;
            margin-left: 4px;
            font-size: 18px;
        }

    .recent-posts .post-box:hover .post-title {
        color: var(--color-primary);
    }

    .recent-posts .post-box:hover .post-img img {
        transform: scale(1.1);
    }

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    overflow: hidden;
    background: #fff;
}

    .team .team-member .member-img {
        position: relative;
        overflow: hidden;
    }

    .team .team-member .social {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        height: 40px;
        opacity: 0;
        transition: ease-in-out 0.3s;
        background: rgba(255, 255, 255, 0.85);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .team .team-member .social a {
            transition: color 0.3s;
            color: #31547c;
            margin: 0 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

            .team .team-member .social a i {
                line-height: 0;
            }

            .team .team-member .social a:hover {
                color: var(--color-primary);
            }

        .team .team-member .social i {
            font-size: 18px;
            margin: 0 2px;
        }

    .team .team-member .member-info {
        padding: 25px 15px 0 15px;
        text-align: center;
    }

        .team .team-member .member-info h4 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 18px;
            color: var(--color-secondary);
        }

        .team .team-member .member-info span {
            display: block;
            font-size: 13px;
            font-weight: 400;
            color: #6c757d;
        }

        .team .team-member .member-info p {
            font-style: italic;
            font-size: 14px;
            line-height: 26px;
            color: #6c757d;
        }

    .team .team-member:hover .social {
        opacity: 1;
    }

/*--------------------------------------------------------------
# difference Cards Section
--------------------------------------------------------------*/
.difference-cards {
    background: #f7f9fc;
}

    .difference-cards .card-item {
        border: 1px solid rgba(27, 47, 69, 0.1);
        background: #fff;
        position: relative;
        border-radius: 0;
    }

        .difference-cards .card-item .card-bg {
            min-height: 300px;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .difference-cards .card-item .card-body {
            padding: 30px;
        }

        .difference-cards .card-item h4 {
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--color-secondary);
        }

        .difference-cards .card-item p {
            color: var(--color-secondary);
            margin: 0;
        }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
#testimonials {
    background: #f9f9f9;
    padding: 70px 0 60px;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 40px 30px;
    box-shadow: 0px 0 20px rgba(27, 47, 69, 0.1);
    background: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

    .testimonials .testimonial-item .stars {
        margin-bottom: 15px;
    }

        .testimonials .testimonial-item .stars i {
            color: #ffc107;
            margin: 0 1px;
        }

    .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50%;
        border: 4px solid #fff;
        margin: 0 auto;
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 5px 0;
        color: #111;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: #999;
        margin: 0;
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 0 auto 15px auto;
    }

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: #e8eff6;
        opacity: 1;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--color-primary);
    }

.testimonials .swiper-slide {
    opacity: 0.3;
}

@media (max-width: 1199px) {
    .testimonials .swiper-slide-active {
        opacity: 1;
    }

    .testimonials .swiper-pagination {
        margin-top: 0;
    }

    .testimonials .testimonial-item {
        margin: 40px 20px;
    }
}

@media (min-width: 1200px) {
    .testimonials .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
    padding: 0;
    margin: 0 auto 30px auto;
    list-style: none;
    text-align: center;
}

    .portfolio .portfolio-flters li {
        color: var(--color-secondary);
        cursor: pointer;
        display: inline-block;
        padding: 0;
        font-size: 18px;
        font-weight: 400;
        margin: 0 10px;
        line-height: 1;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
    }

        .portfolio .portfolio-flters li:hover,
        .portfolio .portfolio-flters li.filter-active {
            color: var(--color-primary);
        }

        .portfolio .portfolio-flters li:first-child {
            margin-left: 0;
        }

        .portfolio .portfolio-flters li:last-child {
            margin-right: 0;
        }

@media (max-width: 575px) {
    .portfolio .portfolio-flters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.portfolio .portfolio-item {
    position: relative;
}

    .portfolio .portfolio-item .portfolio-info {
        opacity: 0;
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        background: rgba(255, 255, 255, 0.9);
        padding: 15px;
    }

        .portfolio .portfolio-item .portfolio-info h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--color-default);
            padding-right: 50px;
        }

        .portfolio .portfolio-item .portfolio-info p {
            color: #6c757d;
            font-size: 14px;
            margin-bottom: 0;
            padding-right: 50px;
        }

        .portfolio .portfolio-item .portfolio-info .preview-link,
        .portfolio .portfolio-item .portfolio-info .details-link {
            position: absolute;
            right: 50px;
            font-size: 24px;
            top: calc(50% - 14px);
            color: rgba(27, 47, 69, 0.7);
            transition: 0.3s;
            line-height: 0;
        }

            .portfolio .portfolio-item .portfolio-info .preview-link:hover,
            .portfolio .portfolio-item .portfolio-info .details-link:hover {
                color: var(--color-primary);
            }

        .portfolio .portfolio-item .portfolio-info .details-link {
            right: 14px;
            font-size: 28px;
        }

    .portfolio .portfolio-item:hover .portfolio-info {
        opacity: 1;
        bottom: 20px;
    }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #fff;
        opacity: 1;
        border: 1px solid var(--color-primary);
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--color-primary);
    }

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(27, 47, 69, 0.1);
}

    .portfolio-details .portfolio-info h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #d6e2ef;
    }

    .portfolio-details .portfolio-info ul {
        list-style: none;
        padding: 0;
        font-size: 15px;
    }

        .portfolio-details .portfolio-info ul li + li {
            margin-top: 10px;
        }

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

    .portfolio-details .portfolio-description h2 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--color-secondary);
    }

    .portfolio-details .portfolio-description p {
        padding: 0;
    }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background-size: contain;
    /* background: #f9f9f9; */
    position: relative;
}

@media (max-width: 640px) {
    .contact {
        background-position: center 50px;
    }
}

.contact:before {
    content: "";
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.contact .info-item + .info-item {
    margin-top: 40px;
}

.contact .info-item i {
    font-size: 20px;
    background: var(--color-primary);
    color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h4 {
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1c88ba;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    width: 100%;
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #df1529;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #059652;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #059652;
            border-top-color: #fff;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        padding: 12px 15px;
    }

        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: var(--color-primary);
        }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }

    /* 1 */
    .contact .php-email-form button[type=submit] {
        background: #1f98d1;
        border: 0;
        padding: 12px 40px;
        color: #fff;
        transition: 0.4s;
    }

        /* 1 */
        .contact .php-email-form button[type=submit]:hover {
            background: var(--color-primary);
        }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
    height: 100%;
    border-bottom: 1px solid #d6e2ef;
    padding-bottom: 30px;
}

    .blog .posts-list article + article {
        margin-top: 60px;
    }

.blog .posts-list .post-img {
    max-height: 240px;
    overflow: hidden;
}

.blog .posts-list .title {
    font-size: 20px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0 0 0;
}

    .blog .posts-list .title a {
        color: var(--color-secondary);
        transition: 0.3s;
    }

        .blog .posts-list .title a:hover {
            color: var(--color-primary);
        }

.blog .posts-list .meta-top {
    margin-top: 20px;
    color: #467ab3;
}

    .blog .posts-list .meta-top ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        align-items: center;
        padding: 0;
        margin: 0;
    }

        .blog .posts-list .meta-top ul li + li {
            padding-left: 20px;
        }

    .blog .posts-list .meta-top i {
        font-size: 16px;
        margin-right: 8px;
        line-height: 0;
        color: rgba(86, 184, 230, 0.8);
    }

    .blog .posts-list .meta-top a {
        color: #467ab3;
        font-size: 14px;
        display: inline-block;
        line-height: 1;
    }

.blog .posts-list .content {
    margin-top: 20px;
}

.blog .posts-list .read-more a {
    display: inline-block;
    color: #1f98d1;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 500;
}

    .blog .posts-list .read-more a:hover {
        color: var(--color-primary);
    }

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

    .blog .blog-details .post-img {
        margin: -30px -30px 20px -30px;
        overflow: hidden;
    }

    .blog .blog-details .title {
        font-size: 28px;
        font-weight: 700;
        padding: 0;
        margin: 20px 0 0 0;
        color: var(--color-secondary);
    }

    .blog .blog-details .content {
        margin-top: 20px;
    }

        .blog .blog-details .content h3 {
            font-size: 22px;
            margin-top: 30px;
            font-weight: bold;
        }

        .blog .blog-details .content blockquote {
            overflow: hidden;
            background-color: rgba(27, 47, 69, 0.06);
            padding: 60px;
            position: relative;
            text-align: center;
            margin: 20px 0;
        }

            .blog .blog-details .content blockquote p {
                color: var(--color-default);
                line-height: 1.6;
                margin-bottom: 0;
                font-style: italic;
                font-weight: 500;
                font-size: 22px;
            }

            .blog .blog-details .content blockquote:after {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 3px;
                background-color: var(--color-secondary);
                margin-top: 20px;
                margin-bottom: 20px;
            }

    .blog .blog-details .meta-top {
        margin-top: 20px;
        color: var(--color-gray);
    }

        .blog .blog-details .meta-top ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            align-items: center;
            padding: 0;
            margin: 0;
        }

            .blog .blog-details .meta-top ul li + li {
                padding-left: 20px;
            }

        .blog .blog-details .meta-top i {
            font-size: 16px;
            margin-right: 8px;
            line-height: 0;
            color: rgba(86, 184, 230, 0.8);
        }

        .blog .blog-details .meta-top a {
            color: var(--color-gray);
            font-size: 14px;
            display: inline-block;
            line-height: 1;
        }

    .blog .blog-details .meta-bottom {
        padding-top: 10px;
        border-top: 1px solid rgba(27, 47, 69, 0.15);
    }

        .blog .blog-details .meta-bottom i {
            color: #38618e;
            display: inline;
        }

        .blog .blog-details .meta-bottom a {
            color: rgba(27, 47, 69, 0.8);
            transition: 0.3s;
        }

            .blog .blog-details .meta-bottom a:hover {
                color: var(--color-primary);
            }

        .blog .blog-details .meta-bottom .cats {
            list-style: none;
            display: inline;
            padding: 0 20px 0 0;
            font-size: 14px;
        }

            .blog .blog-details .meta-bottom .cats li {
                display: inline-block;
            }

        .blog .blog-details .meta-bottom .tags {
            list-style: none;
            display: inline;
            padding: 0;
            font-size: 14px;
        }

            .blog .blog-details .meta-bottom .tags li {
                display: inline-block;
            }

                .blog .blog-details .meta-bottom .tags li + li::before {
                    padding-right: 6px;
                    color: var(--color-default);
                    content: ",";
                }

        .blog .blog-details .meta-bottom .share {
            font-size: 16px;
        }

            .blog .blog-details .meta-bottom .share i {
                padding-left: 5px;
            }

.blog .post-author {
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

    .blog .post-author img {
        max-width: 120px;
        margin-right: 20px;
    }

    .blog .post-author h4 {
        font-weight: 600;
        font-size: 22px;
        margin-bottom: 0px;
        padding: 0;
        color: var(--color-secondary);
    }

    .blog .post-author .social-links {
        margin: 0 10px 10px 0;
    }

        .blog .post-author .social-links a {
            color: rgba(27, 47, 69, 0.5);
            margin-right: 5px;
        }

    .blog .post-author p {
        font-style: italic;
        color: rgba(var(--color-gray-rgb), 0.8);
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar .sidebar-title {
    font-size: 22px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: var(--color-secondary);
}

.blog .sidebar .sidebar-item + .sidebar-item {
    margin-top: 40px;
}

.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid rgba(27, 47, 69, 0.2);
    padding: 3px 10px;
    position: relative;
}

    .blog .sidebar .search-form form input[type=text] {
        border: 0;
        padding: 4px;
        border-radius: 4px;
        width: calc(100% - 40px);
    }

        .blog .sidebar .search-form form input[type=text]:focus {
            outline: none;
        }

    .blog .sidebar .search-form form button {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        border: 0;
        background: none;
        font-size: 16px;
        padding: 0 15px;
        margin: -1px;
        background: var(--color-primary);
        color: #fff;
        transition: 0.3s;
        border-radius: 0 4px 4px 0;
        line-height: 0;
    }

        .blog .sidebar .search-form form button i {
            line-height: 0;
        }

        .blog .sidebar .search-form form button:hover {
            background: rgba(86, 184, 230, 0.8);
        }

.blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

    .blog .sidebar .categories ul li + li {
        padding-top: 10px;
    }

    .blog .sidebar .categories ul a {
        color: var(--color-secondary);
        font-size: 15px;
    }

        .blog .sidebar .categories ul a:hover {
            color: var(--color-default);
        }

        .blog .sidebar .categories ul a span {
            padding-left: 5px;
            color: rgba(var(--color-default-rgb), 0.4);
            font-size: 14px;
        }

.blog .sidebar .recent-posts .post-item {
    display: flex;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

    .blog .sidebar .recent-posts .post-item + .post-item {
        margin-top: 15px;
    }

.blog .sidebar .recent-posts img {
    width: 80px;
    margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
    font-size: 18px;
    font-weight: 400;
}

    .blog .sidebar .recent-posts h4 a {
        color: var(--color-secondary);
        transition: 0.3s;
    }

        .blog .sidebar .recent-posts h4 a:hover {
            color: var(--color-primary);
        }

.blog .sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: rgba(var(--color-default-rgb), 0.4);
}

.blog .sidebar .tags {
    margin-bottom: -10px;
}

    .blog .sidebar .tags ul {
        list-style: none;
        padding: 0;
    }

        .blog .sidebar .tags ul li {
            display: inline-block;
        }

        .blog .sidebar .tags ul a {
            color: #38618e;
            font-size: 14px;
            padding: 6px 14px;
            margin: 0 6px 8px 0;
            border: 1px solid rgba(27, 47, 69, 0.15);
            display: inline-block;
            border-radius: 50px;
            transition: 0.3s;
        }

            .blog .sidebar .tags ul a:hover {
                color: #fff;
                border: 1px solid var(--color-primary);
                background: var(--color-primary);
            }

            .blog .sidebar .tags ul a span {
                padding-left: 5px;
                color: rgba(27, 47, 69, 0.8);
                font-size: 14px;
            }

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
    margin-top: 30px;
}

    .blog .comments .comments-count {
        font-weight: bold;
    }

    .blog .comments .comment {
        margin-top: 30px;
        position: relative;
    }

        .blog .comments .comment .comment-img {
            margin-right: 14px;
        }

            .blog .comments .comment .comment-img img {
                width: 60px;
            }

        .blog .comments .comment h5 {
            font-size: 16px;
            margin-bottom: 2px;
        }

            .blog .comments .comment h5 a {
                font-weight: bold;
                color: var(--color-default);
                transition: 0.3s;
            }

                .blog .comments .comment h5 a:hover {
                    color: var(--color-primary);
                }

            .blog .comments .comment h5 .reply {
                padding-left: 10px;
                color: var(--color-secondary);
            }

                .blog .comments .comment h5 .reply i {
                    font-size: 20px;
                }

        .blog .comments .comment time {
            display: block;
            font-size: 14px;
            color: rgba(27, 47, 69, 0.8);
            margin-bottom: 5px;
        }

        .blog .comments .comment.comment-reply {
            padding-left: 40px;
        }

    .blog .comments .reply-form {
        margin-top: 30px;
        padding: 30px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

        .blog .comments .reply-form h4 {
            font-weight: bold;
            font-size: 22px;
        }

        .blog .comments .reply-form p {
            font-size: 14px;
        }

        .blog .comments .reply-form input {
            border-radius: 4px;
            padding: 10px 10px;
            font-size: 14px;
        }

            .blog .comments .reply-form input:focus {
                box-shadow: none;
                border-color: rgba(86, 184, 230, 0.8);
            }

        .blog .comments .reply-form textarea {
            border-radius: 4px;
            padding: 10px 10px;
            font-size: 14px;
        }

            .blog .comments .reply-form textarea:focus {
                box-shadow: none;
                border-color: rgba(86, 184, 230, 0.8);
            }

        .blog .comments .reply-form .form-group {
            margin-bottom: 25px;
        }

        .blog .comments .reply-form .btn-primary {
            border-radius: 4px;
            padding: 10px 20px;
            border: 0;
            background-color: var(--color-secondary);
        }

            .blog .comments .reply-form .btn-primary:hover {
                background-color: rgba(27, 47, 69, 0.8);
            }

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
    margin-top: 30px;
    color: #38618e;
}

    .blog .blog-pagination ul {
        display: flex;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .blog .blog-pagination li {
        margin: 0 5px;
        transition: 0.3s;
    }

        .blog .blog-pagination li a {
            color: #2aa5df;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            background: #dbf0fa;
            padding: 7px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog .blog-pagination li.active a,
        .blog .blog-pagination li:hover a {
            background: var(--color-primary);
            color: #fff;
        }

/*--------------------------------------------------------------
# Success
--------------------------------------------------------------*/
.success {
    background: var(--color-white);
    display: flex;
}

    .success .hero-image {
        display: block;
        width: 100%;
        height: 100%;
        max-height: 500px;
        object-fit: cover;
        object-position: center;
        border-radius: 6px;
    }

    .success h2 {
        color: var(--color-primary-blue);
    }

    .success ol,
    li {
        font-size: 1rem;
        line-height: 25px;
    }

@media screen and (min-width: 1200px) {

    .success ol,
    li {
        font-size: 1rem;
        line-height: 1.3;
        padding-bottom: 10px;
    }
}

/*--------------------------------------------------------------
# What Makes Us Different
--------------------------------------------------------------*/
.makes-us-different {
    background: #f9f9f9;
    display: flex;
}

    .makes-us-different .image-overlay-container {
        position: relative;
        width: 100%;
        max-height: 300px;
        border-radius: 6px;
        overflow: hidden;
    }

@media screen and (min-width: 1200px) {
    .makes-us-different .image-overlay-container {
        max-height: 450px;
    }
}

.makes-us-different .image-overlay-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-primary-blue);
    z-index: 1;
}

.makes-us-different .hero-image {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}

.makes-us-different .overlay-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    padding: 0;
    width: 80%;
}

    .makes-us-different .overlay-text h2 {
        color: var(--color-white);
    }

.makes-us-different h2 {
    color: var(--color-primary-blue);
}

.makes-us-different h5 {
    line-height: 1.2;
    padding-bottom: 10px;
    font-weight: 600;
    color: var(--color-primary-blue);
}

.makes-us-different h4 .stroke {
    color: var(--color-primary);
}

.makes-us-different ul,
li {
    font-size: 1rem;
    line-height: 1.3;
    padding-bottom: 10px;
}

@media screen and (min-width: 1200px) {

    .makes-us-different ul,
    li {
        font-size: 1.3rem;
    }
}

.makes-us-different ul li::marker {
    color: var(--color-primary);
}

.makes-us-different .text-container {
    padding: 0;
}

@media screen and (min-width: 1200px) {
    .makes-us-different .text-container {
        padding: 0 0 0 15px;
    }
}

/*--------------------------------------------------------------
# Patients
--------------------------------------------------------------*/
.patients {
    background: #f9f9f9;
    display: flex;
    flex-direction: row-reverse;
}

    .patients .hero-image {
        display: block;
        width: 100%;
        height: 100%;
        max-height: 500px;
        object-fit: cover;
        object-position: center;
        border-radius: 6px;
        margin-bottom: 1rem;
    }

    .patients strong {
        color: var(--color-primary);
    }

    .patients .text {
        flex-direction: column;
        padding-right: 0;
    }

    .patients h2 {
        color: var(--color-primary-blue);
    }

    .patients h4 {
        margin-bottom: 1rem;
    }

    .patients ol,
    li {
        font-size: 1rem;
        line-height: 25px;
        z-index: 10;
    }

@media screen and (min-width: 768px) {

    .patients .hero-image {
        margin-bottom: 0;
    }

    .patients .text {
        padding-right: 20px;
    }
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faq .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.faq .faq-description {
    font-size: 1rem;
    color: var(--default-color);
    margin-bottom: 2rem;
}

.faq .faq-arrow {
    color: var(--accent-color);
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

    .faq .faq-container .faq-item:last-child {
        margin-bottom: 0;
    }

    .faq .faq-container .faq-item h3 {
        font-weight: 600;
        font-size: 19px;
        line-height: 24px;
        margin: 0 30px 0 0;
        transition: 0.3s;
        cursor: pointer;
        display: flex;
        align-items: center;
        color: var(--color-primary);
    }

        .faq .faq-container .faq-item h3 .num {
            color: var(--accent-color);
            padding-right: 5px;
        }

        .faq .faq-container .faq-item h3:hover {
            color: var(--accent-color);
        }

    .faq .faq-container .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.3s ease-in-out;
        visibility: hidden;
        opacity: 0;
    }

        .faq .faq-container .faq-item .faq-content p {
            margin-bottom: 0;
            overflow: hidden;
        }

    .faq .faq-container .faq-item .faq-toggle {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 16px;
        line-height: 0;
        transition: 0.3s;
        cursor: pointer;
    }

        .faq .faq-container .faq-item .faq-toggle:hover {
            color: var(--accent-color);
        }

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}


/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
}

@media (min-width: 1200px) {
    .contact .info {
        width: 90%;
    }
}

.contact .info i {
    font-size: 20px;
    color: #ffffff;
    float: left;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-default);
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0px;
    font-size: 14px;
    color: var(--color-default);
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

    .contact .info .social-links a {
        font-size: 18px;
        display: inline-block;
        background: #333;
        color: #fff;
        line-height: 1;
        padding: 8px 0;
        border-radius: 50%;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
        margin-right: 10px;
    }

        .contact .info .social-links a:hover {
            background: var(--color-hover);
            color: #fff;
        }

.contact .php-email-form {
    width: 100%;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form .form-group {
        margin-bottom: 20px;
    }

    .contact .php-email-form label {
        padding-bottom: 8px;
    }

    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        border-radius: 4px;
    }

        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: var(--color-primary);
        }

    .contact .php-email-form input {
        height: 44px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }

    /* 2 */
    .contact .php-email-form button[type=submit] {
        background: var(--color-primary-blue);
        /*var(--color-primary);*/
        border: 0;
        padding: 12px 34px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        /* 2 */
        .contact .php-email-form button[type=submit]:hover {
            background: var(--color-primary-blue-hover);
            /*var(--color-hover);*/
        }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 12px;
}

    .footer .footer-content {
        background: var(--color-primary-blue);
        background-size: contain;
        padding: 60px 0 30px 0;
    }

        .footer .footer-content .footer-info {
            margin-bottom: 30px;
        }

            .footer .footer-content .footer-info .logo {
                line-height: 0;
                margin-bottom: 25px;
            }

                .footer .footer-content .footer-info .logo img {
                    max-height: 65px;
                    margin-right: 6px;
                }

                .footer .footer-content .footer-info .logo span {
                    font-size: 30px;
                    font-weight: 700;
                    letter-spacing: 1px;
                    color: var(--color-secondary);
                    font-family: var(--font-primary);
                    margin-top: 3px;
                }

            .footer .footer-content .footer-info p {
                font-size: 15px;
                margin-bottom: 0;
                font-family: var(--font-primary);
                color: var(--color-white);
            }

    /*     .footer-content  */
    .footer .social-links a {
        font-size: 20px !important; /*14px;*/
        /*line-height: 0;*/
        /*display: inline-block;*/
        /*width: 32px;
  height: 32px;*/
        color: var(--color-white);
        /*margin-right: 10px;*/
        transition: 0.3s;
        /*display: flex;*/
        /*justify-content: center;*/
        align-items: center;
        /*background-color: var(--color-primary);*/
        color: var(--color-primary-blue); /*#fff;*/
        /*border-radius: 50px;*/
    }

        /*      .footer-content */
        .footer .social-links a:hover {
            /*background-color: var(--color-primary-blue-hover);*/
            color: var(--color-primary-blue-hover);
        }

    .footer .footer-content h4 {
        font-size: 16px;
        font-weight: bold;
        color: var(--color-white);
        position: relative;
        padding-bottom: 12px;
    }

    .footer .footer-content .footer-links {
        margin-bottom: 30px;
    }

        .footer .footer-content .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-content .footer-links ul i {
                margin-right: 2px;
                color: var(--color-primary);
                font-size: 16px;
                line-height: 0;
            }

            .footer .footer-content .footer-links ul li {
                padding: 10px 0;
                display: flex;
                align-items: center;
            }

                .footer .footer-content .footer-links ul li:first-child {
                    padding-top: 0;
                }

            .footer .footer-content .footer-links ul a {
                color: var(--color-white);
                transition: 0.3s;
                display: inline-block;
                line-height: 1;
            }

                .footer .footer-content .footer-links ul a:hover {
                    color: var(--color-primary);
                }

    .footer .footer-content .footer-contact p {
        line-height: 26px;
        color: var(--color-secondary);
    }

    .footer .footer-legal {
        background: #fff;
        padding: 30px 0;
    }

        .footer .footer-legal .copyright {
            text-align: center;
            color: var(--color-secondary);
        }

        .footer .footer-legal .credits {
            padding-top: 4px;
            text-align: center;
            font-size: 13px;
            color: var(--color-secondary);
        }


#detach-button-host {
    display: none !important;
}
