:root {
    --primary: #08436b;
    --bs-primary: #0E9BC8;
    --bs-secondary: #FF8300;
    --dark-content: #0a0b0c;
    /*--secondary: #FF8300;*/
    --secondary: #08436b;
    --primary-color: #404040;
    --ft-background: #282b38;
    --primary-alfa: rgba(16,164,206,0.12);
    --secondary-alfa: rgba(255,230,204,0.5);
    --greyscale: #f2f6f7;
    --green: #28a745;
    --green-alfa: rgba(40,157,39,0.75);
    --green-alfa-bullets: rgba(40,157,39,0.2);
    --red-alfa-bullets: rgba(157,39,39,0.2);
}

body {
    color: #1d1d1d;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

#MobileLeadForm {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.text-anchor {
    display: block;
    text-align: right;
    color: var(--primary);
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
}

    .video-container iframe, .video-container object, .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

div.section {
    padding: 10px 0 10px;
    border-bottom: 2px solid #ebeeee;
}

.section-title {
    margin-bottom: calc(1.9rem + 0.3vw);
    font-size: 26px;
    font-weight: 600;
    color: #2d2d32;
}

.card-content p {
    margin-bottom: 5px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.bg-color-primary {
    background-color: #008fe2 !important
}

.bg-color-tertiary {
    background-color: #3aabdd !important
}

.bg-color-secondary {
    background-color: #FF8300 !important
}

a {
    text-decoration: none;
}

.owl-carousel .owl-stage, .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: auto;
    touch-action: auto;
}

