:root{
    --primary-color:rgb(66, 27, 14);
    --secondary-color:rgb(62, 118, 67);    
    --tertiary-color:rgb(183, 128, 89);
    --light-bg-colour:rgb(238, 251, 242);
    --text-color:rgb(139, 139, 139);
    --footer-bg-color:rgb(243, 255, 251);
    --footer-text-color:rgb(115, 126, 132);
    
}
*{
    margin:0px;
    padding:0px;
    box-sizing:border-box;
}
html, body {
    overflow-x: hidden;
    /* overflow-y:hidden; */
}


@font-face{
    font-family:body;
    src: url("../fonts/KaushanScript-Regular.ttf") 
}

.italic{
    font-family: body;
}


/* general classes start */

a{    
    display:inline-block;
    text-decoration:none;
    color: #1d1d1d;
}
a:hover{
    text-decoration:none;    
    color: #1d1d1d;
}
span{
    display:inline-block;
}
.main-button{
    color: #fff;
    background-color: var(--secondary-color);
    border-radius: 25px;
    padding: 10px 20px;
    transition: .6s all;
}
.main-button:hover{
    color: #fff;
    background: var(--primary-color);
}
.primary-c{
    color: var(--primary-color);
}
.secondary-c{
    color: var(--secondary-color);
}
.tertiary-c{
    color: var(--tertiary-color);
}

/* general classes end   */

/* navbar start here */
.navbar{
    position:sticky;
    top:0px;
    left:0px;
    z-index:999;
    width:100%;
    background-color: var(--light-bg-colour);
}
.navbar-nav{    
    padding-left:10%;
}
.navbar-nav .nav-item{
    padding:0px 7px;
}
.navbar-light .navbar-nav .nav-link {
    font-weight: 600;
    color:var(--primary-color);
}
.navbar-light .navbar-nav .nav-link:hover{
    color:var(--secondary-color);
}
.dropdown-menu{   
    background-color:#fff;    
    /* border-top:5px solid var(--secondary-color);
    border-bottom:5px solid var(--secondary-color); */
    padding:0rem 0rem;
    border-radius: 20px;
}
.dropdown-item{
    color: var(--primary-color);
    padding:0.50rem 1rem;
    font-weight: 600;
    transition:.3s all;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    background-color: var(--secondary-color);
    
}
.radius1{
    border-radius:15px 15px 0px 0px;

}
.radius2{
    border-radius: 0px 0px 15px 15px;

}
/* navbar end here */
/* carousel start here */
.carousel-caption{
    margin-bottom: 120px;
    color: rgb(238, 251, 242);
}
.carousel-caption h1{
    font-size: 80px;
    
}



/* carousel end here */
/* section1 start here */
.section1{
    padding-top: 50px;
}
.section1 h2{
    font-size: 38px;
}
.list ul{
    list-style-image: url("../images/leaf-li.png");
    
}
.pic-radius{
    border-radius:20px;
}
/* section1 end here */
/* ayurveda1 banner start here */
.strap{
    /* background-color: var(--footer-bg-color); */
    color: #1d1d1d;

    text-align: center;
    padding: 20px;
    margin-top: 50px;
}
.strap h2{
    font-size: 38px;
}
.light-text{
    color: var(--footer-text-color);
}
.ayurveda1{
    box-shadow: 0px 0px 10px #ddd;
    margin-top: 40px;
}
.ayurveda-text1{
    padding: 50px;
}
.ayurveda-text1 h2{
    font-size: 35px;
}
.ayurveda1 .ready{
    font-size: 20px;
    font-weight: 600;
}
.book-text{
    font-size: 28px;
}
.ayurveda1 .row .col-md-6{
    padding-left: 0px;
    padding-right: 0px;
}
.ayurveda1 img{
    width: 100%;
    height: 100%;
}
/* ayurveda1 banner end here */

