/********** Template CSS **********/
:root {
    --primary: #9d0062;
    --secondary: #2d88b1;
    --light: #EEF9FF;
    --dark: #091E3E;
}


.whatsapp_main {
    position: fixed;
    bottom: 30px;
    left: 20px;
    text-align: center;
    z-index: 10;
}

.pb-4.about_content_span {
    color: #000;
}

p {
    color: #000;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
    font-family: 'Barlow', sans-serif;

}


h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
    font-family: 'Barlow', sans-serif;

}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
    font-family: 'Barlow', sans-serif;

}

.btn {
    font-family: 'Barlow', sans-serif;

    font-weight: 600;
    transition: .5s;
}

p {
    font-family: mulish, sans-serif;
}

span {
    font-family: mulish, sans-serif;

}

.navbar-brand img {
    width: 100%;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    color: #fff;
}

.btn-primary:hover {
    background: #b3578d !important;
    border-color: #b3578d;
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

nav.navbar.navbar-expand-lg.bg-white.navbar-light.shadow-sm.px-5.py-3.py-lg-0.w-100 {
    border-bottom: 6px solid #9d0062;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

a.navbar-brand.p-0 {
    width: 310px;
}

.btn-primary {
    color: #ffffff;
    background-color: #9d0062;
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #e32129;
}


a.text-white {
    background-color: #9f0064;
    padding: 9px 10px;
    border-radius: 10px;
}


header {
    z-index: 999;
    padding: 0 0 8px 0;
    position: relative;
}

.main-header {
    border-bottom: 5px solid #9d0062;
}

.top-logo img {
    width: 90%;
}

.top-logo {
    width: 35%;
}

header nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.logo {
    flex: 2;
    display: none;
    align-items: center;
}

.logo img {
    width: 100%;
}


.bartoggle,
#menubrop {
    display: none;
}

.NavMenu {
    flex: 10;
    list-style: none;
    align-items: center;
    position: relative;
    justify-content: center;
    padding: 0;
    display: flex;
    margin: 0;
}

.NavMenu li {
    display: inline-block;
}

.NavMenu li input {
    display: none;
}

.NavMenu li a {
    display: block;
    padding: 20px 17px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    font-family: mulish, sans-serif;
    color: #000000;
    position: relative;
}

.NavMenu li a label {
    cursor: pointer;
    appearance: none;
    margin: 0;
    display: block;
    font-weight: 500;
    position: relative;
}

.NavMenu li a label::after {
    content: "+";
    position: absolute;
    right: -8px;
    top: 0;
    font-size: 20px;
}

.NavMenu>li>a label::after {
    right: -15px;
    top: -1px;
}

.NavMenu li ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    width: 200px;
    border-bottom: 2px solid #9e0063;
    top: 100%;
    margin: 0;
    padding: 0;
    box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
}

.NavMenu li ul li {
    position: relative;
}

.NavMenu li ul li a {
    color: #000000;
    padding: 8px 10px;
    font-size: 16px;
    display: block;
    border-left: 2px solid transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.NavMenu li ul li ul {
    position: absolute;
    left: 100%;
    top: 0;
    width: 256px;
}

@media(min-width:992px) {
    .NavMenu li ul li a:hover {
        border-left: 3px solid #9d0062;
        transition: 0.9s;
    }

    .NavMenu li:hover>ul,
    .NavMenu li ul li:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

@media(max-width:991.98px) {
    .logo {
        flex: 6;
    }

    .bartoggle {
        display: flex;
        justify-content: center;
        font-size: 46px;
        align-items: center;
        background-color: #fff;
        padding: 0 10px;
        margin: 0;
        cursor: pointer;
    }

    header {
        z-index: 999;
        padding: 10px 0 0 0;
        position: relative;
    }

    .NavMenu {
        width: 500px;
        flex: 12;
        position: fixed;
        flex-direction: column;
        background-color: #9d0062;
        left: 0;
        top: 40px;
        height: 100vh;
        z-index: -1;
        padding: 15px 0 50px 0;
        justify-content: start;
        overflow-y: scroll;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }

    .NavMenu li ul,
    .NavMenu li ul li ul {
        position: initial;
        left: 0;
        visibility: visible;
        opacity: 1;
        top: 0;
        display: none;
    }


    .NavMenu li a {
        padding: 8px 15px;
        border-bottom: 1px solid #fff;
    }

    .NavMenu li ul li ul {
        background: #1a365d;
        position: inherit;
        margin-top: -10px;
    }

    .NavMenu li ul li ul li a {
        font-size: 15px;
        color: #fff;
        font-weight: 400;
        text-transform: initial;
        padding: 7px 15px 7px 5px;
    }

    .NavMenu li a label::after {
        right: 10px;
    }

    .NavMenu li input:checked+ul,
    .NavMenu li ul li input:checked+ul {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
        width: 100%;
        background-color: #9d0062;
    }

    input:checked+.NavMenu {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }

}

@media(max-width:768px) {
    .NavMenu {
        width: 78%;
        align-items: unset;
        z-index: 999;
        padding-top: 50px;
    }

    .logo img {
        width: 60%;
    }

    ul.NavMenu {
        top: 0px;
    }

    .NavMenu li a {
        color: #fff !important;
    }

}





.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*    background: rgba(9, 30, 62, .85);*/
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--secondary);
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(rgb(6 91 100 / 87%), rgba(9, 30, 62, .85)), url(../images/neurosurgery.jpg) center center no-repeat;
    background-size: cover;
    background-position: center;


}

