/* =====================================================
           RESET
        ====================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --oasis-navy: #09285B;
    --oasis-teal: #008C95;
    --oasis-text: #30353B;
    --oasis-border: #E8ECEF;
    --oasis-text-gray: #4B5563;
    --oasis-gray: #4B5563;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: #151515;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

p {
    color: #333;
    font-weight: 500;
}

.list-unstyled {
    list-style: none !important;
}

.list-unstyled li::marker,
.list-unstyled li::before {
    display: none !important;
}

.list-unstyled li {
    padding-left: 0 !important;
}

button {
    font-family: inherit;
}

.custom-container,
.container {
    width: 100%;
    max-width: 1500px;
    margin-inline: auto;
    padding-inline: 15px;
}

/* =====================================================
           TOP BAR
        ====================================================== */
.top-bar {
    width: 100%;
    padding-block: 10px;
    background: #062657;
    color: #fff;
}

.top-bar .custom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =====================================================
           ADDRESS
        ====================================================== */
.address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.address i {
    flex: 0 0 auto;
    font-size: 21px;
}

/* =====================================================
           TOP RIGHT
        ====================================================== */
.top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex: 0 0 auto;
}

/* =====================================================
           EMAIL
        ====================================================== */
.email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.email i {
    font-size: 17px;
}

/* =====================================================
           DIVIDER
        ====================================================== */
.social-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, .35);
}

/* =====================================================
           SOCIAL
        ====================================================== */
.social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: .2s ease;
}

.social-icons a:hover {
    opacity: .75;
    transform: translateY(-2px);
}

.social-icons .instagram {
    color: #ed5b91;
}

/* =====================================================
           MAIN HEADER
        ====================================================== */
.main-header {
    width: 100%;
    padding-block: 10px;
    background: #fff;
    position: relative;
    z-index: 5;
}

.main-header .custom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

/* =====================================================
           LOGO
        ====================================================== */
.logo {
    width: 100%;
    max-width: 550px;
    flex: 0 1 555px;
}

.logo a {
    display: block;
    width: 100%;
}

.logo img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* =====================================================
           RIGHT HEADER
        ====================================================== */
.header-right {
    width: 100%;
    max-width: 900px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

/* =====================================================
           MAIN NAV
        ====================================================== */
.main-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2.5vw, 43px);
}

.main-nav>a,
.nav-dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-block: 5px 13px;
    color: #151515;
    background: transparent;
    border: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    cursor: pointer;
    transition: color .2s ease;
}

.main-nav>a:hover,
.nav-dropdown-toggle:hover {
    color: #0b999f;
}

/* =====================================================
           ACTIVE HOME
        ====================================================== */
.main-nav>a.active {
    color: #0b999f;
}

.main-nav>a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    max-width: 83px;
    padding: 0;
    border-bottom: 3px solid #39a9ad;
    transform: translateX(-50%);
}

/* =====================================================
           SERVICES
        ====================================================== */
.nav-dropdown {
    position: relative;
    flex: 0 0 auto;
}

.nav-dropdown-toggle {
    gap: 7px;
}

.nav-dropdown-toggle i {
    color: #168e94;
    font-size: 11px;
    transition: transform .25s ease;
}

/* =====================================================
           DESKTOP SUBMENU
        ====================================================== */
.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100%;
    max-width: 240px;
    min-width: 240px;
    padding-block: 8px;
    background: #fff;
    border-top: 3px solid #129ba2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
    z-index: 1000;
}

/* =====================================================
           DESKTOP HOVER
        ====================================================== */
@media (min-width: 992px) {
    .nav-dropdown:hover>.submenu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .nav-dropdown:hover>.nav-dropdown-toggle i {
        transform: rotate(180deg);
    }

    .submenu-dropdown:hover>.nested-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* =====================================================
           SUBMENU LINKS
        ====================================================== */
.submenu>a,
.submenu-dropdown>button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 18px;
    color: #17213b;
    background: #fff;
    border: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    transition:
        color .2s ease,
        background .2s ease;
}

.submenu>a:hover,
.submenu-dropdown>button:hover {
    color: #fff;
    background: #129ba2;
}

/* =====================================================
           NESTED SUBMENU
        ====================================================== */
.submenu-dropdown {
    position: relative;
}

.submenu-dropdown>button i {
    font-size: 11px;
}

.nested-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    max-width: 235px;
    min-width: 210px;
    padding-block: 8px;
    background: #fff;
    border-top: 3px solid #129ba2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
    z-index: 1001;
}

.nested-submenu a {
    display: block;
    width: 100%;
    padding: 11px 18px;
    color: #17213b;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    transition:
        color .2s ease,
        background .2s ease;
}

.nested-submenu a:hover {
    color: #fff;
    background: #129ba2;
}

/* =====================================================
           BUTTONS
        ====================================================== */
.header-buttons {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.appointment-btn,
.phone-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    transition:
        background .25s ease,
        transform .25s ease;
}

/* =====================================================
           APPOINTMENT
        ====================================================== */
.appointment-btn {
    max-width: 300px;
    background: #129ba2;
}

.appointment-btn:hover {
    color: #fff;
    background: #0c878d;
    transform: translateY(-2px);
}

.appointment-btn i {
    margin-right: 8px;
    font-size: 17px;
}

/* =====================================================
           PHONE
        ====================================================== */
.phone-btn {
    max-width: 275px;
    background: #092b64;
}

.phone-btn:hover {
    color: #fff;
    background: #061e49;
    transform: translateY(-2px);
}

.phone-btn i {
    margin-right: 8px;
    font-size: 17px;
}

/* =====================================================
           MOBILE TOGGLE
        ====================================================== */
