﻿:root {
    /* color */
    --ge-pantone: rgba(0,118,156,255);
    --ge-pantone-10: rgba(0,118,156,0.1);
    --ge-dark-pantone: rgba(0,85,111,255);
    --ge-dark-pantone-10: rgba(0,84,112,0.1);
    --ge-light-blue: rgba(102,173,196,255);
    --ge-light-green: rgba(0,163,168,255);
    --ge-red: rgba(167,43,42,255);
    --ge-orange: rgba(236,138,0,255);
    --ge-light-orange: rgba(248,185,93,255);
    /* utilities */
    --banner-desktop-height: 350px;
    --global-banner-desktop-height: 450px;
    --screen-max-width: 1920px;
    --landing-title-font-size: 2rem;
    --landing-title-line-height: 2.25rem;
    --card-border-radius: 0.75rem;
    --button-border-radius: 0.5rem;
    --general-grey-color: #6B6F71;
    --general-transition: all 0.3s linear;
}

/* header */
.glen-ui-ux-revamp #desktop-header {
    background: white;
    transition: var(--general-transition);
    padding-bottom: 5px;
    padding-top: 15px;
}

    .glen-ui-ux-revamp #desktop-header.hiding {
        padding: 0px;
    }

        .glen-ui-ux-revamp #desktop-header.hiding .upper-header {
            display: none;
        }

    .glen-ui-ux-revamp #desktop-header .upper-header-content > div {
        align-self: center;
    }

    .glen-ui-ux-revamp #desktop-header .upper-header .header-logo + .header-contact,
    .glen-ui-ux-revamp #desktop-header .upper-header .header-logo + .header-search {
        margin-left: auto !important;
    }

    .glen-ui-ux-revamp #desktop-header .upper-header .header-logo img {
        width: 250px;
    }

    .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content {
        display: flex;
        padding-bottom: 10px;
    }

        .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-contact {
            display: flex;
            align-items: center;
            margin-bottom: 0px;
        }

            .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-contact .top-nav-contact {
                margin-left: 0.75rem;
            }

                .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-contact .top-nav-contact:first-child img {
                    margin-left: 0.75rem;
                }

            .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-contact .top-contact-text a img {
                width: 32px;
            }

            .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-contact .top-contact-text {
                text-align: left;
            }

                .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-contact .top-contact-text span {
                    color: #66ADC4;
                    font-weight: normal;
                }

                .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-contact .top-contact-text a {
                    color: #66ADC4;
                    font-weight: bold;
                }

            .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-contact .top-contact-child {
                display: none;
            }

        .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-search {
            margin-left: 1rem;
            margin-right: 1rem;
        }

            .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-search .nav-search-container {
                position: relative;
            }

            .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-search #nav-search-box {
                background: #d7eef0;
                color: #2a2a2a;
                width: 250px;
            }

                .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-search #nav-search-box::placeholder {
                    color: #2a2a2a;
                }

            .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-search label {
                position: absolute;
                right: 15px;
                top: 5px;
                margin: 0px;
            }

                .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-search label span {
                    top: 0px;
                    left: 0px;
                }

                    .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-search label span::before {
                        color: var(--ge-light-green);
                    }

        .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-language {
            --section-color: var(--ge-light-green);
            color: var(--section-color);
            position: relative;
            padding: 0.5rem;
            font-size: 1rem;
            height: max-content;
        }

            .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-language a,
            .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-language div {
                color: inherit;
                font-weight: bold;
                transition: var(--general-transition);
            }

            .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-language .js-language::after {
                content: "";
                border: solid var(--section-color);
                border-width: 0 3px 3px 0;
                display: inline-block;
                padding: 3px;
                transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
                margin-bottom: 4px;
                margin-left: 8px;
            }

            .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-language:hover > ul {
                display: block;
            }

            .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-language ul {
                position: absolute;
                top: 37px;
                left: -3px;
                display: none;
                list-style-type: none;
                margin: 0px;
                z-index: 1;
                background-color: white;
                border-radius: 0.25rem;
                border: 1px solid var(--section-color);
            }

                .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-language ul li a,
                .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-language ul li div {
                    display: block;
                    padding: 0.5rem 1rem;
                    transition: var(--general-transition);
                }

                .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-language ul li:hover {
                    color: white;
                    background: var(--section-color);
                }

    .glen-ui-ux-revamp #desktop-header .bottom-header {
        border-top: 1px solid var(--ge-light-green);
        padding: 10px 0px;
    }

.glen-ui-ux-revamp .header-nav-primary {
    margin: 0rem 2rem;
}

    .glen-ui-ux-revamp .header-nav-primary > ul {
        display: flex !important;
        margin: 0px;
        justify-content: space-between;
    }

        .glen-ui-ux-revamp .header-nav-primary > ul > li {
            margin: 0px;
            padding: 0px;
        }

            .glen-ui-ux-revamp .header-nav-primary > ul > li > a {
                color: var(--general-grey-color) !important;
            }

    .glen-ui-ux-revamp .header-nav-primary li.has-sub > ul > li > a {
        font-weight: normal;
        transition: var(--general-transition);
    }

    .glen-ui-ux-revamp .header-nav-primary > ul > li > a::after {
        display: none;
    }

/* footer */
.glen-ui-ux-revamp .footer {
    padding: 0px;
}

.glen-ui-ux-revamp .footer-top img {
    width: 175px;
}

.glen-ui-ux-revamp .footer-top ul {
    display: flex;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    justify-content: end;
}

    .glen-ui-ux-revamp .footer-top ul li a {
        padding: 0px;
        color: white;
        font-size: 13px;
        margin-left: 1.5rem;
    }

.glen-ui-ux-revamp .footer-middle {
    background: #F0F7F9;
    margin: 0px;
}

    .glen-ui-ux-revamp .footer-middle .footer-middle-wrapper {
        display: grid;
        gap: 1.5rem 1rem;
        grid-template-columns: repeat(3, 1fr);
    }

        .glen-ui-ux-revamp .footer-middle .footer-middle-wrapper .footer-item .item-header {
            color: var(--ge-light-green);
            font-weight: bold;
            font-size: 14px;
        }

        .glen-ui-ux-revamp .footer-middle .footer-middle-wrapper .footer-item a {
            color: var(--general-grey-color);
            font-size: 0.875rem;
            display: table;
            margin-top: 0.625rem;
            font-size: 13px;
        }