.owl-dots {
    text-align: center;
    margin: 15px 0 0
}

    .owl-dots span {
        display: inline-block;
        font-size: 0;
        height: 10px;
        width: 10px;
        border-radius: 100%;
        margin-right: 10px;
        background-color: #c0c0c0;
        cursor: pointer;
        margin-top: 0;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

        .owl-dots span:hover, .owl-dots .owl-dot.active span {
            background-color: var(--primary) !important;
            /* height: 15px;
            width: 15px;
            margin-bottom: 2px;*/
        }



.owl-carousel .owl-nav button {
    position: absolute;
    top: calc(50% - 24px);
    left: -30px;
    right: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    line-height: 63px !important;
    display: block;
    border-radius: 100%;
    text-align: center;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: ease all 0.3s;
    background: transparent !important;
}

.owl-carousel:hover .owl-nav button {
    opacity: 1;
    visibility: visible;
    left: -65px;
    right: auto;
}

.owl-carousel .owl-nav button.owl-next {
    right: -30px;
    left: auto;
}

.owl-carousel:hover .owl-nav button.owl-next {
    right: -65px;
    left: auto;
}

.owl-carousel .owl-nav button span {
    background-color: #fff !important;
    border: 1px solid #eee !important;
    display: flex;
    border-radius: 100%;
    margin: 0 7.5px;
    transition: ease all 0.3s;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.owl-carousel:hover .owl-nav button:hover span {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #fff !important;
}

.modal-header .close {
    border: 0;
    background: transparent;
    font-size: 1.1rem;
}

img {
    max-width: 100%;
}

.brand-logo img {
    max-width: 55px;
}

.mobile-navigation, .main-nav .logo {
    display: none;
}

.bullet-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .bullet-list li {
        padding-left: 25px;
        position: relative;
        line-height: 1.8;
        margin-bottom: 5px;
    }
/* menu */
.nav > li > a {
    color: #404040;
    font-size: 16px;
    padding: 28px 20px;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    position: relative;
    border-width: 0 0 0 1px;
    line-height: 1;
}

.nav > li .sub-menu {
    background-color: #fff;
    display: block;
    left: 0;
    list-style: none;
    opacity: 0;
    padding: 5px 0;
    position: absolute;
    visibility: hidden;
    width: 220px;
    z-index: 10;
    margin-top: 20px;
    box-shadow: 0 1px 40px 0 rgba(0,0,0,0.1);
    transition: all .8s;
    font-weight: normal;
    border-radius: 4px;
}

    .nav > li .sub-menu li > .sub-menu {
        left: 220px;
        transition: all .5s;
    }

    .nav > li:hover > .sub-menu, .nav > li .sub-menu li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }

    .nav > li .sub-menu li:hover > .sub-menu {
        top: 0;
    }

    .nav > li .sub-menu li {
        position: relative;
    }

        .nav > li .sub-menu li a {
            color: #666;
            display: block;
            font-size: 14px;
            padding: 5px 25px 5px 15px;
            text-transform: capitalize;
            position: relative;
            transition: all .15s linear;
            -webkit-transition: all .15s linear;
            -moz-transition: all .15s linear;
            -o-transition: all .15s linear;
            font-weight: 500;
            border-bottom: 1px solid var(--greyscale);
        }

    .nav > li, .nav > li .sub-menu li {
        position: relative;
    }

span.dd-trigger {
    position: absolute;
    right: 10px;
}

.navbar-nav > li > a > span.dd-trigger {
    right: 0;
}


.nav > li .sub-menu li:hover {
    background-color: var(--primary-alfa);
    transition: ease all 0.3s;
}

/* end of menu css */

.headerrow {
    padding: 5px 0;
    background: #fff;
    box-shadow: 0 0 50px 0 rgba(0,0,0,0.1);
    width: 100%;
    display: flex;
    align-items: center;
    height: 75px;
    position: relative;
    top: 0;
    z-index: 100;
}

header, .header-navigation, .main-nav > ul, header .calls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

    header .fa:not(.mobile-navigation) {
        display: inline-block;
        margin-right: 5px;
    }

    header .call-toll, header .call-app, header .tollLapro, header .toll1Urology {
        border-radius: 24px;
        padding: 0.5rem 1.3rem;
        color: #fff;
        background: var(--primary);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 5px;
        transition: ease all 0.3s;
    }

    /*    header .call-toll {
        background: #fff;
        border: 1px solid var(--dark-content);
    }*/

    header .tollLapro {
        color: #fff;
        background: var(--primary);
    }

    header .toll1Urology {
        color: #fff;
        background: var(--primary);
    }

    header .call-toll1, header .call-app {
        border: 1px var(--primary);
        border-radius: 24px;
        padding: 0.5rem 1.3rem;
        color: #1d1d1d;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 5px;
        transition: ease all 0.3s;
    }

    header .call-toll1 {
        color: #fff;
        background: var(--primary);
        border: 2px solid var(--primary);
    }

    header .call-app {
        background: var(--green);
        color: #fff;
        border: 2px solid var(--green);
    }

        header .call-app:hover {
            background: var(--green-alfa)
        }




    header .tollLapro:hover {
        background: var(--green-alfa)
    }




    header .toll1Urology:hover {
        background: var(--green-alfa)
    }



/*.main-banner {*/
/*background: url('https://www.essencehealth.com/campaigns/images/bannermaketingaman.jpg') left top no-repeat;*/
/*background: url('http://localhost:57203//campaigns/images/bannermaketingaman.jpg') left top no-repeat;
    background-size: 100% 600px;
   
}*/



.sticky-form-booking {
    box-shadow: 0px 8px 28px -6px rgb(0 36 62 / 12%), 0px 18px 88px -4px rgb(0 36 62 / 14%);
    box-shadow: 0px 4px 8px -6px rgba(0,36,62, 0.12), 0px 8px 28px -4px rgba(0,36,62,0.14);
    padding: 40px;
    border-radius: 12px;
    max-width: 450px;
}

    .sticky-form-booking .form-group {
        margin-top: 15px;
    }

    .sticky-form-booking .btn-round-primary-full {
        margin: 20px 0
    }

    .sticky-form-booking.stick {
        position: fixed;
        z-index: 10;
        top: 0;
    }


    .sticky-form-booking.inserted.stick {
        box-shadow: none;
        top: 0 !important;
        margin-bottom: 25px;
        border-bottom: 1px solid #999;
        border-radius: 0;
        padding: 0 0 25px;
    }

.main-banner .banner {
    min-height: 500px;
}

.main-banner .banner-img {
    -webkit-animation: up-down 2.5s infinite alternate;
    animation: up-down 2.5s infinite alternate;
    position: relative;
}

@keyframes up-down {
    0% {
        -webkit-transform: translatey(0);
        transform: translatey(0);
    }

    100% {
        -webkit-transform: translatey(-10px );
        transform: translatey(-10px );
    }
}
/* banner form - lead-form*/
.lead-form {
    box-shadow: 0 19px 34px 0 rgba(51,51,51,.06) !important;
    position: fixed;
    z-index: 5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: ease top 0.3s;
    margin-top: 4%;
}

.lead-form-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

    .lead-form-body strong, .modal-title strong {
        color: var(--secondary);
    }

.modal-body .lead-form-body {
    padding: 0;
}

.form-control, .form-select {
    display: block;
    width: 100%;
    font-weight: 600;
    color: #696969;
    background-color: #f8f8f8;
    background-clip: padding-box;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    height: calc(2em + 1.25rem + 4px );
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    line-height: 2;
    border-radius: 3px;
    border: 0;
    margin: 1rem 0;
}

.lead-form-body h2 {
    font-size: 1.6rem;
    margin: 1rem 0 2.5rem 0;
}

.lead-form-body .form-control:focus, .lead-form-body .form-select:focus {
    outline: none;
    box-shadow: none;
    background-color: #f8f8f8;
}

.formbtn {
    background: var(--primary);
    padding: 0.5rem 2.1875rem;
    font-size: 1.2rem;
    line-height: 2;
    border-radius: 36px;
    width: 100%;
    cursor: pointer;
    color: #fff;
    border: 0;
    font-weight: 500;
    max-width: 350px !important;
    margin: 0 auto;
    text-align: center;
    display: block
}

    .formbtn:hover {
        /*        opacity: 0.8;
        color: #fff;*/
    }

.modal-body .formbtn {
    max-width: 100% !important
}

.essence-content-body {
    display: flex;
    justify-content: space-between;
}

.main-content-left {
    width: 100%;
    max-width: calc(100% - 400px);
}

.book-form-right {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.page-banner {
    position: absolute;
    width: 100%;
    /* top: 75px; */
    left: 0;
    background-color: #F1F1F1;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    min-height: 470px;
    background-image: url(images/ban.webp);
    background-attachment: fixed;
    background-position: bottom !important;
}

.banner-text {
    display: flex;
    flex-flow: column;
    padding: 100px 12px;
    position: relative;
}

    .banner-text .banner-title {
        padding-top: calc(0.275rem + .2vw);
        font-size: calc(1.275rem + .3vw);
        font-weight: 600;
    }

    .banner-text ul {
        padding: 0.5rem 0
    }

        .banner-text ul li {
            list-style: none;
            font-size: calc(0.975rem + .2vw);
            line-height: 1.8;
            padding-left: 25px;
            position: relative;
        }

            .banner-text ul li::before, .whybox li:before, .bullet-list li::before {
                content: "\f00c";
                font-weight: 900;
                font-family: 'Font Awesome 6 Free';
                font-size: 14px;
                display: flex;
                position: absolute;
                left: 0;
                top: 7px;
                color: var(--primary);
                width: 18px;
                height: 18px;
                background: var(--primary-alfa);
                border-radius: 100%;
                padding-left: 5px;
                align-items: center;
                justify-content: center;
            }

            .banner-text ul li::before {
                background: var(--green-alfa-bullets);
                color: var(--green)
            }

.treatment-info .bullet-list li::before {
    background: var(--red-alfa-bullets);
    color: darkred
}
/* counter Css*/
span.count-num, span.add-on {
    color: var(--secondary);
    font-size: 2.5rem;
}

.rounded-5 {
    border-radius: 0.5rem !important;
}

.service-feature .grid-inner {
    transition: ease all 0.3s
}

.service-feature .h5 {
    color: #555;
    font-size: 16px;
}

.btn-book-appointment {
    width: 100%;
    display: block;
    text-align: center;
    margin: 15px auto;
    max-width: 720px;
    font-weight: 600;
}


.btn-whatsapp {
    background: #28a745;
    width: 100%;
    display: block;
    text-align: center;
    margin: 15px auto;
    max-width: 720px;
    font-weight: 600;
}

.btn-call-us1 {
    background: var(--primary);
    border: 2px solid var(--primary);
    width: 100%;
    display: block;
    text-align: center;
    margin: 15px auto;
    max-width: 720px;
    font-weight: 600;
    align-items: center;
    color: #fff;
}


.btn-book-apnt-secondary {
    background: #fff;
    border: 2px solid var(--primary);
    width: 100%;
    display: block;
    text-align: center;
    margin: 15px auto;
    max-width: 720px;
    font-weight: 600;
    align-items: center;
    color: var(--primary);
}



.btn-call-us {
    width: 100%;
    display: block;
    text-align: center;
    margin: 15px auto;
    max-width: 720px;
    font-weight: 600;
    align-items: center;
    gap: 5px;
}

.mobile-row .formbtn {
    margin: 15px auto;
    width: 100%;
}
/* treatment-info */
.treatment-info strong {
}

.treatment-info .formbtn {
    /*    margin-bottom: 0;*/
}
/*whay essence-health section*/

.whybox {
    position: relative;
    background: #fff;
}

.card-title, .testimoni-info-inner .testimoni-name-designation h5 {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.whybox-content {
    display: flex;
    flex-flow: column;
    gap: 10px;
    justify-content: flex-start;
    transition: ease all 0.3s;
    border-radius: 0;
    position: relative;
    padding: 0 0 15px 0;
    border-bottom: 1px solid var(--greyscale);
    margin-bottom: 15px;
}

    .whybox-content:last-child {
        margin-bottom: 0;
        border: 0;
    }

    .whybox-content .why-head {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .whybox-content .why-body {
        display: none
    }

    .whybox-content .why-img-icon {
        height: 40px;
        width: 40px;
        background: #f0f0f5;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.whybox .icon {
    max-height: 20px;
    font-size: 20px;
    color: #1d1d1d;
}

.whybox img {
    max-height: 20px;
    margin: 0 auto;
}

.whybox h3 {
    margin-bottom: 15px;
}

.whybox p {
    margin-bottom: 0;
}

.whybox li {
    text-align: left;
    position: relative;
    font-size: 18px;
    line-height: 1.8;
    padding-left: 30px;
}



.whybox .category-number {
    font-size: 20px;
    font-weight: 600;
    display: block;
    color: var(--secondary);
}


/*end-of-whay essence-health section*/
/*card-block-section*/
.slide-display {
    padding: 2.5rem 0;
}


.card-block .doctor, .card-block .hospital {
    display: flex;
    gap: 15px;
    width: 100%;
    padding: 35px;
    border-radius: 4px;
    flex-flow: row;
    background-color: #fff;
    position: relative;
}

.card-block img {
    width: 128px;
    max-width: 130px;
    max-height: 128px;
}

.card-block .card-title {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}



.card-block-buttons {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    justify-content: flex-start;
    gap: 10px;
}

.card-meta .rating {
    font-size: 14px;
    color: var(--bs-success);
    margin: 5px 0;
}

.card-meta i {
    padding-right: 5px;
}

.card-block-buttons .call-toll {
    border: 1px solid var(--primary);
    background: var(--primary);
    border-radius: 24px;
    padding: 8px 8px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    transition: ease all 0.3s;
}

    .calls .call-toll:hover, .card-block-buttons .call-toll:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primar)
    }


.card-block-buttons .call-toll1 {
    border: 1px solid var(--primary);
    background: var(--primary);
    border-radius: 24px;
    padding: 8px 8px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    transition: ease all 0.3s;
}


    .calls .call-toll1:hover, .card-block-buttons .call-toll1:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary)
    }