/* section4 end here */
.section4{
    background-color: var(--light-bg-colour);
    padding:80px 0px;
    margin-top: 80px;
}
.section4 h2{
    font-size: 38px;
}
.section4 p{
    color: rgb(92, 92, 92);
}
.side-card-text{
    padding: 10px 0px;
}
.side-card-text h3{
    color: var(--primary-color);
    font-size: 22px;
}
.side-card-text p{
    color: rgb(83, 83, 83);
}
.side-card{
    background-color: #fff;
}

/* section4 end here */

/* ayurveda banner start here */
.ayurveda-banner{
    position:relative;  
}
.ready{
    font-size: 32px;
}
.ayurveda-banner .head-p{
    font-size: 55px;
}
.ayurveda-banner img{
    width:100%;
    height:auto;
}
.ayurveda-overlay{
    width:100%;
    height:618px;
    background-color:rgba(0,0,0,0.5);
    background-attachment:fixed;
    position:absolute;
    top:0px;
    left:0px;
}
.ayurveda-text{
    width:60%;
    color:#dfdfdf;
    margin: 90px 0px;
    border-top: 0.5px solid grey;
    border-bottom: 0.5px solid grey;
    border-right: 0.5px solid grey;
}
.ayurveda-text-div{
    padding: 50px;
}

/* ayurveda banner end here */

/* yoga courses start here */
.garbhasanskar{
    background-color: var(--light-bg-colour);
    padding-bottom: 50px;
}
.yoga-courses{
    padding: 50px 0px;
}
.yoga-courses h2{
    font-size: 38px;
}
.yoga-cards-row{
    margin-top: 38px;    
}
.yoga-card1{
    position:relative;
    overflow:hidden;
    border-radius:4px;   
}
.yoga-card1 img{
    transition:.3s;
}
.yoga-card1:hover img{
    transform: scale(1.2);
}
.yoga-card1:hover .bottom-overlay{
    background-color: var(--secondary-color);
}
.bottom-overlay{
    width:100%;
    height:20%;
    position:absolute;
    bottom:0px;
    left:0px;
    background-color: rgba(0, 0, 0, 0.6);
    color:#fff;
    z-index:999;
    transition:.5s;
    /* padding:18px 0px; */
}
.bottom-overlay h5{
    padding: 8px 0px;
}

/* yoga courses end here */

/* footer before start here */
.footer-before{
    margin-top: 40px;
    background-image: linear-gradient(90deg
     ,rgb(243, 255, 251) 0%,
     rgb(223, 238, 217) 100%);
     padding: 35px 40px;
     position: relative;
    
}
.footer-before p{
    font-size: 28px;

}
.ayurveda-png{
    position: absolute;
    right: 40px;
    top: -100px;
}
/* footer before end here */

/* footer start here */

.footer{
    width:100%;
    /* background-image:url(../image/footer.jpg); */
    background:var(--footer-bg-color);
    background-size:cover;
     color:var(--footer-text-color);
    padding:40px 0px;
}
.footer-p{
    width: 380px;
}
.footer h4{
    color: rgb(52, 56, 55);
    font-size: 22px;
}
.footer .light-p{
    color:var(--footer-text-color);
}

.links a{
    color:var(--footer-text-color); 
    border-bottom:1px dashed var(--light-text);
    padding:3px 0px;
    transition: .5s all;
}
.links a:hover{
    color:var(--secondary-color); 
}
.footer-social{
    font-size:16px;
}
.footer-social a i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius:100%;
    transition:.2s all;  
    color:#ddd;
    background-color:var(--secondary-color);
    transition: .5s all;
}
.footer-social a i:hover{
    background-color: var(--light-bg-colour);
    color:var(--secondary-color);
}
.f-about a:hover{
    color:var(--footer-text-color);
}
.contact-f a{
    color:rgb(52, 56, 55);
    font-size: 21px;
    font-weight: 500;
    transition: .3s all;;

}
.contact-f a:hover{
    color: var(--secondary-color);
}
.contact-f div{
    margin-top: 20px;
}
.designed-by{
    font-size:14px;
    border-top:1px solid var(--light-text);
    color:#fff;
    background-color: var(--secondary-color);
    padding: 20px 0px;
}
.designed-by p{
    margin-bottom: 0rem;

}

    

