@import url('https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,400;1,700&family=Hind+Siliguri:wght@300;400;500;600;700&family=Lexend:wght@100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');
*{
    font-family: "Outfit", sans-serif;
}

:root{
    --primary: #008000;
    --secondary: rgb(0, 77, 0);
}

a{
    text-decoration: none;
}

p{
    text-align: justify;
}

/*** Topbar ***/

.topbar{
    background-color: rgb(255, 255, 255);
}

.topbar .top-icon{
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50px;
    transition: .5s all ease-in;
}

.topbar .top-icon:hover{
    background-color: var(--primary);
    color: white;
}

.topbar span{
    color: var(--primary);
}

.topbar .nav-icon{
    color: white;
    background-color: var(--primary);
    border-radius: 30px;
}



/*** Navbar ***/

.navbar{
    background-color: var(--primary);
}

.navbar .nav-link{
    color: white;
}

.nav-item .active{
    color: white !important;
}

.navbar-toggler{
    border: none !important;
    box-shadow: none !important;
    color: white !important;
}

.menu{
    font-size: 30px;
}

/* @media(max-width:768px){
    .navbar-brand  h4{
        font-size: 17px !important;
    }
    .navbar-brand h5{
        font-size: 16px !important;
    }
} */

/**** Carousel ****/

.main-slider img{
    height: 80vh !important;
    width: 100%;
    object-fit: cover;
}

@media(max-width:768px){
    .main-slider img{
        height: 40vh !important;
    }
}

.slider .owl-dots {
    position: absolute;
    display: block;
    bottom: 0%;
    width: 100%;
    margin: 0 auto;
}
  
.slider .owl-theme .owl-dots .owl-dot span {
    position: relative;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin: 0px 5px;
    cursor: pointer;
    transition: all 500ms ease;
}
  
.slider .owl-theme .owl-dots .owl-dot.active span{
    width: 17px;
    height: 17px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: transparent;
    top: 3px;
}


/**** About ****/


.about .p-first{
    border-left: 2px solid var(--primary);
}

.about span{
    font-style: italic;
    font-size: 19px;
    color: var(--primary);
    font-weight:600;
}

.abt-head{
    color: var(--primary);
}




/*** Highlights ***/

.highlight{
    background-image: url(../imgs/ayu12.jpg);
    height: 100%;
    width: 100%;
    background-size: cover;
    object-fit: cover;
    background-position: center;
    background-color: rgba(15, 134, 4, 0.322);
    background-blend-mode: multiply;
    background-attachment: fixed;
}

.card{
    align-items: center;
    box-shadow: 3px 4px 10px rgb(26, 36, 24);
}


/**** Treatments ****/


.product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../imgs/product-bg.png) left bottom no-repeat;
    background-size: auto;
}

/* .product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}

.product-item .position-relative{
    margin-top: -10%;
} */


.cards{
    box-shadow: 5px 7px 30px rgb(223, 221, 221);
    /* border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary); */
    /* border-bottom: 3px solid var(--primary); */
}

.cards-inner{
    background-color: white;
    /* border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary); */
}

.cards img{
    height: 250px;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}


.treament img{
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.treatments h3, h2{
    color: var(--primary) !important;
}

.first-treatment img{
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.treatment-content{
    background-color: #964B00;
}
/* .treatment-content p{
    color:  #ffe0be !important;
} */


/**** Gallery ****/



.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}
  
.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
    height: 250px;
    width: 100%;
    object-fit: cover;
}
  
.gallery .gallery-item:hover img {
    transform: scale(1.1);
}



/*** Contact ****/


input,textarea{
    border-radius: 0px !important;
    box-shadow: none !important;

}
input:focus{
    border-color: var(--primary) !important;
}

textarea:focus{
    border-color: var(--primary) !important;
}

.btns{
    border: 1px solid var(--primary) !important;
    color: white !important;
    background-color: var(--primary) !important;
    border-radius: 0px !important;
    transition: .5s all ease-in-out;
}
.btns:hover{
    background-color: #003f00 !important;
}




  


/*** Footer ***/

.footer{
    background-color: var(--primary);
}

.footer .social-icon{
    font-size: 20px;
    color: white;
    border: 1px solid white;
    border-radius: 50px;
    transition: .5s all ease-in-out;
}

.footer .social-icon:hover{
    background-color: rgba(216, 218, 216, 0.315);
}

.footer .links a{
    color: white;
    transition: .5s all ease-in-out;
}

.footer .links a:hover{
    letter-spacing: 5px;
}




.whats a{
    transition: .5s ;
    
  }
  
  .whats span{
    font-size: 0px;
     word-spacing: -40px;
    transition: .5s ;
   
  }
  
  .whats:hover span{
   font-size: 13px;
   word-spacing:  0px;
    transition: .5s all;
    /* margin-right: 50px; */
  }