@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.3/animate.min.css');
/* @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css'); */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #3E5641;
  --secondary-color: #0E140F;
  --text-100: #E6ECE9;
  --text-200 :#B3B8B6;
  --text-400 :#565958;
  --text-600: #010202;
  --text-dark: #0E140F;
  --Grey-900: #0A1B17;
  --radius: 60px;
}

body {
  font-family: "Urbanist", sans-serif;
  scroll-behavior: smooth;
}

.font-domine{
  font-family: "Domine", serif;
}

/* Utilities */
.d-flex { display: flex; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.text-black { color: #000; }
.text-white { color: #fff; }
.rounded-12 { border-radius: 12px !important; }
.rounded-50 { border-radius: 50px !important; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.relative { position: relative; }
.w-full{width: 100%;}
.mt-5{margin-top: 5px;}
.mt-20{margin-top: 20px;}
.mt-25{margin-top: 25px;}
.mt-30{margin-top: 30px;}

.container{max-width: 1070px; width: 100%; padding: 0 15px; margin: 0 auto; }
.container-wrap{padding: 0px 60px; width: 100%; }

.lg-container{max-width: 1140px;margin: 0 auto;}

.inner-container{max-width: 1070px; padding: 0 15px; margin: 0 auto;}
.main-wraper{width: 100%;}
.cover-header{position: relative; margin-top: 0px; padding-top: 80px;}

/* Theme Button */
.cm-button{
  display: flex;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid var(--text-100);
  font-size: 16px;
  letter-spacing: 0.32px;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
  align-items: center;
  transition: all 0.6s;
}
.button-icon{
  display: flex;
}
.button-icon img{
  max-width: 24px;
}
.cm-button:hover .button-icon img{
  animation: scrollX 400ms linear forwards;
  will-change: transform;
}
.theme-button{
  background-color: var(--primary-color);
  color: #fff;
}
.theme-button:hover{
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.button-transparent{
  color: #FFF;
  background-color: transparent;
}
.button-white{
  color: var(--primary-color);
  background-color: #fff;
  border: 1px solid var(--text-200);
}

.section{position: relative;padding: 100px 0px;}
.section-inner{width: 100%;}

.title-header{text-align: center;}
.section-header-tag{
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
  margin-bottom: 20px;
  display: block;
}
.title-header h2{
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  color: var(--primary-color);
  text-align: center;
  font-family: "Domine", serif;
  margin-bottom: 20px;
}


.title-header p{
  color: var(--text-400);
  font-size: clamp(16px, 3vw, 20px);
  font-style: normal;
  font-weight: 600;
  line-height: 136.364% ;
  letter-spacing: 0.2px;
}
.title-header p b{
  color: #000;
  font-weight: 600;
}
/*************** Home Banner *******************/
  .banner-section{
    /* background-image: url(../images/main-banner.webp); */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    padding: 100px;
    display: flex;
    align-items: center;
    /* overflow: hidden; */
    position: relative;
  }
  .banner-wrap{
    max-width: 710px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 999;
    top: 20px;
  }

  .banner-title{
    font-size: 55px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.24px;
    color: #fff;
  }

  .banner-wrap-inner{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 35px;
    position: relative;
    z-index: 99;
  }

  .banner-text-wrap{
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 127.273%;
    letter-spacing: 0.44px;
  }

  .banner-action{
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }

  .banner-wrap-bottom p{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
    position: relative;
    z-index: 9;
  }
  .banner-shade{
    position: absolute;
    max-width: 800px;
    max-height: 554px;
    left: -100px;
    top: -30px;
  }
  .banner-shade img{
    width: 100%;
  }
  
  .home-banner-heading{
    font-size:55px; 
    font-style:normal; 
    font-weight:400; 
    line-height:normal; 
    letter-spacing:1.24px; 
    color:#fff; 
    margin:0;
  }


/****************** Trusted by  ******************/

  .trusted-card-row{
    margin-top: 60px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trusted-col{
    max-width: 245px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--text-100);
    background: #FFF;
    padding: 48px 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .trusted-col h4{
    color: var(--text-dark);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.64px;
  }
  .trusted-col p{
    color: var(--text-400);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
  }

  .yogain-becoming{
    margin-top: 45px;
    text-align: center;
    color: var(--text-dark);
    font-size: clamp(16px, 3vw, 24px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
  }

/*************** Why yogin **************/
  .why-yogain{
    position: relative; 
  }
  .why-yogain-figure{
    width: 100%;
  }
  .why-yogain-figure img {
    width: 100%;
  }
  .yogain-exists-col{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
  }
  .yogain-exists-col .container{
    position: relative;
    height: 100%;
    align-items: center;
    display: flex;
  }
  .yogain-exists-card{
    border-radius: 24px;
    background: #FFF;
    display: inline-flex;
    padding: 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 565px;
    margin-left: auto;
  }
  .yogain-exists-title{
    color: var(--primary-color);
    font-family: "Domine", serif;
    font-size: clamp(30px, 4vw, 42px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.84px;
  }
  .yogain-dark-text{
    color: var(--text-600);
    font-size: clamp(16px, 3vw, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.24px;
  }
  .yogain-simply{
    color: var(--text-600);
    font-size: clamp(16px, 3vw, 24px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.24px;
  }
  .yogain-grow{
    color: var(--text-400);
    font-size: clamp(16px, 3vw, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.2px;
  }


/*********** The problem ********/ 
  .body-sync-row{
    margin-top: 60px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .body-sync-col{
    max-width: 245px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .body-sync-col img{
    width: 100%;
  }
  .body-sync-col p{
    color: var(--text-dark);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
  }
  .changes-part{
    margin-top: 48px;
  }
  .changes-part p{
    max-width: 435px;
    margin: auto;
    color: var(--text-dark);
    text-align: center;
    font-size: clamp(18px, 3vw, 24px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
  }
  .changes-part p b {
    display: block;
  } 

/************ The solution **********/
  .the-solution{
    background-color: #F1F4F1;
  }
  .yogain-helps{
    margin-top: 48px;
  }
  .yogain-helps p{
    max-width: 610px;
    margin: auto;
    color: var(--text-dark);
    text-align: center;
    font-size: clamp(18px, 3vw, 24px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
  }
  .harmony-row{
    display: flex;
    gap: 48px;
    margin-top: 48px;
  }
  .harmony-card{
    border-radius: 20px;
    background:#FFF;
    display: flex;
    padding: 48px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;
    align-self: stretch;
    position: relative;
  }
  .harmony-card p{
    color: var(--text-dark);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
  }

  .ht-card-icon{
    width: 59px;
    height: 59px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .harmony-long-arrow{
    position: absolute;
    right: -48px;
    margin-top: auto;
    top: 47%;
  }

/************** Transformation Path ***********/
  .transformation-path .title-header, .transformation-path .title-header h2{
    text-align: left;
    font-weight: 400;
  }
  .transformation-path .title-header p{
    max-width: 878px;
  }
  .transformation-tracking-row{
    margin-top: 48px;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 970px;
  }
  
  .feature-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 16px;
    align-items: center;
  }
  
  .feature-icon {
    width: 82px;
    height: 82px;
    background: #FFF5E4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tr-card-info h6 {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 0.32px;
  }
  
  .tr-card-info p {
    margin: 9px 0 0;
    font-size: 14px;
    color: var(--text-400);
    max-width: 360px;
    letter-spacing: 0.28px;
    font-weight: 600;
  }

  .transformation-action{
    margin-top: 48px;
  
  }
  .transformation-action .theme-button{
    border: 1px solid var(--primary-color);
  }
  .transformation-action .theme-button:hover{
    background-color: var(--primary-color);
    color: #fff;
  }


/*********** Modern practitioner ************/  
  .modern-practitioner{
    overflow: hidden;
  }
  .practitioner-features{
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 24px;
  }
  .practitioner-item-img{
    border-radius: 24px;
    background: linear-gradient(180deg, #FFF5E4 0%, rgba(255, 245, 228, 0.00) 100%);
    height: 285px;
    overflow: hidden;
    padding: 41px 15px 0px;
    text-align: center;
  }
  .practitioner-content{
    margin-top: 16px;
  }
  .practitioner-content h3{
    color: var(--text-dark);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
  }
  .practitioner-content p{
    margin-top: 9px;
    color: var(--text-400);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
    padding-inline: 15px;
  }
  .practitioner-ls-heading{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 52px;
  }
  .practitioner-ls-heading span.title{
    text-align: center;
    font-family: Domine;
    font-size: clamp(30px, 4vw, 40px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.84px;
    color: var(--primary-color);
  }
  
  .practitioner-ls-cards{
    margin-top: 90px;
  }
  .practition-card{
    display: flex;
    gap: 52px;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
  }
  .pract-content{
    display: flex;
    flex-direction: column;
    gap: 29px;
  }
  .pract-content h4{
    color: var(--primary-color);
    font-family: "Domine", serif;
    font-size: clamp(18px, 3vw, 24px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
  }
  .pract-content p{
    color: var(--text-dark);
    font-size: clamp(24px, 3.5vw, 34px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.34px;
    max-width: 360px;
  } 
  .flex-reverse {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .cards-shadow{
    position: absolute;
    top: -60px;
    width: 300px;
    height: 245px;
  }
  .cards-shadow img {
    width: 100%;
    /* opacity: 0.67; */
  }
  .shadow-right{
    right: -60px;
  }
  .shadow-left{
    left: -150px;
  }
  .pract-img img{
    width: 100%;
  }



/************ Technology Meets Ancient Yoga *************/

  .technology-meets{
    padding: 217px 0px;
    /* background-image: url('../images/ancient-yoga.png'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .meets-row {
    display: flex;
    gap: 3vw;
  }
  .technology-col {
    width: 50%;
  }
  .special-tags-col {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .technology-col h4 {
    color: #FFF;
    font-family: "Domine", serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.44px;
  }
  .technology-col p {
    color: #FFF;
    font-family: "Domine", serif;
    font-size: clamp(30px, 4vw, 42px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.84px;
    margin-top: 10px;
  }

  .special-tag {
    display: flex;
    padding: 6px 20px 6px 6px;
    align-items: center;
    gap: 10px;
    border-radius: 64px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(22px);
  }
  .special-tag h5{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
  }
  .sm-intersect{
    position: absolute;
    left: 100px;
    top: -78px;
  }
  .lg-intersect {
    position: absolute;
    right: -110px;
    top: 180px;
  }

/************* Day Free Trial ************/
  .free-trial{
    padding-top: 100px;
    background: #FFF5E4;
    position: relative;
    overflow: hidden;
  }  
  .free-trial .button-transparent{
    color: var(--primary-color);
    border: 1px solid var(--text-200);
  }
  .experience-yogain{
    max-width: 365px;
    margin: 48px auto 0px;
    text-align: center;
  }
  .experience-yogain h5{
    color: var(--text-dark);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.24px;
  }
  .experience-yogain p{
    margin-top: 20px;
    color: var(--text-400);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.32px;
  }
  .yogain-profile {
    margin-top: 54px;
    display: flex;
    gap: 30px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
  }
  .yogain-profile img {
    width: 100%;
  }
  .line-sl-one{
    position: absolute;
    bottom: 0px;
    opacity: 0.1;
  }
  .line-sl-two{
    position: absolute;
    bottom: 0px;
    opacity: 0.1;
  }
  .yogain-profile::-webkit-scrollbar {
    display: none;
  }


.head-inner-section{
  padding-top: 150px; 
  padding-bottom: 100px;
  background-color: #000;
}
.head-inner-section .title-header h2, .head-inner-section .title-header p{
  color: #fff;
}
.about-us-template .head-inner-section .title-header h2,
.about-us-template .head-inner-section .title-header p
{
    color: #fff;
}
.about-us-template .head-inner-section {
    padding: 217px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

/***************** Blog page *************/
  .blog-section{
    padding-block: 100px;
  }
  /* GRID WRAPPER */
  .blog-card-grid .alm-listing,
  .author-main-wrapper .blog-card-grid
  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  .blog-card-grid.have-less .alm-listing,
  .author-main-wrapper .blog-card-grid.have-less
  {
    grid-template-columns: repeat(auto-fit, minmax(300px, 0fr));
  }
  
  .blog-card-grid .blog-card a{
   text-decoration: none;
  }
.blog-card-grid .blog-card .blog-post-img {
    border-radius: 18px;
    width: 100%;
    aspect-ratio: 50 / 1;
    object-fit: cover;
    object-position: center;
    height: 200px;
    overflow: hidden;
}
.blog-card-grid .blog-card .blog-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
  /* CARD */
  .blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    /*box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);*/
    transition: 0.3s ease;
    /*border: 1px solid #E2E2E2;*/
    padding: 10px;
  }
  .blog-card:hover {
    transform: translateY(-4px);
  }

  /* IMAGE */
  .blog-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
  }

  /* CONTENT */
  .blog-card-content {
    padding: 24px 0px;
  }

  .blog-card-tag {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
  }

  .blog-card-title {
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.2px;
  }

  .blog-card-desc {
    color: var(--text-400);
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
  }

  /* FOOTER */
  .blog-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    justify-content: space-between;
  }
  .blog-footer-inner{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
  }
.blog-footer-inner a.readmore-link {
    padding: 9px 18px;
    border: 1px solid #E6ECE9;
    border-radius: 8px;
    color: var(--Grey-900);
    font-size: 14px;
    letter-spacing: 0.28px;
    font-weight: 700;
}
.meta-author img.avatar{
border-radius:26px;
}
.author-link
{
display: flex;
align-items: center;
gap: 10px;
color: var(--text-400);
font-family: Urbanist;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.28px;
}


  .blog-premium {
    background: #eee;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
  }


body:not(.home) #site-header .header-backdrop{
   height: 125px;
 }

 .common-title{
  font-family: "Domine", serif;
 font-size: clamp(30px, 4vw, 42px);
 text-align: center;
 }

/********** Single Page ************/
.page-content-start{
 margin-top: 30px;
}
.single-layout-wrap{
 padding: 20px 20px;
}
.page-content-wrap {
 margin-bottom: 30px;
}
.page-content-wrap h3.content-heading.sm,
.page-content-wrap h6
{
font-size: 17px;
}
.page-content-wrap h3.content-heading,
.page-content-wrap h6
{
 /* font-family: "Domine", serif; */
 margin-bottom: 10px;
color: var(--secondary-color);
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 0.32px;
}
.page-content-wrap h3.content-heading.medium,
.page-content-wrap h6.medium
{
font-size: 20px;
}
.page-content-wrap .text-wrap,
.page-content-wrap p
{
font-size: 16px ;
line-height: normal;
font-style: normal;
font-weight: 400;
color: var(--Grey-900);
letter-spacing: 0.32px;
margin: 15px 0;
}
.single-layout-wrap-content ul.ul-wrapper{
 margin-left: 20px;
}
.single-layout-wrap-content ul.ul-wrapper li,
.single-layout-wrap-content ol.ol-wrapper li
{
font-size: 16px ;
line-height: normal;
font-style: normal;
font-weight: 400;
color: var(--Grey-900);
letter-spacing: 0.32px;
margin: 15px 0;
}
.single-layout-wrap-content .main-wrapper-arrow,.ol-main-wrapper{
 margin-left: 20px;
}
.pad-10{
 padding-left: 10px;
}
.margin-10{
 margin-left: 10px;
}
.single-layout-wrap-content ul.ul-wrapper li ul{
 margin-left: 10px;
}
.custom-template-page .head-inner-section .title-header p{
max-width: inherit;
}
.single-page-template .static-page-featured-img{
display: flex;
justify-content: center;
margin: 0px 0px 40px 0px;
width:100%;
}
.single-page-template .single-layout-wrap-content{
display: flex;
width:100%;
}
.single-layout-wrap-content p
{
margin: 20px 0px;
color: var(--Grey-900);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.32px;
}
.single-page-template .static-page-featured-img img{
    max-width: 100%;
}

.post-detail-author-data{
 display: flex;
 width:100%;
 margin:10px 0px;
}

/******** Contact page *******/
.contact-section .main-heading {
 text-align: center;
 margin-bottom: 60px;
 font-family: "Domine", serif;
 font-size: clamp(30px, 4vw, 35px);
margin-left: 20px;
}
.contact-section {
 padding: 40px 15px;
width: 100%;
display: flex;
}
.contact-section .main-container{
width: 100%;
display: flex;
flex-direction: row;
}
.main-container .left_section{
width: 10%;
display: flex;
}
.main-container .middle_section{
width: 40%;
display: flex;
margin-top: 60px;
}
.main-container .right_section{
width: 60%;
display: flex;
flex-direction: column;
}

.main-container .contact-info{
 margin-bottom: 30px;
}

.middle_section .contact-info-email a ,
.middle_section .contact-info-phone a
{
display: flex;
align-items: center;
gap: 10px;
color: var(--primary-color);
text-decoration: none;
font-weight: 500;
}
.contact-info-phone {
display: flex;
align-items: center;
gap: 10px;
margin-top: 10px;
margin-bottom: 10px;
}

.contact-section form{
 max-width: 540px;
 margin: auto;
}
.contact-section form p label {
 width: 100%;
 display: block;
 margin-bottom: 20px;
}
.contact-section form p label .wpcf7-form-control-wrap {
 width: 100% !important;
 display: block;
 margin-top: 10px;
}
.contact-section form p label .wpcf7-form-control-wrap .wpcf7-form-control {
 width: 100%;
 padding: 14px 10px;
 border-radius: 4px;
 border: 1px solid #ddd;
}
.contact-section form p {
 position: relative;
}
.contact-section form p input.wpcf7-submit {
 width: 100%;
 background: var(--primary-color);
 border: 1px solid var(--primary-color);
 padding: 20px;
 border-radius: 10px;
 font-size: 16px;
 letter-spacing: 0.32px;
 font-weight: 700;
 font-family: "Urbanist", sans-serif;
 cursor: pointer;
 align-items: center;
 transition: all 0.6s;
 color: #fff;
}
.contact-section form p .wpcf7-spinner {
 position: absolute;
 margin: auto;
 left: 0;
 right: 0;
 top: 0;
 bottom: 0px;
 width: 35px;
 height: 35px;
}
.wpcf7-response-output {
 text-align: center;
}

.wp-singular .footer,
.blog .footer{
 border-top: 1px solid #f2f5f1;
}


/***************** Blog Detail ****************/
.single.single-post .blog-card-grid
{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 20px;
}
.single.single-post .blog-card-grid.have-less
{
grid-template-columns: repeat(auto-fit, minmax(300px, 0fr));
}

.blog-details {
 padding: 70px 0px;
 display: flex;
 gap: 30px;
}
.blog-details .entry-content p{
 margin-bottom: 10px;
 display: block;
 font-size: 17px !important;
 line-height: 160% !important;
}

.blog-thumbnail .post-thumbnail-large img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 border-radius: 10px;
}
.blog-details .entry-header {
 margin: 15px 0px;
}
.blog-details .entry-content div{
 margin-bottom: 10px;
 display: block;
 font-size: 17px !important;
 line-height: 160% !important;
letter-spacing: 0.3px;
}
.blog-left-wrap {
    flex: 1 1 70%;
}
.blog-sidebar {
max-width: 30%;
width: 100%;
}
.side-row {
    margin-top: 20px;
}
.side-col-card {
width: 100%;
margin-bottom: 25px;
}
.col-card-link {
display: flex;
gap: 20px;
align-items: center;
text-decoration: none;
}
.card-figure {
width: 100px;
min-width: 100px;
height: 100px;
overflow: hidden;
border-radius: 10px;
}
.card-blog-info {
    width: calc(100% - 120px);
}
.card-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-blog-info h4 {
    color: var(--primary-color);
    font-size: 18px;
}
.card-blog-info p {
    margin-top: 5px;
    color: var(--text-400);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
    text-overflow: ellipsis;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

@media screen and (min-width: 993px) {
  .sidebar-inner {
    position: sticky;
    top: 90px;
 }

}
.wp-singular .cta-button{
color: var(--Grey-900);
font-size: 14px;
letter-spacing: 0.28px;
font-weight: 700;
width: 100%;
display: flex;
}
.wp-singular .cta-button .cta-arrow{
display: flex;
flex-direction: column-reverse;
}
.blog-info .author-data{
 margin-bottom: 10px;  
}


/* Animation */

@keyframes Slick-FastSwipeIn {
  0%{transform: rotate3d(0, 1, 0, 0deg) scale(0) perspective(400px);}
  100%{transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);}
}

@keyframes in-left {
  from {
    -webkit-transform: rotate3d(0, 1, 0, 90deg);
    transform: rotate3d(0, 1, 0, 90deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes out-left {
  from {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    -webkit-transform: rotate3d(0, 1, 0, 86deg);
    transform: rotate3d(0, 1, 0, 86deg);
  }
}
@keyframes in-right {
  from {
    -webkit-transform: rotate3d(0, -1, 0, 90deg);
    transform: rotate3d(0, -1, 0, 90deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes out-right {
  from {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    -webkit-transform: rotate3d(0, -1, 0, 86deg);
    transform: rotate3d(0, -1, 0, 86deg);
  }
}

@keyframes scrollX {
    0% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(10px); opacity: 0; }
    51% { transform: translateX(-10px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes moveClouds {
    from{background-position-x: 0;}
    to{background-position-x: -2160px;}
}

/**Dec 5, 2025*/
a.cm-button{
 text-decoration: none;
}

/*single page*/
.wp-singular .entry-title{
color: var(--primary-color);
font-family: "Domine", serif;
font-size: clamp(18px, 3vw, 24px);
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.48px;
margin-bottom: 20px;
}
.wp-singular .entry-content h5{
color: var(--Grey-900);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.32px;
}

.wp-singular .entry-content p{
color: var(--Grey-900);
margin: 20px 0px;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.32px;
}
.wp-singular .entry-content p.blank{
margin: 5px 0;
letter-spacing: inherit;
line-height: 0;
}
.pd-lft-20{
padding-left:20px;
}

/*end*/

.modern-practitioner-mobieloadmore{
 display: none;
}

/*end*/
.get-links.static{
position: fixed;
bottom: 27px;
right: 90px;
z-index: 999;
}

.get-links.static a {
/*background: #fff;
padding: 8px 12px;
border-radius: 10px;
border: 1px solid #eee;
*/
}




/************************* About us page start ***********************/

.right-img-card-block{
  display: flex;
  gap: 50px;
  align-items: center;
}

.right-img-rel{
  max-width: 436px;
  width: 100%;
}
.right-img-rel img{
  border-radius: 24px;
  width: 100%;
}
.rt-content-block {
  width: 100%;
}
.rt-content-block h2{
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  color: var(--primary-color);
  font-family: "Domine", serif;
  margin-bottom: 20px;
  letter-spacing: 0.84px;
}
.rt-content-block h5{
  color: var(--text-dark);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.2px;
  max-width: 480px;
  margin-bottom: 20px;
}
.rt-content-block p{
  color: var(--text-400);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
  max-width: 480px;
  margin-bottom: 20px;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* LEFT BLOCK */
.story-left-block {
  padding: 40px;
  border-radius: 20px;
  /*background-image: url('/images/Kushagra.png');*/
  background-size: cover;
  background-repeat: no-repeat;
}

.story-left-block h1 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  font-family: "Domine", serif;
  line-height: 125.4%;
  color: var(--primary-color);
  letter-spacing: 0.84px;
}

.story-left-block h2 {
  font-size: 32px;
  color: var(--primary-color);
  font-family: "Domine", serif;
  letter-spacing: 0.64px;
  font-weight: 400;  
  line-height: 125.4%;

}

.story-left-block .intro {
  color: var(--text-600);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
  margin-block: 32px;
}

.story-left-block .subtext {
  color: var(--text-400);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}

.person-img {
   height: 250px;
}



/* RIGHT SIDE */
.quote-box {
  background: var(--primary-color);
  color: #fff;
  padding: 48px;
  border-radius: 24px;
  margin-bottom: 24px;
  position: relative;
}
.quote-lb{
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  max-width: 370px;
}
.quote-label {
  position: absolute;
  right: 31px;
  top: 28px;
}

.quote-text {
  color:#FFF5E4;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.28px;
  margin-top: 40px;
}

/* CONTENT BOX */
.content-box {
  background: #f4e8d4;
  padding: 40px;
  border-radius: 20px;
}

.content-box p {
  color: var(--text-dark);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.2px;
  margin-bottom: 31px;
}
.content-box p:last-child{
  margin-bottom: 0px;
}

.content-box .small {
  color: var(--text-400);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.32px;
}

.section.our-story {
  padding-top: 50px;
}

.profile-chapter .title-header{
  margin-bottom: 48px;
}

.the-second-chapter .rt-content-block {
  padding-right: 50px;
}

.profile-chapter .rt-content-block h5 {
  margin-block: 32px;
  font-size: 24px;

}
.the-second-chapter .rt-content-block h5 span{
  font-weight: 400;
}
.profile-chapter .right-img-rel{
  max-width: 506px;
}
.m-0{
  margin: 0px !important;
}
.profile-chapter .title-header p {
  font-weight: 400;
}
.the-second-chapter p {
  max-width: 710px;
  margin: auto;
}
.the-second-chapter p b{
  display: inline-block;
}
.font-500{
  font-weight: 500 !important;
}

.the-pissing-piece{
  padding-top: 0px !important;
}
.the-pissing-piece .rt-content-block h5:first-child {
  margin-top: 0px;
}
.rt-content-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.rt-content-block ul li {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rt-content-block h6{
  color: #010202;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
}
.our-mission-yg{
  /* background-image: url('../images/our-mission-bg.png'); */
  padding: 100px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mission-row{
  display: flex;
  gap: 3vw;
}
.our-mission-col{
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.our-mission-col p{
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
}
.our-mission-col h3{
  color: #FFF;
  font-family: "Domine", serif;
  font-size: clamp(32px, 6vw, 62px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.24px;
}
.our-mission-col h6{
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.2px;
  padding-right: 50px;
}



.why-yogain-exists{
  width: 50%;
}
.why-yogain-exists p{
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
}

.mission-tags-col{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-block: 16px;
}
.why-yogain-exists h3{
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
}

.mission-tag{
  display: flex;
    padding: 10px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 64px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(22px);
}
.mission-tag h5{
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
}

.our-vision .title-header p {
  max-width: 590px;
  margin: auto;
  margin-bottom: 20px;
}
.a-future {
  margin-top: 48px;
}
.a-future p{
  color: var(--primary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
  text-align: center;
}
.a-future ul{
  margin-block: 20px;
  display: flex;
  gap: 16px;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}
.future-tags span {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 64px;
  background: #F1F4F1;
  backdrop-filter: blur(22px);
  color: var(--text-600);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
}
.title-header .title-text-subhead{
  font-weight: 400;
}

.shared-wrold{
  display: flex;
  gap: 24px;
  margin-top: 48px;
}

.unit-card{
  width: 100%;
  padding: 48px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.unit-card h3{
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.28px;
} 
.card-taglines p{
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.68px;
}
.tagline-bottom p{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}

.together-shared{
  background-color: var(--primary-color);
}
.together-shared h3, .together-shared p{
  color: #FFF5E4;
}
.together-shared .tagline-bottom p{
  color: #fff;
}


.unit-world {
  background: #FFF5E4;
}

.unit-world  h3, .unit-world  p{
  color: var(--primary-color);
}
.unit-world  .tagline-bottom p{
  color: var(--text-400);
}


.journey-ahead{
  margin-top: 100px;
}
.journey-ahead .right-img-card-block{
  gap: 40px;
}
.journey-ahead h5 {
  font-size: 16px;
  max-width: 324px;
  font-weight: 700;
  letter-spacing: 0.32px;
}
.rt-content-block ul{
  flex-direction: row;
  flex-wrap: wrap;
}
.journey-ahead .right-img-rel {
  max-width: 486px;
}
.journey-ahead .rt-content-block p:last-child {
  margin: 0;
}

.yogain-promise{
  /* background-image: url('../images/yogain-promise.png'); */
  padding: 200px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.promise-row h2{
  color: var(--text-dark);
  text-align: center;
  font-family: "Domine", serif;
  font-size: clamp(32px, 6vw, 62px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.24px;
  margin-bottom: 20px;
}
.promise-row p {
  max-width: 690px;
  margin: auto;
  text-align: center;
  color: var(--text-dark);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.24px;
}

/************************* About us page End ***********************/


/************************ Contact page start ***********************/
.contact-page .title-header h2{
  font-size: clamp(32px, 6vw, 62px);
}
.contact-page .title-header p{
  font-family: "Domine", serif;
  font-size: clamp(16px, 3.7vw, 22px);
}

.contact-row {
  margin-top: 100px;
  display: flex;
  gap: 24px;
}
.contact-left-block{
  width: 50%;
  /* background-image: url('../images/contact-address-bg.png'); */
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 170px;
  justify-content: space-between;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-header-info h3{
  color: var(--text-dark);
  font-family: "Domine", serif;
  font-size: 33px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.76px;
  margin-bottom: 15px;
}
.contact-header-info p{
  color: var(--text-dark);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.2px;
}
.contact-form-row .ct-field-row p {
    position: relative;
}
.contact-form-row .ct-field-row p .wpcf7-spinner {
    position: absolute;
    left: 0;
    right: 0px;
    margin: auto;
    top: 13px;
}
form.wpcf7-form.invalid .wpcf7-response-output {
    display: none;
}

.contact-footer-address {
  border-radius: 16px;
  background: var(--primary-color);
  backdrop-filter: blur(12px);
  padding: 24px;
}
.address-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-top h6, .address-bottom h6{
  color: #FFF5E4;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  /* -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000; */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}
.address-link {
  margin-top: 6px;
}
.address-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.contact-right-block{
  width: 50%;
  padding: 32px;
  border-radius: 24px;
  background-color: #F1F4F1;
}
.contact-form-column h5{
  color: var(--primary-color);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.28px;
  margin-bottom: 16px;
}
.contact-form-column h6{
  color: var(--text-400);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.2px;
  max-width: 340px;
}
.contact-form-row {
  margin-top: 32px;
}

.wpcf7-form.invalid .wpcf7-not-valid-tip{
 margin-top: 5px;
}

.ct-form,.contact-form-row form  {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-field-row input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  color: #838786;
  font-weight: 500;
  letter-spacing: 0.32px;
  outline: none;
  font-family: "Urbanist", sans-serif;
}
.ct-field-row textarea {
  width: 100%;
  height: 227px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  color: #838786;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  letter-spacing: 0.32px;
  resize: none;
  outline: none;
}
.ct-field-row .submit-btn, .ct-field-row input[type="submit"] {
  border-radius: 10px;
  background: #3E5641;
  width: 100%;
  padding: 14px 28px;
  border: none;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.32px;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
}
.hidden-wrapper,.hide{
display: none !important;
visibility: hidden;
height: 0;
overflow: hidden;    
}


/************************ Contact page end ***********************/



/********************** Blog detail page start ****************/
.blog-detail .header-backdrop{
  display: none;
}
.blog-detail header{
  background-color: var(--primary-color);
}

.blog-detail .main-wraper{
  padding-top: 100px;
}
.blog-detail-header{
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.back-to-blog {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: #0A1B17;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
}
.blog-time{
  color: var(--primary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
}
.blog-detail-content{
  margin-top: 32px;
}
.blog-detail-content h2.detail-title{
  color: var(--primary-color);
  font-family: "Domine", serif;
  font-size: clamp(32px, 6vw, 62px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.24px;
}
.feature-img{
  margin-top: 32px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.feature-img img{
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.detail-content{
  margin-top: 45px;
}
.detail-content h6{
  color: var(--Grey-900);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
}

.detail-content p
{
  margin: 20px 0px;
  color: var(--Grey-900);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}
.detail-content ul{
  padding-left:20px;
}
.detail-content ul li{
margin:10px 0px;
color: var(--Grey-900);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.32px;
}
.detail-content h5{
  color: var(--Grey-900);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}

.explore-more-blogs{
  padding-top: 100px;
}
.explore-blogs-header{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.explore-blogs-header h3{
  color: #092622;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.24px;
}

.view-all {
  border-radius: 8px;
  background: #3E5641;
  text-decoration: none;
  color: #fff;
  padding: 9px 18px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.28px;
}
.explore-blogs-card{
  display: flex;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}
/********************** Blog detail page end ****************/



.blog  header#site-header, 
.page-template-template-contact header#site-header,
.wp-singular.single.single-post header#site-header,
.author header#site-header,
.cls-sm-header header#site-header,
.wp-singular.page-template-template-disease header#site-header
{
    background: var(--primary-color);
}
.blog .head-inner-section,
.page-template-template-contact .head-inner-section,
.wp-singular.single.single-post .head-inner-section,
.cls-sm-header .head-inner-section,
.author .head-inner-section
{
    padding: 0px;
    background: transparent;
}
.blog .header-backdrop,
.page-template-template-contact .header-backdrop,
.wp-singular.single.single-post .header-backdrop,
.cls-sm-header .header-backdrop,
.author .header-backdrop,
.wp-singular.page-template-template-disease .header-backdrop
{
    background: transparent;
}

.blog main.main-wraper,
.page-template-template-contact .contact-page,
.wp-singular.single.single-post .content-area,
.cls-sm-header main.main-wraper,
.author main.main-wraper,
.wp-singular.page-template-template-disease .disease-main-wrapper
{
    padding-top: 150px;
}


.head-inner-section .title-header h2 {
    color: #3E5641;
    font-size: clamp(36px, 4.5vw, 62px);
}

.head-inner-section .title-header p {
    color: #565958;
    font-family: "Domine", serif;
    max-width: 600px;
    margin: auto;
    font-size: 22px;
}
.blog-search-container form.search-form {
    max-width: 510px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.blog-search-container {
    margin-top: 32px;
}

.blog-search-container form.search-form label input.search-field {
    width: 100%;
    padding: 14px 105px 14px 16px;
    border: 1px solid #E6ECE9;
    border-radius: 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.32px;
    outline: none;
}

.blog-search-container form.search-form .search-submit {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 13px 23px;
    cursor: pointer;
    background: var(--primary-color);
    color: #fff;
    border: none;
    height: 100%;
    border-radius: 10px;
    font-size: 16px;
}
/************************/
.timer-container {
   position: absolute;
    bottom: -27px;
    width: 270px;
    height: 50px;
    z-index: 111;
    left: 0px;
    right: 0px;
    margin: auto;
    background-image: url(../images/timer-shape-v1.svg);
    background-size: contain;
    padding: 10px;
    background-repeat: no-repeat;
}

.loading-timer-inner {
    background: #FFF5E4;
    border-radius: 40px;
    width: 220px;
    margin: auto;
    text-align: center;
    padding: 5px;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
.timer-container .ic {display: flex;}
.timer-content {
font-size: 14px;
font-weight: 400;
line-height: normal;
letter-spacing: 0.25px;
color: #3E5641;
}
.countdown-timer {
font-weight: 700;
min-width: 75px;
}
/*************************/
/********** Load more button ***/
.blog-listing-wrapper .alm-btn-wrap .alm-load-more-btn{
    background:var(--primary-color);
}
.blog-listing-wrapper .alm-btn-wrap .alm-load-more-btn.done, 
.blog-listing-wrapper .alm-btn-wrap .alm-load-more-btn:disabled
{
    background:var(--primary-color);
}
/********** Load more button css end ***/

/******* Faqs css start ****/

h3.faq-question-heading {
  cursor: pointer;
  padding: 16px 45px 16px 15px;
  border-bottom: 1px solid #ddd;
  position: relative;
  font-size: 18px;
  line-height: 1.4;
}

.faq-question-heading::after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}

.faq-repeat-wrapper.active .faq-question-heading::after {
  content: "−";
}

.faq-answer-content {
display: none;
padding: 0 15px 15px;
color: var(--text-400);
margin: 10px 0px;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.32px;
}
.faq-answer-content p {
color: var(--text-400);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.32px;
}

.faq-repeat-wrapper.active .faq-answer-content {
  display: block;
}

/** Faq css end **/


/********************** Price page Start ****************/

.pricing-section {
  padding: 10px 0%;
}

.pricing-wrapper {
  display: flex;
  gap: 30px;
  width: 100%;
}

.pricing-intro {
  width: 30%;
}

.pricing-intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.pricing-intro p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.pricing-intro .thank {
  margin-top: 20px;
  font-weight: 600;
}

.pricing-cards {
  display: flex;
  gap: 20px;
  width: 70%;
}

.pricing-card {
  background: #fff;
  padding: 15px 15px;
  border-radius: 10px;
  width: 33.33%;
  text-align: center;
  border: 1px solid #eee;
}

.pricing-card.active {
  border: 2px solid var(--primary-color);
}

.pricing-card h3 {
  font-size: 32px;
  margin: 10px 0;
}

.pricing-card h4 {
  color: var(--primary-color);
  font-size: 17px;
  letter-spacing: 1px;
}

.pricing-card .subtitle {
  font-size: 16px;
  color: var(--text-400);
  font-weight: 400;
  display: flex;
  justify-content: center;
  padding:10px 0 10px 0;
}

.pricing-card ul {
  list-style: none;
  margin: 15px 0;
  text-align: left;
}

.pricing-card ul li {
margin-bottom: 10px;
padding-left: 24px;
position: relative;
color: var(--text-400);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.32px;
}

.pricing-card ul li.yes::before {
  content: "✔";
  color: #4caf50;
  position: absolute;
  left: 0;
}

.pricing-card ul li.no::before {
  content: "✖";
  color: #e53935;
  position: absolute;
  left: 0;
}

.btn-outline {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.pricing-card .btn-outline{
  background:  var(--primary-color);
  color: #fff;
}

.pricing-card .btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.pricing-card a.btn-outline{
    text-decoration: none;
}

.btn-outline:hover .button-icon img {
  animation: scrollX 400ms linear forwards;
  will-change: transform;
}


.btn-fill {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.btn-fill:hover .button-icon img {
  animation: scrollX 400ms linear forwards;
  will-change: transform;
}


.price-direction .pricing-wrapper {
  flex-direction: column;
  justify-content: center;
}
.price-direction .pricing-wrapper .pricing-intro {
  width: 100%;
  text-align: center;
}
.price-direction .pricing-wrapper .pricing-cards {
  width: 100%;
  margin-top: 30px;
}
.price-direction .pricing-intro h2 br {
  display: none;
}
.price-direction .pricing-intro h2 {
  margin-bottom: 5px;
}
.price-direction .pricing-intro p {
  margin: 0;
}


/********* Subscription plan end ****************/

/*****Erro 404 *****/
.error-404.not-found.container .page-header,
.error-404.not-found.container .page-content
{
 display: flex;
 width:100%;
 justify-content: center;
}
.error-404-wrapper .data-container{
display: flex;
justify-content: center;
margin: 20px 0;
padding: 25px 0;
}

.error-404.not-found.container .page-title{}
/****/

/******** Downlaod*****/
.download-content-wrraper{
display: flex;
justify-content: center;
margin: 20px 0;
padding: 20px 0;
gap:138px;
width: 100%;
}
.download-left-wrapper {
display: flex;
width: 60%;
flex-direction: column;
align-items: flex-start;
gap: 32px;
}
.download-steps-wrapper{
 display: flex;   
 flex-direction: column;
 gap:32px;
}
.steps-text-content-wrapper{
 display: flex;   
 flex-direction: column;   
}
.wp-singular .entry-content .steps-text-content-wrapper p{
font-family: "Urbanist", sans-serif;
font-style: normal;
line-height: normal;
margin: 0px;
padding: 0 0 10px 0;
}
.wp-singular .entry-content .steps-text-content-wrapper p.title{
color: var(--primary-color);
font-size: 14px;
font-weight: 500;
letter-spacing: 0.28px;
}
.wp-singular .entry-content .steps-text-content-wrapper p.heading
{
color: var(--Grey-900);
font-size: 16px;
font-weight: 700;
letter-spacing: 0.32px;
}
.wp-singular .entry-content .steps-text-content-wrapper p.sub-heading
{
color: var(--text-400);
font-size: 16px;
font-weight:400;
letter-spacing: 0.32px;
}

.download-wrraper-inner
{
display: flex;
gap: 30px;
width: 100%;
justify-content: flex-start;
margin-left:10%;
}
.download-content-wrraper a,
.download-content-wrraper a img{
cursor: pointer;
}
.steps-container{
display: flex;
flex-direction: row;
gap: 16px;
}
.download-right-wrapper {
display: flex;
flex-direction: column;
width: 40%;
}

.scanner-wrapper{
display: flex;
align-items: flex-end;
flex-direction: column;
}
.scanner-wrapper img{
width:50%;
height:auto;
}

/****** end***/

/********* banner social ***/
.float-social {
    position: absolute;
    list-style: none;
    /* background: #fff; */
    /*padding: 16px 10px;*/
    z-index: 999;
    opacity: 1;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
}

.float-social li, .float-social li a {
    display: flex;
}

.float-social li:nth-child(3) img {
    filter: invert(1);
}

@media screen and (min-width: 1141px) and (max-width: 1310px) {
    .float-social { left: 60px;}

}
@media screen and (min-width: 993px) and (max-width: 1140px) {
    .float-social {
        left: 10px;   
    }
    
}
@media screen and (max-width: 992px) {
    /*.float-social {*/
    /*    display: none;   */
    /*}*/
    
    .float-social{
        flex-direction: row;
        top: 70px;
        left: 36px;
        gap: 30px;
        display:none;
    }
}

/***** banner****/
.strike-out{
text-decoration: line-through;
}
/************* Author page **********/

.author-profile-box{
display: flex;
justify-content: space-between;
gap: 20px;
width: 100%;  
}
.author-details{
display: flex;
flex-direction: column;
width: 100%;  
}
.author-info-heading{
margin-bottom: 10px;
}
.content-display{
display: flex;
margin:10px 0px;
}
.content-display .content-inner{
display: flex;
gap:12px;
}
.author-website a,
.author-contact{
color: var(--primary-color);
font-size: 17px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.2px;
}
.author-website svg{
color: var(--primary-color);
}
.author-bio p
{
font-size: 16px;
line-height: normal;
font-style: normal;
font-weight: 400;
color: var(--Grey-900);
letter-spacing: 0.32px;
margin: 15px 0;
}

/******end****/

/************** Products page **********/
.page-template-template-products .section-inner{
width: 100%;
}
.products-main-wrapper{
width: 100%;
display: grid;
gap: 60px 32px;
align-items: start;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.prd-img-wraaper img {
width: 100%;
object-fit: cover;
}
.product-wrapper .p-name{
color: var(--secondary-color);
text-align: center;
font-family: "Urbanist", sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: -0.24px;
margin-bottom: 16px;
}
.product-wrapper .p-detail{
color: var(--text-400);
text-align: center;
font-family: "Urbanist", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.2px;
}
.product-detail .product-cat {
list-style: none;
display: flex;
justify-content: center;
gap: 10px;
margin-bottom: 16px;
margin-top: 24px;
}
.product-detail .product-cat li {
display: flex;
padding: 10px 20px;
align-items: center;
gap: 10px;
background: #F1F4F1;
border-radius: 64px;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.32px;
color: #3E5641;
}
.prd-img-wraaper {
border-radius: 20px;
overflow: hidden;
}



/************** Products page end **********/


/****** new css disease  template ****/

main.disease-template {
    padding-top: 70px;
}
.disease-template .single-layout-wrap-content {
    flex-direction: column;
}
.disease-template .single-layout-wrap-content>h2:first-child{
    color: var(--primary-color);
    font-family: "Domine", serif;
    font-size: clamp(32px, 6vw, 62px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.24px;
    margin-top: 20px;
}

.disease-template .single-layout-wrap-content img {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}
.disease-template .single-layout-wrap-content>h3 {
    margin-bottom: 15px;
    margin-top: 15px;
}
.disease-template .static-page-featured-img {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}