.mobile-menu-btn {
    display: none;
    width: 100%;
    max-width: 48px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #129ba2;
    border: 0;
    border-radius: 5px;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}


/* =======================================
    Start of Hero section
========================================== */


.oasis-hero {
    position: relative;
    width: 100%;
    background: #f1f5fa;
}

.oasis-slide {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
}

.oasis-slide {
    height: 100% !important;
}

.oasis-slide-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    height: 100%;
}

.oasis-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    object-position: center left;
}

.oasis-content-position {
    position: relative;
    z-index: 10;
    width: 100%;
}

.oasis-slide-content {
    max-width: 650px;
}

.hero-title {
    font-size: clamp(25px, 5vw, 58px);
    font-weight: 700;
    color: var(--oasis-navy);
    line-height: 1.1;
    letter-spacing: -1px;
    opacity: 0;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 600;
    color: var(--oasis-teal);
    margin-top: 15px;
    opacity: 0;
}

.hero-description {
    font-weight: 500;
    font-size: 17px;
    color: #000000;
    margin-top: 15px;
    line-height: 1.6;
    max-width: 550px;
    opacity: 0;
}

.hero-features {
    display: flex;
    margin-top: 30px;
    max-width: 580px;
    opacity: 0;
}

.hero-feature {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid #B8D7DA;
}

.hero-feature:last-child {
    border-right: 0;
}

.hero-feature:first-child {
    padding-left: 0;
}

.feature-icon img {
    height: 42px;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--oasis-navy);
    line-height: 1.3;
    margin-top: 15px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    opacity: 0;
}

.hero-btn {
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn-primary {
    background: var(--oasis-teal);
    color: #fff;
    border: 2px solid var(--oasis-teal);
}

.hero-btn-primary:hover {
    background: var(--oasis-navy);
    border-color: var(--oasis-navy);
    color: #fff;
}

.hero-btn-outline {
    background: #fff;
    color: var(--oasis-teal);
    border: 2px solid var(--oasis-teal);
}

.hero-btn-outline:hover {
    background: var(--oasis-teal);
    color: #fff;
}

#oasisHeroSlider .carousel-item {
    height: 700px;
}

.carousel-item.active .hero-title {
    animation: saReveal 0.8s ease forwards 0.2s;
}

.carousel-item.active .hero-subtitle {
    animation: saReveal 0.8s ease forwards 0.4s;
}

.carousel-item.active .hero-description {
    animation: saReveal 0.8s ease forwards 0.6s;
}

.carousel-item.active .hero-features {
    animation: saReveal 0.8s ease forwards 0.8s;
}

.carousel-item.active .hero-buttons {
    animation: saReveal 0.8s ease forwards 1s;
}

@keyframes saReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.oasis-indicators {
    bottom: 20px;
}

.oasis-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background-color: #C9CED0;
    border: 0;
    margin: 0 5px;
    opacity: 1;
}

.oasis-indicators button.active {
    background-color: var(--oasis-teal);
    width: 12px !important;
    height: 12px !important;
}

/* =======================================
    End of Hero section
========================================== */


/* =======================================
    Start of services section
========================================== */

.oasis-diagnostic-section {
    width: 100%;
    padding: 65px 0 75px;
    background: #fff;
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
}

.oasis-section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 34px;
}

.oasis-heading-line {
    width: 96px;
    height: 3px;
    background: var(--oasis-teal);
}