.glen-ui-ux-revamp .footer-bottom {
    background: var(--ge-light-green);
    color: white;
}

    .glen-ui-ux-revamp .footer-bottom .legal-copy p {
        margin-bottom: 0px !important;
        text-align: left !important;
    }

    .glen-ui-ux-revamp .footer-bottom .legal-nav ul {
        list-style-type: none;
        display: flex;
        margin: 0px;
        justify-content: right;
    }

        .glen-ui-ux-revamp .footer-bottom .legal-nav ul li {
            display: flex;
        }

            .glen-ui-ux-revamp .footer-bottom .legal-nav ul li a {
                padding: 0px;
                color: inherit;
                font-size: 13px;
            }

            .glen-ui-ux-revamp .footer-bottom .legal-nav ul li:not(:last-child)::after {
                content: "";
                display: block;
                height: 13px;
                width: 1px;
                background: white;
                margin: 0 0.5rem;
                align-self: center;
            }

/* global page */
.glen-ui-ux-revamp .global-video-four-buttons {
    background: #F0F7F9;
}

    .glen-ui-ux-revamp .global-video-four-buttons .video-wrapper {
        max-width: 1920px;
        margin: auto;
    }

        .glen-ui-ux-revamp .global-video-four-buttons .video-wrapper video {
            width: 100%;
            grid-area: 1/1;
        }

        .glen-ui-ux-revamp .global-video-four-buttons .video-wrapper .col-12 {
            display: grid;
        }

            .glen-ui-ux-revamp .global-video-four-buttons .video-wrapper .col-12::after {
                content: '';
                width: 100%;
                height: 100%;
                grid-area: 1/1;
                background: linear-gradient(to top, #F0F7F9, transparent 10%);
            }

    .glen-ui-ux-revamp .global-video-four-buttons .four-buttons {
        transform: translateY(calc(-50% - 7px));
    }

        .glen-ui-ux-revamp .global-video-four-buttons .four-buttons .four-buttons-wrapper {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.625rem;
        }

            .glen-ui-ux-revamp .global-video-four-buttons .four-buttons .four-buttons-wrapper .button-item {
                display: flex;
                color: white;
                font-weight: bold;
                font-size: 0.875rem;
                line-height: 1.125rem;
                border-radius: 0.25rem;
                padding: 1rem 1.5rem;
            }

                .glen-ui-ux-revamp .global-video-four-buttons .four-buttons .four-buttons-wrapper .button-item.doctor {
                    background: #487E8F;
                }

                .glen-ui-ux-revamp .global-video-four-buttons .four-buttons .four-buttons-wrapper .button-item.appointment {
                    background: #AC5B5A;
                }

                .glen-ui-ux-revamp .global-video-four-buttons .four-buttons .four-buttons-wrapper .button-item.patient {
                    background: #E0A047;
                }

                .glen-ui-ux-revamp .global-video-four-buttons .four-buttons .four-buttons-wrapper .button-item.contact {
                    background: #3EAAAD;
                }

                .glen-ui-ux-revamp .global-video-four-buttons .four-buttons .four-buttons-wrapper .button-item img {
                    width: 40px;
                    height: 40px;
                    align-self: center;
                    margin-right: 0.75rem;
                }

                .glen-ui-ux-revamp .global-video-four-buttons .four-buttons .four-buttons-wrapper .button-item div {
                    align-self: center;
                }

.glen-ui-ux-revamp .revamp-global-banner {
    background: #F0F7F9;
    padding-bottom: 3rem;
}

    .glen-ui-ux-revamp .revamp-global-banner .welcome-title,
    .glen-ui-ux-revamp .revamp-global-banner .welcome-subtitle {
        text-align: center;
        color: var(--ge-dark-pantone);
    }

    .glen-ui-ux-revamp .revamp-global-banner .welcome-title {
        font-size: var(--landing-title-font-size);
        line-height: var(--landing-title-line-height);
        font-weight: bold;
    }

    .glen-ui-ux-revamp .revamp-global-banner .masthead-slides:not(.global),
    .glen-ui-ux-revamp .masthead-slides:not(.global) .masthead-slide-image img {
        height: var(--global-banner-desktop-height);
        object-fit: contain;
    }

    .glen-ui-ux-revamp .revamp-global-banner .masthead-slides {
        margin-top: 2rem;
        border-radius: 1rem;
        box-shadow: 0px 4px 15px 1px rgba(0,118,156,0.3);
    }

        .glen-ui-ux-revamp .revamp-global-banner .masthead-slides .masthead-slide-image a {
            overflow: hidden;
            border-radius: 1rem;
            display: block;
        }

        .glen-ui-ux-revamp .revamp-global-banner .masthead-slides .slick-prev,
        .glen-ui-ux-revamp .medical-specialty-page .medical-specialty-row .slick-prev {
            left: -12.5px;
        }

        .glen-ui-ux-revamp .revamp-global-banner .masthead-slides .slick-next,
        .glen-ui-ux-revamp .medical-specialty-page .medical-specialty-row .slick-next {
            right: -12.5px;
        }

        .glen-ui-ux-revamp .revamp-global-banner .masthead-slides .slick-dots,
        .glen-ui-ux-revamp .revamp-packages-and-promotion .pap-slider-wrapper .slick-dots {
            bottom: -30px;
        }

.glen-ui-ux-revamp .revamp-banner.appointment {
    background: #615f5e;
}

    .glen-ui-ux-revamp .revamp-banner.appointment .banner-headers .banner-title {
        font-size: 2.75rem;
        line-height: 1.15;
        margin-bottom: 0.25rem;
    }

    .glen-ui-ux-revamp .revamp-banner.appointment img {
        height: 14rem;
        max-width: 1200px;
        margin: auto;
    }

.glen-ui-ux-revamp .global-hospital-selection {
    background: #F0F7F9;
}

    .glen-ui-ux-revamp .global-hospital-selection h1 {
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 1rem;
    }

    .glen-ui-ux-revamp .global-hospital-selection h1,
    .glen-ui-ux-revamp .global-hospital-selection h2 {
        color: var(--ge-pantone);
        font-size: var(--landing-title-font-size);
        line-height: var(--landing-title-line-height);
        font-weight: bold;
    }

    .glen-ui-ux-revamp .global-hospital-selection .hospital-selection-wrapper {
        display: grid;
        gap: 0.5rem;
        grid-template-columns: repeat(4, 1fr);
        margin-bottom: 2.5rem;
    }

        .glen-ui-ux-revamp .global-hospital-selection .hospital-selection-wrapper .selection-item {
            display: flex;
            color: var(--ge-pantone);
            padding: 0.5rem;
            background: #d7eef0;
            border-radius: 0.25rem;
            cursor: pointer;
            transition: var(--general-transition);
        }

            .glen-ui-ux-revamp .global-hospital-selection .hospital-selection-wrapper .selection-item:hover,
            .glen-ui-ux-revamp .global-hospital-selection .hospital-selection-wrapper .selection-item.selected {
                color: white;
                background: var(--ge-light-green);
            }

            .glen-ui-ux-revamp .global-hospital-selection .hospital-selection-wrapper .selection-item img {
                height: 40px;
                aspect-ratio: 1/1;
                margin-right: 0.625rem;
                border-radius: 50%;
            }

            .glen-ui-ux-revamp .global-hospital-selection .hospital-selection-wrapper .selection-item > div {
                line-height: 1rem;
                font-weight: bold;
                font-size: 1rem;
                align-self: center;
            }

    .glen-ui-ux-revamp .global-hospital-selection .hospital-tab-item .col-md-4 > img {
        border-radius: 0.5rem;
    }

    .glen-ui-ux-revamp .global-hospital-selection .hospital-tab-item .col-md-4:nth-child(2) {
        padding-right: 2rem;
    }

    .glen-ui-ux-revamp .global-hospital-selection .hospital-tab-item .col-md-4:nth-child(3) {
        padding-left: 2rem;
        border-left: 1px solid var(--ge-light-green);
    }

    .glen-ui-ux-revamp .global-hospital-selection .contact-wrapper .contact-item {
        margin-bottom: 1rem;
        display: flex;
    }

        .glen-ui-ux-revamp .global-hospital-selection .contact-wrapper .contact-item img {
            margin-right: 0.75rem;
            width: 20px;
            height: 20px;
        }

        .glen-ui-ux-revamp .global-hospital-selection .contact-wrapper .contact-item a,
        .glen-ui-ux-revamp .global-hospital-selection .contact-wrapper .contact-item > div {
            color: var(--ge-dark-pantone);
            line-height: 1.25rem;
        }

    .glen-ui-ux-revamp .global-hospital-selection .gm-w-btn {
        margin-bottom: 1rem;
        display: grid;
        gap: 0.625rem;
        grid-template-columns: repeat(2, 1fr);
    }

.glen-ui-ux-revamp .revamp-packages-and-promotion {
    background: #F0F7F9;
}

    .glen-ui-ux-revamp .revamp-packages-and-promotion h1 {
        font-weight: bold;
        color: var(--ge-light-green);
        font-size: var(--landing-title-font-size);
        line-height: var(--landing-title-line-height);
        text-align: center;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
    }

.glen-ui-ux-revamp .pap-item { /* for general use */
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin: 0.5rem;
}

    .glen-ui-ux-revamp .pap-item .img-wrapper {
        width: 100%;
    }

        .glen-ui-ux-revamp .pap-item .img-wrapper img {
            object-fit: cover;
            width: 100%;
            aspect-ratio: 16/9;
            object-position: top;
        }

    .glen-ui-ux-revamp .pap-item .item-header {
        color: var(--ge-light-green);
        font-size: 1.25rem;
        line-height: 1.625rem;
        /* min-height: 3.25rem; */
        font-weight: bold;
        display: flex;
        /* align-items: center; */
        margin-bottom: 0.25rem;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .glen-ui-ux-revamp .pap-item .item-desc {
        color: var(--general-grey-color);
        line-height: 1.375rem;
        /* min-height: 4.125rem; */
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .glen-ui-ux-revamp .pap-item .img-wrapper {
        transform: translate(0px, 0px);
        box-shadow: 0px 0px 0px 0px transparent;
        /* border: 1px solid transparent; */
        transition: all 0.25s ease-in-out;
    }

        .glen-ui-ux-revamp .pap-item .img-wrapper:hover {
            transform: translate(-5px, -5px);
            /* border: 1px solid rgba(211, 211, 211, 0.25); */
            box-shadow: 5px 5px 3px 0px #ebc083;
        }

    .glen-ui-ux-revamp .pap-item .item-hospital {
        color: var(--ge-light-green);
        display: flex;
    }

        .glen-ui-ux-revamp .pap-item .item-hospital .g-ic-hospital {
            margin-right: 10px;
        }

    .glen-ui-ux-revamp .pap-item .item-period .post-meta span,
    .glen-ui-ux-revamp .pap-item .item-period .post-meta .post-label-date {
        color: var(--ge-red) !important;
    }

.glen-ui-ux-revamp .revamp-packages-and-promotion .slick-prev {
    left: -40px;
}

.glen-ui-ux-revamp .revamp-packages-and-promotion .slick-next {
    right: -40px;
}

.glen-ui-ux-revamp .revamp-packages-and-promotion .yellow-button {
    margin-left: auto;
    margin-right: auto;
}

.glen-ui-ux-revamp .home-health-check { /* display none medical A-Z */
    display: none;
}

/* hospital */
.glen-ui-ux-revamp .why-choose-us {
    background: url('/ResourcePackages/Gleneagles/assets/dist/images/why-choose-us-bg.webp');
    background-size: cover;
}

    .glen-ui-ux-revamp .why-choose-us h1 {
        font-size: var(--landing-title-font-size);
        line-height: var(--landing-title-line-height);
        color: var(--ge-light-green);
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .glen-ui-ux-revamp .why-choose-us .choose-us-wrapper {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }

        .glen-ui-ux-revamp .why-choose-us .choose-us-wrapper.five-item {
            grid-template-columns: repeat(5, 1fr);
        }

        .glen-ui-ux-revamp .why-choose-us .choose-us-wrapper.four-item {
            grid-template-columns: repeat(4, 1fr);
        }

        .glen-ui-ux-revamp .why-choose-us .choose-us-wrapper .choose-us-item {
            text-align: center;
        }

            .glen-ui-ux-revamp .why-choose-us .choose-us-wrapper .choose-us-item img {
                width: 60px;
                margin: 0rem auto 1.25rem;
            }

            .glen-ui-ux-revamp .why-choose-us .choose-us-wrapper .choose-us-item .cu-numbers {
                color: var(--ge-light-green);
                font-weight: bold;
                font-size: 1.25rem;
                line-height: 1.25rem;
                margin-bottom: 0.5rem;
            }

            .glen-ui-ux-revamp .why-choose-us .choose-us-wrapper .choose-us-item .cu-name {
                color: var(--general-grey-color);
                line-height: 1rem;
            }

.glen-ui-ux-revamp .hospital-search-doctor {
    background: url('/ResourcePackages/Gleneagles/assets/dist/images/banners/find-a-doctor-banner-rotated.webp');
    background-size: cover;
    background-position: 20%;
}

    .glen-ui-ux-revamp .hospital-search-doctor img {
        transform: scale(1.2);
        transform-origin: bottom right;
    }

    .glen-ui-ux-revamp .hospital-search-doctor h1 {
        color: var(--ge-light-green);
        font-size: var(--landing-title-font-size);
        line-height: var(--landing-title-line-height);
        text-transform: uppercase;
        margin-bottom: 1rem;
        text-align: left;
        font-weight: bold;
    }

    .glen-ui-ux-revamp .hospital-search-doctor .search-doctor-content-wrapper {
        padding: 2.5rem 0rem;
    }

    .glen-ui-ux-revamp .hospital-search-doctor .search-doctor-subheader {
        color: white;
        margin-bottom: 1rem;
    }

.glen-ui-ux-revamp .specialties-centres {
    background: #FEF8EF;
}

    .glen-ui-ux-revamp .specialties-centres h1 {
        font-weight: bold;
        font-size: var(--landing-title-font-size);
        line-height: var(--landing-title-line-height);
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 1.5rem;
        color: var(--ge-dark-pantone);
    }

    .glen-ui-ux-revamp .specialties-centres .sc-item-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

        .glen-ui-ux-revamp .specialties-centres .sc-item-wrapper .sc-item {
            --section-height: 225px;
            display: grid;
            width: 100%;
            position: relative;
            place-content: center;
            height: var(--section-height);
            overflow: hidden;
            isolation: isolate;
        }

            .glen-ui-ux-revamp .specialties-centres .sc-item-wrapper .sc-item:hover img {
                transform: scale(1.2);
            }

            .glen-ui-ux-revamp .specialties-centres .sc-item-wrapper .sc-item .img-wrapper {
                /* display: inline-table;
    height: inherit;
    width: inherit;

    grid-area: 1/1;
    z-index: 1; */
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 1;
            }

            .glen-ui-ux-revamp .specialties-centres .sc-item-wrapper .sc-item img {
                object-fit: cover;
                height: 100%;
                width: 100%;
                transition: var(--general-transition);
            }

            .glen-ui-ux-revamp .specialties-centres .sc-item-wrapper .sc-item .black-filter {
                background: rgba(0,0,0,0.5);
                /* grid-area: 1/1;
    width: 100%;
    height: 100%;
    z-index: 2; */

                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 2;
            }

            .glen-ui-ux-revamp .specialties-centres .sc-item-wrapper .sc-item .sc-name {
                color: white;
                display: grid;
                align-items: center;
                font-weight: bold;
                text-align: center;
                padding: 1rem;
                font-size: 1.25rem;
                z-index: 3;
                position: absolute;
                width: 100%;
                height: 100%;
            }

    .glen-ui-ux-revamp .specialties-centres .yellow-button {
        margin: 2rem auto 0rem;
    }

.glen-ui-ux-revamp #CPHMainContentRaw_TEA2D75C9003_Col00 {
    display: none;
}
/* hospital end */

/* banner */
.glen-ui-ux-revamp .revamp-banner {
    display: grid;
    position: relative;
    max-width: var(--screen-max-width);
    margin: auto;
}



    .glen-ui-ux-revamp .revamp-banner img,
    .glen-ui-ux-revamp .revamp-banner .banner-headers {
        grid-area: 1/1;
    }

    .glen-ui-ux-revamp .revamp-banner img {
        height: var(--banner-desktop-height);
        object-fit: cover;
        object-position: top;
    }

    .glen-ui-ux-revamp .revamp-banner .banner-headers {
        color: white;
        align-self: center;
    }

        .glen-ui-ux-revamp .revamp-banner .banner-headers .banner-title {
            font-size: 3rem;
            font-weight: 500;
            line-height: 3.5rem;
            margin-bottom: 0.625rem;
            text-transform: uppercase;
        }

        .glen-ui-ux-revamp .revamp-banner .banner-headers .banner-subtitle {
            font-size: 1.15rem;
        }


    .glen-ui-ux-revamp .revamp-banner.appointment img {
        height: 14rem;
        max-width: 1200px;
        margin: auto;
        background: #625d5d;
    }

/* facility */
.glen-ui-ux-revamp .facilities-page {
    background: #f0f7f9;
    padding: 3rem 0rem;
}

    .glen-ui-ux-revamp .facilities-page .facility-selector {
        background: white;
        color: var(--general-grey-color);
        border-radius: 0.25rem;
        font-size: 1rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: all 0.3s linear;
    }

.glen-ui-ux-revamp .facility-row:not(:last-child) {
    margin-bottom: 2rem;
}

.glen-ui-ux-revamp .facility-row .facility-title-wrapper {
    --section-color: var(--ge-dark-pantone);
    display: flex;
    margin-bottom: 0.75rem;
}

.glen-ui-ux-revamp .facility-row .facility-title {
    position: relative;
    margin-right: 0.625rem;
    font-weight: bold;
    font-size: 1.75rem;
    line-height: 2rem;
    color: var(--section-color);
    white-space: nowrap;
}

.glen-ui-ux-revamp .facility-row .facility-title-wrapper::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    align-self: center;
    background: var(--section-color);
}

.glen-ui-ux-revamp .facilities-page .facility-selector:hover,
.glen-ui-ux-revamp .facilities-page .facility-selector.selected {
    background: #2596be;
    color: white;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-radius: 0.5rem;
}

    .glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper .facility-grid-item {
        display: grid;
        height: 225px;
        position: relative;
        overflow: hidden;
        border-radius: 0.5rem;
    }

        .glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper .facility-grid-item > * {
            grid-area: 1/1;
        }

        .glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper .facility-grid-item .black-filter {
            background: rgba(0,0,0,0.5);
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        .glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper .facility-grid-item .img-wrapper {
            height: inherit;
            width: inherit;
            display: table;
            overflow: hidden;
            z-index: 1;
        }

            .glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper .facility-grid-item .img-wrapper img {
                object-fit: cover;
                width: 100%;
                height: 100%;
            }

        .glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper .facility-grid-item a,
        .glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper .facility-grid-item p {
            color: white;
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 0rem !important;
            padding: 1rem;
            z-index: 3;
            display: grid;
            place-content: center;
            /* height: 100%; */
            width: 100%;
            text-align: center;
            transition: all 0.25s ease-in-out;
        }

        .glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper .facility-grid-item .img-wrapper img {
            transform: scale(1);
            transform-origin: center;
            transition: all 0.35s ease-in-out;
        }

        .glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper .facility-grid-item:hover .img-wrapper img {
            transform: scale(1.1);
        }


        .glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper .facility-grid-item .black-filter {
            transition: all 0.3s ease;
        }

        .glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper .facility-grid-item:hover .black-filter {
            /* background: rgb(0 0 0 / 15%); */
            transition: all 0.35s ease-out;
        }


/* find doctor page */
.glen-ui-ux-revamp .find-doctor-page {
    background: #f0f7f9;
}

    .glen-ui-ux-revamp .find-doctor-page .find-doctor-section {
        margin: 0px;
    }

.glen-ui-ux-revamp .find-doctor-search {
    --search-field-font-size: 0.875rem;
    display: block;
    margin: 0rem;
    border: none !important;
}

.glen-ui-ux-revamp .desktop-search-bar {
    position: relative;
    transform: translateY(-50%);
    margin-bottom: -1.5rem;
    z-index: 1;
}

.glen-ui-ux-revamp .search-header { /* for general use */
    color: var(--ge-dark-pantone);
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.125rem;
    text-transform: uppercase;
}

.glen-ui-ux-revamp .search-or {
    color: #707070;
    font-weight: bold;
    font-size: var(--search-field-font-size);
    margin-bottom: 1rem;
    display: flex;
}

    .glen-ui-ux-revamp .search-or span {
        margin: 0px 0.625rem;
    }

    .glen-ui-ux-revamp .search-or::after,
    .glen-ui-ux-revamp .search-or::before {
        content: '';
        height: 1px;
        width: 100%;
        background: #707070;
        align-self: center;
    }

.glen-ui-ux-revamp .revamp-search-field { /* for general use */
    width: 100%;
    margin-bottom: 1rem;
}

.glen-ui-ux-revamp .find-doctor-page .revamp-search-field {
    height: 60px;
    box-shadow: 2px 2px 10px 3px rgba(0,0,0,0.3);
    margin-bottom: 0rem;
    border-radius: 0.25rem;
}

.glen-ui-ux-revamp .revamp-search-field .input-field {
    display: block;
    margin-bottom: 0rem;
    min-width: unset;
    border-radius: var(--button-border-radius);
    border: none;
    width: 100%;
    height: 100%;
}

    .glen-ui-ux-revamp .revamp-search-field .input-field .selectric-wrapper {
        height: 100%;
        border-radius: 0.25rem;
    }

        .glen-ui-ux-revamp .revamp-search-field .input-field .selectric-wrapper .selectric {
            padding-left: 0rem;
            height: 100%;
        }

            .glen-ui-ux-revamp .revamp-search-field .input-field .selectric-wrapper .selectric .label {
                padding: 0.5rem 0rem 0.5rem 1rem;
                margin: 0 2.5rem 0 0;
                color: #707070;
                font-size: var(--search-field-font-size);
                height: 100%;
                display: grid;
                place-content: center left;
            }

.glen-ui-ux-revamp .medical-specialty-page.hospital .revamp-search-field .input-field .selectric-wrapper .selectric .label {
    font-size: 0.8rem;
}

.glen-ui-ux-revamp .revamp-search-field .input-field .selectric-wrapper .selectric .selectric-button::after {
    border-color: #707070;
}

.glen-ui-ux-revamp .revamp-search-field .select2.select2-container {
    padding: 0rem;
    height: max-content;
    background-color: white;
    font-size: var(--search-field-font-size);
    border-radius: var(--button-border-radius);
    width: 100% !important;
    height: 100%;
}

    .glen-ui-ux-revamp .revamp-search-field .select2.select2-container .select2-selection--single {
        height: 100%;
        border: none;
    }

        .glen-ui-ux-revamp .revamp-search-field .select2.select2-container .select2-selection--single .select2-selection__rendered {
            color: #707070;
            padding: 0.5rem 0rem 0.5rem 1rem;
            margin: 0 2.5rem 0 0;
            line-height: 2rem;
            height: 100%;
            display: grid;
            place-content: center left;
            border-radius: 0.25rem;
        }

.glen-ui-ux-revamp .revamp-search-field .select2-container--default .select2-selection--single .select2-selection__arrow {
    all: unset;
}

.glen-ui-ux-revamp .revamp-search-field .select2.select2-container .select2-selection--single .select2-selection__arrow b {
    all: unset;
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    position: absolute;
    top: -webkit-calc(50% - 3px);
    top: calc(50% - 3px);
    right: 15px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transition: top .5s ease,-webkit-transform .5s ease;
    transition: top .5s ease,-webkit-transform .5s ease;
    transition: transform .5s ease,top .5s ease;
    transition: transform .5s ease,top .5s ease,-webkit-transform .5s ease;
    border-color: transparent #707070 #707070 transparent;
}

.glen-ui-ux-revamp .find-doctor-page .find-doctor-result-label:empty {
    display: none !important;
}

.glen-ui-ux-revamp .find-doctor-page .doc-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 0;
}

.doc-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 0;
}

.glen-ui-ux-revamp .doc-item {
    background: white;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .glen-ui-ux-revamp .doc-item .doc-upper-wrapper {
        padding: 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        height: 100%;
    }

    .glen-ui-ux-revamp .doc-item .doc-img {
        width: 60%;
        display: block;
        margin: 0 auto 0.5rem;
        aspect-ratio: 1/1;
        overflow: hidden;
        border-radius: 100%;
        /* border-bottom: 5px solid var(--ge-light-green); */
        box-shadow: 10px 10px 20px #cccccc, -10px -10px 20px #ffffff;
    }

        .glen-ui-ux-revamp .doc-item .doc-img img {
            transform-origin: top;
            transform: scale(1.25);
        }

    .glen-ui-ux-revamp .doc-item .doc-name a {
        font-weight: bold;
        color: #00a3a8;
        font-size: 1.25rem;
        line-height: 1.5rem;
        display: block;
    }

    .glen-ui-ux-revamp .doc-item .doc-spec {
        color: #00769C;
        font-size: 1rem;
        line-height: 1rem;
    }

    .glen-ui-ux-revamp .doc-item .doc-subspec p {
        color: #66ADC4;
        text-align: inherit;
        margin-bottom: 0px;
        font-size: 1rem;
        line-height: 1rem;
    }

    .glen-ui-ux-revamp .doc-item .doc-location {
        color: #00556F;
        font-size: 1rem;
        line-height: 1rem;
        width: max-content;
        position: relative;
        margin: auto auto 0;
    }

        .glen-ui-ux-revamp .doc-item .doc-location::before {
            display: block;
            content: '';
            margin-bottom: 0.625rem;
            height: 1px;
            width: 100%;
            background: #00556F;
        }

    .glen-ui-ux-revamp .doc-item .doc-btn-wrapper {
        display: flex;
        gap: 1px;
        margin-top: auto;
    }

        .glen-ui-ux-revamp .doc-item .doc-btn-wrapper img {
            width: 25px;
            height: 25px;
            margin-right: 0.625rem;
        }

        .glen-ui-ux-revamp .doc-item .doc-btn-wrapper a {
            display: flex;
            color: white;
            font-size: 0.71rem;
            font-weight: bold;
            line-height: 0.75rem;
            height: 52px;
            background: var(--ge-light-orange);
            transition: var(--general-transition);
            padding: 0.5rem;
            flex: 1 1 0;
            align-items: center;
            justify-content: center;
        }

            .glen-ui-ux-revamp .doc-item .doc-btn-wrapper a:hover {
                background: var(--ge-orange);
            }

.glen-ui-ux-revamp .find-doctor-page #loadMore {
    margin: 0rem;
    margin-top: 1rem;
}

/* doctor details */
.glen-ui-ux-revamp .doctor-details .doctor-detail-image {
    border: none;
    margin-right: 2rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
    border-radius: 100%;
    /* border-bottom: 8px solid var(--ge-light-green); */
    box-shadow: 30px 30px 60px #cccccc, -30px -30px 60px #ffffff;
}

    .glen-ui-ux-revamp .doctor-details .doctor-detail-image img {
        transform: scale(1.3);
        transform-origin: top;
        aspect-ratio: 1/1;
    }

.glen-ui-ux-revamp .doctor-details h1 {
    font-size: 2rem;
    margin-bottom: 0px;
}

.glen-ui-ux-revamp .doctor-details .label.secondary {
    margin: 0.75rem 0rem;
    background: var(--ge-dark-pantone);
}

.glen-ui-ux-revamp .doctor-details .doc-details {
    margin-bottom: 1rem;
}

    .glen-ui-ux-revamp .doctor-details .doc-details .details-header,
    .glen-ui-ux-revamp .doctor-details .doc-details p {
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .glen-ui-ux-revamp .doctor-details .doc-details .details-header {
        color: #66ADC4;
        margin-bottom: 0.375rem;
    }

    .glen-ui-ux-revamp .doctor-details .doc-details p {
        margin-bottom: 0px !important;
        font-weight: 500;
        color: #707070;
    }

.glen-ui-ux-revamp .doctor-details hr {
    margin-top: 0px;
}

.glen-ui-ux-revamp .doctor-details .table-wrapper {
    width: min(400px, 100%);
    /* border: 2px solid #00A3A8;
    border-radius: var(--button-border-radius);
    overflow: hidden; */
}

.glen-ui-ux-revamp .doctor-details .table-clinic-hours {
    width: 100%;
}

    .glen-ui-ux-revamp .doctor-details .table-clinic-hours .table-clinic-hours thead tr th {
        font-size: 0.75rem;
    }

    .glen-ui-ux-revamp .doctor-details .table-clinic-hours tr:nth-child(even) {
        background-color: #F0F7F9;
    }

.glen-ui-ux-revamp .doctor-details .cta-make-appointment a,
.glen-ui-ux-revamp .doctor-details .ehealth-cta-button {
    padding: 1rem 2rem;
}

    .glen-ui-ux-revamp .doctor-details .cta-make-appointment a:only-child {
        margin-bottom: 0px;
    }

.glen-ui-ux-revamp .doctor-details .addthis_inline_share_toolbox .at-share-btn {
    padding: 0px;
    margin: 0 0.5rem 0 0;
}

    .glen-ui-ux-revamp .doctor-details .addthis_inline_share_toolbox .at-share-btn svg {
        fill: #F9BA5D !important;
    }

.glen-ui-ux-revamp .doctor-detail .doctor-details-related-doctor {
    background: #FEF8EF;
}

.glen-ui-ux-revamp .doctor-details-related-doctor h1 {
    font-size: var(--landing-title-font-size);
    line-height: var(--landing-title-line-height);
    color: var(--ge-light-green);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
}

.glen-ui-ux-revamp .doctor-details-related-doctor .doc-grid-wrapper {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
}

.glen-ui-ux-revamp .doctor-details-related-doctor #loadMoreRelatedSpecDotor {
    margin-top: 3rem;
    margin-bottom: 0rem;
}

/* landing specialty slider */
.glen-ui-ux-revamp .masthead-feature-nav { /* section above margin-top - */
    display: none;
}

.glen-ui-ux-revamp .specialty-slider {
    --section-margin: 1.5rem;
    background: #FEF8EF;
}

    .glen-ui-ux-revamp .specialty-slider .specialty-header {
        --section-color: var(--ge-pantone);
        position: relative;
        font-size: var(--landing-title-font-size);
        font-weight: bold;
        line-height: var(--landing-title-line-height);
        color: var(--section-color);
        text-transform: uppercase;
        margin-bottom: var(--section-margin);
    }

        .glen-ui-ux-revamp .specialty-slider .specialty-header::after {
            content: '';
            display: block;
            background: var(--section-color);
            margin-top: var(--section-margin);
            width: 45%;
            height: 3px;
        }

    .glen-ui-ux-revamp .specialty-slider .yellow-button {
        margin-top: var(--section-margin);
    }

    .glen-ui-ux-revamp .specialty-slider .specialty-sub-header {
        font-size: 1rem;
        color: #6B6F71;
    }

    .glen-ui-ux-revamp .specialty-slider .specialty-item-slider {
        display: grid;
        /* grid-template-columns: repeat(4, 1fr); */
    }

        .glen-ui-ux-revamp .specialty-slider .specialty-item-slider .slick-prev {
            left: -15px;
        }

        .glen-ui-ux-revamp .specialty-slider .specialty-item-slider .slick-next {
            right: -15px;
        }

.glen-ui-ux-revamp .specialty-item { /* for general use */
    height: 350px;
    position: relative;
    overflow: hidden;
}

    .glen-ui-ux-revamp .specialty-item:hover .item-content {
        transform: translateY(0px);
    }

    .glen-ui-ux-revamp .specialty-item .item-img {
        position: relative;
        display: grid;
        height: 100%;
        width: 100%;
    }

        .glen-ui-ux-revamp .specialty-item .item-img::after {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            grid-area: 1/1;
        }

        .glen-ui-ux-revamp .specialty-item .item-img img {
            object-fit: cover;
            object-position: center;
            height: 100%;
            width: 100%;
            grid-area: 1/1;
        }

    .glen-ui-ux-revamp .specialty-item .item-content {
        position: absolute;
        bottom: 0px;
        padding: 1rem;
        font-size: 1rem;
        color: white;
        transform: translateY(calc(100% - 4rem));
        transition: var(--general-transition);
    }

        .glen-ui-ux-revamp .specialty-item .item-content .item-title {
            font-weight: bold;
            line-height: 1.25rem;
            height: 2.5rem;
            margin-bottom: 0.75rem;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }

        .glen-ui-ux-revamp .specialty-item .item-content .item-desc,
        .glen-ui-ux-revamp .specialty-item .item-content .item-desc p {
            line-height: 1.25rem;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 5;
            overflow: hidden;
            margin-bottom: 0px !important;
        }

            .glen-ui-ux-revamp .specialty-item .item-content .item-desc p:nth-of-type(2) {
                display: none;
            }

            .glen-ui-ux-revamp .specialty-item .item-content .item-desc .js-accordion.accordion { /* i dk apa ni */
                display: none;
            }

/* medical-specialty */
.glen-ui-ux-revamp .medical-specialty-page {
    background: #FEF8EF;
}

    .glen-ui-ux-revamp .medical-specialty-page .medical-specialty-row:not(:last-child) {
        margin-bottom: 2rem;
    }

    .glen-ui-ux-revamp .medical-specialty-page .medical-specialty-row .specialty-alphabet {
        --section-color: var(--ge-light-green);
        display: flex;
        margin-bottom: 0.75rem;
    }

        .glen-ui-ux-revamp .medical-specialty-page .medical-specialty-row .specialty-alphabet .alpha {
            position: relative;
            font-weight: bold;
            font-size: 1.75rem;
            color: var(--section-color);
            margin-right: 0.625rem;
        }

        .glen-ui-ux-revamp .medical-specialty-page .medical-specialty-row .specialty-alphabet::after {
            content: '';
            display: block;
            height: 1px;
            width: 100%;
            align-self: center;
            background: var(--section-color);
        }

    .glen-ui-ux-revamp .medical-specialty-page .medical-specialty-row .medical-specialty-slider .slick-track,
    .glen-ui-ux-revamp .revamp-packages-and-promotion .pap-slider-wrapper.slick-track {
        float: left;
    }

    .glen-ui-ux-revamp .medical-specialty-page .alphabetic-search {
        position: relative;
        display: grid;
        gap: 0.15rem;
        grid-template-columns: repeat(8, 1fr);
    }

        .glen-ui-ux-revamp .medical-specialty-page .alphabetic-search .alphabet-item {
            --section-color: var(--ge-light-green);
            cursor: pointer;
            width: 100%;
            aspect-ratio: 1/1;
            color: var(--section-color);
            font-weight: bold;
            font-size: 0.875rem;
            /* border: 1px solid rgb(86 203 207); */
            border-radius: 0.15rem;
            background: transparent;
            transition: all 0.15s ease;
            display: grid;
            place-content: center;
        }

            .glen-ui-ux-revamp .medical-specialty-page .alphabetic-search .alphabet-item.all {
                aspect-ratio: unset;
                grid-column-end: span 2;
                grid-row-end: span 1;
            }

            .glen-ui-ux-revamp .medical-specialty-page .alphabetic-search .alphabet-item.selected,
            .glen-ui-ux-revamp .medical-specialty-page .alphabetic-search .alphabet-item:hover {
                background: var(--section-color);
                color: white;
            }

@media (max-width: 1199.98px) {
    /* footer */
    .glen-ui-ux-revamp .footer-middle .footer-middle-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    /* doctor listing */
    .glen-ui-ux-revamp .find-doctor-page .doc-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .doc-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .glen-ui-ux-revamp .doctor-details-related-doctor .doc-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .glen-ui-ux-revamp .masthead-slides:not(.global) .masthead-slide-image img {
        height: auto;
    }
}

@media (max-width: 1023.98px) {
    /* header */
    .glen-ui-ux-revamp #desktop-header .bottom-header {
        display: none;
    }

    .glen-ui-ux-revamp #desktop-header {
        padding: 0.5rem 0px;
    }

        .glen-ui-ux-revamp #desktop-header .upper-header .header-logo img {
            width: 150px;
        }

        .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-language {
            padding: 0.25rem;
        }

        .glen-ui-ux-revamp #desktop-header .toggle-menu {
            margin-right: 0px;
            margin-left: 1.25rem;
        }
}

