.hero {
    position: relative;
    overflow: hidden;
}

.hero__bg-img {
    position: absolute;
    inset: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.hero__bg-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .cus-container {
    position: relative;
    z-index: 2;
}

.hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 41px;
    align-items: flex-start;
    padding: 59px 0px;
    position: relative;
}

.hero-card {
    border-radius: 12px;
    padding: 63px 46px 42px;
    color: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    height: 100%;
}

.hero-card--blue {
    background: #28467ce5;
}

.hero-card--green {
    background: #009198e5;
}

.hero-card__subtitle {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.29;
    font-family: var(--font-assistant-extra-bold);
    font-weight: 800;
}

.hero-card--green .hero-card__subtitle {
    color: var(--color-text-secondary);
}

.hero-card--blue .hero-card__subtitle {
    color: var(--color-light-blue);
}

.hero-card__title {
    font-family: var(--font-assistant-semi-bold);
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 21px;
    max-width: 80%;
}

.hero-card.hero-card--green .hero-card__title {
    margin-bottom: 11px;
}

.hero-card__text {
    color: #fff;
    font-size: 16px;
    max-width: 620px;
    line-height: 1.4;
    margin-bottom: 27px;
}

.hero-card.hero-card--blue .hero-card__text {
    font-family: var(--font-assistant-light);
    font-weight: 300;
    font-style: Light;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0px;
    color: var(--color-text-white);
    margin-bottom: 39px;
}

.hero-card__buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hero-service {
    background: #fff;
    border-radius: 10px;
    padding: 22px 12px 31px 19px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.35s;
}

.hero-service h3 {
    font-family: var(--font-assistant-bold);
    color: #28467c;
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 13px;
}

.hero-service.red h3 {
    color: var(--color-primary-red);
}

.hero-service.light-blue h3 {
    color: var(--color-light-blue);
}

.hero-service.green h3 {
    color: var(--color-light-green);
}

.hero-service .cus-btn {
    width: max-content;
}

@media only screen and (max-width: 1727px) and (min-width: 992px) {
    .hero__wrapper {
        gap: 2.373vw;
        padding: 3.414vw 0vw;
    }

    .hero-card {
        border-radius: 0.694vw;
        padding: 3.646vw 2.662vw 2.431vw;
    }

    .hero-card__subtitle {
        margin-bottom: 0.347vw;
        font-size: 0.81vw;
        opacity: 0.85;
    }

    .hero-card__title {
        font-size: 3.183vw;
        margin-bottom: 1.215vw;
    }

    .hero-card.hero-card--green .hero-card__title {
        margin-bottom: 0.637vw;
    }

    .hero-card__text {
        font-size: 0.926vw;
        max-width: 35.88vw;
        margin-bottom: 1.563vw;
    }

    .hero-card.hero-card--blue .hero-card__text {
        font-size: 0.926vw;
        margin-bottom: 2.257vw;
    }

    .hero-card__buttons {
        gap: 1.042vw;
    }

    .hero-services {
        gap: 1.042vw;
    }

    .hero-service {
        border-radius: 0.579vw;
        padding: 1.273vw 0.694vw 1.794vw 1.1vw;
    }

    .hero-service h3 {
        font-size: 1.736vw;
        margin-bottom: 0.752vw;
    }
}

@media only screen and (max-width: 991px) {
    .hero__wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }

    .hero-card__title {
        font-size: 45px;
        margin-bottom: 14px;
        max-width: 100%;
    }

    .hero-card.hero-card--blue .hero-card__text {
        margin-bottom: 26px;
    }

    .hero-service h3 {
        font-size: 26px;
    }

    .hero-card__buttons {
        gap: 24px;
    }
}