.oasis-section-heading h2 {
    margin: 0;
    color: var(--oasis-navy);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.oasis-services-swiper {
    width: 100%;
    padding: 5px 2px;
}

.oasis-service-card {
    width: 100%;
    height: 100%;
    padding: 13px 7px 12px;
    background: #fff;
    border: 1px solid var(--oasis-border);
    border-radius: 12px;
    text-align: center;
    box-shadow:
        0 2px 7px rgba(9, 40, 91, .04),
        0 1px 2px rgba(9, 40, 91, .03);
    overflow: hidden;
}

.oasis-service-card a {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.oasis-service-icon {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
    color: var(--oasis-navy);
}

.oasis-service-icon i {
    font-size: 38px;
    line-height: 1;
}

.oasis-service-title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 0 0 10px;
    padding: 0 3px;
    color: var(--oasis-navy);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

.oasis-service-image {
    display: block;
    width: 100%;
    height: 112px;
    object-fit: cover;
    object-position: center;
    border-radius: 9px;
}

/* =======================================
    End of services section
========================================== */


/* =======================================
    Start of why choose section
========================================== */

.oasis-why-section {
    width: 100%;
    padding: 60px 0 65px;
    background: #F4FBFC;
    font-family: "Montserrat", sans-serif;
}

.oasis-why-title {
    margin: 0 0 38px;
    color: var(--oasis-navy);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.oasis-why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
}

.oasis-why-item {
    position: relative;
    padding: 0 25px;
    text-align: center;
}

.oasis-why-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: calc(100% - 10px);
    background: var(--oasis-border);
}

.oasis-why-icon img {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oasis-why-item h3 {
    min-height: 43px;
    margin: 0 0 9px;
    color: var(--oasis-navy);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
}

.oasis-why-item p {
    max-width: 190px;
    min-height: 42px;
    margin: 0 auto;
    color: var(--oasis-text);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

@media (max-width: 1199.98px) {
    .oasis-why-item {
        padding: 0 14px;
    }

    .oasis-why-item h3 {
        font-size: 15px;
    }

    .oasis-why-item p {
        font-size: 13px;
    }

    .hero-title {
        font-size: clamp(25px, 5vw, 46px);
    }
}

@media (max-width: 991.98px) {
    .oasis-why-section {
        padding: 50px 0;
    }

    .oasis-why-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px;
    }

    .oasis-why-item:nth-child(3)::after {
        display: none;
    }

    .oasis-why-item:nth-child(4)::after,
    .oasis-why-item:nth-child(5)::after {
        top: 5px;
        height: calc(100% - 10px);
    }

    .oasis-slide-image img {
        object-fit: cover;
        object-position: center left;
    }
}

@media (max-width: 767.98px) {
    .oasis-why-title {
        margin-bottom: 30px;
        font-size: 25px;
    }

    .oasis-why-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .oasis-why-item {
        padding: 0 15px;
    }

    .oasis-why-item:nth-child(3)::after {
        display: block;
    }

    .oasis-why-item:nth-child(even)::after {
        display: none;
    }

    .oasis-why-item h3 {
        font-size: 15px;
    }

    .oasis-why-item p {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .oasis-why-section {
        padding: 42px 0;
    }

    .oasis-why-title {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .oasis-why-grid {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .oasis-why-item {
        padding: 0 20px 28px;
        border-bottom: 1px solid var(--oasis-border);
    }

    .oasis-why-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .oasis-why-item::after {
        display: none !important;
    }

    .oasis-why-icon {
        margin-bottom: 10px;
    }

    .oasis-why-item h3 {
        min-height: auto;
        margin-bottom: 7px;
    }

    .oasis-why-item p {
        min-height: auto;
    }
}

/* =======================================
    End of why choose section
========================================== */


/* =======================================
    Start of team section
========================================== */

.oasis-radiologists-section {
    width: 100%;
    padding: 65px 0 75px;
    background: #fff;
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
}

.oasis-radiologists-slider {
    width: 100%;
    padding: 5px 2px;
}

.oasis-doctor-card {
    display: flex;
    width: 100%;
    background: #fff;
    border: 1px solid var(--oasis-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(9, 40, 91, .06);
}

.oasis-doctor-image {
    width: 43%;
    flex: 0 0 43%;
    overflow: hidden;
    background: #f4f7f8;
}

.oasis-doctor-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.oasis-doctor-content {
    width: 57%;
    padding: 20px 17px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.oasis-doctor-name {
    margin: 0 0 5px;
    color: var(--oasis-navy);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
}

.oasis-doctor-degree {
    margin: 0 0 10px;
    color: var(--oasis-teal);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.oasis-doctor-details {
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--oasis-text);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 600;
}

.oasis-doctor-details li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 4px;
}

.oasis-doctor-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--oasis-navy);
    font-weight: 700;
}

.oasis-doctor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 12px 18px;
    border-radius: 7px;
    background: var(--oasis-teal);
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 12px;
}

/* =======================================
    End of team section
========================================== */


/* =======================================
    Start of review section
========================================== */

.oasis-reviews-section {
    width: 100%;
    background: #F4F8F9;
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
}

.oasis-reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(280px, 1.15fr);
    align-items: stretch;
    gap: 0;
    width: 100%;
}

.oasis-reviews-left {
    min-width: 0;
    padding: 40px 18px 30px 0px;
}

.oasis-reviews-left .oasis-section-heading {
    margin-bottom: 28px;
}

.oasis-reviews-slider {
    width: 100%;
    padding: 2px 2px 5px;
}

.oasis-review-card {
    height: 100%;
    min-height: 195px;
    padding: 20px 22px 19px;
    background: #fff;
    border: 1px solid #E7ECEE;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(9, 40, 91, .06);
    box-sizing: border-box;
}

.oasis-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 9px;
}

.oasis-review-quote {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
}

.oasis-review-quote svg {
    width: 100%;
    height: 100%;
    display: block;
}

.oasis-review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.oasis-review-stars svg {
    width: 80px;
    height: 18px;
    display: block;
}

.oasis-review-text {
    margin: 0 0 13px;
    color: #30353B;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.oasis-review-author {
    margin: 0;
    color: #09285B;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.oasis-google-reviews {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    height: 100%;
    padding: 35px 30px;
    background: #09285B;
    text-align: center;
    box-sizing: border-box;
    border-radius: 0;
    margin: 0;
    position: relative;
    z-index: 5;
}

.oasis-google-reviews:before {
    position: absolute;
    content: '';
    left: 0;
    width: 700px;
    height: 100%;
    bottom: 0;
    top: 0;
    background-color: #09285B;
    z-index: -1;
}

.oasis-google-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
}

.oasis-google-logo svg {
    width: 100%;
    height: 100%;
    display: block;
}

.oasis-google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 7px;
}

.oasis-google-rating-number {
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}

.oasis-google-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.oasis-google-stars svg {
    width: 100px;
    height: 20px;
    display: block;
}

.oasis-google-count {
    margin: 0 0 22px;
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

.oasis-google-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 50px;
    padding: 12px 22px;
    border: 2px solid rgba(255, 255, 255, .65);
    border-radius: 10px;
    color: #fff;
    background: transparent;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    transition: background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.oasis-google-button:hover {
    color: #09285B;
    background: #fff;
    border-color: #fff;
}

/* =======================================
    End of review section
========================================== */



/* =======================================
    Start of service page
========================================== */

.osx-services-banner {
    width: 100%;
    padding: 55px 0 58px;
    background: linear-gradient(135deg,
            #09285B 0%,
            #0B376F 100%);
    font-family: "Montserrat", sans-serif;
}

.osx-services-banner-inner {
    text-align: center;
}

.osx-services-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.osx-services-breadcrumb-home {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    transition: color .25s ease;
}

.osx-services-breadcrumb-home:hover {
    color: #fff;
}

.osx-services-breadcrumb-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--oasis-teal);
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.osx-services-breadcrumb-current {
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
}

.osx-services-banner h1 {
    margin: 20px 0 0;
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}


.osx-services-list {
    width: 100%;
    padding: 90px 0 105px;
    background: #fff;
    font-family: "Montserrat", sans-serif;
}

.osx-services-grid {
    align-items: stretch;
}

.osx-services-grid>div {
    display: flex;
}

.osx-service-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--oasis-border);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(9, 40, 91, .07);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.osx-service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 140, 149, .35);
    box-shadow: 0 15px 32px rgba(9, 40, 91, .12);
}