.bg-appointment {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../images/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    background: #9d0062;
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius: 100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background: url(../images/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background: rgba(6, 163, 218, .85);
}

.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


.price-carousel2 .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel2:hover .owl-nav {
    opacity: 1;
}

.price-carousel2 .owl-nav .owl-prev,
.price-carousel2 .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel2 .owl-nav .owl-prev:hover,
.price-carousel2 .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.bg-testimonial {
    background: url(../images/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(6, 163, 218, .85);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.testimonial-carousel .owl-item img {
    width: 200px;
    height: 120px;
}

.social_link_top a {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.social_link_top a i {
    font-size: 1.3rem;
    color: #fff;
}

.bottom_footer {
    padding-top: 1rem;
    color: black;
}

.price-carousel1 .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel1:hover .owl-nav {
    opacity: 1;
}

.price-carousel1 .owl-nav .owl-prev,
.price-carousel1 .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel1 .owl-nav .owl-prev:hover,
.price-carousel1 .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.top-1001 {
    top: 90% !important;
    left: 20%;

}

.top-1001 h6 {
    color: #fff !important;
    font-weight: 200 !important;
    font-size: 1rem;
}

.start-5001 {
    left: 40%;
}

.book_app {
    background: #06A3DA;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.book_app h4 {
    color: white;
    font-weight: 500;
    font-size: 2rem;
}

.book_app a {
    background: #fff;
    padding: 0.8rem 2rem;
    color: #000;
    border-radius: 30px;
    border: 2px solid white;
    font-weight: 700;

}

.book_app a:hover {
    background: transparent;
    color: white;
    transition: 0.2s;
}

.counter {
    font-size: 2em;
    font-family: 'Arial', sans-serif;
    color: #000;
    padding-top: 0.5rem;
    /*  text-align: center;*/

}

.counter11 {
    background-color: white;
    margin: 0.1rem;
    border-radius: 10px;
}



#count {
    display: inline-block;
    animation: countAnimation 0.5s infinite alternate;
}

#count1 {
    display: inline-block;
    animation: countAnimation 0.5s infinite alternate;
}

#count2 {
    display: inline-block;
    animation: countAnimation 0.5s infinite alternate;
}

#count3 {
    display: inline-block;
    animation: countAnimation 0.5s infinite alternate;
}

.count_section {
    background: #06A3DA;
    border-radius: 10px;
    padding-top: 1.5rem;
}

.counter span {
    color: #000;
}

.counter p {
    color: #000;
    font-size: 1.2rem;
    padding-top: 0.4rem;
}

.btn_request {
    background: #06A3DA;
    color: white;
}

.btn_request:hover {
    color: white;
}

.image_round img {
    border-radius: 10px;
}

.request_ {
    margin-left: 2rem;
}

@media only screen and (max-width: 600px) {
    .navbar-brand img {
        height: 45px;
    }

    .request_ {
        margin-left: 0rem;
    }

    .whatsapp_main {
        display: none;
    }

}

.testimonial_section1 {
    /*    padding: 2rem 0rem;*/
}

.testimonial_box {
    /*    margin: 1rem;*/
    /*    border: 3px solid #F64686;*/
    border-radius: 10px;

}