@media (max-width: 991.98px) {
    /* hospital */
    .glen-ui-ux-revamp .why-choose-us .choose-us-wrapper,
    .glen-ui-ux-revamp .why-choose-us .choose-us-wrapper.five-item {
        grid-template-columns: repeat(3, 1fr);
    }

    .glen-ui-ux-revamp .doctor-details-related-doctor .doc-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .glen-ui-ux-revamp .hospital-search-doctor {
        background: #F0F7F9;
    }

        .glen-ui-ux-revamp .hospital-search-doctor img {
            display: none
        }

        .glen-ui-ux-revamp .hospital-search-doctor .search-doctor-subheader {
            color: var(--general-grey-color);
            text-shadow: none;
        }

    .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-contact > li {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    /* banner */
    .glen-ui-ux-revamp .revamp-banner img {
        height: 100%;
        object-fit: none;
        object-position: left;
    }

    .glen-ui-ux-revamp .revamp-banner .banner-headers {
        padding: 3rem 0px;
    }

        .glen-ui-ux-revamp .revamp-banner .banner-headers .banner-title {
            font-size: 2.25rem;
            line-height: 2.5rem;
        }

        .glen-ui-ux-revamp .revamp-banner .banner-headers .banner-subtitle {
            font-size: 1rem;
        }

    .glen-ui-ux-revamp .revamp-global-banner .masthead-slides {
        box-shadow: unset;
    }

    .glen-ui-ux-revamp .slick-nav-wrapper {
        position: absolute;
        bottom: 0px !important;
        margin: 0px;
    }

    /* footer */
    .glen-ui-ux-revamp .footer-middle .footer-middle-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .glen-ui-ux-revamp .footer-bottom .legal-nav ul {
        justify-content: left;
        flex-wrap: wrap;
        margin-top: 0.625rem;
    }

    /* global */
    .glen-ui-ux-revamp .global-video-four-buttons .four-buttons {
        display: none;
    }

    .glen-ui-ux-revamp .revamp-global-banner {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .glen-ui-ux-revamp .global-hospital-selection h1 {
        text-align: left;
    }

    .glen-ui-ux-revamp .global-hospital-selection .hospital-selection-wrapper {
        grid-template-columns: unset;
    }

        .glen-ui-ux-revamp .global-hospital-selection .hospital-selection-wrapper .selection-item {
            flex-direction: column;
            text-align: center;
            align-items: center;
            margin: 1rem;
            height: 120px;
        }

            .glen-ui-ux-revamp .global-hospital-selection .hospital-selection-wrapper .selection-item img {
                height: 50px;
                width: 50px;
                margin-right: 0px;
                margin-bottom: 1rem;
                text-align: center;
            }

        .glen-ui-ux-revamp .global-hospital-selection .hospital-selection-wrapper .slick-dots {
            bottom: -10px;
        }

    .glen-ui-ux-revamp .global-hospital-selection .hospital-tab-item .col-md-4:nth-child(2) {
        margin-top: 1.5rem;
        padding-right: 1rem;
    }

    .glen-ui-ux-revamp .global-hospital-selection .hospital-tab-item .col-md-4:nth-child(3) {
        margin-top: 1rem;
        padding-left: 1rem;
        border-left: none;
    }

    .glen-ui-ux-revamp .specialty-slider .specialty-item-slider {
        margin-top: var(--section-margin);
    }

    .glen-ui-ux-revamp .revamp-packages-and-promotion h1 {
        text-align: left;
    }

    .glen-ui-ux-revamp .revamp-packages-and-promotion .yellow-button {
        margin-top: 2.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .glen-ui-ux-revamp .specialties-centres .sc-item-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .glen-ui-ux-revamp .specialties-centres .yellow-button,
    .glen-ui-ux-revamp .hospital-search-doctor .search-doctor-content-wrapper .yellow-button {
        width: 100%;
    }

    .glen-ui-ux-revamp .specialties-centres h1 {
        text-align: left;
    }

    /* doctor listing */
    .glen-ui-ux-revamp .revamp-search-field { /* for general use */
        margin-bottom: 1rem;
    }

    .glen-ui-ux-revamp .find-doctor-page .revamp-search-field {
        height: max-content;
        box-shadow: unset;
        margin-bottom: 1rem;
    }

    .glen-ui-ux-revamp .find-doctor-page .doc-grid-wrapper {
        grid-template-columns: repeat(1, 1fr);
        padding: 1rem 1rem 0 1rem;
        margin-top: 1.5rem;
    }

    .glen-ui-ux-revamp .find-doctor-page .doc-grid-wrapper {
        grid-template-columns: repeat(1, 1fr);
        padding: 1rem 1rem 0 1rem;
        margin-top: 1.5rem;
    }

    .glen-ui-ux-revamp .doc-item .doc-btn-wrapper a {
        font-size: 0.875rem;
        line-height: 1rem;
        padding: 0.75rem;
    }

    /* doctor details */
    .glen-ui-ux-revamp .doctor-details .doctor-detail-image {
        margin-right: 0px;
    }

    .glen-ui-ux-revamp .doctor-details .col-md-8 {
        margin-top: 2rem;
    }

    .glen-ui-ux-revamp .doctor-details-related-doctor .doc-grid-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    /* medical specialty */
    .glen-ui-ux-revamp .medical-specialty-page .revamp-search-field.doctor {
        margin-bottom: 2rem;
    }

    .glen-ui-ux-revamp .specialty-item .item-content {
        transform: translateY(0px);
    }

        .glen-ui-ux-revamp .specialty-item .item-content .item-title {
            height: max-content;
        }

    /* facility */
    .glen-ui-ux-revamp .facilities-page [data-target="hospital-filter"] {
        margin-top: 1.25rem;
    }

    .glen-ui-ux-revamp .facility-row .facility-title {
        white-space: unset
    }

    .glen-ui-ux-revamp .facility-row .facility-title-wrapper::after {
        display: none;
    }

    .glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

        .glen-ui-ux-revamp .facilities-page .facility-row-grid-wrapper .facility-grid-item {
            height: 175px;
        }

    .glen-ui-ux-revamp .why-choose-us .choose-us-wrapper.four-item {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639.98px) {
    .glen-ui-ux-revamp .footer-top ul {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .glen-ui-ux-revamp .footer-middle .footer-middle-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .glen-ui-ux-revamp .why-choose-us .choose-us-wrapper,
    .glen-ui-ux-revamp .why-choose-us .choose-us-wrapper.five-item {
        grid-template-columns: repeat(2, 1fr);
    }

    .glen-ui-ux-revamp .specialty-slider .yellow-button {
        margin-left: auto;
        margin-right: auto;
    }
}

/* MISC */
.general-text-color {
    font-size: 1rem;
    color: var(--general-grey-color);
}

.yellow-button {
    display: table;
    background-color: var(--ge-light-orange);
    color: #fff;
    border: 1px solid var(--ge-light-orange);
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    text-align: center;
    transition: var(--general-transition);
}

    .yellow-button:hover {
        border-color: var(--ge-red);
        color: var(--ge-red);
        background: white;
    }

.tc-md-tl {
    text-align: center;
}

.slick-initialized .slick-prev.square-button,
.slick-initialized .slick-next.square-button {
    --section-color: var(--ge-light-blue);
    --section-font-size: 20px;
    border-radius: 50%;
    background: var(--section-color);
    border-color: var(--section-color);
    height: 25px;
    width: 25px;
}

    .glen-ui-ux-revamp .slick-initialized .slick-prev.square-button .g-ic-angle-left,
    .glen-ui-ux-revamp .slick-initialized .slick-prev.square-button .g-ic-angle-left:before,
    .glen-ui-ux-revamp .slick-initialized .slick-next.square-button .g-ic-angle-right,
    .glen-ui-ux-revamp .slick-initialized .slick-next.square-button .g-ic-angle-right:before {
        font-size: var(--section-font-size);
        line-height: var(--section-font-size);
        color: white;
    }

@media (max-width: 767.98px) {
    .tc-md-tl {
        text-align: left;
    }
}

@media (width > 992px) {
    .glen-ui-ux-revamp .global-hospital-selection .hospital-tab-item,
    .glen-ui-ux-revamp .specialty-slider.ez-animate > .container > .row {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

.glen-ui-ux-revamp .masthead-slides .slick-dots li:last-child {
    margin-right: 0px !important;
}

.glen-ui-ux-revamp .footer-social-links {
    margin-top: 1.5rem;
}

    .glen-ui-ux-revamp .footer-social-links .social-title {
        color: var(--ge-light-green);
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 0.625rem;
    }

    .glen-ui-ux-revamp .footer-social-links .social-links img {
        width: 30px;
        height: 30px;
        margin-right: 0.5rem;
    }

.mobile-search {
    color: var(--ge-light-green);
    font-size: 15px;
    display: none;
    margin-top: 3px;
}

@media (width < 768px) {
    .mobile-search {
        display: block;
    }

    .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-language {
        width: 50px;
    }

    .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-contact {
        display: none;
    }

    .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-search {
        margin-left: auto;
    }

    .header-search > .d-inline-block {
        z-index: 1;
        /* left: 0px;
        top: 10px;
        position: fixed; */
        width: 100%;
        padding: 0rem 0.5rem;
        display: block !important;
    }

    .glen-ui-ux-revamp #desktop-header .upper-header .upper-header-content .header-search #nav-search-box {
        width: 100%;
        margin-top: -10px;
    }
}

.masthead-slide-content {
    left: 25%;
    top: 25%;
    transform: translateY(-25%) translateX(-25%);
    max-width: 30vw;
}

/* new footer with MH360 */
.mh360-footer, .mh360-footer p {
    text-align: center;
    color: var(--general-grey-color);
    font-size: 14px;
}

    .mh360-footer .app-download {
        display: flex;
        gap: 0.5rem;
        max-width: 300px;
        margin: 0rem auto;
    }

        .mh360-footer .app-download a {
            flex-grow: 1;
            display: block;
        }

        .mh360-footer .app-download img {
            width: 100%;
        }

@media (max-width: 768px) {
    .mh360-footer {
        padding-bottom: 2rem;
    }
}