/* fixed btn start here */
@keyframes fixedbtn{
    0%{
        transform:scale(0.8);
    }
    50%{
        transform:scale(1.2);
    }
    100%{
        transform:scale(0.8);
    }

}
.Whatsapp-div{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:999;
 }
.Whatsapp-div {
    animation-name: fixedbtn;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}
/* fixed btn end here */
/* footer end here */

/* page banner start here */
.page-banner{
    position:relative;
}
.page-banner img{
    width:100%;
    height:500px;
}
.banner-overlay{
    width:100%;
    height:500px;
    background-color:rgba(0,0,0,0.4);
    position:absolute;
    top:0px;
    left:0px;
}
.banner-text{
    width:60%;
    margin-top:13%;
    margin-left:auto;
    margin-right:auto;
    color: #fff;
}
.page-banner h2{
    font-size: 70px;
}
/* page banner end here */

/* yoga start here */
.yoga{
    background-color:var(--light-bg-colour); 
    padding: 50px 0px;
}
.yoga .row .col-md-4 {
    padding-right: 0px ;
    padding-left: 0px ;
}
.yoga-box {
   background-color:#fff;
   box-shadow:0px 0px 10px #ddd;
   border-radius:25px;
   border-bottom:4px solid var(--secondary-color);
}
.yoga-box img{
    border-radius: 25px 0px 0px 25px;
}
.yoga-box-text{
    padding: 20px;
}
.yoga h2{
    font-size: 38px;
}
/* yoga end here */
/* holistic section1 start here */
.member-benefit{
    padding: 50px;
    border: 2px solid #ddd;
}
/* holistic section1 end here */

/* workshops start here */
.workshop-card{
    /* border: 1px solid #cecece; */
    height: 410px;
    box-shadow: 0px 0px 10px #ddd;
    border-radius: 20px ;
     background-color: var(--light-bg-colour);
}
.workshop-card img{
    width: 100%;
    height: 230px;
    border-radius: 20px 20px 0px 0px ;
   
 
}
.workshop-text{
    padding: 18px;
}
.workshop-text h4{
    color: var(--tertiary-color);
}

/* workshops end here */

/* form start here */
.form{
    padding: 20px;
    box-shadow: 0px 0px 10px #ddd;
    border-radius:10px ;
}
.form h2{
    color: var(--tertiary-color);
    margin-bottom: 20px;
}
.form label{
    font-weight: 500;
}
form input{
    border:none;
    margin:12px 0px;
    
}
form textarea{
    width:100%;
    margin-bottom:12px;
    border:1px solid #ddd;
    padding:10px;
    background-color: rgb(240, 240, 240);
    outline-color: rgb(168, 208, 145);

}

.select{
    width:100%;
    margin-bottom:12px;
    padding:10px;
    border:none;
    color:grey;
    border-radius: 10px;
    background-color: rgb(240, 240, 240);
}
.form-control {   
    padding: 10px;
    border:none;
    border-radius: 10px;
    background-color: rgb(240, 240, 240);
}
.form-control:focus {
    border-color:#fff;
    box-shadow: 0 0 0 2px rgb(168, 208, 145);
}
.input-btn{
    width:100%;
    text-align:center;
}

.btn2{
    width: 100%;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px;
    border-radius: 30px ;
    transition: .5s all;
}
.btn2:hover{
    background: var(--light-bg-colour);
    color:var(--secondary-color);
    /* border: 1px solid var(--secondary-color); */
}

.social2 {
    padding:10px 5px;
}
.social2 a i{
    color:#fff;
    background-color:var(--tertiary-color);
}

/* .address-info .first-p{
    font-size:20px;
} */
.contact-box1{
    background-color: var(--light-bg-colour);
    padding: 40px 20px;
    border-radius: 35px 0px 35px 0px;

}
.contact-box1 h5{
    color: var(--tertiary-color);
}