.testimonial_box1 {
    margin: 1rem;
    /*    border: 2px solid blue;*/
}

.testimonial_bg {
    background: #9d00620a !important;
    padding: 3rem;
}

.testimonial_bg1 {
    background: #fff !important;
}

.review_box p {
    text-align: left;
    /*    padding-top: 1rem;*/
    padding-left: 0.5rem;
    margin-bottom: 0rem !important;
}

.review_box span {
    padding-top: 0.2rem;
    padding-left: 0.2rem !important;
}


.latest {

    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-bottom: 1rem;
    background-color: #9d0062;
}

.latest p {

    font-size: 1.3rem;
    padding: 0.2rem 0rem;
    text-align: center;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0rem !important;
}

.latest span {
    font-size: 0.9rem;
    color: #fff;
    margin-top: 0rem !important;

}

.icon_left li i {
    padding-right: 1rem;
    color: #F64686;
}

.about_img img {
    border-radius: 10px;
    border: 2px solid #9d0062;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

/*.about_content
{
    margin: 0rem 2rem;
}*/

.about_content h1,
h2 {
    color: #9d0062;
    margin-bottom: 20px;
    font-size: 28px;
}

.about_content_span span i {
    padding-right: 1rem;
    color: #9d0062;
}

.our_h2 {
    color: #9d0062 !important;
    font-size: 35px;
    margin-bottom: 20px;
}

.services_box {
    padding: 0px 0px 5px 0px;
    background-color: #FFFFFF;
    border-radius: 5px 5px 5px 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-bottom: 1rem;
}

/*.services_box h5
{
  text-align: center;
  padding-top: 0.8rem;
  font-weight: 600;
  font-size: 1.5rem;
}*/
.services_box p {
    font-size: 1.3rem;
    /*    padding: 0.5rem 0rem;*/
    text-align: center;
    padding-top: 0.8rem;
    font-weight: 600;
    color: #241656;
}

.services_box p:hover {
    color: #9d0062;
}

.speciality_title h3 {
    padding-top: 0.5rem;
}

.specialties_img {
    /*    padding-top: 2rem;*/
    padding-bottom: 1rem;
}

.make_app span {
    font-size: 1.7rem;
    color: #000;
}

.make_app h2 {
    /*    font-size: 2.3rem;*/
    padding-top: 1rem;
}

.make_app {
    padding-top: 3.5rem;
}

.make_app a {
    font-size: 1.5rem;
    color: #241656;
    font-weight: 600;
}

.make_app a i {
    color: #241656;
}

@media (max-width: 576px) {
    .make_app_img img {
        display: none;
    }
}

.zoom {
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
}

.zoom img {
    transition: all 1.2s ease;


}

.zoom:hover img {
    transform: scale(1.1);
}

.contact_icon {
    color: #9d0062 !important;
}

.review_box {
    margin: 0.5rem;
    padding: 1rem;
}

.blog_content {
    padding: 0.5rem;
}

.blog-contain h4 {
    padding-top: 1rem;
    font-size: 1.2rem;
}

.inner {
    overflow: hidden;
    /*      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
    border-radius: 10px;
}

.inner img {
    transition: all 1.2s ease;


}

.inner:hover img {
    transform: scale(1.2);
}


.services_content h1 {
    margin-top: 1.3rem;
    margin-bottom: 0.5rem;
    font-size: 2.5rem !important;
    font-weight: 600;
    color: #9d0062;
}

.services_content h3,
h4 {
    color: #9d0062;
}

.all_services {
    padding-right: 1rem;
    margin: 0rem 2rem;
}

.all_services h4 {
    margin-top: 0rem;
}

.all_services ul {
    padding-left: 0rem;
}

.all_services ul li {
    background: #f7f7f7;
    margin-top: 1rem;
    list-style-type: none;
    padding: 0.8rem;
}

.all_services ul li a {
    color: black;
}

.all_services ul li a i {
    padding-right: 1rem;
    color: #9d0062;
}

.services_active {
    background: #9d0062 !important;
}

.services_active a {
    color: #fff !important;
}


.all_services ul li:hover {
    background: #9d0062;
    color: #fff !important;
}

.all_services ul li a:hover {
    color: #fff;
}

.get_dire {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.get_dire a {
    background: #1355A1;
    color: white;
    padding: 0.5rem;
    border-radius: 10px;
    margin-left: 0.5rem;

}

@media screen and (min-width: 900px) {
    .destop {
        display: none;

    }
}

@media screen and (max-width: 600px) {
    .destop {
        display: block;

    }
}

.mydiv {

    color: black;
    animation: myanimation 5s infinite;
    padding: 0.7rem;
    border-radius: 5px;
}

@keyframes myanimation {
    0% {
        background-color: #2d88b1;
        color: #fff
    }

    50% {
        background-color: #1355A1;
        color: #fff;
    }

    100% {
        background-color: #D13A44;
        color: #fff;
    }
}

.sticky-footer {
    display: block;

    height: 58px;
    background: #ffffff;

    position: fixed;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    bottom: -10px;
    border-radius: 10px;
    left: 0px;
    width: 100%;
    z-index: 3;
}

.sticky-footer .one-fourth {
    width: 20%;
    float: left;
    color: #fff;
    text-align: center;
    height: 58px;
    position: relative;
    cursor: pointer;
}

.sticky-home,
.sticky-whatsapp,

.sticky-map,
.sticky-mail {
    width: 25px;
    height: 25px;
    margin: auto;
    margin-top: 11px;
}


.sticky-footer .one-fourth i {
    font-size: 25px;
    color: #f90000e0;
    transition: width 2s;
}

.sticky-footer .one-fourth i:hover {
    font-size: 25px;
    color: red;
}

.one-fourth2 i {
    margin-top: -16px;
    margin-bottom: 26px !important;
    border-radius: 100px;
    /* padding: 10px; */
    color: white !important;
    border: 10px white;
    padding-right: 13px;
    padding-bottom: 10px;
    padding-left: 13px;
    padding-top: 12px;
    border: solid 5px white;
    background: linear-gradient(to bottom, #1355A1 0%, #1355A1 100%);
}

.sticky-footer .one-fourth i {
    font-size: 25px;
    color: #1355A1;
    transition: width 2s;
}

.sticky-home,
.sticky-whatsapp,

.sticky-map,
.sticky-mail {
    width: 25px;
    height: 25px;
    margin: auto;
    margin-top: 11px;
}

.doctor_head span {
    align-items: center;
    text-align: center;
    color: #000;

}

.doctor_content h5 {
    color: #9d0062;
}

.card {
    border-radius: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    margin-bottom: 1.5rem;
}

.cards {
    border-radius: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    margin-bottom: 10px;
}

/*.card:hover
{
    border: 2px solid #14559F;
    box-shadow: rgba(239, 124, 0, 0.25) 0px 54px 55px, rgba(239, 124, 0, 0.12) 0px -12px 30px, rgba(239, 124, 0, 0.12) 0px 4px 6px, rgba(239, 124, 0, 0.17) 0px 12px 13px, rgba(239, 124, 0, 0.09) 0px -3px 5px;
}*/
.viral-fever {
    padding: 3rem 0rem;
}

.viral-fever h1 {
    color: #9d0062;
    padding-bottom: 0.5rem;
}

.viral-fever strong {
    color: #000;
    padding-right: 0.5rem;
}

.viral-fever img {
    border-radius: 10px;
}

.new_update_section {
    padding: 3rem 0rem;
}

.new_update_box {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 1rem 0rem;
}

.new_update_box:hover {
    border: 1px solid #1355A1;
}

.new_update_box p {
    color: #000;
}

.new_update_box a {
    border: 1px solid #1355A1;
    color: #1355A1;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
}

.new_update_box a:hover {
    background: #1355A1;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
}

.tag_link a {
    border-radius: 30px;
    border: 1px solid black;
}



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

.slide-container {
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
}

.slide-content {
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
}

.cards {
    border-radius: 25px;
    background-color: #FFF;
}

.image-content,
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 10px 0;
}



.overlay::before,
.overlay::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #4070F4;
}

