:root{
    --primary-color:rgb(118,73,121);
    --secondary-color:rgb(225,204,173); 
    --light-bg:rgb(244,247,255);
    --footer-bg:rgb(34,34,34);
    --designed-by-bg:rgba(19, 19, 19, 0.969);
    --table-odd-color:rgb(118,73,121);
    --table-even-color:rgb(225,204,173);
    --overlay-bg:rgba(238,113,68,0.7);
    --primary-overlay:rgba(118,73,121,0.7);
    --card-orange-bg:rgb(253, 219, 170);
    --fade-primary-color:rgb(255,229,191);
    --fade-orange-bg:rgb(251, 243, 230);
    --footer-bg:rgb(56, 56, 56); 
    --footer-text-color:rgb(71,60,42);

}
@font-face{
    font-family:headings;
    src: url("../fonts/PlayfairDisplay-Regular.ttf");
}
 @font-face{
    font-family:body;
    src: url("../fonts/NotoSans-Regular.ttf"); 
}



/* general classes start */
*{
    margin:0px;
    padding:0px;
    box-sizing:border-box;
}
body{
    font-family: body;
    /* background-color: var(--light-bg); */
}
h1,h2,h3,h4,h5,h6{    
    font-family: headings;
    font-weight: 600;
}
a{    
    display:inline-block;
    text-decoration:none;
    color:#000;
}
a:hover{
    text-decoration:none; 
    color:#000;   
}
span{
    display:inline-block;
}
ul{
    list-style: none;
}

.bold{
    font-weight: bold;
}
.primary-c{
    color:var(--primary-color);
}
.secondary-c{
    color: var(--secondary-color);
}
.lit-content{
    color:var(--light-text);
}
.italic{
    font-family:italic;
    letter-spacing: 1px;
}
.btn1{
    
    background-color:var(--secondary-color);
    color:rgb(71,60,42);
    transition:.3s all;
    font-weight: 600;
    font-size: 17px;
    padding:15px 25px;
    border-radius:35px 0px 35px 0px;
}
a.btn1:hover{
    color:#fff;
    /* background-color:var(--secondary-color) */
}
.grey-bg{
    background-color: var(--light-bg);
    padding:50px 0px;
}
.primary-bg{
    background-color: var(--primary-color);
}
.fade-orange-bg{
    background-color: var(--secondary-color);
    padding:50px 0px;
}
.light-bg{
    background-color: var(--light-bg);
    padding: 50px 0px;
}
.text-justify{
    text-align:justify;
}
.pictures img{
    border-radius: 50px 0px 50px 0px;
    box-shadow: 25px 25px 0px var(--primary-color);
}
.pictures2 img{
    border-radius: 20px;
}
/* general classes end */


/* navbar start here */
.navbar{
    width:100%;
    background-color:rgb(118,73,121);  
    color: #fff; 
    /* position:sticky;
    top:0px;
    left:0px;    
    */     
    z-index: 999;
}
.navbar-nav{    
    padding-left:10%;
}
.navbar-nav li{
    margin:0px 10px;
}
.navbar .contact1 i{
    margin-right:5px;
}
.navbar-nav ul.dropdown-menu li{
    margin:0px 0px;
}
.navbar-light .navbar-nav .nav-link {
    font-weight: bold;
    color:#fff;
    transition: 0.5s;
}
.navbar-light .navbar-nav .nav-link:hover{
    color:var(--secondary-color);
    /* border-bottom: 3px solid 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: 40px 0px 40px 0px;
}
.dropdown-item{
    /* background-color: transparent; */
    /* border-top: 1px solid #ddd; */
    color: var(--primary-color);
    padding:0.50rem 1rem;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--secondary-color);
    background-color: transparent;

}
/* navbar end here */

/* home banner start here */

.carousel-caption {
    bottom: 9.25rem;
}
/* 
.carousel-caption p{
    color:#fff;
    padding:12px;
} */

