:root {
    --textColor : #868A94;
    --titleColor : #1E2758;
    --dividerColor : #D9E3EB;
    --lightBG: #1e27580d;
    --btnColor: #FD7959;
    --boxColor: #00BFC8;
}

* {
    position: relative;
    z-index: 1;
}

html {
    scroll-behavior: smooth;
}

body, html {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.68;
    color: var(--textColor);
    max-width: 100vw;
    overflow-x: hidden;
}

.titleText {
    font-family: 'Inter', sans-serif;
    line-height: 1.18;
    font-weight: 500;
    color: var(--titleColor);
}

.siteSection {
    padding: 6rem 0;
}

/*--------------------------------------- SITE HEADER ----------------*/
.logoWrap {
    border-bottom: 1px solid var(--dividerColor);
}

.headerMenu a {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    line-height: 1;
    text-decoration: none;
    color: var(--titleColor);
    font-weight: 500;
}

.headerMenu a::after {
    position: absolute;
    z-index: 1;
    bottom: 0.3rem;
    left: 0;
    right: 100%;
    content: "";
    height: 1px;
    background: var(--textColor);
    transition: all 0.4s ease-in-out;
}

.headerMenu a:hover::after {
    right: 0;
}   

.headerMenu a.active::after {
    background: var(--titleColor);
    right: 0;
}

/*--------------------------------------- HOME BANNER ----------------*/
.homeBanner {
    width: 100%;
    aspect-ratio: 1920/642;
    background-color: var(--dividerColor);
    background-image: url(../assets/images/banners/homeBanner-tile.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.homeBanner-bg {
    height: 100%;
}

.homeBanner-bg img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.homeBanner-content {
    position: absolute;
    z-index: 2;
    inset: 0;
}

.homeBanner-content h1 {
    font-size: 4rem;
}

/*--------------------------------------- HOME PROBLEM ----------------*/
.ss-problem .blurWrap img {
    width: 100%;
    height: auto;
    z-index: 3;
    padding: 3rem 0 0 3rem;
}

.ss-problem .blurWrap::after {
    position: absolute;
    z-index: 1;
    content: "";
    background: #1e275826;
    top: 0;
    left: 0;
    width: 65%;
    aspect-ratio: 1;
}

.sectionTitle {
    font-size: 2.9rem;
}

/*--------------------------------------- HOME SOLUTION ----------------*/
.ss-solution {
    background: var(--lightBG);
}

.ss-solution img {
    height: auto;
}

.site-btn {
    color: #FFF !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    padding: 1.1rem 2.35rem;
    background: var(--btnColor) !important;
    border: none !important;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    letter-spacing: 2px;
}

.ss-solution-2 .g-5 {
    gap: 3rem !important;
}

.ss-solution-2 > div {
    z-index: 2;
}

.ss-solution-2::after {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3rem;
    content: "";
    background: var(--titleColor);
}

.ss-wrap {
    box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.10);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 24rem;
    width: 100%;
    background: white;
    padding: 3rem 2.4rem 5rem;
}

.ss-wrap h3 {
    font-size: 1.4rem;
}

.ss-wrap .site-btn-link {
    position: absolute;
    z-index: 2;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--boxColor) !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
    text-decoration-line: underline;
    text-transform: uppercase;
}

.ss-wrap-alt {
    background: var(--boxColor);
}

.ss-wrap-alt .site-btn-link {
    color: #FFF !important;
}

.ss-solution-3 {
    background: var(--titleColor);
    padding: 4.5rem 0;
}

.ss-solution-3 h4.titleText {
    font-size: 1.4rem;
    line-height: 1.4;
}

.ss-solution-3 h4.titleText span {
    font-weight: 700;
}

/*--------------------------------------- HOME TEAM ----------------*/
.team-wrap.hidden {
    height: 0;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
}

.team-wrap.hidden * {
    opacity: 0;
    transition: all 1s ease-in-out;
}

.team-wrap.show {
    height: auto;
    overflow: visible;
    padding-top: 3rem;
}

.team-wrap.show * {
    opacity: 1;
}

.team-wrap .doctor-info:nth-child(even) {
    transform: translateY(6rem);
}

.doctor-info p {
    font-size: 0.94rem;
    line-height: 1.4;
}

.doctor-info img {
    height: auto;
}

.view-all-team {
    z-index: 3;
    margin: 0;
    text-align: center;
    margin-top: 12rem;
}

.view-all-team span {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--titleColor);
    letter-spacing: 2px;
    cursor: pointer;
    text-align: center;
    text-decoration: underline;
}

/*--------------------------------------- SITE FOOTER ----------------*/
.site-footer {
    background: var(--titleColor);
}

.site-footer a,
.contact-info a {
    color: white !important;
    text-decoration: none !important;
}

.site-footer .address-line a,
.contact-info .address-line a {
    color: #AEBCD4 !important;
    text-decoration: underline !important;
}

.contact-info a,
.contact-info .address-line a {
    color: var(--titleColor) !important;
}

.site-footer .phone-text a,
.contact-info .phone-text a {
    font-size: 1.17rem;
    font-weight: 500 !important;
}

.site-footer ul li {
    padding-bottom: 1rem;
}

/*--------------------------------------- CONTACT INFO ----------------*/
.contact-info {
    height: 30rem;
}

.gmap-wrap {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    background: var(--lightBG);
    left: 50%;
    width: 45vw;
    transform: translateX(-50vw);
    padding: 0;
}

.gmap-wrap iframe {
    width: 100%;
    height: 100%;
}

/*--------------------------------------- PAGE TITLE ----------------*/
.site-page-title {
    background: var(--titleColor);
    padding: 18rem 0 2rem;
}

.site-page-title > div {
    z-index: 2;
}