/* form end here */
.online-store{
    margin-top: 50px;
}
.online-product{
    width: 100%;
    height: 300px;
}
.online-product img{
    width: 100%;
    height:300px;
}
.second-row{
    margin-top: 80px;
    
}
.shop{
    width: 30%;
}



/* media query starts here */

@media screen and (max-width:1024px){   
/* navbar start here */
.navbar-nav{    
    padding-left:0px;
}
.navbar .navbar-brand img{
    width: 198px;
    height: auto;
}
.navbar-nav .nav-item{
    padding:0px 4px;
}
/* navbar end here */
.carousel-caption h3{
    font-size: 20px;
}
.carousel-caption h1 {
    font-size: 60px;
}
.carousel-caption {
    margin-bottom: 100px;
}
.section1 h2 {
    font-size: 32px;
}
.strap h2 {
    font-size: 32px;
}
.ayurveda-text1 h2 {
    font-size: 32px;
}
.ayurveda-text1 span{
    display: inline;
}
.ayurveda-text1 {
    padding: 12px 25px;
}
.ayurveda1 .ready {
    font-size: 16px;
}
.book-text {
    font-size: 18px;
}
.section4 {
    padding: 50px 0px;
    margin-top: 0px;
}
.section4 h2 {
    font-size: 35px;
}
.main-button {
    color: #fff;
    background-color: var(--secondary-color);
    border-radius: 25px;
    padding: 8px 15px;
    transition: .6s all;
    font-size: 16px;
}
.ready {
    font-size: 25px;
}
.ayurveda-overlay {
    height: 500px;
}
.ayurveda-text {   
    margin: 58px 0px;
   
}
.ayurveda-banner .head-p {
    font-size: 40px;
}
.yoga-courses h2 {
    font-size: 32px;
}
.bottom-overlay {
    height: 42px;
}
.footer-before p {
    font-size: 25px;
}
.ayurveda-png img{
    width: 200px;
    height: auto;
}
.ayurveda-png {
    position: absolute;
    right: 40px;
    top: -60px;
}
.page-banner h2 {
    font-size: 60px;
}
.banner-text {
    margin-top: 20%;
}
.workshop-card{
    height: 420px;
}
}

@media screen and (max-width:768px){  
    .navbar .navbar-brand img {
        width: 230px;
        height: auto;
    } 
    .carousel-caption h3 {
        font-size: 18px;

    }  
    .carousel-caption h1 {
        font-size: 50px;
    }
    .carousel-caption {    
    right: 8%;
    left: 8%;
    }
    .carousel-caption {
    margin-bottom: 30px;
    }
    .col-md-6 {
        width: 100%;
    } 
    .col-md-6 img{
        width: 100%;
    }  
    .section1 {
    padding-top: 0px;
} 
    .section1 h5{
        padding-top: 20px;
    }
    .strap {
    margin-top: 26px;
}
.art-meditation .col-md-6 img{
    margin-top: 0px;
    margin-bottom: 0px;
}
.art-meditation .pt-4{
    padding-top: 0px !important;
}
    .ayurveda-text1 {
        padding: 30px 30px;
    }
    .ayurveda1 .ready {
        font-size: 18px;
    }
    .book-text {
        font-size: 22px;
    }
    .section4 {
        padding: 40px 0px;
    }
    .side-card-text{
    padding: 20px 20px;
    }
    .side-card{
        margin-bottom: 20px;
    }
    
    .ayurveda-banner img{
    height: 400px;
}
    .ayurveda-overlay {
        height: 400px;
    }
    .ayurveda-text {
    width: 75%;
    margin: 35px 0px;
    }
    .ayurveda-text-div {
    padding: 20px 20px 20px 30px;
}
    .ready {
        font-size: 22px;
    }
    .section1 h2 {
        font-size: 32px;
        margin-top: 20px;
    }
    .col-md-3{
        width: 50%;
        margin-top: 20px;
    }
    .bottom-overlay {
        height: 50px;
    }
    .bottom-overlay h5 {
    padding: 12px 0px;
}
.yoga-courses {
    padding: 40px 0px;
}
.yoga-cards-row {
    margin-top: 0px;
}
    .footer-before p {
        font-size: 18px;
    }
    .footer-before {
    margin-top: 40px;
    padding: 25px 25px;
}
    .ayurveda-png img {
        width: 160px;
    }
    .ayurveda-png {
        position: absolute;
        right: 25px;
        top: -42px;
    }
    .col-md-5{
        width: 100%;
    }
    .contact-f{
        margin-top: 20px;
    }
    .page-banner h2
   {
        font-size: 45px;
    }
    .page-banner img {
    width: 100%;
    height: 350px;
}
   .banner-overlay{
    height: 350px;
    
}
.pt-5 {
    padding-top: 1rem !important;
}
.mt-5 {
    margin-top: 1rem !important;
}

.footer {
   
    padding: 30px 0px;
}
    .yoga h2 {
    font-size: 32px;
}
.yoga {
    padding: 40px 0px;
}
.col-md-4{
    width: 100%;

}
.col-md-8{
    width: 100%;
}
.yoga-box img {
    border-radius: 25px 25px 0px 0px;
    width: 100%;
    height: 400px;
}
    .section1 h2 {
        margin-top: 0px;
    }
.section1 h5 {
        padding-top: 8px;
    }
    .col-md-6 img {
        width: 100%;
        margin-top: 20px;
    }
    .yoga-box.mt-5 {
    margin-top: 30px !important;
}
    .col-md-6 img {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
        height: 400px;
    }
    .workshop-card img {
    width: 100%;
    height: 300px;
    border-radius: 20px 20px 0px 0px;
}
.workshop-card {
        height: auto;
    } 
    .workshop-text {
    padding: 18px;
    margin-bottom: 20px;
}
    .col-md-7 {
        width: 100%;
    }
    .form-map{
        margin-top: 30px !important;
    }
    .contact-box1 .col-md-3{
        width: 25%;
        margin-top: 0px;
    }   


}