@media only screen and (max-width: 680px) {
    .hero__wrapper {
        display: flex;
        flex-direction: column;
        gap: 21px;
        padding: 25px 0 21px;
    }

    .hero-services {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .hero__bg-img::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: 0px;
        background: linear-gradient(0deg, rgba(40, 70, 124, 1) 0%, rgba(40, 70, 124, 0) 100%);
        z-index: 0;
    }

    .hero-card {
        padding: 26px 33px 34px 33px;
    }

    .hero-card.hero-card--green {
        padding: 31px 34px 38px 40px;
    }

    .hero-service {
        padding: 24px 15px 24px 23px;
    }

    .hero-service.red h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .hero-service h3 {
        font-size: 20px;
    }

    .hero-card__text {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 340px) {
    .hero-card__title {
        font-size: 34px;
    }

    .hero-card {
        padding: 25px;
    }
}

/*====================================================
PARTNER LOGOS
====================================================*/

.partner-strip {
    background: #fff;
    padding: 49px 0 35px;
    overflow: hidden;
}

.partner-marquee {
    white-space: nowrap;
    overflow: hidden;
}

.partner-slider__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 50px;
    vertical-align: middle;
}

.partner-slider__item img {
    max-height: 96px;
    height: 100%;
    width: auto;
    display: block;
}

@media only screen and (max-width: 1727px) and (min-width: 992px) {
    .partner-strip {
        padding: 2.836vw 0 2.025vw;
    }

    .partner-slider__item {
        margin: 0 2.893vw;
    }

    .partner-slider__item img {
        max-height: 5.671vw;
    }
}

@media only screen and (max-width: 991px) {
    .partner-slider__item img {
        max-height: 90px;
    }
}

@media only screen and (max-width: 580px) {
    .partner-strip {
        padding: 38px 0 40px;
    }

    .partner-slider__item {
        margin: 0 35px;
    }

    .partner-slider__item img {
        height: 68px;
    }
}

/*====================================================
COMMUNITY SERVICES
====================================================*/

.community-services {
    padding: 0px 0 44px;
}

.community-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.community-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 470px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.community-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.community-card__overlay {
    position: absolute;
    inset: 0;
    background: var(--color-blue-overlay);
}

.community-card__content {
    position: absolute;
    left: 56px;
    bottom: 49px;
    z-index: 2;
    max-width: 388px;
    width: 100%;
}

.community-card h3 {
    font-family: var(--font-assistant-bold);
    font-weight: 700;
    color: #fff;
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 35px;
}

.community-card h3 span {
    display: block;
}

.community-card p {
    color: #fff;
    margin-bottom: 24px;
    font-family: var(--font-assistant-light);
    font-weight: 300;
    font-style: Light;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0px;
    color: var(--color-text-white);
}

.community-card {
    transition: 0.35s;
}

@media only screen and (max-width: 1727px) and (min-width: 992px) {
    .community-services {
        padding: 0vw 0 2.546vw;
    }

    .community-services__grid {
        gap: 1.62vw;
    }

    .community-card {
        border-radius: 0.694vw;
        min-height: 27.199vw;
        box-shadow: 0 1.157vw 2.604vw rgba(0, 0, 0, 0.08);
    }

    .community-card__content {
        left: 3.241vw;
        bottom: 2.836vw;
        max-width: 22.454vw;
    }

    .community-card h3 {
        font-size: 1.736vw;
        margin-bottom: 2.025vw;
    }

    .community-card p {
        font-size: 0.926vw;
        margin-bottom: 1.389vw;
    }
}

@media only screen and (max-width: 991px) {
    .community-services__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 27px;
    }

    .community-card h3 span {
        display: inline;
    }
}

@media only screen and (max-width: 680px) {
    .community-services {
        padding: 0px 0 30px;
    }

    .community-card__content {
        max-width: 79.56%;
        left: 40px;
        bottom: 55px;
    }

    .community-card {
        min-height: 372px;
    }

    .community-card h3 {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .community-card p {
        margin-bottom: 34px;
        line-height: 1.2;
    }

    .community-card__content .cus-btn {
        font-size: 13px;
        padding: 8px 27px;
    }
}

@media only screen and (max-width: 340px) {
    .community-card__content {
        bottom: 25px;
    }
}

/*==================================================
INFO SECTION
==================================================*/

.info-section {
    padding: 0px 0 54px;
}

.info-section__wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 93px;
    align-items: center;
}

.info-section__image {
    border-radius: 12px;
    overflow: hidden;
}

.info-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-section .info-section__content {
    max-width: 600px;
    width: 100%;
}