.osx-service-media {
    position: relative;
    display: block;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #E8ECEF;
}

.osx-service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 55%,
            rgba(9, 40, 91, .16));
    pointer-events: none;
}

.osx-service-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.osx-service-item:hover .osx-service-media img {
    transform: scale(1.05);
}

.osx-service-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px 22px 23px;
}

.osx-service-heading {
    margin: 0 0 10px;
    color: var(--oasis-navy);
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
    text-align: left;
}

.osx-service-heading a {
    color: inherit;
    text-decoration: none;
}

.osx-service-body p {
    width: 100%;
    margin: 0 0 20px;
    color: var(--oasis-gray);
    font-size: 13px;
    line-height: 1.65;
    font-weight: 500;
    text-align: left;
}

.osx-service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding: 11px 17px;
    border-radius: 7px;
    background: var(--oasis-teal);
    color: #fff !important;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition:
        background .25s ease,
        transform .25s ease;
}

.osx-service-link span {
    font-size: 16px;
    line-height: 1;
    transition: transform .25s ease;
}

.osx-service-link:hover {
    background: var(--oasis-navy);
    color: #fff !important;
}

.osx-service-link:hover span {
    transform: translateX(4px);
}


@media (max-width: 1199.98px) {

    .osx-services-list {
        padding: 75px 0 90px;
    }

    .osx-service-media {
        height: 250px;
    }

    .osx-service-body {
        padding: 22px 20px;
    }

}


@media (max-width: 991.98px) {

    .osx-services-banner {
        padding: 48px 0 52px;
    }

    .osx-services-banner h1 {
        font-size: 35px;
    }

    .osx-services-list {
        padding: 70px 0 80px;
    }

    .osx-service-media {
        height: 250px;
    }

    .osx-service-heading {
        font-size: 19px;
    }

}


@media (max-width: 767.98px) {

    .osx-services-banner {
        padding: 40px 0 44px;
    }

    .osx-services-breadcrumb {
        padding: 9px 15px;
        gap: 10px;
    }

    .osx-services-breadcrumb-home,
    .osx-services-breadcrumb-current {
        font-size: 12px;
    }

    .osx-services-banner h1 {
        margin-top: 16px;
        font-size: 30px;
    }

    .osx-services-list {
        padding: 60px 0 70px;
    }

    .osx-service-media {
        height: 250px;
    }

    .osx-service-body {
        padding: 22px 19px;
    }

    .osx-service-heading {
        font-size: 18px;
    }

    .osx-service-body p {
        font-size: 13px;
    }

}


@media (max-width: 575.98px) {

    .osx-services-banner {
        padding: 35px 0 38px;
    }

    .osx-services-breadcrumb {
        padding: 8px 14px;
    }

    .osx-services-banner h1 {
        font-size: 27px;
    }

    .osx-services-list {
        padding: 48px 0 60px;
    }

    .osx-service-media {
        height: 250px;
    }

    .osx-service-body {
        padding: 20px 17px;
    }

    .osx-service-heading {
        font-size: 18px;
    }

    .osx-service-body p {
        font-size: 13px;
        line-height: 1.6;
    }

}


/* =======================================
    End of service page
========================================== */


/* =======================================
    Start of service detail page
========================================== */

.osx-service-detail {
    width: 100%;
    padding: 90px 0 105px;
    background: #fff;
    font-family: "Montserrat", sans-serif;
}

.osx-detail-content {
    width: 100%;
}

.osx-detail-image {
    width: 100%;
    height: 430px;
    overflow: hidden;
    margin-bottom: 35px;
    border-radius: 16px;
    background: #E8ECEF;
}

.osx-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.osx-detail-text h2 {
    margin: 15px 0;
    color: var(--oasis-navy);
    font-size: 25px;
    line-height: 1.35;
    font-weight: 700;
}

.osx-detail-text p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    color: #333;
}

.osx-detail-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.osx-detail-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.osx-detail-list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--oasis-teal);
}

.osx-service-sidebar {
    position: sticky;
    top: 30px;
}

.osx-sidebar-box {
    overflow: hidden;
    border: 1px solid var(--oasis-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(9, 40, 91, .07);
}

.osx-sidebar-box h2 {
    margin: 0;
    padding: 21px 22px;
    color: #fff;
    background: var(--oasis-navy);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.osx-sidebar-services {
    display: flex;
    flex-direction: column;
}

.osx-sidebar-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--oasis-border);
    color: var(--oasis-text);
    background: #fff;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

.osx-sidebar-service:last-child {
    border-bottom: 0;
}

.osx-sidebar-service:hover,
.osx-sidebar-service.active {
    padding-left: 24px;
    color: var(--oasis-teal);
    background: #F4FAFA;
}

.osx-sidebar-arrow {
    color: var(--oasis-teal);
    font-size: 17px;
    transition: transform .25s ease;
}

.osx-sidebar-service:hover .osx-sidebar-arrow,
.osx-sidebar-service.active .osx-sidebar-arrow {
    transform: translateX(4px);
}

.osx-sidebar-appointment {
    margin-top: 25px;
    padding: 28px 24px;
    border-radius: 16px;
    background: var(--oasis-navy);
}

.osx-sidebar-appointment h3 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.osx-sidebar-appointment p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.7;
}