.card-block-buttons .tollLapro {
    border: 1px solid var(--primary);
    background: var(--primary);
    border-radius: 24px;
    padding: 8px 8px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    transition: ease all 0.3s;
}


    .calls .tollLapro:hover, .card-block-buttons .tollLapro:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primar)
    }




.card-block-buttons .toll1Urology {
    border: 1px solid var(--primary);
    background: var(--primary);
    border-radius: 24px;
    padding: 8px 8px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    transition: ease all 0.3s;
}


    .calls .toll1Urology:hover, .card-block-buttons .toll1Urology:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primar)
    }




.card-block-buttons .call-app {
    border-radius: 24px;
    padding: 8px 8px;
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    transition: ease all 0.3s;
    width: 186px
}

    .card-block-buttons .call-app .icon {
        color: var(--green);
        font-size: 20px;
        font-weight: 600;
    }


.card-block-buttons .tollLapro {
    border-radius: 24px;
    padding: 8px 8px;
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    transition: ease all 0.3s;
    width: 186px
}

    .card-block-buttons .tollLapro .icon {
        color: var(--green);
        font-size: 20px;
        font-weight: 600;
    }


.card-block-buttons .toll1Urology {
    border-radius: 24px;
    padding: 8px 8px;
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    transition: ease all 0.3s;
    width: 186px
}

    .card-block-buttons .toll1Urology .icon {
        color: var(--green);
        font-size: 20px;
        font-weight: 600;
    }


.calls .call-app:hover .card-block-buttons .call-app:hover {
    background: var(--green-alfa)
}



.calls .tollLapro:hover .card-block-buttons .tollLapro:hover {
    background: var(--green-alfa)
}



.calls .toll1Urology:hover .card-block-buttons .toll1Urology:hover {
    background: var(--green-alfa)
}

.top-doctors .card-block img {
    border-radius: 100%
}

.top-doctors .card-block-info {
}

.top-doctors .card-block-buttons {
    display: flex;
    /*    justify-content: stretch;*/
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 195px;
}

    .top-doctors .card-block-buttons a {
        margin: 0;
        display: block;
        width: 100%;
        text-align: center;
    }

        .top-doctors .card-block-buttons a i {
            padding-right: 5px
        }

.card-block .img-container {
    /*padding: 5px; background: #fff; border: 1px solid var(--greyscale); border-radius: 4px;*/
}

    .card-block .img-container img {
        max-width: 300px;
        width: auto;
    }

.section.our-hospitals {
    border-bottom: 0;
}