.info-section__subtitle {
    font-family: var(--font-assistant-extra-bold);
    color: var(--color-dark-blue-text);
    font-size: 14px;
    line-height: 1.29;
    text-transform: capitalize;
    margin-bottom: 13px;
    display: block;
}

.info-section__title {
    font-family: var(--font-assistant-light);
    font-weight: 300;
    color: var(--color-text-primary);
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.info-section__text {
    font-family: var(--font-assistant-light);
    font-weight: 300;
    font-style: Light;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0px;
    margin-bottom: 30px;
    color: var(--color-text-primary) !important;
}

.info-section__buttons {
    display: flex;
    gap: 22px;
}

.info-section__buttons .cus-btn {
    padding: 11px 43px !important;
}

@media only screen and (max-width: 1727px) and (min-width: 992px) {
    .info-section {
        padding: 0vw 0 3.125vw;
    }

    .info-section__wrapper {
        gap: 5.382vw;
    }

    .info-section__image {
        border-radius: 0.694vw;
    }

    .info-section .info-section__content {
        max-width: 34.722vw;
    }

    .info-section__subtitle {
        font-size: 0.81vw;
        margin-bottom: 0.752vw;
    }

    .info-section__title {
        font-size: 2.315vw;
        margin-bottom: 0.926vw;
    }

    .info-section__text {
        font-size: 0.926vw;
        margin-bottom: 1.736vw;
    }

    .info-section__buttons {
        gap: 1.273vw;
    }

    .info-section__buttons .cus-btn {
        padding: 0.637vw 2.488vw !important;
    }
}

@media only screen and (max-width: 991px) {
    .info-section__wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .info-section .info-section__content {
        max-width: 100%;
    }

    .info-section__title {
        font-size: 35px;
    }
}

@media only screen and (max-width: 580px) {
    .info-section {
        padding: 0px 0 31px;
    }

    .info-section__wrapper {
        gap: 24px;
    }

    .info-section__buttons {
        flex-direction: column;
        gap: 20px;
    }

    .info-section__subtitle {
        margin-bottom: 10px;
        line-height: 1.29;
    }

    .info-section__text {
        margin-bottom: 25px;
    }

    .info-section__buttons .cus-btn {
        max-width: 196px;
        width: 100%;
        text-align: center;
    }

    .info-section__image {
        position: relative;
        max-width: 100%;
        width: 100%;
        padding-bottom: 78.454%;
    }

    .info-section__image img {
        position: absolute;
        inset: 0;
    }
}

/*====================================================
NHS SECTION
====================================================*/

.nhs-section {
    position: relative;
    position: relative;
    padding: 74px 0 60px;
    background: #28467c;
    overflow: hidden;
}

.nhs-section .bg-img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    max-width: 100%;
}

.nhs-section .bg-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nhs-services {
    position: relative;
    z-index: 3;
    padding-bottom: 210px;
    overflow: visible;
}

.nhs-services .bg-img {
    display: none;
}

.nhs-services__header {
    display: flex;
    justify-content: space-between;
    gap: 45px;
    align-items: end;
    margin-bottom: 52px;
}

.nhs-services__header h2 {
    color: var(--color-text-white);
    font-size: 40px;
    font-family: var(--font-assistant-light);
    font-weight: 300;
    line-height: 1.1;
    max-width: 1070px;
    width: 100%;
    margin-bottom: 0px;
}

.nhs-services__arrows {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 6px;
}

.nhs-services__arrows button {
    display: flex;
    align-items: flex-start;
    height: 24px;
}

.nhs-services__arrows button svg {
    width: 8px;
    height: 12px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.nhs-services__arrows button.slick-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.nhs-services__slider .slick-list {
    margin: 0 -18px;
    overflow: visible;
}

.nhs-service {
    padding: 0px 18px;
}

.nhs-service .nhs-service_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fffdfde5;
    border-radius: 10px;
    padding: 20px;
    min-height: 175px !important;
    height: 100%;
}

.nhs-service svg,
.nhs-service img {
    width: auto;
    height: 64px;
    margin-bottom: 26px;
    min-width: 64px;
}

.nhs-service h4 {
    font-family: var(--font-rubic-bold);
    font-weight: 700;
    font-size: 25px;
    line-height: 1.1;
    letter-spacing: 0px;
    text-align: center;
    color: var(--color-text-secondary);
}