@media screen and (max-width:540px){    
        .navbar .navbar-brand img {
        width: 200px;
        height: auto;
    } 
    
    .section1 h2 {
        font-size: 25px;
  
    }
    .pt-4 {
    padding-top: 10px !important;
}
    .col-md-6 img {
        margin-top: 10px;
        margin-bottom: 10px;
        height: 300px;
    }
.strap {
        margin-top: 15px;
    }
    .strap h2 {
        font-size: 25px;
    }
    
    .ayurveda1 {
    margin-top: 15px;
}
.ayurveda-text1 {
        padding: 12px 12px;
    }
.ayurveda-text1 h2 {
        font-size: 25px;
    }
        .book-text {
        font-size: 20px;
    }
    .section4 h2 {
        font-size: 25px;
    }
    .ready{
        font-size: 18px;
    }
    .ayurveda-text-div {
        padding: 20px 10px 20px 10px;
    }
    .ayurveda-text {
        width: 85%;
        margin: 35px 0px;
    }
        .ayurveda-overlay {
        height: 370px;
    }
        .ayurveda-banner img {
        height: 370px;
    }
        .ayurveda-banner .head-p {
        font-size: 30px;
    }
    .garbhasanskar h4{
        font-size: 18px ;
    }
    .garbhasanskar {
    padding-bottom: 35px;

}
    .yoga-courses h2 {
        font-size: 25px;
    }
    .yoga-courses {
        padding: 30px 0px;
    }
    .col-md-3 {
        width:100%;
        /* margin-top: 20px; */
    }
    span{
        display:block;
        padding: 10px 0px;
    }
        .footer-before p {
        font-size: 20px;
    }
    .footer-before {
        padding: 18px 18px;
    }
        .ayurveda-png img {
        width: 150px;
    }
        .ayurveda-png {
        position: absolute;
        right: 10px;
        top: -10px;
    }
    .banner-overlay {
        height: 250px;
    }
    .page-banner img {
        width: 100%;
        height: 250px;
    }
    .page-banner h2 {
        font-size: 32px;
    }
    .yoga h2 {
        font-size: 25px;
    }
    .yoga h5 {
        font-size: 16px;
    }
    .yoga .row {
    margin-right: 10px;
    margin-left: 10px;
}
.footer .f-about img{
    width: 200px;    
}
    h4 {
        font-size: 22px;
    }
    .contact-box1 .row .col-md-3{
        width: 100px;
    }
    .contact-box1 .row .col-md-9{
        width: auto;
    }


}
      

