/*============================FONTS===============================*/

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* .navbar .search_btn */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* font-family: 'Playfair Display', serif; */

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://example.com/MaterialIcons-Regular.eot);
    /* For IE6-8 */
    src: local('Material Icons'), local('MaterialIcons-Regular'), url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'), url(https://example.com/MaterialIcons-Regular.woff) format('woff'), url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
}


/*==========================Common=============================*/

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.clear {
    clear: both;
}

.clear:after {
    content: '';
    clear: both;
    position: relative;
    width: 100%;
    display: table;
}

body {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 25px;
    background: #fff;
    color: #555555;
}

ul,li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 70px 0;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.site-main{
    padding-top: 149px;
}
/*======START MOBILE MENU SECTION=======*/
.mobileMenuSection {
    display: block;
    position: relative;
}
.mobilemenuBtn {
    display: none;
    position: absolute;
    top: -48px;
    right: 20px;
    z-index: 123456;
}
.mobilemenuBtn span{
    width: 30px;
    height: 2px;
    background: #911439;
    margin: 0 0 5px;
    display: block;
}
.mobilemenuBtn span:last-child{
    margin: 0;
}
#menu{
    background: #fff;
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
    margin: 10px auto 0;
    width: 94%;
}
#menu li a{
    display: block;
    padding: 10px 20px;
    color: #000;
    border-bottom: 1px solid rgb(229, 229, 229);
    text-transform: capitalize;
    font-weight: 500;
}
#menu li a:hover{
    color: #911439;
}



/*=======END MOBILE MENU SECTION=======*/

/* top-header */