.nhs-service h4 span {
    display: block;
}

.nhs-section .cus-container {
    position: relative;
    z-index: 4;
}

.nhs-section__content {
    max-width: 1200px;
    width: 100%;
}

.nhs-section__left {
    color: white;
}

.left-content-wrapper {
    max-width: 600px;
    width: 100%;
}

.nhs-section__icon {
    width: 92px;
    margin-bottom: 38px;
}

.nhs-section__icon svg {
    width: 100%;
    height: auto;
}

.nhs-section__left span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.nhs-section__left h2 {
    font-family: var(--font-assistant-light);
    font-size: 40px;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 29px;
    color: var(--color-text-white);
}

.nhs-section__left p {
    color: var(--color-text-white);
    line-height: 1.4;
    margin-bottom: 32px;
    font-family: var(--font-assistant-light);
    font-weight: 300;
    font-style: Light;
    font-size: 16px;
    letter-spacing: 0px;
}

.nhs-section__cards {
    display: flex;
    gap: 42px;
}

.nhs-section__cards .nhs-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nhs-box {
    flex: 1;
    border-radius: 12px;
    padding: 35px;
}

.nhs-box--red {
    background: var(--color-primary-red);
}

.nhs-box--blue {
    background: var(--color-light-blue);
}

.nhs-box--blue h3,
.nhs-box--blue p {
    color: var(--color-primary-blue) !important;
}

.nhs-box h3 {
    font-family: var(--font-rubic-bold);
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.nhs-box p {
    margin-bottom: 30px;
    font-family: var(--font-assistant-light);
    font-weight: 300;
    font-style: Light;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0px;
    color: var(--color-text-white);
}

.nhs-box .cus-btn {
    padding: 11px 29px;
    width: fit-content;
}

.nhs-services .bg-img::after,
.nhs-section .bg-img::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #28467c;
    opacity: 0.08;
}

@media only screen and (max-width: 1727px) and (min-width: 992px) {
    .nhs-section {
        padding: 4.282vw 0 3.472vw;
    }

    .nhs-services {
        padding-bottom: 12.153vw;
    }

    .nhs-services__header {
        margin-bottom: 3.009vw;
        gap: 2.604vw;
    }

    .nhs-services__header h2 {
        font-size: 2.315vw;
        max-width: 61.921vw;
    }

    .nhs-services__arrows {
        gap: 0.347vw;
    }

    /* .nhs-services__arrows button svg {
        width: 0.463vw;
        height: 0.694vw;
    } */

    .nhs-services__slider .slick-list {
        margin: 0 -1.042vw;
    }

    .nhs-service {
        padding: 0vw 1.042vw;
    }

    .nhs-service .nhs-service_wrapper {
        border-radius: 0.579vw;
        padding: 1.157vw;
        min-height: 10.127vw !important;
    }

    .nhs-service svg,
    .nhs-service img {
        min-width: 3.704vw;
        margin-bottom: 1.505vw;
        height: 3.704vw;
    }

    .nhs-service h4 {
        font-size: 1.447vw;
    }

    .nhs-section__content {
        max-width: 69.444vw;
    }

    .left-content-wrapper {
        max-width: 34.722vw;
    }

    .nhs-section__icon {
        width: 5.324vw;
        margin-bottom: 2.199vw;
    }

    .nhs-section__left span {
        margin-bottom: 0.694vw;
    }

    .nhs-section__left h2 {
        font-size: 2.315vw;
        margin-bottom: 1.678vw;
    }

    .nhs-section__left p {
        margin-bottom: 1.852vw;
        font-size: 0.926vw;
    }

    .nhs-section__cards {
        gap: 2.431vw;
    }

    .nhs-box {
        border-radius: 0.694vw;
        padding: 2.025vw;
    }

    .nhs-box h3 {
        font-size: 1.736vw;
        margin-bottom: 0.694vw;
    }

    .nhs-box p {
        margin-bottom: 1.736vw;
        font-size: 0.926vw;
    }

    .nhs-box .cus-btn {
        padding: 0.637vw 1.678vw;
    }
}