.our-hospitals .img-container {
    width: 100%;
}

.our-hospitals picture.hospital-logo {
    /*    border: 1px solid #eee;*/
    display: block;
    padding: 5px;
    text-align: center;
    border-radius: 4px;
}

.our-hospitals .card-block .img-container img {
    max-width: 300px;
    width: auto;
}

.card-content span {
    color: #404040;
    font-weight: 700;
    font-size: 12px;
}
/*end-of-card-block*/
/*section calculate-button*/
.section.calculate-button {
    padding-top: 30px;
    position: relative;
    padding-bottom: 10px;
}

    /*.section.calculate-button::before {*/
    /*    content: '';*/
    /*    height: 70%;*/
    /*    width: 2px;*/
    /*    background: var(--greyscale);*/
    /*    position: absolute;*/
    /*    left: 48%;*/
    /*    top: 15%;*/
    /*}*/

    .section.calculate-button .cost-btn {
        color: var(--primary);
        padding: 15px;
        width: auto;
        margin: auto;
        font-size: calc(0.975rem + .3vw);
        display: flex;
        align-items: center;
    }

        .section.calculate-button .cost-btn .icon {
            margin-right: 10px;
            font-size: 2.5rem;
        }

/*testimonials*/
.section.testimoni {
    position: relative;
}


.testimoni-card-block {
    padding: 15px 15px 0;
    background-color: #fff;
    max-width: 100%;
    border-radius: 10px;
    position: relative;
    margin: 15px auto 0;
    overflow: hidden;
}

.testimoni-author-ratting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.testimoni-info-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .testimoni-info-inner .testimoni-img {
        max-width: 60px;
        margin-right: 15px;
        margin-bottom: 0;
    }

.testimoni-img img {
    border-radius: 100%;
}

.testimoni-info-inner .testimoni-name-designation h5 {
    font-weight: 600;
    margin-bottom: 0;
}

.testimoni-info-inner .testimoni-name-designation label {
    font-size: 14px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.testimoni p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.8;
    min-height: 130px;
    color: #36454F;
}


/*.testimoni-card-block::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: transparent;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.testimoni-card-block:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
  background-color: var(--secondary);
}*/
.testimoni-card-block .auther + .auther {
    margin-top: 15px;
}

.product-ratting {
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .product-ratting img {
        max-height: 12px;
    }

/*Faq-Section*/
.section.faq-section {
    border: 0;
    border-radius: 4px;
    border-bottom: 2px solid #eee;
}

.faq-section .faq-card {
    margin: 0 0 -2px 0;
    border-bottom: 2px solid #ebeeee;
    background: transparent;
}

    .faq-section .faq-card:last-child {
        border: 0
    }

.faq-section .faq-info {
    display: none;
    padding: 0 15px 20px 20px;
    transition: ease height 0.3s;
    height: 0;
}

    .faq-section .faq-info ul {
        padding-left: 15px;
        list-style: disc;
        margin-left: 15px;
    }

.faq-section .faq-title {
    margin: 0;
    padding: 20px 60px 20px 5px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

/*    .faq-section .faq-title::before {
        position: absolute;
        content: "\f067";
        font-family: "Font Awesome 5 Free";
        right: 0;
        top: 10px;
        font-size: 16px;
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 40px;
        transition: ease all 0.3s;
    }

.faq-section .faq-card.active .faq-title::before {
    transform: rotate(180deg);
    content: "\f068";
}*/

.faq-section .faq-card.active .faq-info {
    height: max-content;
}

.faq-section, .section-custom-medical {
    background: #fff;
}

.section-custom-medical {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 50;
}
/*call to action footer*/
.section-fixed-callback {
    position: relative;
    width: 100%;
    background: var(--primary);
    color: #fff;
    margin-top: calc(0.5rem + .3vw);
}

.fixed-callback-body {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0px;
}

    .fixed-callback-body form {
        display: flex;
    }

    .fixed-callback-body .title {
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
        margin: 0;
    }

    .fixed-callback-body .input-group {
        max-width: 30%;
    }

    .fixed-callback-body #contactnum {
        padding: 0 15px !important;
        height: 38px;
        margin: 0 -1px 0 0;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        border: 0;
    }

    .fixed-callback-body #contactnum1 {
        padding: 0 15px !important;
        height: 38px;
        margin: 0 -1px 0 0;
        border-top-left-radius: 4px !important;
        border-bottom-left-radius: 4px !important;
        border: 0;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }



.fixed-callback-body .btn {
    background: var(--bs-secondary);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-color: var(--bs-secondary)
}

    .fixed-callback-body .btn:focus {
    }
/*footer-section*/

.footer-navigation {
    padding-top: 92px;
    padding-bottom: 20px;
    background: #171b2a;
    color: #f2f2f2;
}

.footer-copyright {
    background: var(--ft-background);
    text-align: center;
    color: #f2f2f2;
    padding: 1.6rem 0;
}

.footer-menu ul {
    margin: 0 0 1.8rem;
    padding: 0;
}

    .footer-menu ul li {
        list-style: none;
        margin-top: 0px;
        margin-bottom: 15px;
        position: relative;
    }

        .footer-menu ul li a {
            position: relative;
            color: #f2f2f2;
            transition: ease all 0.3s;
        }

            .footer-menu ul li a::before {
                position: absolute;
                content: "//";
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                transition: inherit;
                opacity: 0;
                visibility: hidden;
                margin-left: -20px;
                color: var(--primary);
            }

        .footer-menu ul li:hover a {
            padding-left: 20px;
            color: var(--primary);
        }

            .footer-menu ul li:hover a::before {
                opacity: 1;
                visibility: visible;
                margin-left: 0;
            }

    .footer-menu ul ul {
        margin-left: 15px;
    }

.footer-menu h4 {
    font-size: 20px;
    color: #f2f2f2;
}

.footer-address {
    margin-bottom: 25px;
}

.appointment-overlay {
    position: fixed;
    height: 100vh;
    overflow: hidden;
    width: 100vw;
    background: rgba(65,65,65,0.8);
    top: 0;
    left: 0;
    z-index: 100;
}