.site-header{
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
}
.sticky.site-header{
    margin-top: -70px;
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}
.top-header{
    position: relative;
    background: #911439;
    padding: 15px 0;
    
}
.header-left ul{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.header-left ul li{
    margin-right: 35px;
    color: #fff;
}
.header-left ul li:last-child{
    margin: 0;
}
.header-left ul li a{
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
}
.header-left ul li a i{
    margin-right: 10px;
}
.header-left ul li i{
    margin-right: 10px;
}
.social-links ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.social-links ul li{
    margin-right: 10px;
}
.social-links ul li a{
    display: inline-block;
}
.social-links ul li a i{
    font-size: 18px;
    line-height: 43px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 43px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.5s ease-in-out;
}
.social-links ul li a:hover i{
    background: #fff;
    color: #911439;
}


/* bottom-header */


.bottom-header{
    position: relative;
    /* padding: 10px 0; */
    background: #fff;
}
.bottom-header .logo{
    display: inline-block;
    max-width: 150px;
}
.bottom-header .logo img{
    width: 100%;
}
.bottom-header .navbar{
    position: relative;
    justify-content: flex-end;
    align-items: center;
}
.bottom-header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.bottom-header .navbar ul li a{
    display: inline-block;
    font-size: 18px;
    font-family: 'Rubik', sans-serif;
    text-transform: capitalize;
    color: #202031;
    transition: all 0.5s ease-in-out;
    margin-left: 40px;
   
}
.bottom-header .navbar ul li:first-child a{
    margin: 0;
}
.bottom-header .navbar ul li a:hover{
    color: #911439;
}
.navbar .search_btn{
    margin-left: 40px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    font-size: 20px;
    background-color: #faefed;
    text-align: center;
    display: inline-block;
    color: #202031;
    transition: all 0.5s ease-in-out;
}
.navbar .search_btn:hover{
    color: #fff;
    background: #911439;
}



/* banner */
.banner_holder{
    position: relative;
    padding: 0;
}

.banner_img{
    position: relative;
}
.banner_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner_text{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}
.banner_text_holder{
    width: 57%;
}
.banner_text_holder span{
    font-size: 16px;
    color: #911439;
    margin-bottom: 10px;
}
.banner_text_holder h1{
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}
.banner_text_holder p{
    color: #555555;
    font-size: 16px;
    text-transform: capitalize;
}
.banner_text_holder a span{
    margin: 0;
}

.banner_holder.owl-carousel .owl-nav{
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: space-between;
    width: 90%;

}
.banner_holder.owl-carousel .owl-nav button{
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
    border-radius: 100%;
    width: 50px;
    height: 50px;
    line-height: 44px;
    margin: 0 10px;
    font-size: 20px;
    color: #000;
    transition: 0.5s ease-in-out;
    background: #f1f1f1;
}
.banner_holder.owl-carousel .owl-nav button:hover{
    color: #fff;
    background: #911439;
}

.banner_holder.owl-carousel.owl-drag .owl-item .banner_text_holder span{
    transform: translateY(10px);
    transition: all 0.7s ease-in-out 0.9s;
    opacity: 0;
}
.banner_holder.owl-carousel.owl-drag .owl-item.active .banner_text_holder span{
    transform: translateY(0px);
    opacity: 1;
}
.banner_holder.owl-carousel.owl-drag .owl-item .banner_text_holder h1{
    transform: translateY(10px);
    transition: all 0.7s ease-in-out 1.5s;
    opacity: 0;
}
.banner_holder.owl-carousel.owl-drag .owl-item.active .banner_text_holder h1{
    transform: translateY(0px);
    opacity: 1;
}
.banner_holder.owl-carousel.owl-drag .owl-item .banner_text_holder p{
    transform: translateY(10px);
    transition: all 0.7s ease-in-out 1.9s;
    opacity: 0;
}
.banner_holder.owl-carousel.owl-drag .owl-item.active .banner_text_holder p{
    transform: translateY(0px);
    opacity: 1;
}
.banner_holder.owl-carousel.owl-drag .owl-item .banner_text_holder a{
    transform: translateY(10px);
    transition: all 0.7s ease-in-out 2.3s;
    opacity: 0;
}
.banner_holder.owl-carousel.owl-drag .owl-item.active .banner_text_holder a{
    transform: translateY(0px);
    opacity: 1;
}
/* banner_end */

/* information-start */

/* information-start */

.information{
    position: relative;
    padding: 0;
    margin-top: -100px;
    z-index: 9;
    
}
.information_holder{
    position: relative;
    padding: 40px 50px 50px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
}
.info_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.info_1{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
}
.info_1 span{
    width: 55px;
    height: 55px;
    line-height: 57px;
    text-align: center;
    background-color: #faefed;
    color: #911439;
    border-radius: 5px;
    display: inline-block;
    font-size: 18px;
    margin-right: 20px;
}
.info_name h6{
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: capitalize;
    color: #202031;
    font-weight: 600;
    display: inline-block;
}
.info_name p{
    color: 555555;
    margin: 0;
}
.info_name span{
    display: inline-block;
    height: 15px;
    width: 15px;
    background: transparent;
    margin: 0;
    font-size: 15px;
}


/************************ 
about us section 
************************/

.about-us-sec{
    background: #FAEFED;
    margin-top: 90px;
}
.about-img-hldr figure{
    margin: 0;
}
.about-img-hldr img{
    width: 100%;
}
.section-heading h2{
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}
.section-heading{
    margin: 0 0 25px;
}
.section-heading span {
    color: #911439;
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Rubik', sans-serif;
}

.contact-btn{
    padding: 15px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #911439;
    max-width: 180px;
    transition: 0.5s ease-in-out;
}
.contact-btn::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background: #000;
    left: 0;
    transition: 0.5s ease-in-out;
}
.contact-btn .ico{
    width: 20px;
    height: 20px;
    line-height: 20px;
    display: inline-block;
    margin-left: 8px;
    z-index: 1;
    color: #fff;
}
.contact-btn span{
    z-index: 1;
    color: #fff;
}

.contact-btn:hover::after{
    width: 95%;
}
.about-img-hldr{
    position: relative;
    min-height: 450px;
}
.about-img-hldr figure{
    margin-right: 50px;
    max-width: 80%;
}
.shrt-img{
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    border: 3px solid #fff;
    display: inline-block;
    right: 0;
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translate(0,-50%);
}
.shrt-img img{
    border-radius: 100%;
}
.shrt-img2{
    display: inline-block;
    width: 280px;
    height: 180px;
    border: 3px solid #fff;
    display: inline-block;
    right: 20px;
    position: absolute;
    bottom: 0;
}
.shrt-img img,.shrt-img2 img{
    height: 100%;
}
.about-content-hldr p{
    margin: 0 0 20px;
}
.about-row-hldr{
    z-index: 1;
}
.about-side-img{
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 250px;
}
.about-side-img img{
    width: 100%;
}