.spt-bg {
    position: absolute;
    z-index: 1;
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-page .spt-bg,
.service-page .spt-bg {
    background-image: url(../assets/images/banners/serviceBanner-tile.png);
}

.service-page .spt-bg {
    background-image: url(../assets/images/banners/aboutBanner-tile.png);
}

.spt-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.site-page-title h1.titleText {
    font-size: 2.82rem;
    font-weight: 500;
    line-height: 1.35;
}

/*------------------------------------------ ABOUT PAGE - INTRO ----*/
.about-intro {
    background: var(--titleColor);
}

.about-section-1 {
    background: var(--lightBG);
}

.about-section-1 p {
    color: var(--titleColor);
}

.about-highlight {
    position: absolute;
    z-index: 2;
    background: var(--titleColor);
    bottom: 0;
    left: 40%;
    right: -15%;
    display: inline-block;
    padding: 2rem 3.3rem;
}

.about-highlight h3 {
    font-size: 1.7rem;
}

.about-section-3 .ss-wrap {
    max-width: 510px;
    padding: 3rem 4.5rem 3rem;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

.about-section-3 .ss-wrap h3 {
    font-size: 1.17rem;
}

.about-section-3 .ss-wrap img {
    object-fit: contain;
    object-position: center center;
}

.about-section-3::after {
    background: white;
    height: 8rem;
}

.about-image-wrap img {
    height: auto;
}

.doc-profile {
    overflow: hidden;
}

.dp-image img {
    width: 100%;
    height: auto;
}

.dp-content {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem;
    background: white;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.dp-content .titleText {
    font-size: 1.17rem;
    transform: translateY(3rem);
    transition: all 0.5s ease-in-out;
}

.dp-content p {
    line-height: 1.3;
    font-size: 0.94rem;
    margin: 0;
    padding: 0 4.5vw;
    transform: translateY(3rem);
    transition: all 0.5s ease-in-out;
}

.doc-profile:hover .dp-content {
    opacity: 1;
}

.doc-profile:hover .dp-content * {
    transform: translateY(0);
}

/*--------------------------------------- SOLUTION PAGE ----------------*/
.solution-section-1,
.solution-section-3 {
    background: var(--lightBG);
}

.solution-image-content {
    z-index: 3;
    position: absolute;
    bottom: 0;
    left: 12%;
    width: 110%;
}

.solution-image-wrap {
    height: 100%;
}

.solution-image-wrap img {
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
}

.solution-image-content h4 {
    background: var(--titleColor);
    height: 100%;
    font-size: 1.7rem;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.solution-image-content > div:first-child h4 {
    background: var(--boxColor);
}

.solution-image-content.sic-alt {
    right: 12%;
    left: auto;
}

.solution-image-content.sic-alt > div:first-child h4 {
    background: var(--titleColor);
}

.solution-image-content.sic-alt > div:last-child h4 {
    background: var(--boxColor);
}

.solution-section-3 img {
    height: auto;
    background: #FFF;
    box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.10);
}

.size-image img {
    width: 700px;
}

.size-image::after {
    z-index: -1;
    bottom: -3rem;
    right: -1.5rem;
    background: var(--boxColor);
    content: "";
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
}

.solution-section-4 {
    background-color: var(--titleColor);
    background-image: url(../assets/images/solution/solution-image-06.png);
    background-position: center center;
    background-size: cover;
}

.solution-section-4 p {
    font-size: 1.17rem;
}

.solution-section-5 h5 {
    color: var(--titleColor);
    font-size: 1.29rem;
    padding-bottom: 1.5em;
}

.solution-section-5 h5::after {
    position: absolute;
    content: "+";
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    font-family: 'Inter', sans-serif;
    color: #1E2758;
    opacity: 0.4;
    font-size: 2.8rem;
    line-height: 1;
    transform: translate( -50%, -30%);
}

.solution-highlight {
    background: var(--titleColor);
    position: absolute;
    z-index: 2;
    top: 0;
    right: -20%;
    left: -30%;
    padding: 2rem 5rem 2rem 3rem;
}

.solution-highlight p {
    font-size: 1.29rem;
    line-height: 1.3;
}

.solution-section-6 p {
    padding-top: 245px;
}

.solution-section-6 .row::before {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50vw);
    top: 0;
    bottom: 0;
    content: "";
    background-image: url(../assets/images/solution/solution-image-07.png);
    background-color: var(--lightBG);
    background-position: center center;
    background-size: cover;
    width: 50vw;
}

/*--------------- UPDATED ON 10MAR24 -----------*/

.teamWrap-outer {
    margin: 0 -30px !important;
}

.teamWrap {
    padding: 30px 30px 60px;
}

.teamWrap-inner {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    min-height: 20rem;
    height: 100%;
    padding-block: 3rem;
}

.teamWrap-inner h4 {
    color: var(--titleColor);
    font-family: 'Inter', sans-serif;
    font-size: 1.9rem;
}

.teamWrap-inner p {
    line-height: 1.3 !important;
    padding-inline: 2rem;
}

.teamWrap-outer .owl-theme .owl-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.teamWrap-outer .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background-color: white;
    border: 2px solid #1E2758;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.teamWrap-outer .owl-theme .owl-dots .owl-dot.active span {
    border-color: var(--btnColor);
    background-color: var(--btnColor);
}

.teamCarousel_nav {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: calc( 30px + 10rem );
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
    background-position: center center;
    background-size: contain;
    background-color: white;
    cursor: pointer;
}

.teamCarousel_navPrev {
    left: 0;
    transform: translate( -60px, -50% );
    background-image: url(../assets/icons/navigationPrev.png);
}

.teamCarousel_navNext {
    right: 0;
    transform: translate( 60px, -50% );
    background-image: url(../assets/icons/navigationNext.png);
}