@media (min-width: 1200px) {
    .page-banner.mobile-banner {
        display: none;
    }

    .navbar-nav {
        flex-direction: row;
    }

    nav.main-nav {
        margin-right: 3rem;
    }

    .mobile-navigation {
        display: none;
    }

    .mobile-row {
        display: none;
    }

    .main-banner {
        padding: 50px 0 0;
    }

    .service-feature {
        position: relative;
        z-index: 4;
        margin: 80px;
    }

    .h-shadow:hover {
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    }

    .service-feature .grid-inner .f-b-desc {
        transform: translateY(10px );
        transition: transform .3s ease;
        will-change: transform;
        margin-top: -22px;
    }

    .service-feature .grid-inner:hover .f-b-desc {
        transform: translateY(0);
    }

    .service-feature {
        max-width: 850px;
        margin: 20px auto;
        /*margin-top: 25%;*/
    }

    /*.faq-section {
        background: var(--greyscale);
        padding: 4rem 2rem;
    }*/

    .faq-container {
        /*display: grid;
        grid-auto-flow: row;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 20px;*/
    }

    /* .faq-container .faq-card {
            border: 0;
            background: #fff;
            padding-left: 15px;
            margin-bottom: 15px;
            border-radius: 4px;
        }*/

    .card-block-buttons {
        min-width: 200px;
    }

    .our-hospitals .card-block-info {
        max-width: calc(83% - 362px );
    }

    .section.treatment-info {
        padding-top: 30px 0;
    }
}