/*
*********************** end about us section 
************************/

/* / about us section  / */


.information_holder .form{
    margin-top: 40px;
}
.information_holder .form-control {
    border: none;
    padding: 16px 20px;
    color: #555555;
    background-color: #faefed;
    border: none;
    border-radius: 0;
}

.form-input {
  border: none;
  color: #555555;
  background-color: none;
  border: none;
  border-radius: 0;
}

.information_holder .form-control, .form-input :focus{
    box-shadow: none;
    border: none;
    background: #faefed;
    color: #555555;
}
.information_holder input.form-control[type="submit"]{
    background: #911439;
    color: #FAEFED;
    transition: 0.5s ease-in-out;
}

.information_holder input.form-control[type="submit"]:hover{
    background: #000;
}
.information_holder input.form-control::-webkit-inner-spin-button,
.information_holder input.form-control::-webkit-outer-spin-button{
    -webkit-appearance: none;
}



/* ************
 end about us section 
 *********************** */

/***********************
banner-down section 
************************/
.ser-box{
    height: 550px;
    position: relative;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}
.ser-box figure{
    margin: 0;
    height: 100%;
}
.ser-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ser-sub-box{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: scale(0) translate(-50%,0);
    background: #fff;
    width: 90%;
    padding: 40px;
    text-align: center;
    transition: 0.5s ease-in-out;
     /*transform-origin: 0 0; */
}
.ser-sub-box span{
    display: inline-block;
    margin: 0 0 20px;
    max-width: 55px;
}
h3.title3{
    font-size: 22px;
    color: #000;
    margin: 0 0 20px;
    font-weight: bold;
}
.ser-sub-box p{
    margin: 0;
}
.ser-box:hover .ser-sub-box{
    transform: scale(1) translate(-50%,0);
}
/***********************
 end banner-down section 
 **********************************/

 /***********************
 start best_price_sec
 **********************************/
 .pricediv{
    position: relative;
    top: 0; 
    transition: 0.5s; 
    -webkit-transition: 0.5s;
    -webkit-box-shadow: 0 0 15px rgb(0 0 0 / 8%);
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
}
 .pricediv:hover{top: -10px;}
 .priceimg img{width: 100%;}
 .pricetextdiv{
    padding:35px 25px;
    background: #fff;
 }
 .pricetextdiv h5{margin: 0 0 20px; color: #911439;
    font-weight: bold; font-size: 30px; text-transform: capitalize;

 }
 .pricetextdiv .types-price div:not(:last-child),.pricetextdiv > div{
    margin: 0 0 15px;
 }
 .pricetextdiv .types-price{
    min-height: 224px;
 }
 .pricetextdiv span{text-transform: capitalize;}
 .pricetextdiv span.mprice{font-size: 40px;}
 .pricetextdiv span.price{color: #911439; font-weight: 400; display: none;}
 .pricetextdiv .learn-btn {display: block; margin-top: 20px;}
.types-price div span{
    position: relative;
    display: inline-block;
    padding-left: 40px;
}
.types-price div span::before{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../images/sc-cmb.png) no-repeat center;
    background-size: 20px;
    left: 2px;
}

.price-slider.owl-carousel .owl-nav{
    text-align: center;
}
/* .price-slider .item{
    margin: 0px 13px;
} */
.price-slider.owl-carousel .owl-nav button{
    border-radius: 100%;
    width: 50px;
    height: 50px;
    line-height: 44px;
    margin: 0 10px;
    font-size: 20px;
    color: #000;
    transition: 0.5s ease-in-out;
    background: #fff;
}
.price-slider.owl-carousel .owl-nav button:hover{
    color: #fff;
    background: #911439;
}
 /***********************
 end best_price_sec
 **********************************/