@media screen and (max-width:412px){  
    .navbar .navbar-brand img {
        width: 160px;
        height: auto;
    }   
    .section1 h5 {
        font-size: 17px;
    } 
        .section1 h2 {
        font-size: 22px;
    }
    .col-md-6 img {
        height: auto;
    }
        .strap h2 {
        font-size: 22px;
    }
    
    .section4 {
        padding: 30px 0px;
    }
    .section4 h5 {
    font-size: 17px;
}
    .section4 h2 {
        font-size: 22px;
    }
    
.ayurveda-banner .head-p {
        font-size: 24px;
    }
    .ayurveda-text {
        width: 85%;
        margin: 22px 0px;
    }
    .ayurveda-text {
        width: 95%;
        margin: 22px 0px;
    }
    .ready {
        font-size: 17px;
    }
    .ayurveda-overlay {
        height: 350px;
    }
    .ayurveda-banner img{
        height: 350px;
    }
        .ayurveda-text-div {
        padding: 20px 5px 20px 5px;
    }
    .yoga-courses h2 {
        font-size: 22px;
    }
     .footer-before {
        margin-top: 15px;
       
    }
    .footer-before p {
        font-size: 18px;
    }
    .ayurveda-png img {
        width: 126px;
    }
    .ayurveda-png {
        position: absolute;
        right: 5px;
        top: 20px;
    }
    .footer h4 {
    font-size: 20px;
}
.contact-f a {
   font-size: 17px;
}
.designed-by {
    padding: 20px 20px;
    font-size: 12px;
}
.banner-overlay {
        height: 200px;
    }
    .page-banner img {
       
        height: 200px;
    }
    .page-banner h2 {
        font-size: 25px;
    }
    .ayurveda-text1 h2 {
        font-size: 22px;
    }
    .yoga-box img {
        height: 300px;
    }
    .yoga-box-text {
    padding: 10px 2px;
}
.yoga {
        padding: 25px 0px;
    }
    .workshop-text {
        padding: 15px;
    }
    h4 {
        font-size: 20px;
    }
    .workshop-card img {
        height: 250px;
    }
   
.contact-box1 {
    padding: 15px 15px;
}
.contact-box1 img{
    width: 80px;
}
}

@media screen and (max-width:360px){  
        .section1 h5 {
        font-size: 16px;
    }    
    .col-md-6 img {
        height: 250px;
    }
    .strap {    
    padding: 10px;
    margin-top: 20px;
}
.ayurveda1 .ready {
        font-size: 16px;
    }
.book-text {
        font-size: 17px;
    }
    .side-card-text h3 {
    font-size: 20px;
}
.side-card-text {
        padding: 12px 12px;
    }
    .ayurveda-text {
        width: 100%;
        margin: 22px 0px;
    }
    .ayurveda-text-div {
        padding: 14px 0px 14px 3px;
    }
    .ayurveda-banner img {
        height: 335px;
    }
    .ayurveda-overlay {
        height: 335px;
    }
    .footer-before p {
        font-size: 17px;
    }
    .footer-before {
        padding: 12px 12px;
    }
        .ayurveda-png img {
        width: 125px;
    }
        .ayurveda-png {
        position: absolute;
        right: 2px;
        top: 8px;
    }
        .yoga-box img {
        height: 230px;
    }
     h3 {
    font-size: 22px ;
}
h5 {
    font-size: 18px;
}
.banner-text {
    width: 80%;
    
}
.form {
    padding: 12px;
    
}

.form-control {
    padding: 8px;

}
form input {
    margin: 8px 0px;
}
.footer-p {
    width: auto;
}

}

/* media query end here */