.carousel-caption h2{
   font-size:45px;
   margin-bottom: 30px;

}
.carousel-indicators [data-bs-target] {
    /* width:10px;
    height:10px;
    border-radius:100%; */
    display:none;
}
.carousel-item {
    position: relative;
}
.overlay1{
    position: absolute;
    top: 0px;
    left: 0px;
    width:100%;
    height: 100%;
    background-color:rgba(118,73,121,0.5);
}
.top-flower{
    position: absolute;
    top: -35px;
    left: 0px;
}
.bottom-flower{
    position: absolute;
    right: 0px;
    bottom: -35px;
}
.home-banner{
    position: relative;
}
/* home banner end here */
.welcome{
    padding: 80px 100px;
    background-image: url(../image/welcome-bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
    
}
.welcome h2{
    color: var(--secondary-color);
}
.welcome p{
    margin-top: 40px;
}
.card-item{
    background-color: var(--primary-color);
    border-radius: 60px 0px 60px 0px;
    height: 500px;    
    transition: .3s all;
}
.card-item:hover{
    background-color: var(--secondary-color);
}
.card-item:hover .card-design-text{
    color: var(--footer-text-color);
}
.card-item:hover .card-design-text h5{
    color: var(--primary-color);
}
.card-design1 img{
   border-radius: 60px 0px 0px 0px;
   border-top: 5px solid var(--primary-color);
}
.card-design-text{
    padding: 20px ;
    /* background-color: var(--primary-color); */
    color: #fff;
    border-radius: 0px 0px 60px 0px;
    transition: .5s all; 
}
.card-design-text h5{
    color: var(--secondary-color);
}
/* teacher training course start here */
.item{
    border-radius:35px 0px 35px 0px;
    border:1px solid #ddd;
    border-top:5px solid var(--primary-color);
    border-bottom:5px solid var(--primary-color);
    height:620px;
    margin-left:8px;
    margin-right:8px;
    background-color: var(--primary-color);
    color: #fff;
}
.item:hover {
    background-color: var(--secondary-color);
    color: var(--footer-text-color);
}
.item h4{
   color: #fff;
}
.item:hover h4{
    /* color: var(--footer-text-color); */
    color: var(--primary-color);
    
}
.item .btn1{
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--secondary-color);
}
.item:hover .btn1{
    background-color: var(--primary-color);   
    color: #fff; 
    border:none;
}
.card-text{
    padding:10px 20px; 
}
.card1 img{ 
    border-radius:35px 0px 0px 0px;
}
.offer1{
    padding:8px;
    background-color: var(--primary-overlay);
    color:#fff;
    position:absolute;
    top:30px;
    border-top-right-radius:30px;
    border-bottom-right-radius:30px;
}
.ttc .item{
    transition:.5s all;
    margin-top:10px;
}
.ttc-btn{
    position:absolute;
    bottom:25px;
    left:33%;       
}
.new-cards{margin:40px 0px;text-align:center;}
.new-cards  .owl-carousel .owl-nav button.owl-prev{position:absolute;top:42%;left:-20px;font-size:30px;background:var(--primary-color);width:40px;height:40px;line-height:30px;transition:.2s all; color:#fff;border-radius:100%}
.new-cards  .owl-carousel .owl-nav button.owl-prev:hover{background:var(--secondary-color);border:1px solid #fff;}
.new-cards  .owl-carousel .owl-nav button.owl-next{position:absolute;top:42%;right:-20px;font-size:30px;background:var(--primary-color);width:40px;height:40px;line-height:30px;transition:.2s all; color:#fff;border-radius:100%}
.new-cards  .owl-carousel .owl-nav button.owl-next:hover{background:var(--secondary-color);border:1px solid #fff;}
.new-cards .owl-carousel button.owl-dot{background:grey;width:10px;height:10px;border-radius:100%;margin: 12px 5px;}
.new-cards .owl-carousel button.owl-dot.active{
    background:var(--primary-color);
}

/* teacher training course end here */


/* ayuveda in india start here */
.ayurveda1{
   padding:40px;
   border-radius:30px;
   margin:40px 0px;
}
/* ayuveda in india end here */

/* treatment methods start here */
.treatments-div .treatments-index {
    border-radius:30px;
    text-align:justify;
}
.treatments-div .treatments-index img{
    border-top-left-radius:30px;
    border-bottom-left-radius:30px ;
}
/* treatment methods end here */


/* certification start here */
.certification{
    background-color: rgb(255, 146, 107);
    color:#fff;
}
.certi-text{
    background-color: var(--primary-color);    
    padding:30px;
    color:#fff;
}
.certi-text p{
    color:#fff;
}
/* certification end here */

/* our facilities start here */

.home-section1 {
    margin-top:40px;
    
}
.home-section1 h1{
    margin-bottom: 25px;
}
.headings{
    margin-bottom:20px;
}
.home-section1 .treatment-card img{
   width:100%;
}
.home-section1 .treatment-card:hover{
    background-color: var(--card-orange-bg);
}
.accomo-text{
    padding:10px 10px 0px 0px;    
}
.other-facilities{
    background-color:var(--card-orange-bg)
}
.strip-h{
    background:var(--primary-color);
    color:#fff;
    padding:8px ;
}
/* .facilities-list{
    padding-top:10px;
    border-top:4px solid var(--primary-color);
    border-bottom:4px solid var(--primary-color);
    box-shadow:0px 0px 8px #ddd;
} */
.facilities-list ul li{
    padding:5px;
    list-style-image: url("../image/list-i.png");   
}

/* our facilities end here */

/* our teachers start here */
/* .photo-div{
    position:relative;
}
.overlay1{
    width:100%;
    height:0%;
    background-color:var(--overlay-bg);
    position:absolute;
    bottom:0px;
    left:0px;
    transition:.5s all;
}
.photo-div:hover .overlay1{
    width:100%;
    height:100%;
} */

.teacher1{
    background-color:#fff;
    padding:20px 30px;
    text-align:justify;
    position:relative;
    overflow:hidden;
}
.teacher-img{
    width:45%;
    margin:0px auto;
}
.teacher-img img{
    border-radius:100%;
    border:5px solid var(--primary-color);
    animation-name: fixedbtn;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;

}
/* .teacher1:hover .teacher-img img{
    transform:scale(1.1)
} */
.corner{
    width:50px;
    height:90px;
    background-color:var(--primary-color);
    position:absolute;
    bottom:-32px;
    right:-18px;
    transform:rotate(223deg);
}
.teacher-box{
    background-color: var(--primary-color);
    color: #fff;
    padding:  20px 50px;
    border-radius: 60px 0px 60px 0px;
    align-items: center;
}

.tpic-box{
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}
.tpic-box h4{
    text-align: center;
    color: var(--primary-color);
    font-weight: bolder;
}
.tpic-box p{
    color: #4e4f52;

}
.teacher-text {
    font-size: 14px;
    padding: 20px;
}


/* our teachers end here */


/* footer start here */

.footer{
    width:100%;
    background:var(--primary-color);
    background-size:cover;
    color:#fff;
    padding-top:50px;
    position: relative;
}
.footer h4{
    margin-bottom: 25px;
    color: var(--secondary-color);
}
.footer  ul{
    padding-left: 5px;
}
.footer .light-p{
    color:var(--light-text);
}
.f-about i{
    margin-right: 8px;
}
.f-about a{
    color: #fff;
    transition: .3s all;
}
.f-about a:hover{
    color: var(--secondary-color);
}
.links i{
    margin-right: 5px;
}
.links a{
    color:#fff; 
    border-bottom:1px dashed var(--light-text);
    padding:5px 0px;
    transition: .5s all;
}
.links a:hover{
    color:var(--secondary-color); 
}
.footer-social{
    font-size:18px;
}
.footer-social a i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius:100%;
    transition:.2s all;  
    color:#fff;
    border: 1px dashed #fff;
    background-color:var(--secondary-color);
    color: var(--primary-color);
}
.footer-social a i:hover{
    color: #fff;
    background-color: var(--primary-color);
}

.designed-by{
    font-size:14px;
    border-top:1px solid var(--light-text);
    padding:5px 10px;
    color:#fff;
}

.footer-design{
    position: absolute;
    right: 0px;
    bottom: 0px;
}
/* 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 */

/* form start here */
.form{
    margin-top: 20px;
}
form input{
    border:none;
    margin:12px 0px;
}
form textarea{
    width:100%;
    margin-bottom:12px;
    border:1px solid #ddd;
    padding:10px;
}
.select{
    width:100%;
    margin-bottom:12px;
    padding:10px;
    border:none;
    color:grey;
}
.form-control {   
    padding: 10px;
    color: #212529;
    border:none;
    border-radius: 0;
}
.form-control:focus {
    border-color:#fff;
    box-shadow: 0 0 0 1px var(--primary-color);
}
.input-btn{
    width:100%;
    text-align:center;
}
.btn2{
    background: var(--primary-color);
    color: #fff;
    padding: 18px 30px;
    border-radius: 35px 0px 35px 0px ;
    transition: .3s all;
}
.btn2:hover{
    background: var(--secondary-color);
    color:#212529;
}
.submit{
    width:30%;
    margin:auto;
}
.social2 {
    padding:10px 5px;
}
.social2 a i{
    color:#fff;
    background-color:var(--secondary-color);
}
.address-info .first-p{
    font-size:20px;
}
.contact-box1{
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 35px 0px 35px 0px;

}
.contact-box1 h5{
    color: var(--primary-color);
}

/* form end here */

/* page banner start here */
.page-banner{
    position:relative;
}
.page-banner img{
    width:100%;
    height:400px;
}
.banner-overlay{
    width:100%;
    height:400px;
    background-color:var(--primary-overlay);
    position:absolute;
    top:0px;
    left:0px;
}
.banner-text{
    width:60%;
    margin-top:10%;
    margin-left:auto;
    margin-right:auto;
}
.banner-text .first-p{
    font-size:48px;   
    color:#fff;
}
.banner-text .second-p{
    color:#ddd;
}

/* page banner end here */

/* about section1 start here */
.about-section1 .first-head{
    font-size:34px;
}
.vision{
    border:1.5px dashed #ddd;
    padding:10px 20px;
    text-align: justify;
    background-color: var(--card-orange-bg);
    transition:.3s all;
}
.box-shape .vision{
    height:340px;
}
.vision:hover{
    background-color:#fff;
    box-shadow:0px 0px 10px #ddd;
}
/* about section1 start here */

.about-section2 .first-p{
   font-size: 22px;
}

/* shivkumar mishra ji start here */
.shivkumar-ji img{
    border:1px solid var(--primary-color);
}
/* shivkumar mishra ji end here */

/* 200 hour ttc section1 start here */
.yoga-ttc .first-head{
    font-size: 35px;
}
/* 200 hour ttc section1 end here */

/* 200 hour ttc section2 start here */
.ttc-section2 h2{
    font-size: 35px;
}

/* 200 hour ttc section2 end here */

/* certification start here */
.certi-img img{
    margin-top:70px;
}
/* certification start here */

/* 300 hour start here */
.second-owl .item{
   height:660px;
}
.long-owl .item{
    height:800px;
}
/* 300 hour end here */

/* daily schedule start here */
.table {
    --bs-table-striped-color: #fff;
    color:  #4e4f52;
} 
.time-table1 th{
    padding:12px 0px;
    background-color:#4e4f52 ;
    color:#fff;
}
.time-table1 td{
    padding:12px 0px;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color:var(--table-odd-color);
    
}
.table-striped tbody tr:nth-of-type(even) {
    background-color:var(--table-even-color);
}
/* daily schedule end here */

 /* FAQ start here*/
 .faq .first-p{
    font-size:34px;
 }
.faq-ques{
    margin:auto
}
.ques{
    background-color: var(--secondary-color);
    border-radius:100%;
    padding:4px 10px;
    margin-right:8px;
    color: var(--primary-color);
}
.accordion-button{
    padding:15px 15px;
 }
.accordion-flush .accordion-item .accordion-button{
    color: #fff;
    font-weight:bold;
    box-shadow:0px 0px 8px #ddd;
    margin-top:20px;
    background-color: var(--primary-color);
}
.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color:#fff;
}
.accordion-body {
    background-color: var(--secondary-color);
    color:#000;
    border-radius:0px 0px 30px 30px;
}
.accordion-button::after {
    background-image: url(../image/plus.png);
    background-size:.7rem;
}
.accordion-button:not(.collapsed)::after{
    background-image: url(../image/minus.png);
    transform: rotate(0deg);
}
/* FAQ end here */

/* ayurveda in india section start here */
.three-box .first-p{
    font-size:20px;
    font-weight:bold;
}
.three-box .vision{
    height:230px;
    border:1.5px dashed #ddd;
    background-color: var(--card-orange-bg);
    color:var(--secondary-color);
    transition:.5s all;
}
.three-box .vision:hover{
    background-color: #fff;
    box-shadow:0px 0px 8px #ddd;
}
/* ayurveda in india section end here */

/* panchakarma in india section start here */
/* @keyframes circle{
    0%{
        transform:rotate(0deg);
    }
    100%{
        transform:rotate(360deg);
    }
} */
.step1{
    padding:10px 15px;
    background-color:#fff;
    margin-top:60px;
    box-shadow:0px 0px 5px #ddd;
    border-radius:10px;
    height:190px;
    transition:.5s all;
}
.step1:hover img{    
    transform: scale(1.2);
    /* background-color:var(--card-orange-bg); */

}
.step1 img{
    animation-name: circle;
    animation-delay: .3s;
    animation-duration: 5s;
    animation-iteration-count:infinite;
    animation-timing-function: ease;
    transition: .5s all;
}
.step1 h6{
    font-size:20px;
}
/* .step1:hover h6{
    color:#000;
} */
.step-img{
    width:40%;
    margin-left:auto;
    margin-right:auto;
    margin-top:-80px;
}
.step-img img{
    border-radius:100%;
    border:4px solid var(--primary-color);
}
.next-row-step1 {
    margin-left:190px;
}

/* panchakarma in india section end here */

/* about ayurvedic treatment start here */
.about-treatment .first-head{
   font-size:34px;
}
/* about ayurvedic treatment end here */

/* ayurvedic and panchakarma treatment start here */
.treatments-div .first-head{
    font-size:34px;
}
.treatment-card{
    transition:.5s all;
    background-color: var(--card-orange-bg);
}
.treatment-card:hover{
    background-color: #fff;
   box-shadow: 0px 0px 10px #ddd;
}
.treatment-text{
    padding:10px 10px;
    
}
/* ayurvedic and panchakarma treatment end here */

/* ayurvedic centre start here */
.ayurvedic-centre .first-head{
    font-size:34px;
}
/* ayurvedic centre end here */

/*  benefits start here */
.benefits .first-head{
    font-size:34px;
}
.benefit-box {
    border-bottom:4px solid var(--primary-color);
    box-shadow:0px 0px 10px #ddd;  
    height:380px;
    background-color: #fff;
}
.benefit-list{
    padding:20px 20px 10px 20px;
}
.benefit-list ol li{
    padding:5px;
    list-style-image: url(../image/list-i.png);
}
.benefit-head{
    font-size:20px;
}
.differ-benefits .benefit-box .first-p{
    color:var(--primary-color);
    font-size:22px;
    text-align:center;
}
.differ-benefits .benefit-box {
    height:300px;
    transition:.3s all;
    text-align:justify;
    
}
.differ-benefits .benefit-box:hover{
    background-color:var(--card-orange-bg);
}
/*  benefits end here */

/* diet therapy in rishikesh start  here */
.diet-therapy .first-head{
    font-size:34px;
}
/* diet therapy in rishikesh end here */

/*about diet therapy in rishikesh start here */
.about-diet .first-head{
    font-size:34px;
}
/*about diet therapy in rishikesh end here */

/* diet therapies in rishikesh start here */
.diet-box{
    box-shadow: 0px 0px 10px #ddd;
    border-radius:30px;
    height:600px;
}
.diet-box img{
    border-top-left-radius:30px;
    border-top-right-radius:30px;
}
.diet-text{
    padding:10px 25px;
}
.diet-long-box{
    box-shadow:0px 0px 10px  #ddd;
}
/* diet therapies in rishikesh end here */

/* benefits of diet therapy start here */
.benefit-box .first-p{
   font-size:18px;
}
/* benefits of diet therapy end here */

/* naturopathy in india start here */
.naturopathy-india .first-head{
    font-size:34px;
}
/* naturopathy in india end here */

/* about naturopathy treatment start here */
.about-naturopathy .step1{
    height:230px;
}
.about-naturopathy .step1 h6{
    font-size:20px;
}
/* about naturopathy treatment end here */

/* all methods section start here */
.all-methods ul{
    padding-left:0px;
}
.all-methods section h2{
    margin-bottom:0px;
}
.method-list{
    margin-top:0px;
    list-style: none;
    
}
.methods{
    position:sticky;
    top:0px;
    left:0px;
}
.method-list li a{
    padding:16px 20px;
    border-bottom:1px solid #000;
    border-bottom:1px solid #000;
    border-left:4px solid var(--primary-color);
    background-color:var(--card-orange-bg);
    display:block;
    text-align:left;
    transition: 0.5s all;
    
}
.method-list li a:hover{
    background-color:var(--primary-color);
    color:#fff;
}
.long-method-list li a{
    padding:13px 20px;
}

.treatment-full-text {
    background-color:#fff;
    padding:20px 40px;
    border:1px solid #ddd;
}
.treatment-full-text .first-p{
    font-size:20px;
}
.treatment-full-text p{
    text-align:justify;
}
/* all methods section end here */



/* gallery start here */
.gallery{padding:50px 0px;}
.gallery .col-md-4 {padding-left:5px;padding-right:5px;}
.pics{margin-top:10px;overflow:hidden;}
.pics img{transition:.5s all;}
.pics:hover img{transform:scale(1.12);}


/* gallery end here */

.checklist i{
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 18px;
}
/* pricing section start here */

/* .shared-section{
    border:2px solid var(--primary-color);
    position:relative;
    box-shadow: 0px 0px 10px var(--footer-text-color);
} */
.price-offer {
    width: 200px;
    height: 200px;
    background-color: var(--primary-overlay);
    transform: rotate(60deg);
    position: absolute;
    top: -139px;
    left: -67px;
    z-index: 1;
}
.offer-text{
    position:absolute;
    top:10px;
    left:8px;
    z-index:5;
    color:#fff;
}
.pricing h3{
    margin-bottom: 0px;
    padding: 10px;
    color: #fff;
}
.pricing p{
    font-size: 22px;
}
.price{
    padding: 40px 0px;
}
.price h3{
    color: #fff;
}
.price-area{
    text-align: center;
    padding-left: 8px ;
    padding-top: 10px;
    padding-bottom: 10px;
    border-left: 2px solid var(--secondary-color);
}
.price-area h4{
    color: var(--secondary-color)
}
.price-area p{
    font-size: 18px;
    color: #fff;
}
.included li{
    padding: 15px 0px;
}

/* pricing section end here */

/* pricing start here */
.retreat-price .price-card{
    padding-bottom:20px;
    border: 1px solid #d5d5d5;
    box-shadow: 0px 0px 10px #ddd;
    border-radius: 10px;
}
.retreat-price .price-card h4{
    padding: 10px 0px;
}
.retreat-price .price-text{
    padding:20px;
}
.retreat-price .price{
    background-color:var(--primary-color);
    color:#fff;
    padding:30px 10px;
    font-size:25px;
    margin-top:10px;
    letter-spacing: 0.8px;

}
.retreat-price .bn{
    border:none;
}
/* pricing end here */
.panchakarma-card .card-item{
    background-color: var(--secondary-color);
    height: 600px;
    border:1px solid #ddd;
    box-shadow: 0px 0px 10px #ddd;
    border-bottom: 5px solid var(--primary-color);
}
.panchakarma-card .card-item:hover{
    background-color: var(--secondary-color);
}
.panchakarma-card .card-design-text{
    color: #000;
}
.panchakarma-card .card-design-text h5{
    color: var(--primary-color);
}
/* course dates start here */
.course-box .row.bg-head{
    background-color:var(--primary-color);
    color:#fff;
}
.course-box .row.label-pink{
    background-color:var(--secondary-color);
    font-weight: bold;
    color:#4e4f52;
}
.course-box .row{
    border-left:1px dotted #ddd;
    border-right:1px dotted #ddd;
    border-bottom:1px dotted #ddd;
    background-color:rgb(250,250,250);
    padding:10px;
    color:rgb(134,137,140);
    font-size: 15px;
}
.course-box .button-type{
    padding:6px 20px;
}
/* course dates end here */
/* common button start */
.button-type{
    background-color:var(--primary-color);
    color:#fff;
    border-radius:50px;
    padding:12px 30px;
    transition:0.5s all;
}
a:hover.button-type{
    background-color:var(--secondary-color);
    color:#4e4f52;
}

/* common button end */

/* media query starts here */

@media screen and (max-width:1024px){  
    
 .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 6px;
    padding-left: 6px;
}
.btn1 i{
    display:none;  
}
.btn1{
    padding: 12px 20px;
}
.navbar-nav{
    padding-left: 10%;
}
.navbar-nav li{
    margin:0px 0px;
}
.carousel-caption h2 {
    font-size: 40px;
} 
.carousel-caption {
    bottom: 4.25rem;
}
}

@media screen and (max-width:768px){       
    
    .carousel-caption {
        bottom: 3.75rem;
    }
    .carousel-caption h2 {
        font-size: 32px;
    }    
    .carousel-caption p{
        display:none;
    }
    .carousel-caption a{
        margin:10px auto;
    }
    .btn1{
        padding:10px 15px;
    }
    .headings {
        margin-bottom: 10px;
    }
    .home-section1 {
        margin-top: 25px;
    }
    .home-section1 .row .col-md-7{
        width:100%;
    }
    .home-section1 .row .col-md-5{
        width:100%;
    }
    .home-section1 img{
        width:100%;
    }
    .home-section1 .row .col-md-6{
        width:100%;
    }
    .home-section1 .row .col-md-6{
        width:100%;
    }
    .fade-orange-bg{
        padding:28px 0px;
    }
    .new-cards {
        margin: 28px 0px;
    }
    .treatments-index .row .col-md-5{
        width:100%;
    }
    .treatments-index .row .col-md-7{
        width:100%;
    }
    .treatments-div .treatments-index img {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-left-radius: 0px;
        
    }
    .treatments-index .treatment-text{
        text-align:center;
        padding-bottom:20px;
        padding-top:10px;
        padding-right:10px;
        padding-left:10px;

    }
    .treatments-index .treatment-text p{
        text-align:justify;

    }
    .certification .row .col-md-6{
        width:100%;
    }
    .certification img{
        width:100%;
    }
    .certi-image{
        padding-left:30px;
        padding-right: 30px;
        padding-bottom: 30px;
    }
    .home-section1 .col-md-9{
        width:100%;     
    }
    .home-section1 .col-md-3{
        width:100%;     
    }
    .accomo-text {
        padding:15px 10px;
    }
    .home-section1 .facilities-list{
        padding-top:20px;
    }
    .footer .row .col-md-5{
        width:100%;
    }
    .footer .row .col-md-4{
        width:100%;
    }
    .footer .row .col-md-3{
        width:100%;
    }
    .teacher1{
        margin-top:20px;
        padding:20px 8px;
        text-align:center;
    }
    .footer-social{
        padding-bottom: 20px;
    }
    
    .ttc-btn {
        bottom: 15px;
        left: 38%;
    }
    .designed-by{
        font-size:13px;
        padding:10px 10px;
        color:var(--footer-text-color);
        text-align:left;
    }
    .teacher-img{
        width:30%;
    }
    .page-banner img {
        height: 250px;
    }
    .banner-overlay {
        height: 250px;
    }
    .banner-text{
        width:100%;   
        margin-top:12%;
    }
    .banner-text .first-p {
        font-size: 38px;  
    }
   .about-section2 .row .col-md-4{
        width:50%;
    }
    .about-section2  .row .vision-box-5{
        width:100%;
        margin-top:25px;
        
    }
    .box-shape .vision-box-5 .vision{
       height:auto;
    }
    .shivkumar-ji .row .col-md-6{
        width:100%;
    }
    .shiv-img img{
        width:100%;
    }
    .yoga-ttc .first-head {
        font-size: 29px;
    }
    .ttc-section2 .row .col-md-6{
        width:100%;
    }
    .ttc-section2 img{
        width:100%;
    }
    .ttc-section2 p{
        margin-top:10px;
    }
    .how-should .row .col-md-6{
        width:100%;
    } 
    .how-should img{
        width:100%;
    }
    .faq .row .col-md-10{
        width:100%;
    }
    .section1-200 .first-head{
        font-size:32px;
    }
    .ttc-section2 h2 {
        font-size: 32px;
    }
    .how-should h3 {
        font-size: 30px;
    }
    .yoga-ttc .row .col-md-7{
        width:100%;
    }
    .yoga-ttc .row .col-md-5{
        width:100%;
    }
    .yoga-ttc .row .col-md-5 img{
        width:100%;
        margin-bottom:30px;
    }
    .card-text{
        padding:10px 15px;
    }
    .second-owl .item{
        height:680px;
    }
    .ayurveda1{
        padding:20px 40px;
    }
    .spiritual-journey .ayurveda1 h2{
        font-size:26px;
    }
    .kundalini1 h1{
        font-size:30px;
    }
    .kundalini2 h2{
        font-size:30px;
    }
    .kundalini3 h3{
        font-size:28px;
    }
    .why-should .row .col-md-6{
        width:100%;
    }
    .why-should h3{
        font-size:30px;
    }
    .ayurved1  h1{
        font-size: 29px;
    }
    .ayurved4 h2 {
        font-size: 32px;
    }
    .long-owl .item {
        height: 845px;
    }
    .best-ayurveda h3{
        font-size:30px;
    }
    .best-ayurveda .row .col-md-6{
        width:100%;
    }
    .best-ayurveda .row .col-md-6 img{
        width:100%;
    }

    .three-box .first-p {
        font-size: 19px;
    }
    .three-box .vision {
        height: 332px;
    }
    .vision {
        padding: 10px 10px;
    }
    .panchakarma-process .row .col-md-4{
        width:50%;
    }
    .next-row-step1{
        margin-left:0px;
    }
    .step1 {
        padding: 10px 10px;
        /* height: 340px; */
    }
    .step1 h6 {
        font-size: 19px;
    }
    .panchakarma-process .row .col-md-4.basti{
        margin-left:25%;
        margin-top:20px;
    }
    .about-treatment .first-head {
        font-size: 30px;
    }
    .about-treatment .row .col-md-6{
        width:100%;
    }
    .about-treatment .row .col-md-6 img{
        width:100%;
    }
    .treatments-div .first-head {
        font-size: 30px;
    }
    .treatments-div .row .col-md-6{
        width:100%;
    }
    .treatments-div .row .col-md-6 img{
        width:100%;
        height:250px;
    }
    .treatments-div .treatment-card{
        margin-bottom:20px;
        height:auto;
    }
    .treatments-div .treatment-text {
        padding: 20px 10px;
    }
    .ayurvedic-centre .first-head {
        font-size: 30px;
    }
    .benefits .first-head {
        font-size: 30px;
    }
    .benefit-box {
        height: 395px;
    }
    .faq .first-p {
        font-size: 30px;
    }
    .diet-therapy .first-head {
        font-size: 30px;
    }
    .diet-india .row .col-md-6{
        width:100%;
    }
    .diet-india .row .col-md-6 img{
        width:100%;
    }
    .about-diet .first-head {
        font-size: 30px;
    }
    .diet-cards .treatment-card .row .col-md-5{
        width:100%;
    }
    .diet-cards .treatment-card .row .col-md-5 img{
        width:100%;
    }
    .diet-cards .treatment-card .row .col-md-7{
        width:100%;
    }
    .diet-cards .treatments-div .treatment-text {
        padding: 10px 10px;
    }
    .differ-benefits .benefit-box {
        height: 428px;
    }
    .benefit-list {
        padding: 12px;
    }
    .long-method-list li a {
        padding: 8px 6px;
    }
    .treatment-full-text {
        background-color: #fff;
        padding: 9px 30px;
    }
    .methods h2{
        font-size:20px;
    }
    .footer .light-p {
        color: white;
    }
    .welcome {
        padding: 30px 40px;
    }
    .welcome p{
        margin-top: 10px;
    }

    
}


@media screen and (max-width:540px){     
    
    .treatments-div .first-head {
        font-size: 28px;
    }  
    .certi-image {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }
    .page-banner img {
        height: 200px;
    }
    .banner-overlay {
        height: 200px;
    }
    .banner-text{
        width:100%;
        margin-top:12%;
    }
    .banner-text .first-p {
        font-size: 32px;  
    }
    .about-section2 .row .col-md-4{
        width:100%;
    }
    .box-shape .vision{
        height:auto;
    }
    .vision{
        margin-top:20px;
    }
    .about-section2  .row .vision-box-5{
        width:100%;
        margin-top:0px;
        
    }
    .box-shape .vision-box-5 .vision{
       height:250px;
    }
    .about-section1 .first-head {
    font-size: 30px;
    }
    .section1-200 .first-head {
        font-size: 30px;
    }
    
    .ttc-section2 h2 {
        font-size: 30px;
    }
    
    .faq .first-p {
        font-size: 28px;
    }
    .how-should h3{
        font-size: 25px;
    }
    .yoga-ttc h1 {
        font-size: 26px;
    }
    .yoga-ttc .first-head {
        font-size: 26px;
    }
    .kundalini3 h3 {
        font-size: 26px;
    }
    .why-should h3 {
        font-size: 28px;
    }
    .ayurved1 h1{
        font-size:26px;
    }
    .long-owl .item {
        height: 758px;
    }
    .three-box .vision {
        height: auto;
    }
    .vision {
        padding: 10px 20px;
    }
    .panchakarma-process .row .col-md-4 {
        width: 100%;
    }
    .step-img {
        width: 30%;
        margin-top: -80px;
    }
    .step1 {
        padding: 10px 15px;      
        height: auto;
        margin-top:80px;       
    }
    .three-box .first-p {
        font-size: 20px;
    }
    .treatments-div .treatment-card {
        height: auto;
    }
    .step1 h6 {
        font-size: 20px;
    }
    .panchakarma-process .row .col-md-4.basti {
        margin-left: 0%;
        margin-top: 0px;
    }
    .ayurvedic-centre .first-head {
        font-size: 28px;
    }
    .benefit-box {
        height: auto;
        margin-bottom:20px;
    }
    .benefit-list {
        padding: 20px;
    }
    .benefits .first-head {
        font-size: 28px;
    }
    .about-treatment .first-head {
        font-size: 28px;
    }
    .naturopathy-india .first-head {
        font-size: 30px;
    }
    .diet-therapy .first-head {
        font-size: 28px;
    }
    .about-diet .first-head {
        font-size: 28px;
    }
    .differ-benefits .benefit-box {
        height: auto;
    }
    .welcome {
        padding: 40px 10px;
        
    }
}

@media screen and (max-width:412px){   
      
    .dropdown-item {
        padding: 10px 10px;
    }
    .home-section1 {
        margin-top: 25px;
    }
    .home-section1 .first-head{
        font-size:24px ;
    }
    .fade-orange-bg {
        padding: 30px 0px;
    }
    .new-cards {
        margin: 30px 0px;
    }    
    .ayurveda1 {
        padding: 20px;
        margin: 25px 0px;
    }
    .accomo-text {
        padding: 12px 10px ;
    }
    .home-section1 .facilities-list{
        margin-top:20px;
    }
    .teacher1{
        margin-top:20px;
    }
    .f-about p{
        text-align:justify;
    }
    .links{
        margin-top:20px;
    }
    
    .page-banner img {
        height: 180px;
    }
    .banner-overlay {
        height: 180px;
    }
    .banner-text{
        width:100%;
        margin-top:15%;
    }
    .banner-text .first-p {
        font-size: 25px;  
    }    
    .yoga-ttc .first-head{
        font-size:22px;
    }
    .card-text {
        padding: 10px;
    }
    .ttc-section2 h2{
        font-size:22px;
    }
    .spiritual-journey h2{
        font-size:22px;
    }
    .faq .first-p {
        font-size: 25px;
    }
    .yoga-ttc h1{
        font-size:20px;
    }
    .overview3 h2{
        font-size:23px;
    } 
    .detailed-guide h2{
        font-size:20px;
    }
    .ttc-section2 h4{
        font-size:16px;
    }
    .ayurveda-ttc h2{
        font-size:22px;
    }
    .next-row-step1 {
        margin-left: 0px;
    }
    .step1 {
        padding: 25px  15px;
        height: auto;
        margin-top: 60px;
    }
    .about-treatment .first-head{
        font-size:25px;
    }
    .treatments-div .first-head{
        font-size:25px;
    }
    .treatment-card img{
        width:100%;
      
    }
    .treatment-card{
        margin-bottom:20px;
    }
    .ayurvedic-centre .first-head {
        font-size: 22px;
    }
    .benefits .first-head {
        font-size: 25px;
    }
    .benefit-box{
        height:auto;
        margin-bottom:20px;
    }
    .diet-therapy .first-head {
        font-size: 25px;
    }
    .about-diet .first-head {
        font-size: 25px;
    }
    .differ-benefits .benefit-box {
        height: auto;
    }
    .naturopathy-india .first-head {
        font-size: 25px;
    }
    .methods{
        margin-bottom:30px;
    }
    .treatment-full-text {
        padding: 10px 30px;
    }
    .second-owl .item{
        height: auto;
    }
    
    
    .item{
        height:580px;
    }
    .ttc-btn {
        bottom:15px;
        left:38%;
    }
    .new-cards .first-head{
        font-size:26px;
    }
    .certi-image {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 20px;
    }
    .certi-text {
        padding:10px;
    }
    .footer-social a i {
        height: 45px;
        width: 45px;
        line-height:45px;
    }
    .designed-by {
        font-size: 12px;
        padding: 8px;
    }
    .box-shape .vision {
        height: auto;
    }
    .box-shape .vision-box-5 .vision {
        height: auto;
    }
    .section1-200 .first-head {
        font-size: 25px;
    }
    .how-should h3{
        font-size: 26px;
    }
    .spiritual-journey .ayurveda1 h2 {
        font-size: 23px;
    }
    .kundalini1 h1 {
        font-size: 24px;
    }
    .kundalini2 h2{
        font-size:25px;
    }
    .kundalini2 h5{
        font-size:18px;
    }
    .kundalini3 h3 {
        font-size: 22px;
    }
    .why-should h3 {
        font-size: 25px;
    }
    .ayurved1 h1 {
        font-size: 24px;
    }
    .ayurved3 h2{
    font-size: 25px;
   }
   .ayurved4 h2 {
    font-size: 24px;
  }
  .long-owl .item{
    height: 780px;
  }
  .best-ayurveda h3 {
    font-size: 26px;
  }
  .ayurvedic-centre .first-head {
    font-size: 23px;
}
.benefits .first-head {
    font-size: 22px;
}
.Whatsapp-div{
    bottom:10px;
    right:10px;
 }
 .pictures img{
    box-shadow: 10px 10px 0px var(--primary-color);
}
.discover .card-item{
    margin-top: 20px;
}

.shared-section{
    margin-top: 25px;
}
.included li {
    padding: 5px 0px;
}
.pictures2{
    margin-top: 20px;
}
.teacher-box {
    padding: 20px 20px;
}
.contact-box1{
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 35px 0px 35px 0px;
    text-align: center;

}
.retreat-price .bn {
    margin-top: 20px;
}
.panchakarma-card .card-item {
    margin-top: 20px;
}
.top-flower{
    display: none;
}
.bottom-flower img{
    display: none;
}
.welcome{
    background-position: center ;
}
.accordion-flush .accordion-item .accordion-button {    
    margin-top: 12px;

}
.retreat-price .price {
    padding: 16px 10px;
    font-size: 20px;
    margin-top: 5px;

}
.retreat-price .price-text {
    padding: 12px;
}
}




@media screen and (max-width:360px){  
    .dropdown-item{
        padding:5px 2px;
    }     
    .new-cards .first-head {
        font-size: 25px;
    }
    .offer1{
        padding:5px;
    }
    .banner-text{
        width:100%;
        margin-top:18%;
    }
    .banner-text .first-p {
        font-size: 22px;  
    }
    .about-section1 .first-head {
        font-size: 25px;
    }
    .vision{
        margin-bottom:20px;
    }
    .yoga-ttc .first-head {
        font-size: 20px;
    }
    .ttc-section2 h2 {
        font-size: 20px;
    }
    .certi-text h2{
        font-size:23px;
    }
    .yoga-ttc h1{
        font-size:18px;
    }
    .overview3 h2{
        font-size:18px;
    } 
    .detailed-guide h2{
        font-size:18px;
    }
    .ayurveda h3{
        font-size:22px;
    }
    .rishikesh5 h2{
        font-size:22px;
    }
    .ttc-section2 h4{
        font-size:14px;
    }
    .ttc-section2 h2{
        font-size:18px;
    }
    .ayurveda-ttc h2{
        font-size:20px;
    }
    .ttc-section3 h2{
        font-size:22px;
    }
    .about-treatment .first-head {
        font-size: 22px;
    }
    .treatments-div .first-head {
        font-size: 24px;
    }
    .ayurvedic-centre .first-head {
        font-size: 20px;
    }
    .benefits .first-head {
        font-size: 22px;
    }
    .diet-therapy .first-head {
        font-size: 22px;
    }
    .about-diet .first-head {
        font-size: 22px;
    }
    .naturopathy-india .first-head {
        font-size: 25px;
    }
    .yoga-ttc h2{
        font-size:22px;
    }
    .treatment-full-text {
        padding: 8px  28px;
    }
    .second-owl .item{
        height: auto;
    }
    .long-owl .item{
        height:auto; 
    }
    .item{
        height:590px;
    }
    .card-text {
        padding: 10px;
    }
    .footer-social a i {
        height: 40px;
        width: 40px;
        line-height:40px;
    }
    .vision {
        margin-bottom: 0px;
    }
    .section1-200 .first-head {
        font-size: 22px;
    }
    .ttc-section2 h2 {
        font-size: 22px;
    }
    .spiritual-journey h2 {
        font-size: 24px;
    }
    .how-should h3 {
        font-size: 22px;
    }
    .kundalini1 h1{
        font-size: 21px;
    }
    .kundalini2 h2{
        font-size:21px;
    }
    .kundalini2 h5 {
        font-size: 16px;
    }
    .kundalini3 h3 {
        font-size: 20px;
    }
    .why-should h3 {
        font-size: 21px;
    }
    .ayurved1  h1 {
        font-size: 20px;
    }
    .ayurved3 h2{
        font-size:22px;
    }
    .ayurved4 .first-head{
        font-size: 21px;
    }
    .best-ayurveda  h3{
        font-size:22px;
    }
    .step1 h6 {
        font-size: 18px;
    }
    .faq .first-p {
        font-size: 24px;
    }
    .card-item {
        height: 460px;
    }
}


/* media query end here */





