*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/********** Template CSS **********/
.text-web-color{
    color: var(--primary);
}

.up{
    position: relative;
    z-index: 9;
}

.bgImageDefault{
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mainSectionAll::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    
}

/* ********** video play css ******** */
.video_paly{
    position: relative;
}
.video_paly .pulse{
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video_paly .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}
.video_paly .pulse span{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: inherit;
    opacity: 0.8;
    animation: pulse 4s ease-out infinite;
    animation-delay: calc(1s * var(--i));
}
@keyframes pulse{
    100%{
        opacity: 0;
        transform: scale(2);
    }
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

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


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

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

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

/* .navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
} */

.link_hover:hover{
    color:var(--primary)!important;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    /* color: var(--dark); */
    font-weight: 500;
}

.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
/* @media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        object-fit: cover;
    }
} */

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories1 & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--white);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* ******* prashant css ********* */
/* ----------- counter -------- */
.center1{
    display: flex;
    justify-content: center;
    align-items: center;
}
.counter .parent_circle{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: var(--primary);
    position: relative;
}

.counter .child_circle{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: -5px 10px 10px rgba(0,0,0,0.5);
    text-align: center;
    flex-direction: column;
    padding: 30px;
}
.counter .child_circle h5,
.counter .child_circle h3{
    color: var(--primary);
    font-weight: 900;
}

.counter .counter_icon{
    position: absolute;
    top: -10px;
    left: 10px;
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    box-shadow: -5px 10px 10px rgba(0,0,0,0.5);
    outline: 2px solid var(--white);
    outline-offset: -8px;
    border-radius: 50%;
}
.counter .counter_icon i{
    color: white;
    font-size: 1.5rem;
}

/* ************ event and latest news *********** */
/* .event_container{
    height: 600px;
    padding: 10px;
    overflow: hidden;
} */
.event_card1{
    width: 100%;
    height: 130px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    margin-bottom: 80px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
}

.event_card1 .date_screen{
    display: none;
}

.event_card1 .content{
    width: 65%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.event_card1 .content p{
    font-size: 13px;
}

.event_card1 .date{
    position: absolute;
    top: -20px;
    left: 30px;
    width: 130px;
    height: 170px;
    background-color: var(--primary);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.5);
    text-align: center;
    padding-top: 20px;
}

.event_card1 .date h4{
    font-size: 2rem;
    color: var(--white);
}

.event_card1 .date .corner{
    position: absolute;
    top: 0px;
    right: -20px;
    width: 20px;
    height: 22px;
    background-color: var(--primary);
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

@media screen and (max-width:767px) {
    .event_container{
        height: 250px;
    }

    .event_card1{
        flex-direction: column;
        height: auto;
    }

    .event_card1 .date{
        display: none;
    }

    .event_card1 .content{
        width: 100%;
        justify-content: start;
        padding: 20px;
    }

    .date_screen{
        width: 100%;
        height: 100%;
        background-color: var(--primary);
        display: block!important;
        padding: 10px 20px;
    }

    .event_card1 .date_screen h4{
        font-size: 1.5rem;
        color: var(--white);
    }
}

.content_parent img{
    width: 100%;
    height: 100%;
}


/* ************** form css ********* */
.form_content{
    background: linear-gradient(270deg, var(--white) 50%, var(--primary) 50%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.inner_form_content{
    position: relative;
    z-index: 9;
}
.inner_form_content .inner_bg{
    background-color: var(--white);
    border-radius: 20px;
}
.form-circle-design{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    right: -12%;
    transform: translate(0, -50%);
    opacity: 0.2;
}
.form-circle-design::before{
    content: "";
    position: absolute;
    top: 50%;
    right: 13%;
    transform: translate(0, -50%);
    width: 220px;
    height: 220px;
    background-color: var(--primary);
    border-radius: 50%;
}

.prashant_ui table td .download{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark);
}

/* *************** doctor css ************ */
.doctor_card{
    background-color: var(--white);
}
.doctor_card .doctor_name{
    font-size: 1.4rem;
    color: var(--primary);
}
.doctor_card .doctor_content .fa-circle{
    font-size: 8px;
    color: var(--primary);
}


.doctor-profile{
    background-color: #EDF5FD;
}

.doctor-profile .doctor_image{
    width: 400px;
    height: 500px;
    overflow: hidden;
    margin: auto;
    border-radius: 20px;
    box-shadow: -20px 30px 0 var(--primary);
}

.doctor-profile .doctor_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-profile .doctor-content h1{
    font-size: 3.2rem;
    color: var(--primary);
}

.doctor-profile .doctor-content .doctor_short_desc{
    font-size: 0.9rem;
}

.doctor-profile .doctor-content .doctor_basic_details{
    font-size: 1.1rem;
}

.doctor-profile .doctor-content .doctor_basic_details .list_name{
    color: var(--dark);
}

.doctor-profile .doctor-content .appointment_btn a{
    background:var(--secondary);
    padding: 20px 40px;
    border-radius: 40px;
    color: var(--white);
    font-size: 18px;
}

.doctor_long_desc{
    background: #F9FCFF;
}

.doctor_long_desc .content ul{
    padding: 0 20px;
}

.doctor_long_desc .content .certificate{
    list-style: none;
}

.doctor_schedule{
    background: #F3F6F7;
}

.doctor_schedule  ul li .slot_box p{
    background: #F3F6F7;
    border: 1px solid var(--primary);
    /* font-size: 0.8rem; */
    color: var(--dark);
}

.doctor_long_desc .certificate li a img{
    width: 100px;
    height: 70px;
}


/* ********* doctor category ****** */
.doctor_category .category{
    height: 325px;
    transition: all 0.3s linear;
    position: relative;
    background: var(--white);
}
.doctor_category .category img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    outline: 5px solid var(--secondary);
    outline-offset: 10px;
}

.doctor_category .category h3{
    color: var(--primary);
}

.doctor_category .category:hover{
    background: var(--primary);
    color: var(--white);
}

.doctor_category .category:hover h3{
    color: var(--white);
}

.doctor_category .category:hover img{
    outline: 5px solid var(--white);
}

.doctor_category .category .category_btn{
    position: absolute;
    bottom: -18px;
    left: 42%;
    /* transform: translate(0, -50%); */
    background: var(--secondary);
    padding: 10px 15px;
    color: var(--white);
    border-radius: 50%;
}

.form_ui .form-floating select{
    border-radius: 25px;
}

.button_submit button:hover{
    background-color: transparent!important;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.button_submit p{
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--secondary);
}



.appointment_form .appointment_details .cateDoctor{
    font-size: 1.2rem;
    font-weight: 700;
}

.blog .blogImage img{
    height: 272px;
    object-fit: cover;
}
.blog .content .read_more_btn{
    margin: 30px 0;
    width: 200px;
}
.blog .content a{
    background: var(--primary);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s linear;
}

.blog .content a:hover{
    background-color: var(--dark);
}

.blog_details .page_title{
    background: var(--secondary);
    height: 150px;
}

.blog_details .page_title .container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.blog_details .page_title .container h4{
    color: var(--white);
}

@media screen and (max-width: 500px){
    .doctor-profile .doctor_image{
        width: 250px;
        height: 350px;
    }
}

@media screen and (max-width: 1120px){
    .doctor-profile .doctor-content h1{
        font-size: 3rem;
    }
}

@media screen and (max-width: 991px){
    .doctor-profile .doctor-content h1{
        font-size: 2rem;
        text-align: center;
    }

    .doctor-profile .doctor-content{
        margin-top: 40px;
    }
}