/* kanchan */
/* we offer css */
.weoffer_section{
    background: #FAEFED;
} 
.offer_box .content {
    padding: 32px 30px;
    position: relative;
    z-index: 1;
    min-height: 340px;
}
.offer_box figure img{
    width:100%;
    height:100%;
    object-fit: cover !important;
    object-position: top;
}
.offer_box .content .icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 32px;
    color: #911439;
    text-align: center;
    display: inline-block;
    margin-bottom: 12px;
    -webkit-transition: .9s;
    transition: .9s;
    text-align: center;
}
.offer_box .content .icon img{
    max-width: 30px;
    display: inline-block;
}
.offer_box .content .icon:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/services-icon.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.offer_box .content .content-right {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
}
.offer_box .content h4 a{
    color: #911439;
    pointer-events: none;
}
.offer_box .content h4 a:hover{
    color:#202031;
}
.offer_box .content h4{
    font-size: 22px;
    color:#202031;
    font-weight: 700;
    margin-bottom: 12px;
}
.offer_box .content p{
    color:#555555;
    margin-bottom: 20px;
}
.offer_box{
    margin-bottom: 30px;
    background-color: #ffff;
}
.offer_box figure{
    margin-bottom: 0px;
    height: 190px;
}
.offer_box figure a{
    pointer-events: none;
}
.learn-btn{
    padding: 15px 35px;
    text-align: center;
    color: #911439;
    background-color: transparent;
    border: 1px solid #eee;
    font-weight: 400;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: inline-block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
}
.learn-btn:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 550px;
    height: 550px;
    margin: auto;
    background: #911439;
    border-radius: 50%;
    z-index: -1;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: translateX(-50%) translateY(-5%) scale(.4);
    transform: translateX(-50%) translateY(-5%) scale(.4);
    -webkit-transition: .9s;
    transition: .9s;
}
.learn-btn:hover{
    color:#fff;
}
.learn-btn:hover:before {
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s,-webkit-transform 1s;
    -webkit-transform: translateX(-45%) translateY(0) scale(1);
    transform: translateX(-45%) translateY(0) scale(1);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
}

.learn-btn i {
    position: relative;
    top: 3px;
    margin-left: 10px;
    font-size:18px;
}
.offer_box:hover .content .icon::before {
    -webkit-animation: rotate360 5s infinite;
    animation: rotate360 5s infinite;
}
.we_offer_area {
    margin-bottom: 24px;
}
@keyframes rotate360 {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(270deg);
    }
    
}






/* make an appointment css */
.makean_appointment_section{
    padding: 100px 0px;
}
.aponment_txt {
    padding-left: 19px;
}
.makean_appointment_section{
    position: relative;
}
.makean_appointment_section::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-color: #efcec9;
}
.make_pibox figure img{
    width:100%;
}
.heading_txt h5{
    color: #911439;
    display: block;
    margin-bottom: 7px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Rubik', sans-serif;
}
.heading_two{
    font-size: 45px;
    margin-top: 0;
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: 700;
    color: #202031;
    line-height: 1.4;
    
}
.appontment_form_area .frm_bx{
    margin-bottom: 20px;
}

.appontment_form_area input[type="text"], .appontment_form_area input[type="email"], .appontment_form_area input[type="tel"], .appontment_form_area input[type="date"], .appontment_form_area select, .appontment_form_area textarea{
    height: 60px;
    color: #555555;
    border: 1px solid #eee;
    background-color: transparent;
    font-size: 15px;
    padding: 10px 20px;
    width: 100%;
    border-radius: 0;
}