@media only screen and (max-width: 991px) {
    .nhs-services .bg-img {
        display: block;
        top: auto;
    }

    .nhs-section>.bg-img {
        display: none;
    }

    .nhs-services .bg-img::after,
    .nhs-section .bg-img::after {
        opacity: 0.18;
    }

    .nhs-section .bg-img::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 20px;
        top: -5px;
        background: linear-gradient(180deg,
                rgba(40, 70, 124, 1) 0%,
                rgba(40, 70, 124, 0) 100%);
        z-index: 1;
    }

    .nhs-section .bg-img img {
        object-position: 75% -25px;
    }

    .nhs-service h4 {
        font-size: 20px;
    }

    .nhs-service svg,
    .nhs-service img {
        height: 40px;
        margin-bottom: 18px;
    }

    .nhs-services__slider .slick-list {
        margin: 0 -12px;
    }

    .nhs-service {
        padding: 0px 12px;
    }

    .nhs-service .nhs-service_wrapper {
        min-height: auto !important;
    }

    body.new-home-page .nhs-section>.cus-container {
        margin-top: 10%;
    }

    .nhs-services {
        padding-bottom: 400px;
    }
}

@media only screen and (max-width: 750px) {
    .nhs-section__cards {
        flex-direction: column;
        gap: 21px;
    }
}

@media only screen and (max-width: 680px) {
    .nhs-section {
        padding: 37px 0px 21px;
    }

    .nhs-services__header {
        margin-bottom: 36px;
    }

    .nhs-services__header h2 {
        font-size: 35px;
    }

    .nhs-service,
    .nhs-service img {
        height: 30px;
        margin-bottom: 12px;
    }

    .nhs-service h4 {
        font-size: 16px;
    }

    .nhs-service .nhs-service_wrapper {
        padding: 19px 5px;
    }

    .nhs-service {
        padding: 0px 9px;
    }

    .nhs-services .bg-img {
        top: auto;
        position: relative;
        padding-bottom: 100%;
    }

    .nhs-services {
        padding-bottom: 0px;
    }

    body.new-home-page .nhs-section>.cus-container {
        margin-top: -38%;
    }

    .nhs-section__icon {
        max-width: 66px;
        margin-bottom: 21px;
    }

    .nhs-section__left h2 {
        font-size: 35px;
        margin-bottom: 13px;
    }

    .nhs-section__left p {
        margin-bottom: 30px;
    }

    .nhs-box {
        padding: 46px 23px 21px 26px;
    }

    .nhs-box h3 {
        margin-bottom: 8px;
    }
}

/*====================================================
HEALTH CARE SECTION
====================================================*/

.healthcare-section {
    padding: 46px 0px;
}

