*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
@font-face {
    font-family: bodyfont;
    src: url(../font/Poppins/Poppins-Regular.ttf);
}
@font-face {
    font-family: heading-font;
    src: url(../font/Rozha_One/RozhaOne-Regular.ttf);
}
html{
    font-family: bodyfont;
}
body{
    overflow-x: hidden;
    font-family: bodyfont;
}
a{
    text-decoration: none;
}
:root{
    --primary-color:#026479;
    --secondary-color:#fbc22e;
    --light-yellow: #ffce90;
    --swiper-navigation-size: 15px;
    --swiper-theme-color: black;
}
section{
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}
body{
    position: relative;
}
main{
    margin-top: 100px;
}
/* --------------common swiper and carousel  design by vaishali--------------- */
/* -------------start css----------- */
.main_heading_wrap{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin: 20px 0px 30px 0px;
}
 .heading_icon_black img{
    width: 70%;
}
.main_heading h1{
    font-family: heading-font;
    background-color:var(--light-yellow);
    font-size: 40px;
    position: relative;
}
.main_heading h1::before
 {
    content: "";
    background-image: url(../img/line.png);
    position: absolute;
    top: 50%;
    left: -128px;
    background-repeat: no-repeat;
    background-size: 115px;
    width: 134px;
    height: 4px;
}
.main_heading h1::after {
    content: "";
    position: absolute;
    background-image: url(../img/line.png);
    top: 50%; 
    right: -125px;
    transform: scaleX(-1);
    background-repeat: no-repeat;
    background-size: 115px;
    width: 134px;
    height: 4px; 
}
.swiper-button-next, 
.swiper-button-prev{
    top: 54%;
    background: var(--secondary-color);
    padding: 21px;
    border-radius: 50%;
    color: white;
    font-weight: bolder;
}
 .carousel-control-prev:not(.client_prev_btn),
 .carousel-control-next:not(.client_next_btn)
 {
    background: var(--secondary-color);
    width: 50px;
    height: 50px;
    position: absolute;
    transform: translate(50%, 400px);
    border-radius: 50%;
}
.carousel-control-next:not(.client_next_btn){
    /* background: var(--secondary-color);
    width: 50px;
    height: 50px;
    position: absolute; */
    transform: translate(-57%, 400px);
    /* border-radius: 50%; */
}
/* .client_prev_btn .carousel-control-prev-icon{
    background-image:  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
    padding: 21px;
    border-radius: 50%;
    color: var(--secondary-color);
}
.client_next_btn .carousel-control-next-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
} */
.carousel-control-prev-icon
  {
    background-image:  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    padding: 21px;
    border-radius: 50%;
    color: var(--secondary-color);
}
.carousel-control-next-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.content{
    font-family: bodyfont;
    color: #000;
    justify-content: center;
    font-size: 16px;
}
/* -------------end css----------- */
/*************header section************/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}
header .navbar-expand-lg .navbar-collapse { 
    justify-content: flex-end !important;
}
.nav_wrap ul li a{
    margin: 0px 10px;
}
header .nav-link { 
    font-family:  bodyfont;
    font-size: 17px;
}
header .nav-item{
    margin: 0px 10px;
}
.nav-item .active{
    color: var(--primary-color) !important;
    font-weight: 500;
    border-bottom: 2px solid var(--primary-color);
}
.logo img{
    width: 230px;
}
.common_btn{
    background-color: var(--primary-color);
    padding: 8px 40px;
    border-radius: 30px;
    color: white;
    font-size: 18px;
    font-family: bodyfont;
    font-weight: 400;
    border: 2px solid var(--primary-color);
}
.common_btn:hover{
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/***********why urbanaayurveda***********/
.why_banner img{
    padding-top: 50px;
}
 /*****diseases_section swiper css******/
.diseases_section,
.offer_section,
.doctors,
.banner_section,
.services_section,
.client_section,
.specialities {
    z-index: 0;
}
.diseasesSwiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
  }
  .diseasesSwiper .swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  } 
  .diseasesSwiper .diseasesdetails-wrap{
    position: relative;
  }
 .diseasesSwiper .swiper-slide {
    text-align: center;
    font-size: 18px; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  } 
  .diseasesSwiper .swiper-slide img{
    display: block;
    width: 100%;
   } 
   .diseasesSwiper .diseasesimage{
    border-radius: 10px;
    box-shadow: 3px 3px 5px 0px #80808073;
    position: relative;
   } 
   .diseasesSwiper .disesse_name{
    position: relative;
    bottom: 54px;
    color: white;
    font-size: 20px;
    font-family: 'bodyfont';
    text-transform: capitalize;
   }