.appontment_form_area textarea{
    height: 180px;
}
.appontment_form_area input[type="submit"]{
    padding: 15px 35px;
    text-align: center;
    color: #fff;
    font-size:16px;
    font-weight: 400;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    background: #911439;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    border:0;
}
.appontment_form_area input[type="submit"]:hover{
    background-color: #000;
    color:#fff;
}
.heading_txt{
    margin-bottom: 35px;
}
.appontment_form_area input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #555555;
  }
  .appontment_form_area input::-moz-placeholder { /* Firefox 19+ */
    color: #555555;
  }
  .appontment_form_area input:-ms-input-placeholder { /* IE 10+ */
    color: #555555;
  }
  .appontment_form_area input:-moz-placeholder { /* Firefox 18- */
    color: #555555;
  }
  .make_pibox {
    height: 100%;
}
.make_pibox figure{
    height: 100%;
}
.make_pibox figure img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banner-down-services{
    padding-bottom: 0;
}
/* testimonials section */
.testimonials-section{
    /* background: #faefed; */
    padding-bottom: 100px;
}
.testi-slider .item{
    display: flex;
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 30px;
}
.testi-slider .rating ul{
    display: flex;
}
.images-hldr figure{
    margin: 0;
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
    border-radius: 100%;
    border: 5px solid #fff;
}
.images-hldr{
    margin-right: 20px;
    position: relative;
}
.images-hldr figure img{
    width: 120px;
    height: 120px;
    border-radius: 100%;
}
.testi-slider .text-hldr{
    width: calc(100% - 140px);
}
.testi-slider .quote{
    display: inline-block;
    position: absolute;
    background: #911439;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 12px;
    border-radius: 100%;
    bottom: 35px;
    left: 12px;
}
.testi-slider .text-hldr h4{
    font-weight: bold;
    font-size: 20px;
    color: #000;
    margin: 0 0 10px;
}
.testi-slider .text-hldr h4 span{
    color: #555555;
    font-size: 16px;
}
.testi-slider .rating ul li:not(:last-child){
    margin-right: 7px;
}
.testi-slider .rating ul li i{
    font-size: 18px;
    color: #fdc22d;
}
.testi-slider .owl-nav{
    text-align: center;
}
.testi-slider.owl-carousel .owl-nav button{
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
    border-radius: 100%;
    width: 50px;
    height: 50px;
    line-height: 44px;
    margin: 0 10px;
    font-size: 20px;
    color: #000;
    transition: 0.5s ease-in-out;
}
.testi-slider.owl-carousel .owl-nav button:hover{
    color: #fff;
    background: #911439;
}

/* end testimonials section */


/* expert section */

.expert-detls .social-links li a i{
    color: #911439;
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
}
.expert-detls .social-links li a:hover i{
    background: #911439;
    color: #fff;
}
.expert-detls .social-links li{
    margin: 0 10px;
}
.expert-box figure{
    width: 85%;
    margin: 0 auto;
    height: 400px;
}
.expert-box figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.expert-box{
    text-align: center;
}
.expert-detls .social-links ul{
    justify-content: center;
}
.expert-detls a,.expert-detls span{
    display: block;
}
.expert-nm{
    color: #911439;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 22px;
    margin: 0 0 10px;
    transition: 0.5s ease-in-out;
}
.expert-detls .desg{
    margin: 0 0 15px;
}
.expert-detls{
    padding: 70px 40px 40px;
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
    margin-top: -40px;
}
.expert-nm:hover{
    color: #000;
}








/* end expert section */




/* footer css */

.footer{
    background-color: #f9f9f9;
}
.ft_logo_holder img{
    max-width: 150px;
}
.up_footer{padding: 70px 0px;}
.social_icons{
    margin-top:30px;
}
.social_icons ul li a i{
width: 45px;
height: 45px;
line-height: 45px;
border-radius: 50px;
text-align: center;
display: inline-block;
color: #911439;
border: 1px solid #911439;
background-color: transparent;
-webkit-transition: #911439;
transition: #911439;
transition: all 0.3s ease-in-out;
}
.social_icons ul li{
    display: inline-block;
    
}
.social_icons ul li:not(:last-child){
    margin-right: 10px;
}