.osx-appointment-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 16px;
    border-radius: 7px;
    background: var(--oasis-teal);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.osx-appointment-button:hover {
    background: #fff;
    color: var(--oasis-navy) !important;
}


/* =======================================
    End of service detail page
========================================== */


/* =======================================
    Start of Footer page
========================================== */

.oasis-footer {
    width: 100%;
    font-family: "Montserrat", sans-serif;
}

.oasis-footer-main {
    background: #09285B;
    color: #fff;
    padding: 22px 0 20px;
}

.oasis-footer-row {
    align-items: stretch;
}

.oasis-footer-column {
    min-height: 175px;
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, .22);
}

.oasis-footer-row>div:first-child .oasis-footer-column {
    padding-left: 0;
}

.oasis-footer-row>div:nth-child(3) .oasis-footer-column {
    border-right: 0;
}

.oasis-footer-column h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
}

.oasis-footer-info,
.oasis-working-hours {
    margin: 0;
    padding: 0;
    list-style: none;
}

.oasis-footer-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.oasis-footer-info li:last-child {
    margin-bottom: 0;
}

.oasis-footer-icon {
    flex: 0 0 25px;
    width: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.oasis-footer-info a {
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease;
}

.oasis-footer-info a:hover {
    color: #fff;
}

.oasis-footer-address-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.oasis-footer-address-row .oasis-footer-icon {
    margin-top: 2px;
}

.oasis-footer-address address {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    line-height: 22px;
    font-style: normal;
    font-weight: 500;
}

.oasis-hours-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.oasis-hours-row .oasis-footer-icon {
    margin-top: 2px;
}

.oasis-hours-row div {
    display: flex;
    flex-direction: column;
}

.oasis-working-hours strong,
.oasis-hours-sunday strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.oasis-working-hours span {
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    line-height: 1.45;
}

.oasis-hours-sunday {
    margin-top: 22px;
    margin-left: 35px;
    display: flex;
    flex-direction: column;
}

.oasis-footer-map {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 14px;
    background: #e8ecef;
}

.oasis-footer-map a {
    display: block;
    width: 100%;
    height: 100%;
}

.oasis-footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


.oasis-footer-bottom {
    background: #008C95;
    color: #fff;
    padding: 15px 0;
}

.oasis-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.oasis-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.oasis-heart {
    display: inline-block;
    margin: 0 3px;
    color: #ed3030;
    font-size: 17px;
    line-height: 1;
}

/* =======================================
    End of Footer page
========================================== */


/* =======================================
    Start of About page
========================================== */

.oasis-about-main {
    padding: 80px 0;
    background: #fff;
    font-family: "Montserrat", sans-serif;
}

.oasis-about-main-image {
    width: 100%;
    height: 540px;
    overflow: hidden;
    border-radius: 20px;
}

.oasis-about-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oasis-about-main-content {
    padding-left: 20px;
}

.oasis-about-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--oasis-teal);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.oasis-about-main-content h2 {
    max-width: 600px;
    margin: 0 0 25px;
    color: var(--oasis-navy);
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
}

.oasis-about-main-content h2 span {
    color: var(--oasis-teal);
}

.oasis-about-main-content>p {
    max-width: 620px;
    margin: 0 0 18px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
}

.oasis-about-main-content>p strong {
    color: var(--oasis-navy);
}

.oasis-about-info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 620px;
    margin-top: 28px;
    padding: 23px;
    border: 1px solid var(--oasis-border);
    border-left: 4px solid var(--oasis-teal);
    border-radius: 12px;
    background: #f7fafb;
}

.oasis-about-info-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 140, 149, .1);
    color: var(--oasis-teal);
}

.oasis-about-info-icon svg {
    width: 28px;
    height: 28px;
}

.oasis-about-info-box h3 {
    margin: 0 0 6px;
    color: var(--oasis-navy);
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.oasis-about-info-box p {
    margin: 0;
    color: var(--oasis-text-gray);
    font-size: 13px;
    line-height: 1.65;
}

.oasis-about-primary-btn,
.oasis-about-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 22px;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.oasis-about-primary-btn {
    margin-top: 27px;
    background: var(--oasis-teal);
    color: #fff !important;
}

.oasis-about-primary-btn:hover {
    background: var(--oasis-navy);
}

.oasis-about-primary-btn span,
.oasis-about-secondary-btn span {
    font-size: 17px;
    transition: transform .25s ease;
}

.oasis-about-primary-btn:hover span,
.oasis-about-secondary-btn:hover span {
    transform: translateX(4px);
}


/* CTA */

.oasis-about-cta {
    margin-bottom: 60px;
    background: #fff;
    font-family: "Montserrat", sans-serif;
}

.oasis-about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 55px 60px;
    border-radius: 22px;
    background: var(--oasis-navy);
}

.oasis-about-cta-content {
    max-width: 680px;
}

.oasis-about-cta-content .oasis-about-label {
    color: #58c6ca;
}

.oasis-about-cta h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}

.oasis-about-cta p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.8;
}

.oasis-about-cta-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    flex: 0 0 auto;
}

.oasis-about-cta-buttons .oasis-about-primary-btn {
    margin-top: 0;
}

.oasis-about-secondary-btn {
    border: 1px solid rgba(255, 255, 255, .4);
    background: transparent;
    color: #fff !important;
}

.oasis-about-secondary-btn:hover {
    background: #fff;
    color: var(--oasis-navy) !important;
}

/* =======================================
    End of About page
========================================== */



/* =======================================
    Start of Patient Info page
========================================== */

.osx-patient-info {
    padding: 110px 0 120px;
    background: #fff;
    font-family: "Montserrat", sans-serif;
}

.osx-patient-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 20px;
}

.osx-patient-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.osx-patient-content {
    padding-left: 20px;
}

