/********** Template CSS **********/
:root {
    --primary: #e97195;
    --secondary: #F57E57;
    --light: #EEF9FF;
    --dark: #091E3E;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}
h1{
    color: #e97195 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

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

.btn-primary:hover {
    background: #091E3E;
    border-color: #fff;
    color: #fff !important;
}

.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;
}

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

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

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

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

.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;
        text-shadow: none;
    }

    .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(#e97195c4, #e97195b8), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.bg-appointment {
    background: linear-gradient(#e97195c4, #e97195b8), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    /* background: rgba(6, 163, 218, .7); */
    background: rgb(246 170 204 / 79%);
}
.service-item img{
    width: 100%;
}
.service-item .bg-light{
    background-color: #e97195 !important;
}
.service-item .bg-light h5{
    color: #FFFFFF !important;
    font-size: 15px !important;
}

.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(../img/offer-bg1.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    /* background: rgba(6, 163, 218, .85); */
    background: rgb(246 170 204 / 79%);
}

.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);
}

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

.testimonial-carousel {
    /* background: rgba(6, 163, 218, .85); */
    background: rgb(246 170 204 / 79%);
}

.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: 80px;
    height: 80px;
}

.logo_name{
    font-size: 25px;
}



.doctor_name{
    text-align: right;
}
.home-slide-text1 {
    text-shadow: black 0.1em 0.1em 0.2em;
}

.home-slide-text2 {
    text-shadow: black 0.1em 0.1em 0.2em;
    font-size: 32px !important;
}
.feature-text{
    text-align: left;
}

.blog_item{
   
    margin-top: 20px;
    
}

.blog_content{
    border: 1px solid #ecf9ff;
}
#contact_us_form .inp{
	height:55px;	
}
.appointment-new{
	width:50%;
	margin:0px auto;
	margin-bottom:145px !important;
}
.post-date{
    position: absolute;
    width: 38%;
    top: 0;
    right: 0;
    background-color: #00a5d7 !important;
}

.recent_post{
    margin-top: 65px;
}
.blog_area, .blog_area p{
	
    color: #575656;
    text-align: justify;
	font-size:17px;
	font-weight:normal;
}
.blog-section-img{
    height: 280px;
}

.recent_post_img{
    height: 50px;
    width: 80px;
}

.post-img{
    padding: 10px;
}

/* .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl{
    background: #EEF9FF !important;
} */
.service-item .overflow-hidden{
    background-color: #fff !important;
}
.new_bg{
    background: #fff !important;
}
.new_menu a{
    font-size: 15px !important;
}
.blog_content h4{
    font-size: 15px !important;
    text-align: start !important;
    color: #fff ;
}
.blog_content p{
    font-size: 15px !important;
    text-align: start !important;
    color: #fff ;
}
.blog_content a{
    font-size: 12px !important;
    color: #fff ;
}
.blog_content .team-text{
    background-color: #e97195 !important;
}
.recent_post .post-img .text-start h5{
    font-size: 14px !important;
}
.recent_post .post-img{
    background-color: #fff !important;
}
.recent_post .post-img .text-start span{
    font-size: 14px !important;
}
.new_contact_bg{
    background-color: #63c8e7 !important;
}
.main_logo{
    width: 200px;
}
.bg-primary{
    background-color: #e97195 !important;
}
.btn-primary{
    background-color: #e97195 !important;
    border-color: #e97195 !important;
}
.back-to-top,
.back_to{
    border-color: #ffffff !important;
}
.bg-dark{
    background-color: #e97195 !important;
}
.btn-dark,
.btn-secondary{
    background-color: #e97195 !important;
    border-color: #e97195 !important;
    color: #fff !important;
}

/* .bg-light{
    background-color: #feeeff !important;
} */

.second_bg .bg-dark {
    background-color: #091E3E !important;
}
.text-primary{
    color: #f6accc !important;
}

.top_i{
    color : #6b6e7e !important;
}