.social_icons ul li a:hover i {
    background-color: #911439;
    color: #fff;
}
.footer .ft_logo_holder{
    margin-bottom: 20px;
}
.newslatter_box input[type="email"]{
background-color: #faefed;
border-radius: 0;
height: 60px;
line-height: 60px;
margin: 0;
border: none;
padding: 0 25px;
color: #555555;;
margin-bottom: 20px;
}
.newslatter_box button{
background-color: #911439;
color: #fff;
height: 60px;
line-height: 62px;
padding: 0 32px;
border: 0;
-webkit-transition: 0.5s;;
transition: 0.5s;;
text-align: center;
width: 100%;
}
.newslatter_box button i{
    margin-left: 5px;
}
.up_footer h4{
font-size: 24px;
margin-bottom: 30px;
color: #202031;
font-weight: 600;
}
.newslatter_box button:hover{
    background-color:#000;
    color:#fff;
}
.fttime ul li{
    font-size: 15px;
    margin-bottom: 0;
    color: #555;
    
}
.fttime ul li:not(:last-child){
    margin-bottom: 30px;
}
.fttime ul li span{
    color:#202031;
    font-weight: 500;
    display: block;
    
}
.ft_quick_links ul li i{
    position: absolute;
    width: 45px;
height: 45px;
line-height: 45px;
border-radius: 50px;
text-align: center;
display: inline-block;
color: #911439;
border: 1px solid #911439;
background-color: transparent;
-webkit-transition: #911439;
transition: #911439;
transition: all 0.3s ease-in-out;
left: 0;
top: 6px;
}
.ft_quick_links ul li span{
    display: block;
}
.ft_quick_links ul li{
    padding-left: 60px; 
    position: relative;
    
}
.ft_quick_links ul li:not(:last-child){
    margin-bottom: 15px;
}
.ft_quick_links ul li strong {
    width: 100%;
    display: block;
    margin-bottom: 6px;
}
.ft_quick_links ul li a, .ft_quick_links ul li address{
    color:#555555;
}
.ft_quick_links ul li address strong{
    color:#202031;
}
.ft_quick_links ul li a:hover{
    color:#911439;
}