.osx-section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--oasis-teal);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.osx-patient-content h2 {
    max-width: 600px;
    margin: 0 0 24px;
    color: var(--oasis-navy);
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
}

.osx-patient-content h2 span {
    color: var(--oasis-teal);
}

.osx-patient-content>p {
    max-width: 620px;
    margin: 0 0 16px;
    color: var(--oasis-text-gray);
    font-size: 15px;
    line-height: 1.85;
}

.osx-patient-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.osx-patient-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--oasis-text);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.osx-patient-point-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 140, 149, .1);
    color: var(--oasis-teal);
}

.osx-patient-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 28px;
    padding: 14px 22px;
    border-radius: 7px;
    background: var(--oasis-teal);
    color: #fff !important;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.osx-patient-btn:hover {
    background: var(--oasis-navy);
    color: #fff !important;
}

.osx-patient-btn span {
    font-size: 17px;
    transition: transform .25s ease;
}

.osx-patient-btn:hover span {
    transform: translateX(4px);
}

@media (max-width: 1199.98px) {

    .osx-patient-info {
        padding: 90px 0 100px;
    }

    .osx-patient-image {
        height: 480px;
    }

    .osx-patient-content h2 {
        font-size: 34px;
    }

}

@media (max-width: 991.98px) {

    .osx-patient-info {
        padding: 75px 0 85px;
    }

    .osx-patient-image {
        height: 450px;
    }

    .osx-patient-content {
        padding-left: 0;
    }

    .osx-patient-content h2 {
        font-size: 32px;
    }

}

@media (max-width: 767.98px) {

    .osx-patient-info {
        padding: 60px 0 70px;
    }

    .osx-patient-image {
        height: 350px;
        border-radius: 15px;
    }

    .osx-patient-content h2 {
        font-size: 28px;
    }

    .osx-patient-content>p {
        font-size: 14px;
        line-height: 1.8;
    }

}

@media (max-width: 575.98px) {

    .osx-patient-image {
        height: 280px;
    }

    .osx-patient-content h2 {
        font-size: 24px;
    }

    .osx-patient-point {
        font-size: 13px;
    }

}


/* =======================================
    End of Patient Info page
========================================== */


/* =======================================
    Start of contact page
========================================== */

.osx-contact-section {
    padding: 120px 0 110px;
    background: linear-gradient(180deg, #f7fafb 0%, #ffffff 100%);
    font-family: "Montserrat", sans-serif;
}

.osx-contact-content {
    padding-right: 35px;
}

.osx-section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--oasis-teal);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.osx-contact-content h2 {
    margin: 0 0 24px;
    color: var(--oasis-navy);
    font-size: 44px;
    line-height: 1.25;
    font-weight: 700;
}

.osx-contact-content h2 span,
.osx-contact-location-heading h2 span {
    color: var(--oasis-teal);
}

.osx-contact-content>p {
    max-width: 600px;
    margin: 0;
    color: var(--oasis-text-gray);
    font-size: 16px;
    line-height: 1.9;
}

.osx-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 38px;
}

.osx-contact-info {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 16px 18px;
    border: 1px solid var(--oasis-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(9, 40, 91, .05);
}

.osx-contact-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 140, 149, .10);
    color: var(--oasis-teal);
}

.osx-contact-icon svg {
    width: 27px;
    height: 27px;
}

.osx-contact-info span {
    display: block;
    margin-bottom: 5px;
    color: var(--oasis-navy);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.osx-contact-info p,
.osx-contact-info a {
    margin: 0;
    color: var(--oasis-text-gray);
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
    font-weight: 500;
}

.osx-contact-info a:hover {
    color: var(--oasis-teal);
}

.osx-contact-form {
    padding: 45px;
    border: 1px solid rgba(0, 140, 149, .15);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(9, 40, 91, .09);
}

.osx-contact-form-heading {
    margin-bottom: 30px;
}

.osx-contact-form-heading h3 {
    margin: 0 0 8px;
    color: var(--oasis-navy);
    font-size: 28px;
    line-height: 1.4;
    font-weight: 700;
}

.osx-contact-form-heading p {
    margin: 0;
    color: var(--oasis-text-gray);
    font-size: 14px;
    line-height: 1.8;
}

.osx-contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--oasis-navy);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
}

.osx-contact-form input,
.osx-contact-form select,
.osx-contact-form textarea {
    width: 100%;
    border: 1px solid var(--oasis-border);
    border-radius: 8px;
    outline: none;
    background: #fff;
    color: var(--oasis-text);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.osx-contact-form input,
.osx-contact-form select {
    height: 52px;
    padding: 0 15px;
}

.osx-contact-form textarea {
    min-height: 140px;
    padding: 14px 15px;
    resize: vertical;
}

.osx-contact-form input:focus,
.osx-contact-form select:focus,
.osx-contact-form textarea:focus {
    border-color: var(--oasis-teal);
    box-shadow: 0 0 0 4px rgba(0, 140, 149, .08);
}

.osx-contact-form input::placeholder,
.osx-contact-form textarea::placeholder {
    color: #9aa2aa;
}

.osx-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    padding: 16px 26px;
    border: 0;
    border-radius: 8px;
    background: var(--oasis-teal);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

.osx-contact-submit:hover {
    background: var(--oasis-navy);
    transform: translateY(-2px);
}

.osx-contact-submit span {
    font-size: 18px;
    transition: transform .25s ease;
}

.osx-contact-submit:hover span {
    transform: translateX(4px);
}

.osx-contact-location {
    padding: 100px 0;
    background: #fff;
    font-family: "Montserrat", sans-serif;
}

.osx-contact-location-heading {
    margin-bottom: 35px;
    text-align: center;
}

.osx-contact-location-heading h2 {
    margin: 0;
    color: var(--oasis-navy);
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
}

.osx-contact-map {
    width: 100%;
    height: 430px;
    overflow: hidden;
    border: 1px solid var(--oasis-border);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(9, 40, 91, .08);
}

.osx-contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* =======================================
    End of contact page
========================================== */


/* =======================================
    Start of gallery page
========================================== */

.osx-gallery-section {
    padding: 80px 0;
    background: #fff;
    font-family: "Montserrat", sans-serif;
}

.osx-gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 45px;
}