@media (max-width: 1199px) {
    /*body {*/
    /*    padding-bottom: 42px;*/
    /*}*/

    #MobileLeadForm {
        display: block;
    }

    body, .maincontainer {
        overflow-x: hidden;
    }

    .page-banner {
        background-position: -0px 0;
        background-size: cover;
        min-height: unset;
    }

        .page-banner.large-device-banner {
            display: none;
        }

    .banner-text .banner-title {
        /*        font-size: 1.2rem;*/
        /*        max-width: 77%*/
        font-weight: 700;
    }

    .banner-text ul li {
        font-size: 14px;
        font-weight: 300;
    }

    .page-banner.mobile-banner {
        max-height: 255px
    }

    .banner-text ul li::before, .bullet-list li::before {
        top: 5px
    }

    div.section {
        padding: 10px 0 10px;
        border-bottom: 2px solid #eee;
    }

    .footer-navigation .container {
        padding: 0 15px;
    }

    .mobile-navigation {
        display: block;
        padding: 5px 6px;
    }

    header .call-app, header .call-toll {
        border: 0;
        padding: 0;
        background: #fff !important;
        color: var(--primary) !important;
        text-align: center;
        font-size: 1.2rem;
    }

    header .call-app, header .tollLapro {
        border: 0;
        padding: 0;
        background: #fff !important;
        color: var(--primary) !important;
        text-align: center;
        font-size: 1.2rem;
    }

    header .call-app, header .toll1Urology {
        border: 0;
        padding: 0;
        background: #fff !important;
        color: var(--primary) !important;
        text-align: center;
        font-size: 1.2rem;
    }

        header .call-app span, header .call-toll span, #headerCity, .medical-schedules .box-one,
        .medical-schedules .box-four, .owl-nav {
            display: none;
        }

    header .tollLapro span, header .tollLapro span, #headerCity, .medical-schedules .box-one,
    .medical-schedules .box-four, .owl-nav {
        display: none;
    }


    header .toll1Urology span, header .toll1Urology span, #headerCity, .medical-schedules .box-one,
    .medical-schedules .box-four, .owl-nav {
        display: none;
    }


    header .call-app, header .call-toll1 {
        border: 0;
        padding: 0;
        background: #fff !important;
        color: var(--primary) !important;
        text-align: center;
        font-size: 1.2rem;
    }

        header .call-app span, header .call-toll1 span, #headerCity, .medical-schedules .box-one,
        .medical-schedules .box-four, .owl-nav {
            display: none;
        }

    nav.main-nav {
        background: #fff;
        z-index: 100;
        position: fixed;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        left: -100%;
        top: 0;
        transition: ease left 0.3s
    }

        nav.main-nav.opened {
            left: 0
        }

    .navbar-nav {
        max-height: calc(100vh - 78px);
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 25px;
    }

    .nav > li .sub-menu {
        padding-left: 15px;
    }

    .main-nav > ul, .nav > li > a {
        display: block;
    }

    .nav > li > a {
        padding: 8px 25px 8px 16px;
    }

    .navbar-nav > li > a > span.dd-trigger {
        right: 10px;
    }

    .nav > li .sub-menu {
        display: none;
        position: relative;
        top: 0;
        margin: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
    }

        .nav > li .sub-menu li > .sub-menu {
            left: 0;
            box-shadow: none;
            padding-left: 15px;
        }

    .nav li.has-submenu::after {
        right: 10px;
        top: 7px;
    }

    nav.main-nav.opened .logo {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 15px 0 15px 15px;
        margin-bottom: 1rem;
    }

    nav.main-nav.opened .close {
        padding: 12px 15px 3px 3px
    }

    .lead-form {
        position: fixed;
        background: #fff;
        left: 0;
        top: unset !important;
        bottom: -500px;
        z-index: 110;
        margin: 0;
        height: auto;
        overflow-y: auto;
        width: 100%;
        box-shadow: 0 0 34px 0 rgba(65,65,65,0.25) !important;
        border-radius: 0;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        transition: ease bottom 0.3s;
    }

        .lead-form.lead-form-mobile {
            position: relative;
            bottom: 0;
            border-radius: 0;
            box-shadow: none !important;
            z-index: auto;
            border: 0;
        }

        .lead-form.slide-open {
            bottom: 0;
        }

    .lead-form-body, .lead-form-body h2 {
        padding-top: 0;
        margin-top: 0;
    }

    .service-feature .grid-inner {
        box-shadow: none !important;
        padding: 0 3px !important;
        margin: 0;
        border-radius: 0 !important;
    }

        .service-feature .grid-inner.hospitals {
            padding-left: 12px !important;
        }

        .service-feature .grid-inner.patient {
            padding-right: 12px !important;
        }

    .service-feature .count-num, .service-feature .add-on {
        font-size: 1.2rem;
    }

    .service-feature .h5 {
        font-size: 16px;
        padding: 0;
        font-weight: 700 !important;
        font-family: 'Poppins';
        color: #2d2d32;
    }

    .service-feature.mt-5 {
        margin-top: 15px !important;
    }

    .medical-schedules .box-two {
        padding: 15px;
    }

    .box-two form > div {
        width: calc(100% - 155px);
    }

    #ctaphoneno {
        margin-right: 0;
        width: 100%;
        font-size: 1rem;
    }

    .fa-xmark.close {
        position: absolute;
        right: 0;
        top: 8px;
        padding: 15px 15px 0 0;
        display: block;
        text-align: right;
        font-size: 1rem;
        z-index: 10;
    }

    .box-two {
        border-radius: 4px
    }

    header .mobile-navigation, header .calls i {
        font-size: 1.2rem;
        margin-right: 0 !important;
    }

    header .calls, .header-navigation {
        gap: 10px
    }

        header .calls i {
            font-size: 1.4rem;
            margin-right: 0 !important;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            header .calls i.fa-whatsapp {
                font-size: 1.6rem;
                color: var(--green)
            }

    .top-doctors .card-block img {
        width: 80px;
        height: 80px;
        position: absolute;
    }

    .top-doctors .card-block-info {
        padding-left: 150px;
    }

    .card-block .doctor, .card-block .hospital {
        flex-wrap: wrap;
        padding: 5px;
        gap: 25px;
    }

        .card-block .doctor + .doctor, .card-block .hospital + .hospital {
            margin-top: 25px;
            margin-bottom: 25px;
        }

    .card-block-buttons {
        flex-direction: row;
        padding: 0;
        justify-content: center;
        width: 100%;
        gap: 25px
    }

        .card-block-buttons .call-toll, .card-block-buttons .call-app {
            font-size: 18px;
            font-weight: 600;
            padding: 12px 4px;
            display: flex;
            width: 100%;
        }

        .card-block-buttons .call-toll1, .card-block-buttons .call-app {
            font-size: 13px;
            font-weight: 600;
            padding: 12px 4px;
            display: flex;
            width: 100%;
        }

        .card-block-buttons .tollLapro, .card-block-buttons .tollLapro {
            font-size: 13px;
            font-weight: 600;
            padding: 12px 4px;
            display: flex;
            width: 100%;
        }


        .card-block-buttons .toll1Urology, .card-block-buttons .toll1Urology {
            font-size: 13px;
            font-weight: 600;
            padding: 12px 4px;
            display: flex;
            width: 100%;
        }



    .faq-section {
        padding: 2rem 0 0 0;
    }

    button#submitCallBack {
        width: 140px
    }

    .card-block {
        padding: 0;
        border: 0;
        box-shadow: none;
        margin: 0;
    }

    .top-doctors .card-block-buttons {
        flex-flow: row;
        max-width: 100%;
    }

    .section-fixed-callback {
        position: relative;
        margin: 0;
    }

    .fixed-callback-body .title {
        display: none;
    }
    /*updated-css*/
    body, .whybox li, .testimoni p, .whybox p, p {
        font-size: 14px;
        font-weight: 300;
        line-height: 1.4;
    }

    .section .container {
        padding: 10px;
    }

    .main-banner {
        background-size: 123% 260px;
        background-position: top center;
    }

    .banner-text h4 {
        font-weight: 600
    }

    .service-feature {
        background: #fff;
        border-bottom: 2px solid var(--greyscale);
        margin-top: 10px;
    }

    .fixed-callback-body .input-group {
        max-width: 100%;
        margin: 0 25px;
    }

    .footer-navigation.footer-menu {
        display: none;
    }

    .main-content-left {
        max-width: 100%;
    }

    .whybox-content {
        position: relative;
    }



    .our-hospitals .img-container {
        width: 100%;
        /*        position: absolute;*/
    }

    .our-hospitals .card-block-info {
        /*        padding-left: 120px;*/
    }

    .slide-display .item {
        border: 0;
        box-shadow: none;
        padding: 0;
    }

        .slide-display .item.testimoni-card-block {
            border: 0;
            box-shadow: none;
            padding: 15px 15px 0;
        }

    .section-title, .testimoni .section-title {
        font-size: 26px;
        font-weight: 600;
    }

    .top-doctors .card-title, .testimoni-info-inner .testimoni-name-designation h5, .whybox .title, .card-title, .card-block .card-title {
        font-size: 1.5rem;
    }

    .testimoni-card-block p {
        font-size: 13px;
        font-weight: 300;
        color: #36454F;
    }

    .fixed-cta-buttons {
        display: flex;
        align-items: center;
        position: fixed;
        bottom: -80px;
        width: 100%;
        background: #fff;
        box-shadow: 0 0 8px 2px rgba(65,65,65,0.5);
        z-index: 60;
        transition: ease bottom 0.5s;
    }

    body.scrolled .fixed-cta-buttons {
        bottom: 0;
    }

    .fixed-cta-buttons .cta-btn {
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 100%;
        font-size: 15px;
        font-weight: 600;
        border-radius: 24px;
    }

    .fixed-cta-buttons .call-app {
        color: var(--green);
        border: 2px solid var(--green);
        margin: 12px 0 12px 12px;
    }

        .fixed-cta-buttons .call-app .icon {
            color: var(--green);
            font-size: 20px;
        }

    .fixed-cta-buttons .call-toll {
        background: var(--primary);
        color: #fff;
        margin: 12px;
    }

    .fixed-cta-buttons .call-toll1 {
        background: var(--primary);
        color: #fff;
        margin: 12px;
    }

    .fixed-cta-buttons .tollLapro {
        color: #404040;
        border: 2px solid var(--green);
        margin: 12px 0 12px 12px;
    }

        .fixed-cta-buttons .tollLapro .icon {
            color: var(--green);
            font-size: 20px;
        }

    .fixed-cta-buttons .tollLapro {
        background: var(--primary);
        color: #fff;
        margin: 12px;
    }



    .fixed-cta-buttons .toll1Urology {
        background: var(--primary);
        color: #fff;
        margin: 12px 0 12px 12px;
    }

        .fixed-cta-buttons .toll1Urology .icon {
            color: #fff;
            font-size: 20px;
        }

    .fixed-cta-buttons .toll1Urology {
        background: var(--primary);
        color: #fff;
        margin: 12px;
    }


    .fixed-cta-buttons .call-toll1 {
        background: var(--primary);
        color: #fff;
        margin: 12px;
    }

    .section.calculate-button {
        padding-top: 0;
    }

    .lead-form-body h2 {
        /*        font-size: 1.25rem;*/
        margin: 0;
        padding: 1rem 0 0;
    }

    .modal-backdrop.show {
        display: none;
    }

    div#appointmodal {
        display: block !important;
        top: unset;
        bottom: -100%;
        opacity: 1;
    }

        div#appointmodal .modal-header {
            border-bottom: 0;
            padding: 1rem 1rem 0;
        }

        div#appointmodal .modal-body {
            padding-top: 0;
        }

        div#appointmodal .modal-content.appointment {
            position: fixed;
            bottom: -100%;
            left: 0;
            width: 100%;
            border: 0;
            z-index: 60;
            transition: ease bottom 0.3s;
            box-shadow: 0 0 34px 0 rgba(65,65,65,0.25) !important;
            border-radius: 0;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }

        div#appointmodal.show .modal-content.appointment {
                bottom: 0;
                top: 135px;
                height: fit-content;
                border-radius:20px;
        }

        div#appointmodal .modal-dialog {
            transition: none;
            transform: none;
        }
}