.down_footer{
    background-color: #f1f1f1;
    padding: 15px 0;
    text-align: center;
}
.down_footer p{
    margin-bottom: 0px;
}
.down_footer p a{
    color:#911439;
    font-weight: 600;
}
.down_footer p a:hover{
    color:#202031;
}
.newslatter_box input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #555555;
  }
  .newslatter_box input::-moz-placeholder { /* Firefox 19+ */
    color: #555555;
  }
  .newslatter_box input:-ms-input-placeholder { /* IE 10+ */
    color: #555555;
  }
  .newslatter_box input:-moz-placeholder { /* Firefox 18- */
    color: #555555;
  }
 .map{
    position: relative;
    height: 225px;
 }
 .map iframe{
    width: 100%;
    height: 100%;
 }

 /* tab */

 .tab-cate{
    display: flex;
 }
 .tab-cate .tab-menu{
    flex: 1 1 20%;
    max-width: 20%;
    background: #fff;
    max-height: 530px;
    margin-right: 20px;
 }
 .tab-cate .tab-main-box{
    flex: 1 1 80%;
    max-width: 80%;
 }
 .we_offer_area.tab-box{
    display: none;
 }
 .tab-cate .tab-menu li a{
    color: #555555;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    padding: 50px 30px;
    font-weight: 200;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #ffd4e1;
 }
 .tab-cate .tab-menu li:last-child a{
    border-bottom: 0;
 }
 .tab-cate .tab-menu li a.active{
    background: #911439;
    color: #fff;
 }





 /* Responsive */


 @media(max-width: 1200px){
    body{
        font-size: 15px;
        line-height: 24px
    }
    .site-main{
        padding-top: 146px;
    }
    .header-left ul li {
        margin-right: 30px;
    }
    .banner_text_holder h1 {
        font-size: 30px;
    }
    .information{
        margin-top: -60px;
    }
    .banner_holder.owl-carousel .owl-nav{
        width: 100%;
        top: 70%;
        justify-content: center;
    }
    .banner_holder.owl-carousel .owl-nav button{
        height: 40px;
        width: 40px;
        line-height: 41px;
    }
    .ser-box{
        height: 500px;
    }
    .about-img-hldr{
        min-height: 410px;
    }
    .about-content-hldr{
        z-index: 9;
    }
    .about-side-img{
        z-index: 1;
    }
    .info_1{
        width: 24%;
    }
    .info_1:last-child{
        width: 26%;
    }
    .banner_text{
        top: 45%;
    }
    .banner_text_holder{
        width: 50%;
    }
    .information_holder{
        padding: 20px 30px 30px;
    }
    .info_1 span{
        width: 40px;
        height: 40px;
        line-height: 42px;
        margin-right: 10px;
    }
    .information_holder .form {
        margin-top: 20px;
    }
    .information_holder .form-control{
        padding: 14px 18px; 
    }
    .about-us-sec{
        margin-top: 60px;
    }
    .makean_appointment_section{
        padding: 70px 0;
    }
    .pricetextdiv .types-price div:not(:last-child), .pricetextdiv > div{
        margin: 0 0 10px;
    }
    .pricetextdiv .types-price{
        min-height: 195px;
    }
    .tab-cate .tab-menu li a{
        font-size: 25px;
        padding: 40px 25px;
    }
    .offer_box .content h4 {
        font-size: 20px;
    }
    .weoffer_section{
        padding-bottom: 50px
    }
}
@media(max-width:1023px){
    
    section{
        padding: 50px 0;
    }
    .header-left ul li a span{
        display: none;
    }
    .bottom-header .logo{
        max-width: 80px;
    }
    .bottom-header .navbar{
        padding: 0;
    }
    .site-main {
        padding-top: 131px;
    }
    .bottom-header .navbar ul li a{
        font-size: 16px;
    }
    .navbar .search_btn {
        margin-left: 40px;
        width: 40px;
        height: 40px;
        line-height: 42px;
        border-radius: 50%;
        font-size: 14px;
        
    }
    .banner_img{
        height: 400px;
    } 
    .banner_text_holder h1{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .banner_text_holder p{
        font-size: 14px;
    }
    .information {
        margin-top: -50px;
    }
    .information_holder{
        padding: 30px 40px;
    }
    .info_1 {
        width: 50%;
        justify-content: flex-start;
    }
    .info_1:last-child {
        width: 50%;
    }
    .form input{
        margin-bottom: 15px;
    }
    .ser-box {
        height: 350px;
    }
    .about-side-img{
        max-width: 140px;
    }
    .section-heading {
        margin: 0 0 15px;
    }
    .section-heading h2{
        font-size: 30px;
    }
    .about-content-hldr p {
        margin: 0 0 10px;
        font-size: 14px;
    }
    .shrt-img{
        width: 150px;
        height: 150px;
    }
    .shrt-img2{
        width: 240px;
        height: 140px;
    }
    .ser-sub-box{
        padding: 36px;
        bottom: 17px;
        padding: 10px 15px 20px;
        bottom: 17px;
    }
    h3.title3{
        font-size: 20px;
        margin: 0 0 10px;
    }
    .ser-sub-box span{
        margin: 0 0 10px;
    }
    .heading_two{
        font-size: 30px;
    }
    .offer_box .content .icon {
        position: relative;
        z-index: 1;
        width: 50px;
        height: 50px;
        line-height: 53px;
        font-size: 21px;
    }
    .offer_box .content h4{
        font-size: 18px;
    }
    .offer_box .content {
        padding: 22px 20px;
        position: relative;
        z-index: 1;
        min-height: 255px;
    }
    .tab-cate .tab-menu{
        max-height: 448px;
    }
    .learn-btn{
        padding: 15px 28px;
    }
    .heading_txt {
        margin-bottom: 25px;
    }
    .pricetextdiv span.mprice {
        font-size: 30px;
    }
    .pricetextdiv h5{
        font-size: 25px;
    }
    .makean_appointment_section {
        padding: 50px 0px;
    }
    .ft_logo_holder a{
        max-width: 100px;
        display: inline-block;
    }
    .ft_logo_holder a img{
        width: 100%;
    }
    .up_footer h4{
        font-size: 20px;
    }
    .social_icons ul li a i {
        width: 40px;
        height: 40px;
        line-height: 41px;
    }
    .ft_quick_links ul li i{
        width: 40px;
        height: 40px;
        line-height: 41px;
    }
    .contact-btn{
        padding: 10px;
        max-width: 150px;
    }
    .banner_text_holder .contact-btn span{
        font-size: 14px;
    }
    .ser-sub-box p{
        font-size: 14px;
        line-height: 1.5;
    }
    .about-img-hldr{
        min-height: 320px;
    }
    .up_footer{
        padding: 50px 0;
    }
    .price_holder .row > div:not(:last-child){
        margin: 0 0 25px;
    }
    .tab-cate .tab-menu li a {
        font-size: 20px;
        padding: 30px 15px;
    }
    .offer_box .content p{
        margin: 0;
    }
    .weoffer_section{
        padding-bottom: 30px;
    }
    .bottom-header{padding: 10px 0;}
}

@media(max-width:767px){
    .top-header{
        padding: 8px 0;
    }
    section{
        padding: 40px 0;
    }
    .header-left ul li:last-child{
        font-size: 14px;
    }
    .site-main {
        padding-top: 150px;
    }
    .sticky.site-header{
        margin-top: -90px;
    }
    .social-links ul{
        justify-content: center;
    }
    .bottom-header .navbar ul{
        display: none;
    }
    .navbar .search_btn{
        margin-right: 70px;
    }
    .banner_img{
        height: 330px;
    }
    .banner_text_holder {
        width: 100%;
        background: #ffffff50;
        padding: 15px;
    }
    .banner_text_holder h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .banner .contact-btn{
        padding: 6px;
        max-width: 120px;
    }
    .information {
        margin-top: -35px;
    }
    .information_holder{
        padding: 20px;
    }
    .info_1{
        width: 100%;
    }
    .info_1:last-child{
        width: 100%;
    }
    .info_name h6{
        font-size: 16px;
    }
    .ser-box {
        height: auto;
        margin: 0 0 20px 0;
    }
    .about-us-sec{
        margin-top: 20px;
    }
    .shrt-img{
        top: 40%;
    }
    .about-content-hldr p {
        margin: 0px 0 20px;
    }
    .section-heading{
        margin-bottom: 20px;
    }
    .section-heading h2{
        font-size: 27px;
    }
    .pricetextdiv h5 {
        font-size: 23px;
    }
    .pricetextdiv span.mprice {
        font-size: 28px;
    }
    .makean_appointment_section::before{
        height: 34%;
        width: 75%;
    }
    .aponment_txt{
        padding: 0;
        margin-top: 100px;
    }
    .appontment_form_area textarea {
        height: 130px;
    }
    .ft_bx:not(:last-child){
        margin-bottom: 25px;
    }
    .up_footer {
        padding: 40px 0px 30px;
    }
    .header-left ul{
        justify-content: center;
        margin: 0 0 10px;
    }
    .header-left ul li{
        margin-right: 10px;
    }
    
    .social-links ul li i{
        line-height: 40px;
    }
    .banner_text_holder p{
        line-height: 1.5;
    }
    .banner_holder.owl-carousel .owl-nav button{
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 14px;
        margin: 0 6px;
    }
    .banner_holder.owl-carousel .owl-nav{
        top: 83%;
    }
    .makean_appointment_section{
        padding-bottom: 35px;
    }
    .down_footer p{
        font-size: 13px;
        line-height: 1.5;
    }
    .down_footer {
        padding: 8px 0;
    }
    .tab-cate{
        flex-wrap: wrap;
    }
    .tab-cate .tab-menu{
        margin: 0 0 25px;
        background: transparent;
    }
    .tab-cate .tab-menu ul{
        display: flex;
        background: #fff;
        width: fit-content;
    }
    .tab-cate .tab-menu li:not(:last-child) a{
        border-right: 1px solid  #ffd4e1;
        border-bottom: 0;
    }
    .tab-cate .tab-menu li a{
        padding: 15px 20px;
        font-size: 16px;
    }
    .tab-cate .tab-menu,.tab-cate .tab-main-box{
        flex: 1 1 100%;
        max-width: 100%;
    }
    .mobilemenuBtn {
        display: inline-block;
    }
    .mobileMenuSection{
        margin-top: 10px;
    }

}

/* form validation */
input,
textarea {  
  transition: border-color 0.5s ease-out;
}

input:optional,
textarea:optional {
  border-color: #d7dae3;
}

input:required:valid,
textarea:required:valid {
  border-color: var(--bs-success);
}

input:required:invalid,
textarea:required:invalid {
  border-color: var(--bs-danger);
}

/*input:required:focus:valid,
textarea:required:focus:valid {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2323c55d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") no-repeat top 15px right 15px var(--color-success-light);
  background-size: 25px;
}

input:focus:invalid,
textarea:focus:invalid {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc2626'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc2626' stroke='none'/%3e%3c/svg%3e") no-repeat top 15px right 15px var(--color-error-light);
  background-size: 25px;
}*/
/* form validation */