.osx-gallery-tab {
    min-width: 130px;
    padding: 14px 25px;
    border: 1px solid var(--oasis-border);
    border-radius: 7px;
    background: #fff;
    color: var(--oasis-navy);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

.osx-gallery-tab:hover,
.osx-gallery-tab.active {
    border-color: var(--oasis-teal);
    background: var(--oasis-teal);
    color: #fff;
}

.osx-gallery-panel {
    display: none;
}

.osx-gallery-panel.active {
    display: block;
}

.osx-gallery-card {
    position: relative;
    display: block;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 15px;
    background: #f3f6f7;
    box-shadow: 0 8px 25px rgba(9, 40, 91, .07);
    cursor: zoom-in;
}

.osx-gallery-card::after {
    content: "+";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 40, 91, .42);
    color: #fff;
    font-size: 38px;
    font-weight: 300;
    opacity: 0;
    transition: opacity .3s ease;
}

.osx-gallery-card:hover::after {
    opacity: 1;
}

.osx-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.osx-gallery-card:hover img {
    transform: scale(1.06);
}

.osx-gallery-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 8px 25px rgba(9, 40, 91, .08);
}

.osx-gallery-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.osx-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 0, 0, .92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.osx-gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.osx-lightbox-content {
    width: min(1000px, 90vw);
    height: min(80vh, 800px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.osx-lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 5px;
}

.osx-lightbox-close,
.osx-lightbox-prev,
.osx-lightbox-next {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background .2s ease;
}

.osx-lightbox-close:hover,
.osx-lightbox-prev:hover,
.osx-lightbox-next:hover {
    background: var(--oasis-teal);
}

.osx-lightbox-close {
    top: 25px;
    right: 25px;
    font-size: 32px;
    line-height: 1;
}

.osx-lightbox-prev {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
}

.osx-lightbox-next {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
}

body.osx-lightbox-open {
    overflow: hidden;
}

/* =======================================
    End of gallery page
========================================== */


/* =======================================
    Start of teams page
========================================== */

.oasis-team-page {
    padding: 90px 0 110px;
    background: #fff;
}

.oasis-team-profile {
    position: relative;
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 70px;
    align-items: center;
    margin: 0 auto 90px;
    padding: 55px;
    border: 1px solid var(--oasis-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(9, 40, 91, .07);
    scroll-margin-top: 120px;
}

.oasis-team-profile:last-child {
    margin-bottom: 0;
}

.oasis-team-profile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    border-radius: 28px 0 0 28px;
    background: var(--oasis-teal);
}

.oasis-team-profile-reverse {
    grid-template-columns: minmax(0, 1fr) 390px;
}

.oasis-team-profile-reverse .oasis-team-profile-image {
    order: 2;
}

.oasis-team-profile-reverse .oasis-team-profile-content {
    order: 1;
}

/* =========================
   IMAGE
========================= */

.oasis-team-profile-image {
    position: relative;
}

.oasis-team-image-frame {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 22px;
    background: #f1f5f6;
}

.oasis-team-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 65%,
            rgba(9, 40, 91, .16));
    pointer-events: none;
}

.oasis-team-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

/* =========================
   PROFILE TAG
========================= */

.oasis-team-profile-tag {
    position: absolute;
    right: -18px;
    bottom: 25px;
    min-width: 125px;
    padding: 13px 18px;
    border-radius: 12px;
    background: var(--oasis-navy);
    color: #fff;
    box-shadow: 0 10px 25px rgba(9, 40, 91, .2);
}