div#appointmodalsugery {
    display: block !important;
    top: unset;
    bottom: -100%;
    opacity: 1;
}

    div#appointmodalsugery .modal-header {
        border-bottom: 0;
        padding: 1rem 1rem 0;
    }

    div#appointmodalsugery .modal-body {
        padding-top: 0;
    }

    div#appointmodalsugery .modal-content.appointment {
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100%;
        border: 0;
        z-index: 60;
        transition: ease bottom 0.3s;
        box-shadow: 0 0 34px 0 rgba(65,65,65,0.25) !important;
        border-radius: 0;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    div#appointmodalsugery.show .modal-content.appointment {
        bottom: -3px;
    }

    div#appointmodalsugery .modal-dialog {
        transition: none;
        transform: none;
    }

}



@media(max-width: 575px) {
    .box-two {
        border-radius: 0
    }
}


/* free consultation */
.free-consultation {
    padding: 100 0;
}

    .free-consultation > .container > .row {
        align-items: center;
    }

    .free-consultation .consultation-content {
        max-width: 100%;
    }

.info-text {
    font-size: 18px;
    line-height: 30px;
    margin: 19px 0 31px;
}

.item-list li {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 18px;
}

    .item-list li:last-child {
        margin-bottom: 0;
    }

    .item-list li .icon {
        color: var(--primary);
        font-size: 30px;
        position: relative;
        top: 5px;
    }

.free-consultation .consultation-form {
    max-width: 600px;
    margin: 100px 0 100px auto;
    padding: 40px 62px;
    background: #ffffff;
    box-shadow: 0px 8px 28px -6px rgba(0, 36, 62, 0.12), 0px 18px 88px -4px rgba(0, 36, 62, 0.14);
    border-radius: 12px;
}

    .free-consultation .consultation-form label {
        color: #00243e;
        font-size: 14px;
        margin: 12px 0 2px;
        font-weight: 500;
        line-height: 24px;
    }

.free-consultation .btn-round-primary-full {
    margin: 36px 0 20px;
}


/* Why-essencehealth */


.essence-content {
    padding: 30px 0;
    max-width: 600px;
    margin-left: auto;
}

.section.why-essencehealth .image-wrapper {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .section.why-essencehealth .image-wrapper img {
        width: 100%;
    }

/*Faq-Section*/

.faq-section .faq-container {
    max-width: 800px;
    margin: auto;
    /*    margin-bottom: 50px;*/
}

.faq-section .section-title {
    padding: 100px 0 62px;
}

.faq-section .faq-info {
    display: none;
    padding: 0 15px 20px 20px;
    transition: ease height 0.3s;
    height: 0;
}

    .faq-section .faq-info ul {
        padding-left: 15px;
        list-style: disc;
        margin-left: 15px;
    }

.faq-section .faq-title {
    margin: 0;
    padding: 20px 60px 20px 5px;
    font-weight: normal;
    font-size: 18px;
    position: relative;
    cursor: pointer;
}


    .faq-section .faq-title::after {
        content: "\f107";
        font-weight: 900;
        font-family: "Font Awesome 6 Free";
        font-size: 18px;
        display: block;
        width: 100%;
        height: 20px;
        color: var(--primary);
        width: 20px;
        position: absolute;
        right: 5px;
        top: 22px;
        transition: ease transform 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.faq-section .faq-card.active .faq-title::after {
    transform: rotate( 180deg );
    top: 26px;
}


.faq-section .faq-card {
    border: 1px solid rgba(145, 158, 171, 0.32);
    border-left: 0;
    border-right: 0;
    margin-bottom: -1px;
}

    .faq-section .faq-card.active .faq-info {
        height: max-content;
    }


/* End of Faq-section */


/*call to action footer*/

.cta-footer {
    padding: 44px 0;
    /*    margin-top: 50px;*/
}

    .cta-footer .d-flex {
        height: 100%;
        gap: 24px;
        justify-content: flex-end;
    }

        .cta-footer .d-flex .form-control {
            max-width: 380px;
        }

        .cta-footer .d-flex .btn-round-primary {
            width: 300px;
        }

    .cta-footer .cta-text {
        line-height: 30px;
    }

.faq-section .section-title {
    padding: 10px 0 10px;
}

.faq-section .faq-title {
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
}

/*end-of call-to-action-footer*/

/*call to action footer*/
.bg-primary-alfa {
    background-color: var(--primary-alfa);
}

.bg-secondary-alfa {
    background-color: var(--secondary-alfa);
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select.form-select {
    border-radius: 4px;
    padding: 10px 20px;
    border: 1.5px solid #919eab;
    background-color: white;
}

.cta-footer {
    padding: 44px 0;
    /*    margin-top: 50px;*/
}

    .cta-footer .d-flex {
        height: 100%;
        gap: 24px;
        justify-content: flex-end;
    }

        .cta-footer .d-flex .form-control .btn-round-primary {
            max-width: 380px;
        }

        .cta-footer .d-flex .btn-round-primary {
            width: 300px;
        }

    .cta-footer .cta-text {
        line-height: 30px;
    }

.btn-round-primary,
.btn-round-primary-full, #LeadSubmit2, #aFQAButtonText {
    white-space: nowrap;
    border: 0;
    height: 50px;
    background: var(--primary);
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.section.cta-footer.bg-primary-alfa button {
    border-radius: 4px;
}

.btn-round-primary-full, #LeadSubmit2 {
    width: 100%;
}

    .btn-round-primary:hover,
    .btn-round-primary-full:hover,
    .btn-primary-tp:hover, #LeadSubmit2:hover {
        opacity: 1;
    }

    .btn-round-primary .icon,
    .btn-round-primary-full .icon, #LeadSubmit2 .icon, #aFQAButtonText .icon {
        font-size: 22px
    }