.top_bar{
    background : #e9afeb59 !important;
}

.price_item_card h4{
    color: #e97195 !important;
}
.border-primary {
    border-color: #e97195 !important;
}
.make_appointment{
    background-color: #f6accc !important;
    border-color: #f6accc !important;
}
.bg-light {
    background-color: #f5eeff !important;
}
.gallary_image{
    position: relative;
}
.image_float{
    position: absolute;
    bottom: 0;
    background: #ffffff99;
    width: 100%;
    text-align: center;
    padding: 5px;
    margin: 0;
}
.image_float h5{
    color: #e97195 !important;
    font-size: 16px;
    margin: 0;
}
.price-carousel .owl-nav .owl-prev:hover, .price-carousel .owl-nav .owl-next:hover,
.testimonial-carousel .owl-nav .owl-prev:hover, .testimonial-carousel .owl-nav .owl-next:hover{
    background: #e97195 !important;
}

@media (max-width:991px) {
    .navbar {
        padding: 10px !important;
    }
}


.new_bg .low-head{
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #e97195 !important;
}
.testimonial-item p{
    font-size: 16px !important;
}
/* .owl-carousel .owl-item img {
height: 200px;
} */
.services_main_new div{
    background: transparent !important;
    background-color: transparent !important;
    color: #6B6A75 !important;

}
.services_main_new div p span{
    color: #6B6A75 !important;
    font-family: "Open Sans",sans-serif !important;
    background-color: transparent !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}
.services_main_new div p i{
    font-style: normal !important;
    background-color: transparent !important;
}
.services_main_new  h1{
    color: #6B6A75 !important;
}
.services_main_new  h2{
    color: #6B6A75 !important;
}
.services_main_new  h3{
    color: #6B6A75 !important;
}
.services_main_new .imd{
    text-align: center !important;
}
.services_main_new img{
    width: 60% !important;
}
.footer_links a{
  color: #ffffff !important;
}
.footer_links a:hover{
    color: #ffffff !important;
}
.footer_linksc a{
    color: #6b6a75 !important;
}
.footer_linksc a:hover{
    color: #6b6a75 !important;
}
.blog_slide{
    min-height: 260px;
}
.thank_you{
    height: 100vh;
    display: flex;
    text-align: center;
    justify-content: center;
}
.thank_you_main{
    height: 100vh;
    display: flex;
    width: 45%;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}




@media (max-width:767px) {
    .contact_new{
        padding: 20px !important;
    }
    .display-6 {
        font-size: 24px !important;
    }
    .contact_new h5{
        font-size: 18px !important;
    }
    .new_bg .low-head {
        font-size: 24px !important;
        font-weight: 800 !important;
        color: #e97195 !important;
        text-align: left;
    }
    .display-5 {
        font-size: 24px !important;
        font-weight: 800 !important;
        text-align: left;
    }
    .display-3{
        font-size: 28px !important;
        font-weight: 800 !important;
    }
    .blog_area, .blog_area p{
        text-align: left;
    }
    .services_main_new img {
        width: 100% !important;
    }
    .new_banner_mobile,
    .inner_new_banner_mobile{
        padding: 0px !important;
    }
    .opening_hours{
        padding: 25px !important;
    }
    .opening_hours div{
        margin-bottom: 15px !important;
    }
    .opening_hours{
        height: 100% !important;
        min-height: 200px !important;
    }
    .home_slide{
        display: block !important;
        position: relative !important;
        background: rgb(245 126 87) !important;
        height: 300px;
    }
    .home-slide-text2 {
        font-size: 24px !important;
        text-shadow: none;
    }
    .appointment_home{
        padding: 0px !important;
    }
    .appointment-form{
        padding: 20px !important;
    }
    .appointment-new {
        width: 90%;
        margin: 0px auto;
        margin-bottom: 145px !important;
    }
    .thank_you_main{
        width: 80%;
    }
}