.overlay::after {
    border-radius: 0 25px 0 0;
    background-color: #FFF;
}


.card-image .card-img {
    height: 100%;
    border-radius: 20px 20px 0 0;
    width: 100%;
    object-fit: cover;
}

.name {
    font-size: 25px;
    font-weight: 500;
    color: #9d0062;
}

.swiper-navBtn {
    color: #6E93f7;
    transition: color 0.3s ease;
}

.swiper-navBtn:hover {
    color: #4070F4;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 38px;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.swiper-pagination-bullet {
    background-color: #6E93f7;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #4070F4;
}

@media screen and (max-width: 768px) {
    .slide-content {
        margin: 0 10px;
    }

    .swiper-navBtn {
        display: none;
    }
}



.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: 'next';
    display: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: 'prev';
    display: none;
}


.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size)/ 72 * 27) !important;
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    font-size: 35px;
    align-items: center;
    justify-content: center;
    color: #9d0062 !important;
}


.back-box:hover {
    transform: skew(5deg, 5deg);
    transition: 0.9s;
}

.back-box {
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px 0px #00000075;
    padding: 10px;
    gap: 15px;
    cursor: pointer;
    transition: 0.9s;
}

.icon-img {
    padding-bottom: 10px;
}

.back-box h2 {
    margin: 0;
    font-size: 18px;
    color: #000 !important;
    padding-bottom: 5px;
}

