@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+NO:wght@100..400&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --blue--: #017575;
    --brown--: #5c2626;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "Roboto", sans-serif;
    color: #000;
}

h1,h2,h3,h4,h5,h6{
    color: #000;
    font-family: "Playfair Display", serif;
}

p{
    font-size: 16px;
    margin: 0;
    color: #000;
}

section{
    overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


#overlayer {
    width:100%;
    height:100%;  
    position:fixed;
    z-index: 999;
    background:#fff;
}
.loader {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    z-index:3;
    border: 4px solid var(--blue--);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: loader 2s infinite ease;
}
  
.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: var(--blue--);
    animation: loader-inner 2s infinite ease-in;
}
  
@keyframes loader {
    0% {
      transform: rotate(0deg);
    }
    
    25% {
      transform: rotate(180deg);
    }
    
    50% {
      transform: rotate(180deg);
    }
    
    75% {
      transform: rotate(360deg);
    }
    
    100% {
      transform: rotate(360deg);
    }
}
  
@keyframes loader-inner {
    0% {
      height: 0%;
    }
    
    25% {
      height: 0%;
    }
    
    50% {
      height: 100%;
    }
    
    75% {
      height: 100%;
    }
    
    100% {
      height: 0%;
    }
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8px 1%;
    /* position: absolute; */
    width: 100%;
    left: 0;
    top: 40px;
    z-index: 1;
    /* background: #fff4; */
    transition: 0.3s;
    overflow-x: clip;
}

.book_appointment{
    display: inline-block;
    padding: 10px 20px;
    background: var(--blue--);
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    position: relative;
    border: none;
}

.book_appointment:hover{
    color: #fff;
}

.banner{
    display: flex;
    justify-content: space-between;
    background: var(--blue--);
    align-items: end;
}

.banner .banner_img{
    width: 40%;
    padding: 40px 6% 0;
}

.banner .form_new{
    width: 50%;
    padding: 40px 5% 0;
}

.main_heading h1{
    font-size: 42px;
    color: #fff;
    font-weight: 700;
}

.main_heading p{
    color: #fff;
    font-size: 20px;
}

.banner .form_new form{
    background: #fff;
    padding: 20px 40px;
    border-radius: 20px 20px 0 0;
}

.form_new form h2{
    font-size: 24px;
    font-weight: 600;
}

.form_new form input, .form_new form select{
    box-shadow: none;
    padding: 10px;
}

.form_new form button{
    padding: 8px 30px;
    background: var(--blue--);
    color: #fff;
    border: none;
    border-radius: 50px;
}

.heading h2{
    color: var(--blue--);
    font-size: 32px;
    font-weight: 700;
}

.what_sets{
    text-align: center;
}

.what_sets span.num{
    font-size: 28px;
    display: inline-block;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--brown--);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    margin: 0 auto;
    margin-bottom: 10px;
}

.what_sets h3{
    font-size: 22px;
    font-weight: 600;
}


.counter_bg{
    background: var(--blue--);
}

.counter{
    width: 100%;
    text-align: center;
}

.counter .count{
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
}

.counter h2{
    font-size: 24px;
    color: #fff;
}

.counter_bg .form_new form{
    background: #fff;
    padding: 20px 40px;
    border-radius: 20px 20px;
}

.testimonial{
    position: relative;
    display: grid;
    place-items: center;
}

.testimonial::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 1;
    opacity: 0.3;
    transition: 0.3s;
}

.testimonial:hover:before{
    opacity: 0.6;
}

.testimonial .play_btn{
    position: absolute;
    /* top: 50%;
    left: 50%;
    transform: translate(-50% , -50%); */
    width: 50px;
    height: 50px;
    background-color: var(--blue--);
    color: #fff;
    border-radius: 50%;
    font-size: 26px;
    display: grid;
    place-items: center;
    z-index: 2;
    transition: 0.3s;
}

.testimonial:hover .play_btn{
    transform: scale(1.1);
}

.book_appointment.bg-white{
    color: var(--blue--);
}

.gallery{
    position: fixed;
    top: -110%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #fff;
    overflow: auto;
    padding: 20px 0;
    transition: 0.5s ease-in-out;
}

.gallery.active{
    top: 0;
    transition: 0.5s ease-in-out;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.gallery::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.gallery {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.gallery .gallery-close-btn{
    /* text-align: right; */
    padding-left: 10px;
}

.gallery .gallery-close-btn a{
    font-size: 20px;
}

.gallery a img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.gallery .hading h2{
    /* color: var(--theme-color--);
    font-size: 24px; */
    color: #000;
    font-size: 28px;
}

.why_trust{
    /* background: #fff; */
    border-radius: 10px;
    height: 100%;
    display: flex;
    gap: 10px;
}

.why_trust i{
    color: #fff;
    margin-top: 5px;
}

.why_trust h3{
    font-size: 20px;
    color: #fff;
}

.t_shape_new{
    border-radius: 20px;
    box-shadow: var(--blue--) 0px 5px 15px;
    overflow: hidden;
}


.whats-app{
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 3%;
    /* bottom: 15%;
    right: 3%; */
    background: #01c83c;
    z-index: 99;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 1px 1px 8px 2px #959595;
}

.whats-app a{
    color: #fff;
    font-size: 30px;
}

.mobile_app{
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 110px;
    right: 3%;
    /* bottom: 15%;
    right: 3%; */
    background: var(--blue--);
    z-index: 99;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 1px 1px 8px 2px #959595;
}

.mobile_app a{
    color: #fff;
    font-size: 30px;
}

.floating-icon{
    position: fixed;
    top: 45%;
    right: -45px;
    transform: rotate(90deg);
    transition: .5s;
    opacity: 1;
    transition-delay: opacity 0.3s;
    z-index: 99;
}
/* .floating-icon.active{
    opacity: 1;
    right: -27px;
} */
.floating-icon a{
    /* border-radius: 50%;  */
    /*background: var(--red-- );*/
    background: var(--brown--); 
    color: #fff;
    display: grid;
    place-items: center;
    padding: 8px 20px;
    padding-bottom: 15px;
    border-radius: 5px;
    /* line-height: 1; */
}
