*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    --white: #fff;
    --black: #000;
    --brown:#917C69;
    --gray:#717171;

}
@font-face {
    font-family: 'adobe-garamond-pro';
    src:url('adobe-garamond-pro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

a{
    text-decoration: none;
    color: inherit;
}
body{
/*font-family: "Jost", sans-serif;*/
 font-family: "adobe-garamond-pro", sans-serif;
     
 font-weight: 400;
 position: relative;

}
.img-center{
    display: block;
    width: 100%;
    margin: auto;
}
.img-center img{
    display: block;
    width: 100%;
}
img,video{
    max-width: 100%;
}
.mxw-750{
    max-width: 750px;
}
.mxw-850{
    max-width: 850px;
}
.mx-auto{
    margin-left: auto;
    margin-right: auto;
}
.pt-100{
    padding-top: 100px;}
.ptb-100{
    padding-top: 100px;
    padding-bottom: 100px;
}
.pb-100{
    padding-bottom: 100px;
}
.ptb-70{
    padding-top: 70px;
    padding-bottom: 70px;
}
.pt-70{
    padding-top: 70px;
}
.ptb-50{
    padding-top: 50px;
    padding-bottom: 50px;
}
.fs-14{
    font-size: 14px;
    line-height: 24px;
}
.fs-20{
    font-size: 20px;
    line-height: 28px;
}
.fs-24{
    font-size: 24px;
    line-height: 32px;
}
.fs-30{
    font-size: 30px;
    line-height: 42px;
}
.fs-36{
    font-size: 36px;
    line-height: 48px;
}
.pb-70{

    padding-bottom: 70px;
}
.mtb-15{
    margin-top:15px ;
    margin-bottom: 15px;
}
.mb-5{
    margin-bottom:5px;
}
.mt-5{
    margin-top: 5px;
}
.mb-15{
    margin-bottom: 15px;
}
.mt-15{
    margin-top: 15px;
}
.mt-30{
    margin-top: 30px;
}
.mb-30{
    margin-bottom: 30px;
}
.mtb-30{
        margin-top: 30px;
        margin-bottom: 30px;
}
.mt-20{
    margin-top: 20px;
}
.mb-20{
    margin-bottom: 20px;
}
.mtb-20{
        margin-top: 20px;
        margin-bottom: 20px;
}
header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
}
header .top-header{
    padding:45px 30px 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
header .bottom-header{
    position: absolute;
    width: 100%;
    background: var(--white);
    max-width: 350px;
    width:0%;
    top: 0;
    height: 100vh;
    transition: all 0.5s;
    overflow: hidden;
    padding:  45px 0;
    opacity: 0;
    z-index: 999;
}
header::before{
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    top: 0;
    width: 0%;
    background: #0007;
    opacity: 0;
    transition: all 0.5s;
    z-index: 5;
}
header.active::before{
    width: 100%;
    opacity: 1;
}
header.active .bottom-header{
    width: 100%;
    opacity: 1;
    padding:  45px;
    overflow: auto;
}
header .bottom-header .close-icon{
    cursor: pointer;
    margin-bottom: 40px;
}
header .bottom-header menu{
    display: block;
    width: fit-content;
    list-style-type: none;
}
header .bottom-header menu li{
  margin: 15px;
}
header .bottom-header menu li a{
    text-decoration: none;
    font-size: 22px;
    line-height: 30px;
    color: var(--black);
    font-weight: 300;
    transition: all 0.5s;
}
header .bottom-header menu li a:hover{
font-weight: 400;
}
.home-slider{
    position: relative;
}
.thm-container,
.thm-container-fluid,
.thm-container-mini,
.thm-container-1200{
     width: 100%;
margin-left: auto;
margin-right: auto;
    display: block; 
        padding: 0 20px;
}
.thm-container-1200{
    max-width: 1200px;
}
.thm-container{
    max-width: 1024px;  
}
.thm-container-mini{
    max-width:700px;  
}
.font-300{
    font-weight: 300;
}
.clr-gray{
    color: var(--gray);
}
.clr-white{
    color: var(--white);
}

.home-slider .overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    z-index: 2;
    opacity: 0.4;
}
.home-slider .content-box{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 10px 30px;
    z-index: 3;
}

.home-slider .content-box h1 {
    font-size: 60px;
    font-weight: 400;
    line-height: 76px;
}

.text-white{
    color: var(--white);
}
.icon-text-flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-text-flex img{
    display: block;
    margin-right: 10px;
}
.home-slider .swiper img{
    height: 100vh;
    height: 100dvh;
    width: 100%;
    object-fit: cover;
    display: block;
}
.text-center{
    text-align: center;
}
.toupper{
    text-transform: uppercase;
}
h2.thm-title{
    font-size: 42px;
    line-height: 52px;
    font-weight: 400;
}
.thm-btn{
    border: 1px solid var(--white);
    text-decoration: none;
    color: var(--white);
    padding: 6px 15px;
    font-weight: 400;
    font-size: 14px;
}
header .logo{
    margin: 8px;
}
header .thm-btn{
    transform: scale(0.9);
    margin-left: 10px;
}
header .menu-icon{
    position: relative;
    width: 36px;
    height: 36px;
    cursor: pointer;
    margin-right: 10px;
}


header .menu-icon span{
    position: absolute;
    height: 1px;
    margin: auto;
    inset: 0;
    width: 100%;
    background: var(--white);
}
header .menu-icon span:first-child{
    margin-top: 6px;
}
header .menu-icon span:last-child{
    margin-bottom: 6px;
}
.contact-info{
    background: var(--brown);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    flex-wrap: wrap;
}
.contact-info .title{
    font-size: 18px;
    margin: 20px;
}
.contact-info ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.contact-info ul li{
padding: 20px;
border-left: 1px solid #0003;
}
.contact-info ul a img{
    display: block;margin: 8px;
}
.contact-info ul a{
    display: flex;
    align-items: center;
}
.about .about-slider .content-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 70px;
}
.about .about-slider .content-box .main-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.about .about-slider .content-box img{
    display: block;
}
.about .about-slider .content-box .content{
    padding: 20px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f4f4f4;
}
.about .about-slider .content-box .content p{
    max-width: 80%;
    font-size: 18px;
    line-height: 28px;
}
.about .about-slider .content-box .content  img{
    margin-bottom: 20px;
    max-width: 120px;
}
.about .about-slider .swiper-pagination-bullet{
    background-color: transparent;
    font-size: 18px;
    margin: 5px;
    font-weight: 300;
}
.slide-image-box{
    position: relative;
}
.slide-image-box .item{
 min-height: 100vh;
min-height: 100dvh; 
/*min-height:60vh;*/
width: 100%;
display: flex;
padding: 30px 0;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
justify-content: center;
align-items: center;
position: sticky;
top: 0;
flex-flow: column;
margin: auto;
}
.slide-image-box .item::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #0002;
    z-index: 1;
}
.slide-image-box .item a{
    width: 90%;
    z-index: 2;
}
.slide-image-box .item .arrow-btn{
    --size:32px;

}
.arrow-btn{
    color: #fff;
    width: fit-content;
    position: relative;
    font-size:var(--size);
    line-height: calc(var(--size) + 10px);
    padding-right: calc(var(--size) + 15px);
}
.arrow-btn::before{
    content: '';
    height: var(--size);
    width: var(--size);
    background-image: url('../ayurveda-theme-assets/icons/left-btn-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 0;
    top:50%;
    transform: translateY(-50%);
}
.programs .program-slider .swiper-slide{
    --height: 500px;
    --space:20px;
padding: var(--space) 0px;
transition: all 0.2s;
}
.programs .program-slider .swiper-slide:hover{
padding: calc(var(--space) / 2) 0px;
}
.programs .program-slider .swiper-slide:hover .content-box{
    min-height: calc(var(--height) + var(--space));
    border: 1px solid var(--white);
}
.programs .program-slider .content-box{

    min-height: var(--height);
    /* border: 0.1px solid var(--white); */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    position: relative;
    display: flex;
    height: 100%;
    justify-content: end;
    align-items: flex-start;
    position: relative;
    transition: all 0.2s;
    flex-flow: column;
}
.programs .program-slider .content-box::before{
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
    background: linear-gradient(to top, #000 , #0000, #0000, #0000);
}
.programs .program-slider .content-box .arrow-btn{
    --size:22px;
    position: relative;
    z-index: 2;
}
.testimonials .testimonials-slider .grid-box{
display: grid;
grid-template-columns: 1fr 1fr;
margin-bottom: 50px;
	opacity:0;
}
.testimonials .testimonials-slider .swiper-slide-active .grid-box{
	opacity:1;
}
.testimonials .testimonials-slider .grid-box img{
    display: block;
    height: 100%;
    width:100%;
    object-fit: cover;
}
.testimonials .testimonials-slider .grid-box .content{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background:#f4f4f4;
}
.btn-line{
    border-bottom:1px solid #7b7b7b;
}
.testimonials .testimonials-slider .swiper-pagination-bullet {
    width: 30px;
    height: 2px;
    background-color: var(--black);
    border-radius: 0;
    opacity: 1;
    position: relative;
}
.testimonials .testimonials-slider .swiper-pagination-bullet::before{
    content: '';
    height: 30px;
    width: 30px;
    transform: translateY(-50%);
    left: 0;
    top:50%;
    position: absolute;
}
.testimonials .testimonials-slider .swiper-pagination{
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
.testimonials .testimonials-slider .swiper-pagination-bullet-active{
        height: 5px;
}
.video-sec-full{
    position: relative;
}
.video-sec-full video{
height: 100%;
width: 100%;
display: block;
min-height: 450px;
object-fit: cover;
}
.video-sec-full .content-box{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: end;
    padding: 30px 15px;
}
.stories .stories-slider .content-box img{
display: block;
width: 100%;
object-fit: cover;
margin-bottom:20px;
}
.blog-sec .grid-box{
display: grid;
grid-template-columns: repeat(2,1fr);
margin: auto;
max-width: 1110px;
width: 100%;
padding: 15px;
}
.blog-sec .grid-box .item{
    padding: 8px;
margin: 15px auto;
}
.blog-sec .grid-box .item a,
.blog-sec .grid-box .item img{
    display: block;

  
}
.blog-sec .grid-box .item ul{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.blog-sec .grid-box .item ul li{
    font-size: 14px;
    margin: 10px;
    font-weight: 400;
}
.blog-sec .grid-box .item ul li:first-child{
    margin-left: 0;
}
.blog-sec .grid-box .item  h4{
    font-size: 30px;
    line-height: 42px;
}
.blog-sec .grid-box .item  h4 a{
    font-weight: 300;
            color: var(--gray);
}
footer{
      background: #3E3E3E;
}

footer .top-footer{
 background: #4E4E4E;  
 color: var(--white);
 text-align: center;

}
footer .top-footer h4{
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 32px;
}

footer .top-footer ul{
    display: flex;
    list-style-type: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
footer .top-footer ul li a{
    background: #6D6D6D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 300;
    opacity: 0.8;
}
footer .top-footer ul li img{
    display: block;
    min-width: 18px;
    width: 18px;
    margin-right: 8px;
}

footer .bottom-footer .media-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    margin-top: 10px;
}
footer .bottom-footer .media-list li{
margin: 5px;
border-radius: 10px;
height: 80px;
width:80px;
background: #868686;
}
footer .bottom-footer .nabh-logo{
    max-width: 120px;
    margin: auto;
}
footer .end-footer hr{
    height: 1px;
    width: 100%;
    background-color: #4E4E4E;
    border-width: 0px;
    margin:0 auto 30px auto;
}
footer .end-footer {
    max-width: 1200px;
    margin: auto;
    width: 100%;
    padding: 0 15px;
    color: var(--white);
}
footer .end-footer .copy-write{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    padding-bottom: 30px;
}
footer .end-footer .copy-write ul.social-links{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    list-style-type: none;
}
footer .end-footer .copy-write ul.social-links a{
    margin: 5px;
}
footer .end-footer .copy-write ul.social-links a,
footer .end-footer .copy-write ul.social-links img{
display: block;
}
.play-btn{
    position: relative;
    display: block;
}
.play-btn video{
    display: block;
}
.play-btn::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url('../ayurveda-theme-assets/icons/play.svg');
    background-color: #0003;
    background-repeat: no-repeat;
    background-position: center;
}
.inclusions .inclusions-tabs{
    display: grid;
}
.inclusions .inclusions-tabs .tab-image{
display: none;
padding: 5px;
}
.inclusions .inclusions-tabs .tab-image.active{
    display: flex;
}

.inclusions .inclusions-tabs .tab-content{
padding: 5px 0;
cursor: pointer;
width: fit-content;
transition: all 0.5s;

 margin-bottom: 5px;
}
.inclusions .inclusions-tabs .tab-image img{
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inclusions .inclusions-tabs .tab-content.active{
border-bottom-color: #000 ; 
}
.inclusions .inclusions-tabs .tab-content .title{
width: fit-content;
font-size: 22px;
line-height: 30px;
}
.inclusions .inclusions-tabs .tab-content .content{
    display: none;
}
.inclusions .inclusions-tabs .tab-content.active .content{
    display: block;
}
.circle-list{
    display: flex;
    list-style-type:none ;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.circle-list li{
    padding: 1px 10px;
    border-radius: 30px;
    margin: 5px;
    border: 1px solid #0005;
}
.full-image-slider{
    position: relative;
}
.full-image-slider .swiper-slide img{
    display: block;
    min-height: 260px;
    object-fit: cover;
}
.full-image-slider .arrow,
.patient-slider .arrow{
    position: absolute;
    top: 50%;
    z-index: 5;
    cursor: pointer;
    transform: translateY(-50%);
   height: 20px;
   width: 20px;
}
.full-image-slider .left-arrow{
    left: 10px;
}
.full-image-slider .right-arrow{
    right: 10px;
}
.bg-gray{
    background: #F5F5F5;
}
.patient-slider{
    position: relative;
    max-width: 800px;
    padding:10px 35px;
}
.patient-slider .content{
    padding: 80px;
    margin: auto;
    max-width: 650px;
    width: 100%;
}
.patient-slider .left-arrow{
    left: 0px;
}
.patient-slider .right-arrow{
    right: 0px;
}
.patient-slider .swiper-slide .content {
opacity:0;
}
.patient-slider .swiper-slide-active .content {
	opacity:1;
}