@media (min-width: 888px) and (max-width: 991px) {

    .banner-meta .info-text {
        height: 110px;
    }
}

@media (min-width: 887px) and (max-width: 768px) {

    .banner-meta .info-text {
        height: 65px;
    }
}

@media (min-width: 550px) and (max-width: 660px) {

    .banner-meta .info-text {
        height: 90px;
    }

    .doctor-img {
        top: -8px
    }
}

@media (min-width: 481px) and (max-width: 550px) {
    .banner-meta {
        max-width: 75%;
    }

        .banner-meta .info-text {
            height: 90px;
        }

    .doctor-img {
        display: flex;
        align-items: flex-end;
        position: absolute;
        width: 100%;
        max-width: 220px;
        margin-left: auto;
        z-index: 0;
        height: 220px;
        right: -50px;
        top: -8px;
    }
}

/*end-of call-to-action-footer*/
@media (max-width: 991px) {
    .cta-footer .d-flex {
        height: 100%;
        gap: 0px;
        justify-content: flex-end;
        flex-direction: column;
    }

        .cta-footer .d-flex .btn-round-primary {
            width: 100%;
        }
}


@media(max-width: 767px) {
    #image_d {
        display: none;
    }
    .banner-text
    {
    background-image: url(images/ban.webp);
    background-size: cover;
    background-position: top;
    }
.cta_form
{
    display:block !important;
    width:100%;
}
    #image_m {
        display: block !important;
    }
}
/*end-of call-to-action-footer*/

a.tgme_action_button,
a.mb_action_button {
    -webkit-font-smoothing: antialiased;
    color: #FFF;
    background: #5dc390;
    border-radius: 50px;
    overflow: hidden;
    display: block;
    vertical-align: top;
}

    a.tgme_action_button:hover,
    a.tgme_action_button:active,
    a.mb_action_button:hover,
    a.mb_action_button:active {
        color: #FFF;
        background: #4bbc87;
        text-decoration: none;
    }

a.mb_action_button {
    background-color: var(--primary);
}

    a.mb_action_button.shine {
        background-image: linear-gradient(270deg, rgba(100, 181, 239, 0) 48.44%, #64b5ef 75.52%, rgba(100, 181, 239, 0) 100%);
        background-repeat: no-repeat;
        animation: bg-move linear 3s infinite;
    }

    a.mb_action_button:hover,
    a.mb_action_button:active {
        background-color: var(--accent-color-hover);
    }

@-webkit-keyframes bg-move {
    0% {
        background-position: -500px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes bg-move {
    0% {
        background-position: -500px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.banner-achor {
    text-decoration: none !important;
    color: black !important;
}
.slider {
  max-width: 1000px;
  margin: 0 auto;
}
.slick-slide {
  margin: 0 5px;
}
.slick-list {
  margin: 0px -5px 0px -5px;
}
button.slick-next, button.slick-next:hover {
  position: absolute;
  top: 41%;
  right: 54px;
  width: 47px;
  height: 75px;
  background-image: url("http://maggiesadler.com/wp-content/uploads/2015/10/left-right-arrow.png");
  background-size: 95px;
}
button.slick-prev, button.slick-prev:hover {
  position: absolute;
  top: 41%;
  left: 15px;
  z-index: 1;
  width: 47px;
  height: 75px;
  background-image: url("http://maggiesadler.com/wp-content/uploads/2015/10/left-right-arrow.png");
  background-size: 95px;
      background-position-x: right;
}
.slick-prev:before, .slick-next:before {
  font-size: 70px;
  color: #EA8496;
  line-height: inherit;
  font-weight: bold;
}
/*.slider img {*/
/*  height: 324px;*/
/*}*/
.slider h1
{
    font-size: 30px;
    padding: 18px 0px !important;
}
/* Slick Slider Styles -- Provided by https://kenwheeler.github.io/slick/ */
/* Slider */
.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('http://maggiesadler.com/wp-content/uploads/2015/10/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('file:///C:/Users/msadler/Desktop/slick-1.5.7/slick/fonts/slick.eot');
    src: url('file:///C:/Users/msadler/Desktop/slick-1.5.7/slick/fonts/slick.eot?#iefix') format('embedded-opentype'), url('file:///C:/Users/msadler/Desktop/slick-1.5.7/slick/fonts/slick.woff') format('woff'), url('file:///C:/Users/msadler/Desktop/slick-1.5.7/slick/fonts/slick.ttf') format('truetype'), url('file:///C:/Users/msadler/Desktop/slick-1.5.7/slick/fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    margin-top: -10px;
    padding: 0;

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '';
}
[dir='rtl'] .slick-prev:before
{
    content: '';
    font-weight: bold;
    font-size: 20px;
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '';
}
[dir='rtl'] .slick-next:before
{
    content: '';
}

/* Dots */
.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -45px;

    display: block;

    width: 100%;
    padding: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
.cta_form
{
    display: flex;
    gap: 10px;
}