/*************amazing offer section**************/
.amazing_offer_inner{
    background-image: url(../img/banner/Offer_banner_background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 15px 80px;
}
.offer_main_heading h1{
    background-color: black;
    color: white;
    font-family: heading-font;
    font-size: 40px;
    position: relative;
}
.offer_heading_icon_white{
    text-align: start;
}
.offer_heading_icon_white img{
    width: 60%;
}
.swiper-slide{
    width: 40%;
}
.amazing_offer_swiper{
    position: relative;
}
.amazing_offer_swiper  .swiper{
    position: relative;
    width: 100%;
    overflow-x: hidden;
}
.offersSwiper .swiper-slide img{
    width: 100%;
}
.offer_section .offer_left_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.offer_section .swiper-button-next, 
.offer_section .swiper-button-prev{
    top: 45%;
    background: var(--secondary-color);
    padding: 21px;
    border-radius: 50%;
    color: white;
    font-weight: bolder;
}
/*********click and confirm section*******/
.confirm_right_side_content .main_heading_wrap{
    padding-top:0px !important;
    display: flex;
    align-items: flex-start;
}
/* .confirm_right_side_content p{
   justify-content: center;
    font-family: bodyfont;
    padding-bottom: 10px;
    font-size: 16px;
} */
.desk_img,
.phone_img{
    width: 100%;
}
/***********persanalized section*******/
.persnalized_icon_wrap{
    padding: 80px 0px;
}
.persnalized_icon_wrap img{
    width: 130px
} 
.persnalized_icon_wrap p{
    color: white;
    font-family: bodyfont;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
} 
.personalized_wrapper{
    background: url(../img/Personalised_Perfection.webp),no-repeat;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding: 30px 0px;
}
/*************drop us line section*******/
.drop_us_wrapper{
    background-image: url(../img/Personalised_drop_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: start;
    padding: 0px 30px;
}
.drop_left_img img{
    width: 80%;
    padding-top: 20px;
} 
.drop_content_wrap h1{
    color: white;
    font-size: 60px;
    font-family: heading-font;
}
.drop_content_wrap p{
    color: white;
    font-size: 16px;
    font-family: bodyfont;
    text-align: justify;
}
.button_wrap{
    padding-top: 10px;
    margin-bottom: 40px;
}
.button_wrap .common_btn_one,
.button_wrap .common_btn_two{
    border-radius: 30px;
    font-size: 18px;
    font-family: bodyfont;
}
.button_wrap .common_btn_one{
    background-color:white;
    padding: 8px 40px;
    color:black;
    margin-right: 20px;
    font-weight: 600;
}
.button_wrap .common_btn_one:hover{
    background-color: transparent;
    color: white;
    border:2px solid white;
}
.button_wrap .common_btn_two{
    padding: 8px 60px;
    border:2px solid white;
    color: white;
}
.button_wrap .common_btn_two:hover{
    background-color: white;
    color: black;
    border:2px solid white;
    font-weight: 600;
}
/*************client say section*******/ 
.clients_wrap{
    background-color: white;
    text-align: center;
    padding-top: 45px;
    padding-bottom: 20px;
    margin: 0px 40px;
    position: relative;
    box-shadow: 1px 1px 11px 0px gray;
    height: 285px;

}
.clients_wrap p{
    font-size: 16px;
}
.client_quate::before {
    content: url(../img/quate_imgg.png);
    position: absolute;
    transform: translate(-50%, -8%);
}
.clients_wrap:before{
    content: "";
    position: absolute;
    background-image: url('../img/client_after_img.png');
    top: 0;
    right: 0;
    transform: rotateZ(176deg);
    width: 105px;
    height: 141px;
    background-size: 101%;
    background-repeat: no-repeat;
}
.clients_wrap:after{
    content: "";
    background-image: url('../img/client_after_img.png');
    position: absolute;
    bottom: 0;
    left: 0;
    width: 105px;
    height: 141px;
    background-size: 101%;
    background-repeat: no-repeat;
}
.client_section .carousel-inner .carousel-item{
    padding: 20px 120px;
}
/* .client_section .carousel-inner .carousel-item p{
    font-family: bodyfont!important;
} */
.clients_center_icon img {
    width: 5%;
    text-align: center;
    padding-top: 30px;
}
.client_name span{
    font-size: 14px;
    font-family: 'bodyfont';
    font-weight: 600;
    /* position: relative; */
}
.client_name h6{
    font-size: 10px;
}
/* .client_name span::before {
    content: '';
    background-image: url(../img/line.png);
    position: absolute;
    background-repeat: no-repeat;
    left: -82px;
    width: 50%;
    height: 1px;
    top: 10px;
} */
/* .client_name span::after {
    content: '';
    background-image: url(../img/line.png);
    position: absolute;
    background-size: 100px;
    background-repeat: no-repeat;
    width: 50%;
    height: 2px;
    top: 10px;
    right: -82px;
    transform: rotate(181deg);
} */
.client_prev_btn{
    /* background-color: var(--secondary-color);
    height: 30px;
    width: 30px;
    border-radius: 30px;
    position: absolute;
    top: 68px;
    left: -12px; */
    background: var(--secondary-color);
    width: 40px;
    height: 40px;
    top: 68px;
    position: absolute;
    border-radius: 50%;
}
.client_next_btn{
    background: var(--secondary-color);
    width: 40px;
    height: 40px;
    top: 68px;
    position: absolute;
    border-radius: 50%;
}
.carousel-control-prev-icon {
    background-size: 47% 100%;
}
.carousel-control-next-icon {
    background-size: 47% 100%;
}

/*************drop us section***********/



/*************footer section*************/
.footer_section{
    background-color: var(--primary-color);
}
.footer_wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 30px;
}
.footer_logo img{
    width: 200px;
    padding-bottom: 10px;
}
.footer_contact{
    display: flex !important;
    align-items: center;
    flex-direction: column;
}
.footer_contact span{
    color: white;
    font-size: 18px;
    font-family: bodyfont;
}
.footer_contact i{
    margin: 0px 10px;
    font-size: 15px;
}
.secial_icon_wrap{
    padding-top: 20px;
}
.secial_icon_wrap .social_icon_info li{
    background-color: var(--secondary-color); 
    border-radius: 35px; 
    margin: 0px 5px;
    position: relative;
    width: 35px;
    height: 35px;
    list-style-type: none;
    padding: 0; 
    display: inline-block;
}
.secial_icon_wrap .social_icon_info li i{
    color: white;
    font-size: 18px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.our_branches h3 {
    color:white;
    font-size: 24px;
    font-family:bodyfont;
    text-align: center;
    font-weight: 700;
}
.our_branches span{
   color: white;
   font-size: 16px;
   padding: 0px 5px;
   justify-content: center;
   position: relative;
}
.our_branches span::after   {
    content: '';
    position: absolute;
    height: 18px;
    width: 0px;
    top: 3px;
    border: 1px white solid;
    margin-left: 5px;
}
footer .footer_logo{
    background: white;
    margin-bottom: 15px;
}
.footer_pages{
    padding-top: 20px;
    display: flex;
}
.footer_pages h6{
    color:#ffce90;
    margin: 0px 10px;
    font-size: 20px;
    font-family: bodyfont;
}
.footer_bottom{
    background-color: rgb(234, 174, 23);
    padding: 10px;
    text-align: center;
    font-size: 15px;
    font-family: bodyfont;
    margin-top: 40px;
    color: white;
}
footer .footer_pages ul{
    list-style-type: none;
}
footer .footer_pages ul li{
    display: inline;
    margin-right: 20px;
}
footer .footer_pages ul li a{
    color: var(--light-yellow);
    text-transform: capitalize;
    text-decoration: none;
    font-size: 18px;
}
footer ul{
    padding-left: 0px;
}
/* ------------------vaishali css satrt-------------------- */
/* ----------------about us page start--------------- */
.aboutayurveda{
    background: url('../img/banner/aboutayurvedabg.webp');
    background-repeat: no-repeat;
}
.about-heading h1{
    font-family: heading-font;
    background-color:var(--secondary-color);
    font-size: 40px;
    position: relative;
    color: white;

}
.about-heading h1::before {
    content: "";
    background-image: url(../img/aboutlinebefore.png);
    position: absolute;
    top: 50%;
    left: -128px;
    background-repeat: no-repeat;
    background-size: 115px;
    width: 134px;
    height: 4px;
}

.about-heading h1::after {
    content: "";
    background-image: url(../img/aboutlinebefore.png);
    position: absolute;
    top: 50%;
    right: -125px;
    background-repeat: no-repeat;
    background-size: 115px;
    width: 134px;
    height: 4px;
    transform: scaleX(-1);
}
.about_section .main_heading_wrap{
    padding: 0px !important;
}

.aboutayurveda .about-content{
    width: 80%;
    text-align: center;
    margin: auto;
    padding-top: 30px;
}
.aboutayurveda .about-content p{
    color: white;
    font-size: 22px;
    line-height: 152%;
}
.doctors .doctor-info{
    margin-top: 20px;
} 
.doctors .doctor-info h4{
    font-size: 18px;
    color: black;
}
.doctors .doctor-info p{
    font-size: 15px;
}
.doctors .doctorSwiper{
    text-align: center;
    overflow-x: hidden;
}
.doctors .doctorSwiper .swiper-slide img{
    width: 100%;
}
.doctors img{
    text-align: center;
}
/* ----------------about us page end--------------- */
/* ----------------contact us page start--------------- */
.branches .branches-wrap{
    box-shadow: 0px 0px 8px 3px #ffce9038;
    padding: 20px 30px;
    border: 1px solid #FFCE90;
}
.branches .branches-wrap .branches-heading{
    margin-bottom: 20px;
}
.branches .branches-wrap .branches-heading h6{
    font-size: 25px;
    font-family: heading-font;
}

.branches .branches-wrap .branches-info .info-wrap{
    margin-bottom: 15px;
}
.branches .branches-wrap .branches-info .info-wrap i{
    margin-right: 15px;
    color: var(--primary-color);
}

.branches .branches-wrap .branches-info .info-wrap a{
    font-size: 15px;
    color: black;
    text-decoration: none;
}
.branches .branches-wrap .branches-info .info-wrap a .map-btn{
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    padding: 5px 26px;
    font-family: bodyfont;
}
.branches .branches-wrap .branches-info .info-wrap a .map-btn:hover{
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.contactform{
    background: url(../img/banner/contact_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.contactform .contact-form-wrap input:not(input[type="submit"]),
.contactform .contact-form-wrap select,
.contactform .contact-form-wrap textarea{
    background-color: transparent;
    border-radius: 0px;
    border: 2px solid white;
    padding: 10px;
    color: white !important;
    /* text-transform: capitalize; */
    font-size: 18px;
}
.contactform .contact-form-wrap input::placeholder{
    color: white;
    text-transform: capitalize;
}
.contactform .contact-form-wrap input:focus,
.contactform .contact-form-wrap select:focus,
.contactform .contact-form-wrap textarea:focus{
    box-shadow: none;
}
.contactform .contact-form-wrap input[type="checkbox"]{
    width: 23px;
    height: 19px;
    margin-right: 10px;
}
.contactform .contact-form-wrap select option{
    color: black;
    text-transform: capitalize;
}
.contactform .contact-form-wrap .form-group{
    margin-bottom: 20px;
}
.contactform .contact-form-wrap .form-group label{
    color: white;
    font-size: 16px;
}
.contactform .btn-element{
    display: flex;
    justify-content: center;
}
.contactbtn{
    background-color: var(--secondary-color) !important;
    border-radius: 50px;
    border: none;
    padding: 13px 55px;
    font-size: 20px;
    font-weight: 600;
    color: white;
}



.error-message{
    color: red;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.captcha {
    /* margin-bottom: 15px; */
    display: flex;
    margin-top: 20px;
    gap: 10px;
    align-items: center;
}
.captcha .preview1 {
    color: #000;
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    letter-spacing: 8px;
    border: 1px dashed #000;
    font-family: monospace;
    /* margin-bottom: 10px; */
}
.captcha .preview1 span{
    display: inline-block;
    user-select: none;
}

.captcha .preview {
    color: #fff;
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    letter-spacing: 8px;
    border: 1px dashed #fff;
    font-family: monospace;
    /* margin-bottom: 10px; */
}
.captcha .preview span{
    display: inline-block;
    user-select: none;
}

.captcha-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-form input {
    flex: 1;
    padding: 8px !important;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 5px;
}
.captcha-form input:focus{
    box-shadow: none;
    outline: none;
    border: 1px solid #000;
}
.captcha-form button {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 8px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.cptcha-refresh1{
    background-color: var(--primary-color) !important;
}
/* ----------------contact us page end--------------- */
/* ------------our doctors page css satrt----------- */
.ourdoctors .doctor-name{
    text-transform: capitalize;
    font-size: 18px;
}
.ourdoctors .doctors-body-wrap{
    text-align: center;
}
.ourdoctors .doctors-body-wrap .doctor-designation{
    font-size: 15px;
}
/* ------------our doctors page css end----------- */
/* ------------ book appointment form page css end----------- */
.appointment-form .book-appointment-form{
    margin: auto;
    border-radius:5px;
}
.appointment-form .book_right_side_img{
    padding: 0px 50px
}
.appointment-form .form-heading p{
    font-size: 15px;
}
.appointment-form .appointment-form-wrap{
    margin: 20px 0px;
}
.appointment-form form input:not(input[type="submit"]),
.appointment-form form select{
    border-radius: 0px; 
    padding: 12px 15px;
    text-transform: capitalize;
    background: transparent;
    border: 1px rgb(190, 190, 190) solid;
    color: black;
}
.appointment-form form select option{
    color: black;
}

.appointment-form form input:focus,
.appointment-form form select:focus,
.appointment-form form textarea:focus{
    background-color: transparent;
    box-shadow: none;
    border: 1px solid var(--primary-color) !important;
    color: black;
}
.appointment-form form input::placeholder{
    color: black;
}
.appointment-form form textarea{
    border-radius: 0px;
    background: transparent;
    border: 1px rgb(190, 190, 190) solid;
    color: black !important;
}
.appointment-form form .form-group{
    margin: 8px 0px;
}
.appointment-form .appointment-btn-wrap{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.appointment-form .appointment-btn:hover{
    background-color: transparent;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color);
}
/* ------------ book appointment form page css end----------- */
/**********Responsive(media query)********/
.confirm_right_side_content .main_heading h1::before {
    display: none;
 }
 .confirm_right_side_content .main_heading h1::after {
     display: none;
 }
 .swiper-pagination{
    display: none;
}

/* ---------------------------------gallery page css start-------------- */
.gallerySection .tab-content img{
    margin-bottom: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.gallerySection .tab-content img:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
} 
.galleryBox {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #1b1818f5;
} 
.galleryBox .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto 0;
    padding: 0;
    width: 60%;
} 
.galleryBox .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    opacity: 1;
}
.galleryBox .close:hover,
.galleryBox .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}
.galleryBox .mySlides {
    display: none;
    border: 10px solid #fff;
}
.cursor {
    cursor: pointer;
}
.gallerySection .nav-pills{
    margin-bottom: 90px;
}
.gallerySection .nav-pills .nav-item .nav-link{
    background: transparent;
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    padding: 10px 60px;
    border-radius: 50px;
    border: 2px solid #000;
    margin: 0px 10px;
}
.gallerySection .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background: #000;
    font-size: 16px;
    color: #fff !important;
    text-transform: uppercase;
    padding: 10px 60px;
    border-radius: 50px; 
    border: 2px solid #000;
}
/* Next & previous buttons */
.galleryBox .prev,
.galleryBox .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}
.galleryBox .prev {
    left: -10%;
}
.galleryBox .next {
    right: -10%;
}
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}    
.demo {
    opacity: 0.6;
}
.galleryBox   .active,
.galleryBox .demo:hover {
    opacity: 1;
}
.galleryBox    img.hover-shadow {
    transition: 0.3s;
} 
.modal-content {
    position: absolute;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.gallerySection .videoimg .videoimgwrap{
    position: relative;
}
.gallerySection .videoimg .videoimgwrap img{
    margin-bottom: 0px;
}
.gallerySection .videoimg .videoimgwrap .video_button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 12px 17px;
    border-radius: 50px;
}
.gallerySection .videoimg .videoimgwrap .video_button i{ 
    font-size: 18px;
    color: var(--primary-color);
}
.video_main{
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: #000000ef;
    display: none;
}

.modal {
    background-color: #31383ae0; 
    transition: 0.9 ease-in-out;
}
.video_model_box .modal-dialog{
    max-width: 73%;
    margin: 20px auto;
}
.video_model_box .modal-content{
    top: auto !important;
    left: auto !important;
    transform: translate(10px, 10px) !important;
    position: relative;
    background-color: transparent;
}
.video_model_box .btn-close{
    position: absolute;
    top: 0px;
    right: -30px;
    opacity: 1;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

/*********pratibha changes*********/
.specialities .specialities-wrap .swiper{
    overflow: hidden;
}
.specialities .swiper img{
    width: 70%;
    margin: auto;
    display: block;
}
.specialities-wrap .main_heading h1{
    margin-bottom: 60px;
}
.specialities .swiper-button-next,
.specialities .swiper-button-prev {
    top: 63%;
}
.specialities a{
    text-decoration: none;
}
 
/* ---------------------------------gallery page css end-------------- */

@media  (min-width: 992px) and (max-width:1200px){
    header .nav-link {
        margin-right: 0px; 
        font-size: 15px;
    }
    .logo img{
        width: 190px
    }
    .common_btn{
        padding: 7px 28px; 
        font-size: 16px;
    }
    .main_heading h1 { 
        font-size: 36px;
    }
    .heading__icon img {
        width: 53%;
    }
    .clients_wrap:before { 
        top: -10px; 
        width: 105px;
        height: 116px;
        background-size: 63%;
    }
    .clients_wrap:after { 
        bottom: -10px; 
        width: 105px;
        height: 116px;
        background-size: 63%;
    }
    /* ---------vaishali------ */
    .about-heading h1 { 
        font-size: 36px;
    }
}
@media screen and (min-device-width: 992px) {
    header .navbar-nav{
        align-items: center;
    }
    .desk_img{
        display: block;
    }
    .phone_img{
        display: none;
    }    
}
@media screen and (max-device-width: 991px) {
    header .nav-item {
        font-size: 15px;
    }
    .logo img{
       width: 150px;
    }
    .content{
        font-size: 15px;
    }
    .main_heading h1::before {
       display: none;
    }
    .main_heading h1::after {
        display: none;
    }
    .offer_main_heading h1::after {
        display: none;
    }
    .desk_img,
    .hide-about-heading{
        display: none !important;
    }
    .phone_img{
        display: block;
    }
    .confirm_section .row:not(.about_section .row){
        flex-direction: column-reverse;
    } 
    .clients_wrap {
        margin: 0;
        border-radius: 10px;
        height: auto;
    }
    .persnalized_icon_wrap {
        padding: 20px 0px;
    }
    main{
        margin-top: 80px;
    }
    /* ---------vaishali--------- */
    .carousel-control-prev,
    .carousel-control-next,
    .swiper-button-next, 
    .swiper-button-prev,
    .about-heading h1::before,
    .about-heading h1::after{
        display: none;
    }
    .about_section{
        padding-top: 50px !important;
    }
    /* .about_section p {
        text-align: justify !important;
    } */
    .aboutayurveda .about-content p {
        font-size: 18px;
        text-align: justify;
    }
}

@media (max-device-width: 991px) and (min-device-width: 768px) {
    section {
        padding-top: 50px;
        padding-bottom: 30px;
        position: relative;
    }
    .client_prev_btn{
        display: none;
    }
    .client_next_btn{
        display: none;
    }
    .client_name span::before {
        display: none;
    }
    .client_name span::after {
        display: none;
    }
    .client_quate::before {
        display: none;
       }
    .clients_wrap::before{
         display: block;
    }
    .clients_wrap::after{
       display: block;
    }
    .client_name span{
        font-size: 12px;
    }
    .client_name h6{
        font-size: 8px;
    }
    .heading__icon img{
        width: 70%;
    }
    .amazing_offer_prev{
       display: none;
    }
    .amazing_offer_next{
        display: none;
    }
    .swiper-pagination{
        display: block;
    }
   
    .confirm_right_side_content .main_heading_wrap{
        padding-top: 30px;
    }
    .mobile_view{
        display:none;
    }
    .persnalized_icon_wrap img{
        width: 130px
    } 
    .drop_us_wrapper .button_wrap {
        padding-top: 10px;
        padding-bottom: 20px;
    }
    .drop_content_wrap h1{
        font-size: 40px;
    }
    .drop_content_wrap {
        padding-top: 0px;
        text-align: center;
    }
    .drop_left_img {
        text-align: center;
    }
    .drop_left_img img {
        width: 100%;
    }
     .drop_content_wrap {
        padding-top: 50px;
        text-align: center;
    }
    .button_wrap .common_btn_one {
        padding: 8px 25px;
        font-size: 16px;
    }
    .button_wrap .common_btn_two {
        padding: 6px 35px;
        font-size: 16px;
    }
    /* .confirm_right_side_content .main_heading_wrap {
        font-size: 16px;
        padding-bottom: 18px;
        text-align: center;
    } */
    /* .confirm_right_side_content .main_heading_wrap {
        padding: 0px;
        display: flex;
        align-items: center;
    } */
    /* .confirm_right_side_content p{
        justify-content: center;
         padding-bottom: 10px;
     } */
     /* .confirm_right_side_content{
        text-align: center;
        padding-bottom: 30px;
     } */
    .clients_wrap:before { 
        top: -10px; 
        width: 80px;
        height: 82px;
        background-size: 56%;
    }
    .clients_wrap:after { 
        bottom: -10px; 
        width: 80px;
        height: 82px;
        background-size: 56%;
    }
    .client_section .carousel-inner .carousel-item {
        padding: 10px 75px;
    }
    /* ----------vaishali------- */
    .branches .branches-wrap .branches-heading h6 {
        font-size: 21px;
    }
    .branches .branches-wrap .branches-info .info-wrap span{
        font-size: 15px;
    }
}
@media (max-device-width: 767px) and (min-device-width: 574px) {
    section {
        padding-top: 40px;
        padding-bottom: 0px;
    }
    main{
        margin-top: 70px;
    }
    .why_banner img {
        padding-top: 0px;
    }
    .logo img{
        padding: 0px 20px;
    }
    .common_btn{
        padding: 10px 30px;
        border-radius: 30px;
    }
    .main_heading h1{
        font-size: 30px;
    }
    .offer_main_heading h1{
        font-size: 30px;
    }
    .main_heading h1::before {
       display: none;
    }
    .main_heading h1::after {
        display: none;
    }
    .video_section_prev{
        display: none;
    }
    .video_section_next{
        display: none;
    }
    .client_prev_btn{
        display: none;
    }
    .client_next_btn{
        display: none;
    }
    .client_name span::before {
        display: none;
    }
    .client_name span::after {
        display: none;
    }
    .client_quate::before {
        display: none;
       }
    .clients_wrap::before{
         display: block;
    }
    .clients_wrap::after{
       display: block;
    }
    .clients_wrap p{
        font-size: 16px;
    }
    .client_name span{
        font-size: 12px;
    }
    .client_name h6{
        font-size: 8px;
    }
    .heading__icon img{
        width: 70%;
    }
    .why_banner img{
        padding-top: 20px;
    }
    .heading__icon{
        text-align: center;
    }
    .confirm_right_side_content .main_heading_wrap{
        padding-top: 0px;
        display: flex;
        align-items: center
    }
     .confirm_right_side_content{
        text-align: center;
        padding-bottom: 30px;
     }
    .w-auto{
        width: auto!important;
        font-size: 14px;
    }
    .heading_icon_black img{
        width: 50%;
    }
    .heading_icon_black{
        text-align: center;
    }
    .amazing_offer_prev{
        display: none;
     }
     .amazing_offer_next{
         display: none;
     }
     .offer_heading_icon_white{
        text-align: center;
    }
     .offer_heading_icon_white img{
        width: 50%;
     }
    .persnalized_icon_wrap {
        padding: 15px;
    }
    .persnalized_icon_wrap img{
        width: 100px
    } 
    .video_section {
        padding: 0px;
    }
    .drop_content_wrap h1{
        font-size: 50px;
    }
    .drop_content_wrap {
        padding-top: 0px;
        text-align: center;
    } 
   
    .drop_left_img img {
        width: 60%;
        padding-top: 20px;
        display: block;
        margin: auto;
    }
    .drop_content_wrap{
        margin-top: -30px;
    }
    .button_wrap {
        padding-top: 10px;
        padding-bottom: 30px;
        text-align: center;
    }
    .button_wrap .common_btn_one {
        padding: 8px 24px;
        font-size: 18px;
    }
    .button_wrap .common_btn_two {
        padding: 6px 48px;
        font-size: 18px;
    }
    /* .confirm_right_side_content .main_heading_wrap {
        font-size: 14px;
        padding-bottom: 18px;
        text-align: center;
    }
    .confirm_right_side_content .main_heading_wrap {
        padding: 0px;
        display: flex;
        align-items: center;
    } */
    .clients_wrap:before { 
        top: -10px; 
        width: 80px;
        height: 82px;
        background-size: 56%;
    }
    .clients_wrap:after { 
        bottom: -10px; 
        width: 80px;
        height: 82px;
        background-size: 56%;
    }
    .client_section .carousel-inner .carousel-item {
        padding: 10px 50px;
    }
    /* ------------vaishali--------- */
    .about-heading h1{
        font-size: 30px;
    }
    .about-heading h1::before,
    .about-heading h1::after{
        display: none;
    }
    .branches .branches-wrap .branches-heading h6 {
        font-size: 25px;
    }
    .contactbtn {
        padding: 8px 47px;
        font-size: 16px;
    }
    .contactform .contact-form-wrap .form-group label {
        font-size: 12px;
    }
    .contactform .contact-form-wrap input::placeholder,
    .contactform .contact-form-wrap select,
    .contactform .contact-form-wrap textarea,
    .contactform .contact-form-wrap input:not(input[type="submit"]){
      font-size: 14px;
    }
    /***************pratibha***************/
    .specialities-wrap .main_heading h1 {
        margin-bottom: 30px !important;
    }
    .diseasesSwiper .disesse_name{
        bottom: 40px;
        font-size: 15px;
       }
}
@media screen and (max-device-width: 574px) {
    section {
        padding-top: 20px;
        padding-bottom: 0px;
    }
    main {
        margin-top: 67px;
    }
    .why_banner img {
        padding-top: 0px;
    }
    .logo img{
        padding: 0px;
        width: 110px;
    }
    .common_btn{
        padding: 10px 23px;
        font-size: 12px;
    }
    .main_heading h1{
        font-size: 22px;
    }
    .offer_main_heading h1{
        font-size: 22px;
    }
    .main_heading h1::before {
       display: none;
    }
    .main_heading h1::after {
        display: none;
    }
    .video_section_prev{
        display: none;
    }
    .video_section_next{
        display: none;
    }
    .our_branches h3 {
        font-size: 16px;
    }
    .our_branches span{
       font-size: 14px;
    }
    .footer_pages h6{
        margin: 0px 4px;
        font-size: 14px;
    }
    .client_prev_btn{
        display: none;
    }
    .client_next_btn{
        display: none;
    }
    .client_name span::before {
        display: none;
    }
    .client_name span::after {
        display: none;
    }
    .client_quate::before {
        display: none;
       }
    .clients_wrap::before{
         display: block;
    }
    .clients_wrap::after{
       display: block;
    }
    .clients_wrap p{
        font-size: 12px;
    }
    .client_name span{
        font-size: 12px;
    }
    .client_name h6{
        font-size: 12px;
    }
    .heading__icon img{
        width: 50%;
    }
    .heading__icon{
        text-align: center;
    }
    footer .our_branches  {
        text-align: center;
    }
    footer .footer_pages ul li a {
        font-size: 15px;
    }
    footer .footer_pages ul li {
        margin-right: 10px;
    }
    footer ul{
        padding-left: 0px;
    }
    .copywrite_footer span{
        font-size: 13px;
    }
    .w-auto{
        width: auto!important;
        font-size: 14px;
    }
      .heading_icon_black{
        text-align: center;
    }
    .heading_icon_black img{
        width: 40%;
   }
   .amazing_offer_prev{
        display: none;
    }
    .amazing_offer_next{
        display: none;
    }
    .offer_heading_icon_white{
        text-align: center;
    }
    .offer_heading_icon_white img{
        width: 40%;
     }
    .persnalized_icon_wrap img {
        width: 60px
    } 
    .persnalized_icon_wrap{
        padding: 0px;
    }
    .persnalized_icon_wrap p {
        font-size: 13px;
    }
    .confirm_right_side_content .main_heading_wrap {
        display: flex;
        align-items: center;
    }
    .confirm_right_side_content p {
        justify-content: center;
        text-align: justify;
        font-size: 15px;
    }
    .confirm_right_side_content .common_btn{
        padding: 10px 30px;
        font-size: 12px;
     }
    .confirm_right_side_content{
        text-align: center;
    }
    .drop_content_wrap h1{
        font-size: 24px;
        text-align: center;
    }
    /* .drop_content_wrap p {
        font-size: 16px;
        text-align: center;
    } */
    .drop_left_img img {
        width: 60%;
        padding-top: 20px;
        display: block;
        margin: auto;
    }
    .button_wrap .common_btn_one {
        padding: 7px 15px;
        font-size: 14px;
        margin-bottom: 20px;
        margin-right: 0;
    }
    .drop_content_wrap {
       padding-top: 0px;
    }
    .button_wrap .common_btn_two {
        padding: 7px 34px;
        font-size: 14px;
        margin-bottom: 20px;
    }
    .button_wrap {
        text-align: center;
    }
    .clients_wrap:before { 
        top: -10px; 
        width: 80px;
        height: 88px;
        background-size: 61%;
    }
    .clients_wrap:after { 
        bottom: -10px; 
        width: 80px;
        height: 88px;
        background-size: 61%;
    }
    .client_section .carousel-inner .carousel-item {
        padding: 10px 40px;
    }
    /* ----vaishali--------- */
    .about-heading h1::before,
    .about-heading h1::after{
        display: none;
    }
    .about_section{
        padding-top: 10px !important;
        padding-bottom: 30px !important;
    }
    .about-heading h1{
        font-size: 22px;
    }
    .about-heading h1::before,
    .about-heading h1::after{
        display: none;
    }
    .aboutayurveda .about-content p {
        font-size: 15px;
    }
    .aboutayurveda .about-content{
        padding-top: 0px;
    }
    .branches{
        padding-top: 0px;
    }
    .branches .branches-wrap .branches-heading h6{
        font-size: 20px;
    }
    .branches .branches-wrap .branches-info .info-wrap span:nth-child(2) {
        font-size: 13px;
    }
    .branches .branches-wrap .branches-info .info-wrap a .map-btn{
        padding: 3px 12px;
    }
    .contactbtn{
        padding: 6px 35px;
    }
    .doctors .doctor-info h4{
        font-size: 15px;
        color: black;
    }
    .amazing_offer_inner{
        padding: 10px 10px;
    }  
    .video_model_box .modal-dialog {
        max-width: 83%;
        top: 35%;
        margin: 0px 0px;
    }
    /***************pratibha***************/
    .specialities-wrap .main_heading h1 {
        margin-bottom: 0px !important;
    }
    .appointment-form .form-heading h2{
        font-size: 20px;
    }
    .appointment-form .form-heading p{
        font-size: 11px;
    }
    .appointment-form .book_right_side_img{
        padding: 0px 15px
    }
    .diseasesSwiper .disesse_name{
        bottom: 35px;
        font-size: 13px;
       }
       .drop_content_wrap p{
        font-size: 14px;
        text-align: justify;
    }
    .branches .branches-wrap {
        padding: 16px 10px;
    }
    .contactbtn {
        padding: 8px 47px;
        font-size: 16px;
    }
    .contactform .contact-form-wrap .form-group label {
        font-size: 12px;
    }
    .contactform .contact-form-wrap input::placeholder,
    .contactform .contact-form-wrap select,
    .contactform .contact-form-wrap textarea,
    .contactform .contact-form-wrap input:not(input[type="submit"]),
    .appointment-form form select,
    .appointment-form form input:not(input[type="submit"]),
    .appointment-form form input::placeholder,
    .appointment-form form textarea{
      font-size: 14px;
    }
    .gallerySection .nav-pills .nav-item .nav-link {
        font-size: 14px;
        padding: 7px 32px;
    }
    .footer_logo img{
        width: 140px;
    }
    .gallerySection .nav-pills {
        margin-bottom: 45px;
    }
    header .nav-link {
        font-size: 15px;
    }
    .drop_us_wrapper{
        padding: 0px 10px;
    }

    .captcha{
        display: block;
    }
    .captcha-form{
        margin-top: 20px;
        display: block;
    }
    .captcha-form input{
        width: 100%;
    }
    .captcha-form button{
        width: 100%;
        margin-top: 10px;
    }

}
/*********pratibha changes*********/
.specialities .specialities-wrap .swiper{
    overflow: hidden;
}
.specialities .swiper img{
    width: 70%;
    margin: auto;
    display: block;
}
.specialities-wrap .main_heading h1{
    margin-bottom: 60px;
}
.specialities .swiper-button-next,
.specialities .swiper-button-prev {
    top: 63%;
}
.specialities a{
    text-decoration: none;
}


    