.oasis-team-profile-tag span {
    display: block;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.oasis-team-profile-tag small {
    display: block;
    margin-top: 3px;
    color: #b9e1e3;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

/* =========================
   CONTENT
========================= */

.oasis-team-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--oasis-teal);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.oasis-team-profile-content h1,
.oasis-team-profile-content h2 {
    margin: 0;
    color: var(--oasis-navy);
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
}

.oasis-team-title-line {
    width: 65px;
    height: 3px;
    margin: 18px 0 23px;
    border-radius: 5px;
    background: var(--oasis-teal);
}

.oasis-team-intro {
    max-width: 680px;
    margin: 0 0 25px;
    color: var(--oasis-text);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

/* =========================
   INFO BOXES
========================= */

.oasis-team-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 25px;
}

.oasis-team-info-box {
    padding: 16px 18px;
    border: 1px solid #e4eaec;
    border-radius: 12px;
    background: var(--oasis-light);
}

.oasis-team-info-box span {
    display: block;
    margin-bottom: 5px;
    color: var(--oasis-teal);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.oasis-team-info-box strong {
    display: block;
    color: var(--oasis-navy);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}

/* =========================
   DESCRIPTION
========================= */

.oasis-team-description {
    padding-top: 5px;
}

.oasis-team-description p {
    margin: 0 0 12px;
    color: var(--oasis-text-gray);
    font-size: 14px;
    line-height: 1.8;
}

.oasis-team-description p:last-child {
    margin-bottom: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1199.98px) {

    .oasis-team-profile {
        grid-template-columns: 330px minmax(0, 1fr);
        gap: 50px;
        padding: 45px;
    }

    .oasis-team-profile-reverse {
        grid-template-columns: minmax(0, 1fr) 330px;
    }

    .oasis-team-image-frame {
        height: 380px;
    }

}

/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

    .oasis-breadcrumb-section {
        padding: 60px 0;
    }

    .oasis-breadcrumb-content h1 {
        font-size: 34px;
    }

    .oasis-team-page {
        padding: 70px 0 85px;
    }

    .oasis-team-profile,
    .oasis-team-profile-reverse {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 35px;
        padding: 35px;
        margin-bottom: 60px;
    }

    .oasis-team-image-frame {
        height: 340px;
    }

    .oasis-team-profile-content h1,
    .oasis-team-profile-content h2 {
        font-size: 32px;
    }

    .oasis-team-intro {
        font-size: 15px;
    }

    .oasis-team-description p {
        font-size: 13px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 767.98px) {

    .oasis-breadcrumb-section {
        padding: 50px 0;
    }

    .oasis-breadcrumb-content h1 {
        font-size: 29px;
    }

    .oasis-breadcrumb li {
        font-size: 12px;
    }

    .oasis-team-page {
        padding: 55px 0 70px;
    }

    .oasis-team-profile,
    .oasis-team-profile-reverse {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 25px;
        margin-bottom: 45px;
        border-radius: 20px;
    }

    .oasis-team-profile::before {
        width: 100%;
        height: 5px;
        border-radius: 20px 20px 0 0;
    }

    .oasis-team-profile-reverse .oasis-team-profile-image,
    .oasis-team-profile-reverse .oasis-team-profile-content {
        order: initial;
    }

    .oasis-team-image-frame {
        height: 380px;
        border-radius: 17px;
    }

    .oasis-team-profile-tag {
        right: 15px;
        bottom: 18px;
    }

    .oasis-team-profile-content h1,
    .oasis-team-profile-content h2 {
        font-size: 29px;
    }

    .oasis-team-info-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 575.98px) {

    .oasis-breadcrumb-section {
        padding: 45px 0;
    }

    .oasis-breadcrumb-content h1 {
        font-size: 26px;
    }

    .oasis-team-page {
        padding: 45px 0 60px;
    }

    .oasis-team-profile,
    .oasis-team-profile-reverse {
        padding: 20px;
        gap: 25px;
        border-radius: 16px;
    }

    .oasis-team-image-frame {
        height: 330px;
        border-radius: 14px;
    }

    .oasis-team-profile-tag {
        right: 10px;
        bottom: 12px;
        min-width: 110px;
        padding: 10px 14px;
    }

    .oasis-team-profile-content h1,
    .oasis-team-profile-content h2 {
        font-size: 26px;
    }

    .oasis-team-eyebrow {
        font-size: 11px;
    }

    .oasis-team-intro {
        font-size: 14px;
        line-height: 1.75;
    }

    .oasis-team-description p {
        font-size: 13px;
        line-height: 1.75;
    }

}

/* =======================================
    End of teams page
========================================== */


/* =======================================
    Start of contact details bar
========================================== */

.oasis-details-bar {
    width: 100%;
    background: #E3EFEF;
    border-top: 1px solid #f0f4f9;
    border-bottom: 1px solid #eff3f8;
}

.oasis-details-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #111827;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.2s ease;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.oasis-details-bar__item:hover {
    color: var(--oasis-teal);
}

.oasis-details-bar__phone-icon {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #05868d;
    color: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 11px;
}

.oasis-details-bar__simple-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 22px;
    flex-shrink: 0;
}

@media (max-width: 600px) {

    .oasis-details-bar__phone-icon {
        width: 20px;
        height: 20px;
        font-size: 8px;
    }

    .oasis-details-bar__simple-icon {
        font-size: 18px;
    }

    .oasis-details-bar__item {
        font-size: 13px;
    }

    .contact-details {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .contact-details::-webkit-scrollbar {
        display: none;
    }
}

/* =======================================
    End of contact details bar
========================================== */


/* =======================================
    Start of road map
========================================== */

.oasis-location {
    padding: 80px 0;
    font-family: "Montserrat", sans-serif;
    color: var(--oasis-text);
}

.oasis-info-box {
    padding: 30px;
    border: 1px solid var(--oasis-teal);
    background: #fff;
}

.oasis-info-box h5 {
    margin: 0 0 4px;
    color: var(--oasis-navy);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.oasis-info-box p {
    margin: 0;
    color: var(--oasis-navy);
    font-size: 15px;
    line-height: 1.7;
}

.oasis-contact {
    margin-top: 20px;
}

.oasis-contact p + p {
    margin-top: 2px;
}

.oasis-contact strong {
    font-weight: 700;
}

.oasis-contact a {
    color: var(--oasis-navy);
    text-decoration: none;
}

.oasis-contact a:hover {
    text-decoration: underline;
}

.oasis-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.oasis-qr img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: 100% 14%;
}

.oasis-qr p {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 700;
}

.oasis-map-title {
    margin: 28px 0 12px;
    color: var(--oasis-navy);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.oasis-map {
    padding: 4px;
    overflow: hidden;
    border: 1px solid var(--oasis-border);
    background: #fff;
}

.oasis-map img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .oasis-location {
        padding: 60px 0;
    }

    .oasis-qr {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .oasis-location {
        padding: 50px 0;
    }

    .oasis-info-box {
        padding: 20px;
    }

    .oasis-info-box p {
        font-size: 13px;
    }

    .oasis-map-title {
        margin-top: 25px;
        font-size: 21px;
    }

}

@media (max-width: 575.98px) {
    .oasis-location {
        padding: 40px 0;
    }

    .oasis-info-box p {
        font-size: 12px;
    }

    .oasis-qr img {
        width: 150px;
        height: 150px;
    }
}

/* =======================================
    End of road map
========================================== */