.facility {
    margin-top: 50px;
    margin-bottom: 50px;
}


.left-image img {
    width: 100%;
}

.card-box {
    background-color: #ffff;
    box-shadow: 0 0 11px -2px #0000007a;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
}


.card-box h3 {
    font-size: 20px;
    padding: 10px 0 10px 0;
    margin: 0;
    color: #9d0062;
}

.card-box img {
    width: 25%;
}

.card-box p {
    margin: 0;
    font-size: 15px;
}

.card-box:hover {
    transform: translateY(-10px);
    transition: 0.9s;
}

.why-choose {
    margin-top: 60px;
}


.WidgetTitle__Container-sc-9c92769d-0.lfCQiA.es-widget-title-container {
    display: none;
}


.logo-futter {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
}

p.pt-3.text-white {
    font-size: 15px;
    font-weight: 500;
}




@media only screen and (max-width: 600px) {
    section.top-menu {
        display: none;
    }

    .top-logo {
        width: 80%;
    }

    section.py-5.wow.fadeInUp.mt-4.animated {
        padding: 0 !important;
    }

    .about_content h1,
    h2 {
        font-size: 24px;
    }

    .about_content p {
        font-size: 15px;
        text-align: justify;
    }

    .our_h2 {
        font-size: 23px;
    }

    p.text-center {
        padding: 0 !important;
        font-size: 15px;
        text-align: justify !important;
    }

    section.whyy {
        margin-top: 20px;
    }

    p.mb-2 {
        font-size: 14px;
    }

}


.icon-container i {
    font-size: 22px;
}


.info-card {
    cursor: pointer;
    text-align: center;
    background-color: #fff;
    border-radius: 50px;
    padding: 20px;
    box-shadow: 0 0 9px #0000004d;
}


section.map-form {
    margin-bottom: 7%;
}



.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.contact-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 8px;
}

.btn-custom {
    background: #9d0062;
    color: #fff;
    border-radius: 8px;
    padding: 10px;
}

.btn-custom:hover {
    background: #b3578d;
    color: #FFF;
}

.about_content h5 {
    font-size: 20px;
    font-weight: 500 !important;
    color: #9d0062;
}

.about_content p.all-digri {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}


.about_content ul li {
    font-size: 16px;
    padding-bottom: 7px;
    color: #000;
}



.portfolio-content {
    position: relative;
    border: 1px solid #b23a85;
    overflow: hidden;
    height: 240px;
    border-radius: 12px;
}

.portfolio-content img {
    width: 100%;
    transition: transform 0.4s ease;
}

.portfolio-content:hover img {
    transform: scale(1.1);
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.portfolio-content:hover .overlay {
    opacity: 1;
}

.overlay i {
    color: #fff;
    font-size: 30px;
}

/* GLightbox Close Button */
.glightbox-container .gclose {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    line-height: 45px;
    text-align: center;
    opacity: 1 !important;
    z-index: 9999;
}

.glightbox-container .gclose:hover {
    background: #fff;
    color: #000;
}

.fixed-social {
  position: fixed;
  bottom: 10%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.social-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Brand colors */
.facebook { background: #1877f2; }
.linkedin { background: #0a66c2; }
.instagram { background: #e1306c; }
.twitter { background: #000000; }
.youtube { background: #ff0000; }

/* Hover effect */
.social-btn:hover {
  width: 56px;
  color: #fff;
}

/* Mobile hide (important) */
@media (max-width: 767px) {
  .fixed-social {
    display: none;
  }
}