.healthcare-section .healthcare-panel {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 127px;
    background-color: var(--color-light-blue);
    padding: 41px 41px 40px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.healthcare-panel .healthcare-panel__image {
    max-width: 722px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: #00000033;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.healthcare-panel .healthcare-panel__text {
    max-width: 630px;
    width: 100%;
}

.healthcare-panel__text .healthcare-panel__title {
    font-family: var(--font-assistant-semi-bold);
    font-weight: 600;
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: 0px;
    color: var(--color-text-secondary);
    padding-bottom: 20px;
    margin-bottom: 0px;
}

.healthcare-panel__text .healthcare-panel__desc {
    font-family: var(--font-assistant-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0px;
    color: var(--color-text-secondary);
    padding-bottom: 20px;
    margin-bottom: 0px;
}

.healthcare-panel__text .service-link_heading {
    margin-bottom: 0px;
}

.healthcare-panel__text .service-link_heading,
.healthcare-panel__text .healthcare-panel__list li a {
    font-family: var(--font-assistant-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0px;
    color: var(--color-text-secondary);
}

.healthcare-panel__text .healthcare-panel__list {
    padding-left: 20px;
    margin-left: 8px;
    margin-bottom: 32px;
}

.healthcare-panel__text .healthcare-panel__list li {
    list-style-type: disc;
    color: var(--color-text-secondary);
    line-height: 1;
}

.healthcare-panel__actions {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 27px;
}

.healthcare-panel__actions .cus-btn.cus-btn--coral {
    padding: 11px 39px;
}

.healthcare-panel__actions .cus-btn.cus-btn--white-solid {
    padding: 11px 24px;
}

@media only screen and (max-width: 1727px) and (min-width: 992px) {
    .healthcare-section {
        padding: 2.662vw 0vw;
    }

    .healthcare-section .healthcare-panel {
        gap: 7.35vw;
        padding: 2.373vw 2.373vw 2.315vw;
        border-radius: 0.579vw;
    }

    .healthcare-panel .healthcare-panel__image {
        max-width: 41.782vw;
        border-radius: 0.579vw;
    }

    .healthcare-panel .healthcare-panel__text {
        max-width: 36.458vw;
    }

    .healthcare-panel__text .healthcare-panel__title {
        font-size: 3.704vw;
        padding-bottom: 1.157vw;
    }

    .healthcare-panel__text .healthcare-panel__desc {
        font-size: 0.926vw;
        padding-bottom: 1.157vw;
    }

    .healthcare-panel__text .service-link_heading,
    .healthcare-panel__text .healthcare-panel__list li a {
        font-size: 0.926vw;
    }

    .healthcare-panel__text .healthcare-panel__list {
        padding-left: 1.157vw;
        margin-left: 0.463vw;
        margin-bottom: 1.852vw;
    }

    .healthcare-panel__actions {
        gap: 1.563vw;
    }

    .healthcare-panel__actions .cus-btn.cus-btn--coral {
        padding: 0.637vw 2.257vw;
    }

    .healthcare-panel__actions .cus-btn.cus-btn--white-solid {
        padding: 0.637vw 1.389vw;
    }
}

@media only screen and (max-width: 991px) {
    .healthcare-section .healthcare-panel {
        flex-direction: column;
        gap: 40px;
    }

    .healthcare-panel .healthcare-panel__image,
    .healthcare-panel .healthcare-panel__text {
        max-width: 100%;
    }

    .healthcare-panel .healthcare-panel__image {
        position: relative;
        padding-bottom: 50%;
    }

    .healthcare-panel .healthcare-panel__image img {
        position: absolute;
        width: 100%;
        height: 100%;
        inset: 0;
        object-fit: cover;
    }

    .healthcare-panel__text .healthcare-panel__title {
        font-size: 55px;
    }

    .healthcare-panel__text .healthcare-panel__list li {
        line-height: 1.4;
    }
}

@media only screen and (max-width: 680px) {
    .healthcare-section {
        padding: 12px 0px 23px;
    }

    .healthcare-section .healthcare-panel {
        padding: 39px 34px 39px 41px;
        gap: 25px;
    }

    .healthcare-panel .healthcare-panel__image {
        padding-bottom: 80.488%;
    }

    .healthcare-panel__text .healthcare-panel__title {
        font-size: 35px;
        max-width: 70%;
        padding-bottom: 14px;
    }

    .healthcare-panel__text .healthcare-panel__list {
        margin-bottom: 23px;
    }

    .healthcare-panel__actions {
        flex-direction: column;
        gap: 17px;
        align-items: start;
    }

    .healthcare-panel__actions .cus-btn {
        padding: 11px 17px;
    }

    .healthcare-panel__actions .cus-btn,
    .healthcare-panel__actions .cus-btn.cus-btn--coral {
        padding: 11px 27px;
    }

    .healthcare-panel__actions .cus-btn.cus-btn--white-solid {
        padding: 11px 17px;
    }
}

/*====================================================
CORE SERVICES SECTION
====================================================*/

.core-services {
    padding-bottom: 56px;
    overflow: hidden;
}

.core-services .core-services_heading-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 43px;
}

.core-services_heading-wrapper .core-services__heading {
    font-family: var(--font-rubic-light);
    font-weight: 300;
    font-size: 40px;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: 0px;
}

.core-services__arrows {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 8px;
}

.core-services__arrows button {
    display: flex;
    align-items: start;
    height: 24px;
}

.core-services__arrows button svg {
    width: 8px;
    height: 12px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.core-services__slider .core-card {
    padding: 0px 15px;
}

.core-services__slider .slick-list {
    margin: 0px -15px;
    overflow: visible;
}

.core-services__slider .core-card .core-card_wrapper {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.core-services__slider .core-card .core-card_wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: var(--color-blue-overlay);
}

.core-card .core-card_wrapper .core-card__title-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 111;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.core-card .core-card_wrapper .core-card__title {
    font-family: var(--font-assistant-bold);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.1;
    color: var(--color-text-white);
    margin-bottom: 0px;
}

.core-card a:hover .core-card_wrapper .core-card__title {
    text-decoration: underline;
}

.core-services__arrows button.slick-disabled {
    opacity: 0.5;
    pointer-events: none;
}

@media only screen and (max-width: 1727px) and (min-width: 992px) {
    .core-services {
        padding-bottom: 3.241vw;
    }

    .core-services .core-services_heading-wrapper {
        margin-bottom: 2.488vw;
    }

    .core-services_heading-wrapper .core-services__heading {
        font-size: 2.315vw;
    }

    .core-services__arrows {
        gap: 0.463vw;
    }

    /* .core-services__arrows button {
        width: 0.463vw;
        height: 0.694vw;
    } */

    .core-services__slider .core-card {
        padding: 0vw 0.868vw;
    }

    .core-services__slider .slick-list {
        margin: 0vw -0.868vw;
    }

    .core-services__slider .core-card .core-card_wrapper {
        border-radius: 0.579vw;
    }

    .core-card .core-card_wrapper .core-card__title {
        font-size: 1.736vw;
    }
}

@media only screen and (max-width: 991px) {
    .core-card .core-card_wrapper .core-card__title-wrapper {
        max-width: 80%;
    }
}

@media only screen and (max-width: 580px) {
    .core-services {
        padding-bottom: 18px;
    }

    .core-services .core-services_heading-wrapper {
        margin-bottom: 25px;
        gap: 15px;
    }

    .core-services_heading-wrapper .core-services__heading {
        font-size: 30px;
    }

    .core-card_wrapper {
        max-width: 100%;
        padding-bottom: 100%;
    }

    .core-card_wrapper img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/*====================================================
TESTIMONIAL SECTION
====================================================*/

.testimonial-section {
    overflow: hidden;
    background-color: var(--color-primary-blue);
    position: relative;
    padding: 78px 0px 58px;
}

.testimonial-section .testimonial-bg_img-wrapper {
    position: absolute;
    inset: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.testimonial-section .testimonial-bg_img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-section .testimonial-bg_img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-blue-overlay);
}

.testimonial-content_wrapper {
    position: relative;
    z-index: 1;
}

.testimonial-content_wrapper .testimonial-heading {
    font-family: var(--font-assistant-regular);
    font-weight: 400;
    font-size: 40px;
    line-height: 1.1;
    color: var(--color-text-white);
    margin-bottom: 48px;
}

.testimonial-grid_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.testimonial-grid_wrapper .testimonial-card_wrapper {
    padding: 52px 37px;
    background-color: var(--color-light-blue-overlay);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.testimonial-card_wrapper .testimonial-content {
    font-family: var(--font-assistant-light);
    font-weight: 300;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: 0px;
    color: var(--color-text-white);
    margin-bottom: 22px;
}

.testimonial-card_wrapper .testimonial-owner {
    font-family: var(--font-assistant-bold);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    color: var(--color-light-blue);
    margin-bottom: 0px;
}

@media only screen and (max-width: 1727px) and (min-width: 992px) {
    .testimonial-section {
        padding: 4.514vw 0vw 3.356vw;
    }

    .testimonial-content_wrapper .testimonial-heading {
        font-size: 2.315vw;
        margin-bottom: 2.778vw;
    }

    .testimonial-grid_wrapper {
        gap: 2.604vw;
    }

    .testimonial-grid_wrapper .testimonial-card_wrapper {
        padding: 3.009vw 2.141vw;
        border-radius: 0.579vw;
    }

    .testimonial-card_wrapper .testimonial-content {
        font-size: 2.315vw;
        margin-bottom: 1.273vw;
    }

    .testimonial-card_wrapper .testimonial-owner {
        font-size: 1.157vw;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-grid_wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}

@media only screen and (max-width: 680px) {
    .testimonial-section {
        padding: 54px 0px 21px;
    }

    .testimonial-content_wrapper .testimonial-heading {
        font-size: 30px;
        max-width: 88%;
        margin: 0 auto;
        margin-bottom: 35px;
    }

    .testimonial-grid_wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 22px;
    }

    .testimonial-grid_wrapper .testimonial-card_wrapper {
        padding: 52px 34px 41px 37px;
    }
}

@media only screen and (max-width: 360px) {
    .testimonial-card_wrapper .testimonial-content {
        font-size: 30px;
    }

    .testimonial-card_wrapper .testimonial-owner {
        font-size: 15px;
    }
}

/*====================================================
NEWS LETTER SECTION
====================================================*/

.news-letter-section {
    background-color: #d10e0e;
    padding: 48px 0px 86px;
}

.news-letter-section .news-letter_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
}

.news-letter-section .news-letter_wrapper .heading .heading_content {
    font-family: var(--font-montserrat-regular);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: var(--color-text-white);
    margin-bottom: 0px;
}

.news-letter-section .form-wrapper form {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
}

.news-letter-section .form-wrapper form input,
.news-letter-section .form-wrapper form select {
    height: 52px;
    border: none;
    background: #de6262;
    margin: 0;
    border-radius: 0;
    max-width: 290px;
    width: 100%;
    padding: 8px 16px;
    color: var(--color-text-white) !important;
    font-family: var(--font-montserrat-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
}
.news-letter-section .form-wrapper form input::placeholder {
    color: var(--color-text-white) !important;
}

.news-letter-section .form-wrapper form .submit-btn {
    height: 52px;
    max-width: 176px;
    width: 100%;
    background-color: #520000 !important;
    padding: 10px 16px !important;
    color: var(--color-text-white) !important;
    font-family: var(--font-montserrat-bold);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

@media only screen and (max-width: 1727px) and (min-width: 992px) {
    .news-letter-section {
        padding: 2.778vw 0.000vw 4.977vw;
    }

    .news-letter-section .news-letter_wrapper {
        gap: 3.241vw;
    }

    .news-letter-section .news-letter_wrapper .heading .heading_content {
        font-size: 1.157vw;
    }

    .news-letter-section .form-wrapper form {
        gap: 0.694vw;
    }

    .news-letter-section .form-wrapper form input,
    .news-letter-section .form-wrapper form select {
        height: 3.009vw;
        max-width: 16.782vw;
        padding: 0.463vw 0.926vw;
        font-size: 0.926vw;
    }

    .news-letter-section .form-wrapper form .submit-btn {
        height: 3.009vw;
        max-width: 10.185vw;
        padding: 0.579vw 0.926vw !important;
        font-size: 0.926vw;
    }
}

@media only screen and (max-width: 991px) {
    .news-letter-section .news-letter_wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .news-letter_wrapper .form-wrapper {
        max-width: calc(100% - 36px);
        width: 100%;
    }
}

@media only screen and (max-width: 680px) {
    .news-letter-section {
        padding: 44px 0px 54px;
    }

    .news-letter-section .news-letter_wrapper {
        gap: 20px;
    }

    .news-letter-section .form-wrapper form {
        flex-direction: column;
    }

    .news-letter-section .form-wrapper form input,
    .news-letter-section .form-wrapper form select {
        max-width: 100%;
    }

    .news-letter-section .form-wrapper form .submit-btn {
        max-width: calc(100% - 15px);
    }
}


/* CGQ Section Start */
.cgq-section {
    padding: 50px 0px;    
}
.cgq-social-icon__wrapper {
    margin-top: 40px;
}
.cgq-social__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cgq-social__icon a {
    outline: 0;
}
.cgq-social__icon > *:not(:last-child) {
    margin-right: 30px;
}
.cgq-social__icon .cgq-social__icon-img {
    max-width: 260px;
}

@media only screen and (max-width: 767px) {
    .cgq-section {
        padding: 30px 0px;    
    }
    .cgq-social-icon__wrapper {
        margin-top: 20px;
    }
    .cgq-social__icon {
        flex-direction: column;
    }
    .cgq-social__icon > *:not(:last-child) {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .cgq-social__icon .cgq-social__icon-img {
        max-width: 200px;
    }
} 
/* CGQ Section End */