/** Shopify CDN: Minification failed

Line 5454:13 Expected identifier but found whitespace
Line 5454:15 Unexpected "{"
Line 5454:24 Expected ":"

**/
body{
    font-family: var(--body-font);
    line-height:normal;
    letter-spacing:normal !important;
}
:root{
    --white : #FFFFFF;
    --light-green : #D9F78B;
    --theme-green: #B1EF18;
    --green: #024942;
    --dark : #2B2B2B;
    --theme-black:#000;
    --body-font:'Poppins',sans-serif;
    /* Spacing Variable */
    --spacing-80: 60px;
    --spacing-24: 18px;
     --spacing-64:32px;
     --spacing-48:24px;
    /* Font Size */
    --font-20: 16px;
    --font-18 : 16px;
    --font-41: 24px;
    --font-66 :34px;
    /* Radius */
    --border-radius: 0px;
}


@media screen and (min-width:660px) {
    :root {
        --font-18: 16px;
        --font-66:34px;
        --spacing-24: 18px;
    }
}
@media screen and (min-width:768px) {
    :root {
        --border-radius:0px 0px 40px 40px;
        --font-41: 26px;
        --font-66: 38px;
        --spacing-24: 18px;
       --spacing-64:36px;
      --spacing-48:28px;
    }
}
@media screen and (min-width:992px) {
    :root {
        --spacing-80: 60px;
        --font-20: 16px;
        --font-66: 42px;
        --spacing-24:20px;
       --spacing-64:44px;
      --spacing-48:32px;
    }

}
@media screen and (min-width:1140px) {
    :root {
        --font-18: 16px;
        --spacing-80: 60px;
        --font-20: 18px;
        --font-41: 32px;
        --font-66: 48px;
        --spacing-24:24px;
       --spacing-64:52px;
      --spacing-48:40px;
    }

}
@media screen and (min-width:1280px) {
    :root {
        --font-18: 18px;
        --spacing-80: 80px;
        --font-20 :20px;
        --font-41: 41px;
        --font-66: 66px;
       --spacing-64:64px;
      --spacing-48:48px;
    }
}

.container{
    max-width: 1440px;
    width: 100%;
    padding-inline: 20px;
}
.btn{
    background: var(--theme-green);
    border-radius: 50px;
    padding:12px 24px;
    font-family:var(--body-font);
    font-size:var(--font-20);
    font-weight: 600;
    color: var(--theme-black);
    text-align: center;
    display: inline-block;
    text-decoration: none;
    transition: .3s ease-in-out;
    text-wrap: balance;
}
@media screen and (min-width:992px) {
    .btn {padding: 20px 32px;}
}
.btn:is(:hover,:focus,.active) {
    background: var(--light-green);
}
.heading-box img{
    max-width: 55px;
}
img {
    max-width: 100%;
}


/*************************
 Navigation Menu Css Start
 ***********************************/
.navbar {
    background: var(--dark);
    border-radius:var(--border-radius);
}
/* @media screen and (min-width:768px) {
    .navbar {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 9;
    }
} */
.navbar > .container{
    max-width: 1440px;
    width: 100%;
    padding-inline: 20px;
}
.navbar .navbar-brand {
    margin-right: 25px;
}
@media screen and (max-width:660px) {
  .navbar .navbar-brand img {
    max-width:75%
  }
}

@media screen and (min-width:1024px) {
    .navbar > .container {
        padding: 5px 30px;
    }
    .navbar .navbar-brand {
        margin-right: 40px;
    }
}
@media screen and (min-width:1367px) {
    .navbar > .container {
        padding: 5px 60px;
    }
    .navbar .navbar-brand {
        margin-right: 60px;
    }
}
.navbar .menu-container{
    flex: 1;
    display: flex;
    gap: .5em;
    justify-content: end;
}
@media screen and (min-width:992px) {
    .navbar .menu-container {
        justify-content: center;
    }
}
.navbar .icon-btn{
    
    height:38px !important;
    width:38px !important;;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    border-radius: 50px;
    background-color: var(--white);
}
@media screen and (min-width:768px) {
    .navbar .icon-btn {
        height: 46px !important;
        width: 46px !important;
        padding: 8px;
    }
}
.navbar .profile-btn{
    background-color: var(--light-green);
}
.navbar .navbar-icons{
    gap:.5em
}
@media screen and (min-width:1280px) {
    .navbar .navbar-icons {
        gap: 1em
    }
}
.navbar .navbar-nav{
    justify-content: center;
    flex-grow: 1;
}
@media screen and (min-width:1024px) {
    .navbar .navbar-nav {
        gap: 0px;
    }
}
@media screen and (min-width:1280px) {
    .navbar .navbar-nav {
        gap: 15px;
    }
}
.navbar .navbar-nav .nav-link{
    font-family: var(--body-font);
    font-size:var(--font-18);
    font-weight: 400;
    color: var(--white);
}
.navbar .navbar-nav .nav-link:is(:hover,:focus,.active){
    color:var(--light-green)
}
.navbar .navbar-toggler{
    box-shadow: none!important;
    border: none!important;
    padding-right: 0;
}
.navbar .offcanvas-body{
    background: var(--dark);
    position: relative;
}

.navbar .offcanvas-end.show{
    max-width: 320px;
    height:fit-content;
    top:72px;
}
.offcanvas.offcanvas-end {
  top:72px;
}
@media screen and (min-width:659px){
    .navbar .offcanvas-end.show{
      max-width: 320px;
      height:fit-content;
      top:92px;
    }
  .offcanvas.offcanvas-end {
    top:92px;
  }
}

@media screen and (max-width: 992px) {
  .navbar .offcanvas-body{
     background: #024942;
     padding:40px 50px
  }
  .offcanvas-body .nav-item .nav-link {
    font-size: 18px;
    font-weight: 600;
    margin-bottom:12px
  }
}

.offcanvas {
  bottom:unset;
}
/*************************
   Navigation Menu Css End
***********************************/



/*****************************
   Hero Banner Section Start
*******************************/
.hero-section{
    background: var(--green);
}
.hero-section .hero-section-inner{
    display: flex;
    /* justify-content: center;
    align-items: center; */
    min-height: 500px;
    background-position:center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius:var(--border-radius);
}
@media screen and (min-width:768px) {
    .hero-section .hero-section-inner {
        min-height: 694px;
        /* margin-top: 60px; */
    }
}
@media screen and (min-width:1536px){
    .hero-section .hero-section-inner {
        min-height: 800px;
    }
}
.hero-section .play-button{
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    transition: all .5s ease-in-out;
}
.hero-section .play-button:is(:hover,:focus,.active) {
    transform: scale(.90);
}
/*****************************
   Hero Banner Section css End
*******************************/


/*****************************
    Meet Soildrops Section start
***********************************/
.meet-soildrops-section{
    /*padding-bottom:var(--spacing-80);*/
}
.meet-soildrops-section .meet-soildrops-inner{
    background:var(--green);
    text-align: center;
    padding-top:var(--spacing-80);
}
.meet-soildrops-section .heading-box{
    color: var(--theme-green);
    text-align: center;
    max-width: 1440px;
    padding-inline: 20px;
    margin-inline: auto;
}
.meet-soildrops-section .heading-box .sub-title {
    font-family: var(--body-font);
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}
.meet-soildrops-section .heading-box .title{
    font-family: var(--body-font);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.24;
    margin-bottom: 0;
}
@media screen and (min-width:768px) {

    .meet-soildrops-section .heading-box .sub-title {
        font-size: 32px;
    }
    .meet-soildrops-section .heading-box .title {
        font-size: 54px;
    }
}
@media screen and (min-width:1024px) {
    .meet-soildrops-section .heading-box .sub-title {
        font-size:54px;
    }
    .meet-soildrops-section .heading-box .title {
        font-size: 90px;
    }
}
@media screen and (min-width:1280px) {
    .meet-soildrops-section .heading-box .sub-title {
        font-size: 80px;
    }
    .meet-soildrops-section .heading-box .title{
        font-size:120px;
    }
}
.meet-soildrops-section .meet-soildrops-image{
    position: relative;
    background: linear-gradient(180deg, #ECFBC5 0%, #FFF 100.33%);
}
.meet-soildrops-section .meet-soildrops-image:after{
    content: '';
    background: url(../images/icons/wave-vactor-2.svg) no-repeat;
    background-size: cover;
    position: absolute;
    min-height:200px;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 0;
}
@media screen and (min-width:768px) {
    .meet-soildrops-section .meet-soildrops-image:after {
        min-height: 320px;
    }
}
.meet-soildrops-section .meet-soildrops-image .container{
    z-index: 1;
    position: inherit;
    text-align: center;
}
.meet-soildrops-section .meet-soildrops-image img{
    max-width: 100%;
    margin-inline: auto;
    display: block;
    max-width: 90%;
}
/*****************************
  Meet Soildrops Section End
***********************************/


/********************************
    Get Started Section Start
***********************************/
.get-started-section {
    background: linear-gradient(180deg,#ecfbc5,#fff 100%);
}
.get-started-section .get-started-inner{
    text-align: center;
    font-family: var(--body-font);
}
.get-started-section .title{
    color: var(--green);
    font-family: var(--body-font);
    font-size: 32px;
    font-weight: 600;
    margin-block:0 16px;
    line-height:1.2;
}
.get-started-inner .description-box {
  max-width:933px;
  margin-inline:auto
}
.get-started-inner .description {
    color: var(--theme-black);
    font-family: var(--body-font);
    text-align: center;
    font-size: 18px;
    margin-bottom: 16px;
    line-height:1.38; 
}
@media screen and (min-width:768px) {
    .get-started-section .title {
        font-size: 36px;
        margin-block:0 20px;
       font-weight: 700;
    }
    .get-started-section .description {
        font-size: 20px;
        margin-bottom: 20px;
    }
}
@media screen and (min-width:1024px) {
    .get-started-section .title {
        font-size: 42px;
        margin-bottom: 24px;
    }
    .get-started-section .description {
        font-size: 22px;
        margin-bottom: 24px;
    }
}
@media screen and (min-width:1280px) {
    .get-started-section .title {
        font-size: 52px;
        margin-bottom: 24px;
    }
   .get-started-section .description {
        font-size: 26px;
        margin-bottom: 24px;
    }
}
/********************************
    Get Started Section End
***********************************/



/********************************
   Compare Table Section Start
***********************************/
/* Compare Table for table formate */
.compare-section{
    padding-block:var(--spacing-80);
}
.compare-section .heading-box{
    display: flex;
    gap:8px;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-family: var(--body-font);
   flex-flow:column-reverse
}
.compare-section .heading-box .title{
    color: var(--green);
    text-align: center;
    font-family: var(--body-font);
    font-size: var(--font-41);
    font-weight: 700;
    margin-block: 0px;
}
.compare-section .compare-boxs{
    padding: 25px 9px;
    background-color: #F9F9F9;
}
.compare-section .compare-box-count {
    background: #ECFBC5;
    padding: 48px 24px;
}
@media screen and (max-width:992px) {
    .compare-section .compare-box-count .title {
       min-height: auto;
    }
}
@media screen and (min-width:768px) {
    .compare-section .compare-boxs {
         padding: 24px 16px 24px 30px;
    }
    .compare-section .heading-box{
      gap:10px;
      flex-flow:row
    }
}
@media screen and (min-width:1140px) {
    .compare-section .compare-boxs {
        padding: 32px 24px 32px 40px;
    }
    .compare-section .heading-box{
      gap:16px;
    }
}
.compare-section .compare-container{
    margin-block:var(--spacing-48);
}
.compare-section .compare-boxs :is(.compare-boxs-inner,ul){
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 600;
    color: var(--green);
    display:flex;
    flex-flow:column;
    gap:24px;
    list-style:none;
    padding:0;
    margin:0
}

.compare-table {
    width: 100%;
    background-color: #f9f9f9;
    width: 100%;
}

.compare-table tr > :is(th, td):first-child {
    padding-inline: 24px 8px;
}

.compare-table tr th:not(:first-child) {
    padding-inline: 8px;
}

.compare-table th {
    padding-block: 24px;
    color: var(--green);
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 700;
    vertical-align: top;
    margin-bottom: 0px;
    line-height: 1.2;
}
.compare-section .compare-boxs-inner .title{
    color: var(--green);
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 700;
    margin: 0px;
}

@media screen and (min-width:767px) {
    .compare-table th {
        font-size: 18px;
    }

    .compare-table {
        table-layout: fixed;
        border-radius: 32px 0px 0px 32px;
    }

    .compare-table tr > :is(th, td):first-child {
        padding-inline: 30px 24px;
    }
}

@media screen and (min-width:1024px) {
    .compare-table th,
     .compare-section .compare-boxs-inner .title{
        font-size: 20px;
    }

    .compare-table tr > :is(th, td):first-child {
        padding-inline: 40px 24px;
    }
}

@media screen and (min-width:1280px) {
    .compare-table th,
     .compare-section .compare-boxs-inner .title{
        font-size: 26px;
    }
}

@media screen and (max-width:767px) {
    .compare-section .container {
        padding-inline: 13px;
    }
}

.compare-table tr td {
    padding-bottom: 24px;
    font-size: 14px;
    font-family: var(--body-font);
    line-height: normal;
    font-weight: 600;
    color: var(--green);
    line-height: 1.4;
    padding-inline: 8px;
}
.compare-section .compare-boxs ul li{
    font-size: 16px;
    font-family: var(--body-font);
    line-height: normal;
    font-weight: 600;
    color: var(--green);
    line-height: 1.4;
}

.compare-table tr td img {
    height: 24px;
}
@media screen and (min-width:660px) {
    .compare-table tr td{
        font-size: 15px
    }
    .compare-table tr td img {
        height: 32px;
    }
}

@media screen and (min-width:992px) {
    .compare-table tr td{
        font-size: 15px
    }

    .compare-section ul li img {
        height: 36px;
        margin-block: 8px;
    }
}

@media screen and (min-width:1025px) {
    .compare-table tr td,
   .compare-section .compare-boxs ul li{
        font-size: 16px
    }
}

.compare-section th:nth-child(2),
.compare-section td:nth-child(2) {
    color: var(--light-green);
    background-color: var(--green);
    text-align: center;
}

.compare-section th:nth-child(3),
.compare-section td:nth-child(3) {
    color: var(--theme-black);
    background-color: #f9f9f9;
    text-align: center;
}


.compare-section .btn{
    margin-inline: auto;
    width: fit-content;
    display: block
}
/********************************
   Compare Table Section End
***********************************/



/********************************
   Customer Stories Section Start
***********************************/
.customer-storie-section {
    overflow: hidden;
    margin-block: 30px var(--spacing-80);
}
.customer-storie-section .container {
    width: 100%;
    max-width: 100%;
  overflow:hidden;
}
.customer-storie-section .storie-slider {
    position: relative;
    z-index: 1;
}
.customer-storie-section .storie-slider::after,
.customer-storie-section .storie-slider::before {
    content: '';
    position: absolute;
    background: #fff;
    width: calc(100vw + 200px);
    height: 70px;
    z-index: 1;
    border-radius: 50%;
    left: -100px;
    right: -50px !important;
}
@media screen and (min-width:768px){
    .customer-storie-section .storie-slider::after,
    .customer-storie-section .storie-slider::before {
        height:120px
    }
}
.customer-storie-section .storie-slider::after {
    bottom: -40px;
}
.customer-storie-section .storie-slider::before {
    top: -45px;
    z-index: 2;
}
.customer-storie-section .storie-slider {
    overflow: visible;
    padding-block: 15px;
}

@media screen and (min-width:768px) {
    .customer-storie-section .storie-slider {
        padding-block:30px;
    }
    .customer-storie-section .storie-slider::after,
    .customer-storie-section .storie-slider::before {
        height: 70px
    }
}

@media screen and (min-width:1024px) {
    .customer-storie-section .storie-slider {
        padding-block: 40px;
    }
    .customer-storie-section .storie-slider::after,
    .customer-storie-section .storie-slider::before {
        height: 90px
    }
}
@media screen and (min-width:1280px) {
    .customer-storie-section .storie-slider::after,
    .customer-storie-section .storie-slider::before {
        height: 95px
    }
}
@media screen and (min-width:1366px) {
    .customer-storie-section .storie-slider::after,
    .customer-storie-section .storie-slider::before {
        height: 100px
    }
    .customer-storie-section .storie-slider {
        padding-block: 56px;
    }
}
.customer-storie-section .heading-box {
    display: flex;
    gap:8px;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-family: var(--body-font);
    flex-flow:column-reverse;
    z-index: 2;
    position: relative;
}
@media screen and (min-width:768px) {
    .customer-storie-section .heading-box {
      gap:10px;
      flex-flow:row
    }
}
@media screen and (min-width:1140px) {
    .customer-storie-section .heading-box {
      gap:16px;
    }
}
.customer-storie-section .heading-box .title{
    color: var(--green);
    text-align: center;
    font-family: var(--body-font);
    font-size: var(--font-41);
    font-weight: 700;
    margin-block: 0px;
    z-index:99;
    position:relative
}
.customer-storie-section .swiper-slide {
    display: flex;
    height: auto;
}
.customer-storie-section .swiper-slide img{
  width:100%
}
.customer-storie-section .swiper-wrapper {
    height: auto;
}
.customer-storie-section .storie-content-slider {
    max-width: 880px;
    margin-inline: auto;
    display: flex;
    align-items: flex-start;
    padding-inline: 30px;
    position: relative;
}
.customer-storie-section .storie-content-slider .storie-content {
    text-align: center;
    color: var(--theme-black);
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 400;
    margin-bottom: 0px
}

.customer-storie-section .storie-content-slider .storie-author {
    color: var(--green);
    text-align: center;
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 600;
    margin-block: 8px 0px;
}

.customer-storie-section .storie-content-slider .swiper-button-prev {
    left: -5px;
}
.customer-storie-section .storie-content-slider .swiper-button-next {
    right: -5px;
}
.customer-storie-section .storie-content-slider :is(.swiper-button-prev, .swiper-button-next) {
    color: var(--theme-black);
    top: 28px;
}
.customer-storie-section .storie-content-slider :is(.swiper-button-prev, .swiper-button-next):after {
    font-size: 30px;
}

/********************************
   Customer Stories Section End
***********************************/



/********************************
  Your Meet Friend Section Start
***********************************/
.meet-friend-section{
    background: linear-gradient(0deg, #FBDC7B 0%, #FFF 58%);
    padding-block: var(--spacing-80);
    position: relative;
    font-family: var(--body-font);
}
@media screen and (min-width:992px){
  .meet-friend-section{
    background: linear-gradient(0deg, #FBDC7B 0%, #FFF 45%);
  }
}
/* .meet-friend-section:after{
    content: '';
    background: url(../images/icons/wave-vactor.png) no-repeat;
    background-size: cover;
    position: absolute;
    height: 200px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
} */
.meet-friend-section .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
}
.qr_image {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.meet-friend-section .title{
    font-size: 41px;
    font-weight: 700;
    color: var(--green);
    margin-block:0px;
    line-height: 1.2;
}
@media screen and (min-width:992px) {
    .meet-friend-section .title {
        font-size: 42px;
    }
}
@media screen and (min-width:1280px) {
    .meet-friend-section .title {
        font-size: 66px;
    }
}
.meet-friend-section .description {
    font-size: var(--font-18);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0px;
    line-height:normal
}
@media screen and (max-width:768px) {
    .meet-friend-image{
        margin-top:10px;
        text-align: center;
        max-width: 350px;
        margin-inline: auto 0;
    }
    .leave-icon-img{
      height:60px;
      width:60px;
    }
}
@media screen and (min-width:767px) {
   .meet-friend-image{
       margin-bottom:-140px
    }
}
/********************************
  Your Meet Friend Section End
***********************************/



/********************************
    CTA Section Start
***********************************/
.cta-section{
    background: var(--green);
    /* background: url(/assets/images/icons/wave-vactor.png) no-repeat center; */
    background-size: cover;
    color: var(--white);
    padding-block:0 75px;
    margin-top: -2px;
}
@media screen and (min-width:992px) {
    .cta-section{
        padding-block: 0 90px;
    }
}
.cta-section .container{
    max-width: 1280px;
}
.cta-section .title {
    color:#ECFBC5;
    font-family: var(--body-font);
    font-size: 41px;
    font-weight: 400;
    margin-block:0px 32px;
    line-height:1.25
}
@media screen and (min-width:1280px) {
    .cta-section .title  {
        font-size: 52px;
    }
}
.cta-section .description {
    color:var(--white);
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 400;
    margin-bottom:0px;
   
    line-height:normal
}
.cta-section .ai-precision-section .title{
    color: var(--white);
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 700;
    margin-block:20px 10px;
    line-height:normal
}
@media screen and (min-width:768px) {
    .cta-section .ai-precision-section {
        text-align: right;
    }
    .cta-section .row {
        align-items: flex-end;
    }
}

@media screen and (max-width:768px) {
    .cta-section .content-box {
       margin-bottom: 20px;
    }
  .cta-section .ai-precision-section {
    text-align:center
  }
}
/********************************
    CTA Section End
***********************************/




/*********************
 Footer Section Start
 ****************************/
.footer-section{
    background: var(--theme-black)
}
.footer-section > .container {
    padding: 48px 20px;
}
@media screen and (min-width:1024px) {
    .footer-section > .container{
        padding: 50px;
    }
}
@media screen and (min-width:1280px) {
    .footer-section > .container {
        padding: 64px;
    }
}
@media screen and (max-width:768px) {
    .footer-section > .container {
       text-align: left;
    }
}
.footer-section .footer-links-item {
    display: flex;
    list-style: none;
    padding-left: 0;
    justify-content: center;
   
}
@media screen and (max-width:575px) {
   .footer-section .footer-links-item {
        margin-bottom:48px;
     gap:24px
    }
    .footer-section .footer-logo{
        margin-bottom: 32px;
       display:inline-block
    }
}
@media screen and (max-width:767px) {
   .footer-section .footer-links-item {
        flex-direction:column;
    }
}
.footer-section .footer-links-item .nav-link,
.footer-section .copyrights-text {
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    padding: .25em;
    font-family: var(--body-font);
    transition: all .3s ease-in-out;
}
@media screen and (min-width:767px){
    .footer-section .footer-links-item {
        justify-content: space-between;
        margin-bottom: 0;
    }
}
.footer-section .copyrights-text{
   margin-bottom: 0;
}
.footer-section .footer-links-item .nav-link:is(:hover,:focus,.active){
    color: var(--light-green);
}
@media screen and (min-width:575px){
  .custom-margin{
      margin-top:32px;
  }
}
/*********************
    Footer Section End
****************************/







/******************************
      Product Listing Page Style Start
********************************************************************/


/*****************
    Offer Strip Style Start
***************************/
.offer-strip {
    background: var(--theme-green);
    padding-top: 3em;
    margin-top: -3em;
}
.offer-strip p {
    color: var(--theme-black);
    text-align: center;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
    padding: 12px;
    margin-bottom: 0;
}
@media screen and (min-width:768px) {
    .offer-strip p {
        font-size: var(--font-18);
    }
}
@media screen and (max-width:991px) {
  .offer-strip p {
    padding: 3px;
  }
}
@media screen and (max-width:767px) {
  .offer-strip p {
    padding: 7px;
  }
}

/******************************
   Featured Images Banner Style Start
**********************************************/
.featured-image-section .featured-image-inner{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-block: 1.5em;
    min-height: 300px;
    display: flex;
}
@media screen and (min-width:768px) {
    .featured-image-section .featured-image-inner {
        min-height:350px;
    }
}
@media screen and (min-width:1280px){
    .featured-image-section .featured-image-inner {
        min-height: 400px;
    }
}
@media screen and (min-width:1368px) {
    .featured-image-section .featured-image-inner {
        min-height:554px;
    }
}
.featured-image-section .featured-title{
    color: var(--white);
    font-family: var(--body-font);
    /* font-size: var(--font-66); */
    font-weight: 500;
    margin-top: 3em;
      font-size:80px;
}
@media screen and (min-width:992px) {
   .featured-image-section .featured-image-content {
        width: 50%;
    }
}


/******************************
   Product Listing and Product Style Start (grid)
**********************************************/
.product-listing-section--dark {
  background: #fff;
  padding-block: var(--spacing-80);
  color: var(--theme-black);
}

.product-listing-section--dark .product-listing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding-inline: 0;
}

.product-listing-section--dark .product-listing-title {
  font-family: var(--body-font);
  font-size: 2.6rem;
  font-weight: 700;
  color: #024942;
  margin: 0;
}

.product-listing-section--dark .product-listing-count {
  font-family: var(--body-font);
   font-size: 2.6rem;
  color: #024942;
  font-weight:400;
}

.product-listing-section--dark .product-listing--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  row-gap: 6rem;
}

@media screen and (min-width: 600px) {
  .product-listing-section--dark .product-listing--grid {
    grid-template-columns: repeat(2, 1fr);
     row-gap: 6rem;
  }
}

@media screen and (min-width: 990px) {
  .product-listing-section--dark .product-listing--grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    row-gap: 8rem;
  }
}

/* Product card */
.product-listing-section--dark .product-item--card {
  display: block;
}

.product-listing-section--dark .product-item-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent;
}

.product-listing-section--dark .product-item-card__image-wrap {
  text-decoration: none;
  display: block;
  margin-bottom: 2.5rem;
}

.product-listing-section--dark .product-item-card__image {
  background: #fff;
  border-radius: 21px;
  overflow: hidden;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); */
  border:1px solid #ACACAC;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-listing-section--dark .product-item-card__image img,
.product-listing-section--dark .product-item-card__image .placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.product-listing-section--dark .product-item-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.product-listing-section--dark .product-item-card__type {
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--green);
  text-transform: uppercase;
}

.product-listing-section--dark .product-item-card__title {
  font-family: var(--body-font);
  font-size: 2.6rem;
  font-weight: 600;
  color: #024942;
  margin: 0;
  line-height: 1.3;
}

.product-listing-section--dark .product-item-card__title:hover {
  color: var(--green);
}

.product-listing-section--dark .product-item-card__price-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.product-listing-section--dark .product-item-card__price {
  font-family: var(--body-font);
  font-size: 3.2rem;
  font-weight: 600;
  color: #024942;
}

.product-listing-section--dark .product-item-card__save-more {
  font-family: var(--body-font);
  font-size: 1.6rem;
  font-weight: 600;
  color: #C21D1A;
  text-decoration: none;
}

.product-listing-section--dark .product-item-card__save-more:hover {
  text-decoration: underline;
}

.product-listing-section--dark .product-item-card__actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.5rem;
}

.product-listing-section--dark .product-item-card__add-cart {
  background: var(--theme-green);
  color: var(--theme-black);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--body-font);
  font-size: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}

.product-listing-section--dark .product-item-card__add-cart:hover:not(:disabled) {
  background: var(--light-green);
}

.product-listing-section--dark .product-item-card__add-cart:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.product-listing-section--dark .product-item-card__more-details {
  font-family: var(--body-font);
  font-size: 2rem;
  color: #024942;
  font-weight:600;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.product-listing-section--dark .product-item-card__more-details:hover {
  text-decoration: underline;
}

/* Promo card (SoilSense AI style) */
/*Commented by sanjay */
/*.page-width{
    width:100% !important;
    max-width:100% !important;
    padding: 0 !important;
}*/

.product-listing-section--dark .product-item--promo {
  display: block;
}

.product-listing-section--dark .promo-card {
  padding: 96px 30px 50px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: linear-gradient(to bottom, #024942, #000000);
  position: relative;
}
.product-listing-section--dark .promo-card .promo-card-inner{
    position:relative;
}
.product-listing-section--dark .promo-card:before{
    content:"";
    background:url(spark-dark.svg) no-repeat 0 0;
    width:120px;
    height:120px;
    position:absolute;
    left:20px;
    top:27px; 
}

.product-listing-section--dark .promo-card__title {
  font-family: var(--body-font);
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.3rem 0;
  text-align:center;
  letter-spacing: normal;
  font-style:italic;
}

.product-listing-section--dark .promo-card__subheading {
  font-family: var(--body-font);
  font-size: 1.6rem;
   font-weight: 600;
  color: #fff;
  margin: 0 0 1.6rem;
  text-align:center;
  letter-spacing: normal;
}

.product-listing-section--dark .promo-card__image {
  margin: 0 0 1rem;
  border-radius: 12px;
  overflow: hidden;
  max-height: 180px;
}

.product-listing-section--dark .promo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-listing-section--dark .promo-card__features {
  list-style: none;
  padding: 1rem 0 2.5rem 0;
  margin: 0;
  font-family: var(--body-font);
  font-size: 1.4rem;
  line-height: 1.6;
}

.product-listing-section--dark .promo-card__features li {
  padding-left: 3.3rem;
  position: relative;
  color:#B1EF18;
  padding-bottom: 1.8rem;
  font-size:1.3rem;
  list-style:none;
  font-weight:400;
  letter-spacing: normal;
}
.product-listing-section--dark .promo-card__features li.feature-1 {
    background:url(spark-green.svg) no-repeat 0 0;
}
.product-listing-section--dark .promo-card__features li.feature-2 {
    background:url(time-green.svg) no-repeat 0 0;
}
.product-listing-section--dark .promo-card__features li.feature-3 {
    background:url(check-green.svg) no-repeat 0 0;
}
.product-listing-section--dark .promo-card__features li.feature-4 {
    background:url(drop-green.svg) no-repeat 0 0;
}
.product-listing-section--dark .promo-card__features li span{
    font-size:1.6rem;
    font-weight:700;
    display:block;
}


.product-listing-section--dark .promo-card__button {
  display:flex;
  margin-top: auto;
  padding: 1rem .5rem;
  font-family: var(--body-font);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.product-listing-section--dark .promo-card__button:hover {
  background: #fff;
  color: #0F766E;
}

/******************************
   Product Listing and Product Style End
**********************************************/



/******************************
   Product Detail Page Start
**********************************************/


/******************************
   Product Detail Section Start
**********************************************/
.product-detail-section{
    background: #F9F9F9;
    padding-block: var(--spacing-80);
}
.product-detail-section .product-slider{
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.10);
    border-radius: 21px;
    display: flex;
    height: auto;
}
.product-detail-section .product-slider .swiper-wrapper{
    height: auto;
}
.product-detail-section .product-slider .swiper-slide{
    border-radius: 21px;
    background: var(--white);
    padding: 10px;
}
.product-slider :is(.swiper-button-prev, .swiper-button-next)::after {
    font-size: var(--font-41);
    color: var(--green);
}
.product-detail-section .product-thumbnails-slider{
    display: flex;
    height: auto;
    padding: 10px 6px;
}
.product-detail-section .product-thumbnails-slider .swiper-slide img{
  aspect-ratio: 1/1;
  object-fit: contain;
  max-height:115px
}
@media screen and (min-width:768px) {
    /* .product-detail-section .product-slider {
        height: 400px;
    } */
    .product-detail-section .product-thumbnails-slider {
        max-height: 154px;
    }
}
/* @media screen and (min-width:1140px) {
    .product-detail-section .product-slider {
        height: 600px;
    }
} */
.product-detail-section .product-thumbnails-slider :is(.swiper-button-prev,.swiper-button-next)::after {
    font-size: 24px;
    color: var(--green);
}
.product-detail-section .product-thumbnails-slider .swiper-slide{
    border-radius: 21px;
    background:var(--white);
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.10);
    padding: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    border: 1px solid var(--white)
}
.product-detail-section .product-thumbnails-slider .swiper-slide-thumb-active {
    border-color:1px solid var(--green)
}


/******************************
   Product Detail |  Product Summary style Start
**********************************************/
.product-detail-section .product-detail-summary {
    padding-top: var(--spacing-80);
}
@media screen and (min-width:768px) {
    .product-detail-section .product-detail-summary {
        padding-left: 3em;
        padding-top:0;
    }
}
.product-detail-section .product-title {
    color: var(--green);
    font-family: var(--body-font);
    /* font-size: var(--font-41); */
    font-weight: 700;
    display: ruby;
    flex-wrap: wrap;
}
.product-detail-section .product-title:after {
    content: '';
    background: url(../images/icons/leaves-icon.gif);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    height: 40px;
    width: 40px;
    display: block;
    margin-left: 12px;
}
.product-detail-section .subtitle {
    color: var(--green);
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 600;
}
.product-detail-section .info-box {
    color: var(--theme-black);
    font-family: var(--body-font);
    font-size: 1em;
    font-weight: 400;
    margin-block: var(--spacing-24); 
    line-height:1.38
}
.product-detail-section .controller-content {
    color: var(--theme-black);
    font-family: var(--body-font);
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 0px;
    line-height:1.3
}
.product-detail-section .buttons{
    display: flex;
    gap:1em;
    margin-top: var(--spacing-24)
}
.product-detail-section .buttons .btn-cart:not(:hover) {
    border: 1px solid var(--green);
    color: var(--green);
    background: transparent;
}

/*  Sensor Option */

.product-detail-section .sensor-options{
    margin: 24px 0;
    border-top: 1px solid var(--theme-green);
    /* padding-top: var(--spacing-24) */
}
.product-detail-section .sensor-options .sensor-title {
    color: var(--theme-black);
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 600;
    margin-bottom: 10px;
}
.product-detail-section .sensor-subtitle{
    color: var(--theme-black);
    font-family: var(--body-font);
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 0;
}
.product-detail-section .sensor-grid {
    display: flex;
    gap: .5em;
    flex-wrap: wrap;
    padding-block:var(--spacing-24)
}
.product-detail-section .sensor-radio {
    display: none;
}
.product-detail-section .sensor-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 1em !important;
    border: 2px solid #599D2D ;
    background: var(--white);
    width: 150px;
    padding: 1em var(--spacing-24) !important;
    flex-shrink: 0;
}
@media screen and (min-width:768px) {
    .product-detail-section .sensor-card {
        width: 135px;
    }
    .product-detail-section .sensor-grid {
        gap:.45em;
    }
}
@media screen and (min-width:1025px) {
    .product-detail-section .sensor-card {
        width: 168px;
    }
    .product-detail-section .sensor-grid {
        gap: 1em;
    }
}

.product-detail-section .sensor-radio:checked + .sensor-card {
    border: 2px solid  var(--green);
    background-color: #ECFBC5;
}
.product-detail-section .sensor-card:hover {
    background-color: #ECFBC5;
}
.product-detail-section .sensor-card h3 {
    color: var(--theme-black);
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 600;
    margin-bottom: 10px !important;
}
.product-detail-section .sensor-card p {
    color: var(--theme-black);
    font-family: var(--body-font);
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 0px;
}


/***************************
    Deal Section Style Start
************************************/
.deal-section {
    background: var(--green);
    padding-block: var(--spacing-80) 0;
    color: var(--white);
    font-family: var(--body-font);
}
.deal-section .deal-inner-content .title {
    font-size: 41px;
    font-weight: 700;
    color: var(--theme-green);
    margin-block:0px 16px;
    font-family: var(--body-font);
    line-height:1.1
}
@media screen and (min-width:768px){
  .deal-section .deal-inner-content .title {
    font-size:var(--font-66);
    margin-block:0px var(--spacing-24);
  }
}
@media screen and (min-width:1024px){
  .deal-section {
     padding-block: var(--spacing-80)
  }
}
.deal-section .deal-inner-content .description {
    font-size:var(--font-18);
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 0px;
    color:#fff;
    line-height:normal
}
@media screen and (min-width:660px){
  .deal-section .deal-inner-content .description {
     color:#ECFBC5
  }
}
.deal-section .deal-feature-list {
    margin-top: 24px;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
.deal-section .deal-feature-list li {
    color:  #ECFBC5;
    font-family: var(--body-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 0px;
    border-top: 1px solid var(--theme-green);
    padding-block:calc(var(--spacing-24) - 2px);
   line-height:normal;
    cursor: pointer;
}
@media screen and (min-width:992px) {
    .deal-section .deal-feature-list li {
        font-size: calc(var(--font-20) + 6px);
    }
}
.deal-section .deal-feature-list li.active {
    color: var(--theme-green);
}
.deal-section .featured-point-detail{
    padding-block:calc(var(--spacing-80) - 35px)  0 ;
}
@media screen and (min-width:768px) {
    .deal-section .featured-point-detail {
        padding-block: var(--spacing-80) 0;
    }
}
.deal-section .featured-point-image {
    display: none;
  /*height:380px*/
}
.deal-section .featured-point-image.active {
    display: block;
}
.deal-section .featured-point-image img{
    max-width: 90%;
    margin-inline:auto;
    display: block;
}
@media screen and (min-width:767px){.deal-section .featured-point-image {height:450px}}
@media screen and (min-width:992px){.deal-section .featured-point-image {height:650px}}
@media screen and (min-width:1280px){.deal-section .featured-point-image {height:690px}}

/* .deal-feature-list li:last-child {
  border-top: 0px;
} */


/**********************************
    Come Friend Section Style Start
**************************************************/
.come-friend-section{
    position: relative;
    background: linear-gradient(-180deg, #FBDC7B 0%, #FFF 30.33%);
    margin-bottom: var(--spacing-80)
}
.come-friend-section .row{
    align-items: center;
}
@media screen and (max-width:767px){
  .come-friend-section .row {
    flex-direction: column-reverse;
  }
  .come-friend-section{
      background: linear-gradient(-180deg, #FBDC7B 0%, #FFF 10.33%);
  }
}
/* .come-friend-section:after{
    content: '';
    background: url(../images/icons/wave-vactor-come-friend.svg) no-repeat;
    background-size: auto;
    background-size: cover;
    position: absolute;
    min-height:120px;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 0;
    background-position: bottom center !important;
} */

@media screen and (min-width:1921px) {
    .come-friend-section:after {min-height: 500px;}
}
.come-friend-section .container {
    z-index: 1;
    position: relative;
}
.come-friend-section .come-friend-content {
    margin-top:130px
}
/* @media screen and (min-width:768px) {
    .come-friend-section .come-friend-content {
        margin-top: calc(var(--spacing-80) * 3);
    }
}
*/
.come-friend-section .come-friend-content .title { 
    font-size: 41px;
    font-weight: 700;
    color: var(--green);
    margin-block:0 calc(var(--spacing-48) - 8);
    line-height: 1.24;
    font-family:var(--body-font);
}
@media screen and (min-width:992px) {
  .come-friend-section .come-friend-content .title {
     font-size: var(--font-66);
  }
}
.come-friend-section .product-guide-list {
    margin-top: 24px;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
.come-friend-section .product-guide-content{
    border-top: 1px solid var(--green);
    padding-block: calc(var(--spacing-24) - 2px)
}
.come-friend-section .product-guide-content .title {
    color: #2B2B2B;
    font-family: var(--body-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25;
    margin:0;
    cursor: pointer;
}
@media screen and (min-width:992px) {
    .come-friend-section .product-guide-content .title {
        font-size: calc(var(--font-20) + 6px);
    }
    .come-friend-section .product-guide-content{
      padding-block: var(--spacing-24)
    }
}
.come-friend-section .product-guide-content .description {
    font-size: var(--font-18);
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 0px;
    color: var(--theme-black);
    padding-top: var(--spacing-24);
    display: none;
    line-height: 1.3;
}
@media screen and (min-width:1280px){
  .come-friend-section .product-guide-content .description {
    padding-top:32px
  }
}
.come-friend-section .product-guide-content.active .title {
    color: var(--green);
}
.come-friend-section .product-guide-content.active .description,
.come-friend-section .product-guide-content.active,
.come-friend-section .product-guide-image-item.active {
    display: block;
}
.come-friend-section .product-guide-image-item {
    display: none;
}
.come-friend-section .product-guide-image-item img {
        max-height: 500px;
    }
@media screen and (min-width:767px){.come-friend-section .product-guide-image-item {height:500px} .come-friend-section .product-guide-image-item img {max-height: 500px;}}
@media screen and (min-width:992px){.come-friend-section .product-guide-image-item {height:700px}.come-friend-section .product-guide-image-item img {max-height: 650px;}}
@media screen and (min-width:1280px){.come-friend-section .product-guide-image-item {height:813px} .come-friend-section .product-guide-image-item img {max-height: auto;}}

.come-friend-section .product-guide-image-item img {
    margin-inline: auto;
    display: block;
}
/* @media screen and (max-width:1280px) {
    .come-friend-section .product-guide-image-item img {
        max-height: 650px;
    }
}
@media screen and (max-width:1024px) {
    .come-friend-section .product-guide-image-item img {
        max-height: 500px;
    }
} */
@media screen and (max-width:592px) {
    .come-friend-section .product-guide-image-item img {
      padding-top:30px
    }
  .come-friend-section .product-guide-image-item img {
        max-height: 500px;
    }
}








/****************************
   Ready to go greener Style Start
*****************************/
.shop-cta-section{
    padding-block: var(--spacing-80) 110px;
    text-align: center;
    background: linear-gradient(-0deg, #ECFBC5 0%, #FFF 100.33%);
}
.shop-cta-section .shop-cta-title{
    font-size: var(--font-66);
    font-family: var(--body-font);
    color: var(--green);
    font-weight: 700;
    margin-bottom:calc(var(--spacing-24) * 2);
    font-style: italic;
}
@media screen and (min-width:768px){
    .shop-cta-section{
      padding-block: var(--spacing-80);
       background: linear-gradient(-0deg, #ECFBC5 0%, #FFF 61.33%);
    }
}

/***************************
Fixed product details slider width issue in mobile
****************************/
@media (max-width: 767px){
  .product-detail-section .product .col-md-6{
    flex-basis: 100%;
    width: 100%;
  }
}

/***********************
    Our Story Section Start Style
***********************************/

.our-story-section {
    background: var(--green);
    padding-block: var(--spacing-80);
    position: relative;
    z-index: 1;
}


@media screen and (min-width:767px) {
    .our-story-section .title-box:before {
        height: 80px !important;
        width: 80px !important;
    }
}

.our-story-section .title {
    font-size: 41px;
    font-weight: 700;
    color: var(--theme-green);
    font-style: italic;
    margin: 0 !important;
    font-family: var(--body-font);
    line-height:1.2
}
@media screen and (min-width:767px){
  .our-story-section .title {font-size: var(--font-66);}
}
.our-story-section .sub-title {
    font-size: calc(var(--font-20) + 2px);
    color: #ECFBC5;
    margin-block: 8px;
    font-family: var(--body-font);
    line-height:normal
}

.our-story-section .content-box {
    color: var(--white);
    font-size: var(--font-20);
    padding-block: var(--spacing-80);
    font-weight: 400;
    font-family: var(--body-font);
  line-height:normal
}

@media screen and (min-width:767px) {
    .our-story-section .content-box {
       margin-inline: 25%;
        max-width: 650px;
    }

    .our-story-section .sub-title {
        font-size: calc(var(--font-20) + 6px);
        margin-block: 14px;
    }
}

@media screen and (min-width:880px) {
    .our-story-section .content-box {
        font-size: calc(var(--font-20) + 3px);
    }
}

.our-story-section .content-box .story-author-image:after,
.our-story-section .content-box .story-author-image:before {
    content: '';
    position: absolute;
    height: 70px;
    width: 50px;
    background-size: contain !important;
}

@media screen and (min-width:880px) {
    .our-story-section .content-box .story-author-image:after {
        left: -40px !important;
        top: -24px !important;
        width: 80px;
        height: 120px;
    }

    .our-story-section .content-box .story-author-image:before {
        right: -40px !important;
        bottom: -6px !important;
        width: 80px;
        height: 120px;
    }
}

.our-story-section .story-author-image {
    margin-block: calc(var(--spacing-24) + .25em);
    position: relative;
}

.our-story-section .bottom-content {
    font-size: var(--font-41);
    font-weight: 700;
    font-family: var(--body-font);
    color: var(--light-green);
    line-height:1.4;
   display: flex;
}
@media screen and (min-width:767px) {
    .our-story-section .bottom-content:before {
        margin-top: -50px;
        width: 128px !important;
        height: 128px !important;
        margin-right: 20px;
    } 
}


/**********************************
    Home Page Meet SoilDrops Animation Start Style
***********************************/
.lottie-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #ECFBC5 0%, #FFFFFF 61.33%);
}

.lottie-container .animation {
    position: absolute;
    left: 50%;
    top: 15%;
    transform: translateY(0%);
    transform: translateX(-50%);
    width: 93%;
    height: 80%;
    object-fit: contain;
}


.canvas-container-ref{
    position: absolute;
    top: 15%;
    left: 3vw;
    right: 3vw;
    width: 93vw;
    height: 80vh;
}
.lottie-container .main-heading {
    font-family: var(--body-font);
    /* font-weight: 700; */
    font-weight: bold;
    color: #024942;
    font-size: 3.6vw;
    /* font-size: 52px; */
    position: absolute;
    top: 20px;
    left: 0;
    text-align: center;
    width: 100%;
}

.p-div {
    font-family: var(--body-font);
    font-weight: 700;
    color: #024942;
    font-size: 26px;
    /* font-size: 1.8vw; */
    text-align: left;
    width: 240px;
    height: auto;
    opacity: 0;
}

#p-0,#p-1,#p-2,#p-3,#p-4,#p-5,#p-6{
    opacity: 0;
}
#p-0 p,#p-1 p,#p-2 p,#p-3 p,#p-4 p,#p-5 p,#p-6 p{line-height:normal}
.p-p {
    margin-top: 10px;
    font-family: var(--body-font);
    font-weight: 300;
    font-size: 16px;
    /* font-size: 1.1vw; */
    color: #000000;
   
}

.p-p span {
     font-family: var(--body-font);
     font-weight: 700;
}

#p-1 {
    position: absolute;
    left: 75%;
    /*bottom: 10%;*/
    top:40%;
    width: 18%;
}

#p-3 {
    position: absolute;
    top: 60%;
    left: 20vw;
    opacity: 0;
}

#p-3 .p-p {
    color: white;
}
#p-3 .p-h {
    color: #a5e51c;
}

#p-2 {
    position: absolute;
    top: 54%;
    left: 70%;
    transform: translateY(-54%);
    opacity: 0;
    width: 18%;
}

#sensor {
    position: absolute;
    width: 21.3vw;
    height: 89vh;
    top: 10%;
    left: 65%;
    transform: translateX(-65%);
    opacity: 0;
}

#sensor svg,  #sensor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-div {
    position: absolute;
    width: 60vw;
    height: 100vh;
    top:0px;
    left: 20vw;
    right: 20vw;
    /* background-color: #e5c71c; */
}

#mobile {
    position: absolute;
    bottom:0px;
    transform: translateY(100%);
    width: 36vw;
    height: 86vh;
}

#mobile img{
    position: absolute;
    width: 100%;
    height: 100%;
    /* object-fit: fill; */
    object-fit: contain;
}

#mobile svg{
    position: absolute;
    width: 100%;
    height: 100%;
}

#p-4 {
    position: absolute;
    top: 35%;
    /* right: 15%; */
    right: 0;
    width: 30%;
}

#p-5 {
    position: absolute;
    top: 26%;
    /* right: 15%; */
    right: 0;
    width: 30%;
}

#p-5 .p-h{
    margin-top: 24px;
}

#p-5 .pop-up {
    margin-left: -10px;
}

#p-6 {
    position: absolute;
    top: 52%;
    left: 15%;
    transform: translateY(-52%);
    opacity: 0;
}

#p-0 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.pop-up {
    width: 28vw;
    max-width: 399px;
    height: 13vh;
    max-height: 102px;
    min-width: 299px;
    min-height: 62px;
    opacity: 0;
    transform-origin: top left;
    transform: scale(0);
}

.bg-waves {
    position: absolute;
    top: 0;
    width: 100vw;
    height: auto;
    /* display: none; */
}

.bg-waves svg {
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}

.intro-heading-div {
    position: relative;
    top: 5%;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--theme-green);
    width: 100%;
    /* display: none; */
}

.intro-heading-div p {
    width: 100%;
    text-align: center;
    color: var(--theme-green);
    font-weight: bold;
}

.intro-heading-div .h1 {
    font-size: 4.3vw;
}


.intro-heading-div .h1  {
    font-family: var(--body-font);
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.intro-heading-div .h2 {
    font-family: var(--body-font);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.24;
    margin-bottom: 0;
}

@media screen and (min-width:768px) {
   .intro-heading-div .h1  {
        font-size: 32px;
    }

    .intro-heading-div .h2 {
        font-size: 54px;
    }
}

@media screen and (min-width:1024px) {
    .intro-heading-div .h1  {
        font-size: 54px;
    }

    .intro-heading-div .h2 {
        font-size: 90px;
    }
}

@media screen and (min-width:1280px) {
    .intro-heading-div .h1  {
        font-size: 80px;
    }

    .intro-heading-div .h2 {
        font-size: 120px;
    }
}


#notification {
    transform: center center;
}

@media(max-width:1120px){
    #p-6 {
        left: 10%;
    }
}

@media(max-width:1366px){
    .p-div { 
        font-size: 22px;
    }
    
    .p-p {
        font-size: 12px;
    }
}

@media (max-width:950px) {
    .p-div {
        font-size: 12px;
        width: 200px;
    }

    #p-0{
        margin-left: 20px;
    }

    .p-p {
        font-size: 10px;
    }
}

@media (max-width:860px) {
    .p-div {
        font-size: 12px;
        width: 160px;
    }
}





/* New style css 01-12-2024      */
@media screen and (max-width:700px){

    .mobile-div {
        position: absolute;
        width: 100vw;
        height: 100vh;
        top:0px;
        left: 0;
        right: 0;
        /* background-color: #e5c71c; */
    }
  
    #mobile {
        left: 0;
        right: 0;
        top: 50px;
        right: 0;
        margin-inline: auto;
        width: 58%;
    }

    .intro-heading-div .h1{
        font-size: 26px;
    }
    #p-3 .p-h {
        color: #024942;
    }

    .intro-heading-div .h2 {
        font-size: 50px;
    }

    .lottie-container .main-heading {
        top: 40px;
        font-size: 26px;
        text-align: left;
        left: 6%;
        width: 85%;
        line-height: 1.3;
        display:none;
    }
    .lottie-container .animation  {
        position: absolute;
        left: 50%;
        top: 30%;
        transform: translate(-50%,-30%);
        width: 200%;
        height: 60%;
        object-fit: contain;
    }
    .kickstarter-page .lottie-container .animation{
        top: 30%;
    }
    .bg-waves:before {
        background: url('https://www.soildrops.com/cdn/shop/t/7/assets/wave-vactor.png?v=69165324261955242351732530575');
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
        transform: rotate(180deg);
        content: '';
        min-height: 230px;
        width: 700px;
        position: absolute;
    }

  #p-0 {
    left: 5% !important;
    right: auto;
    width: 85%;
    top: 40px;
    bottom: inherit;
    margin-left: 0;
    font-size: 20px
  }
  .p-h {
    font-size: 23px;
    line-height: 1.3!important;;
  }
  #p-1 {
    left: 5%;
    width: 85%;
    right: auto;
    top: 40px;
    bottom:inherit;
  }
 .p-p {
      font-size: 16px;
      margin-top: 0px;
      line-height: 1.4;
  }
  #p-2 {
    left: 5%;
    top:50px;
    bottom:inherit;
    width: 85%;
  }
  #p-3 {
    top: 40px;
    bottom: inherit;
    left: 5vw;
    width: 85%;
  }
   #p-4{
   top: 40px;
    bottom: inherit;
    left: 5vw;
    width: 85%;
  }
   #p-5{
    top: 40px;
    bottom: inherit;
    left: 5vw;
    width: 85%;
    display: flex;
    flex-direction: column;
  }
  #p-5 .pop-up {
    height: inherit;
    order: 1;
    margin: 0 auto;
    padding-top: 13px;
  }
  #p-5 .p-h {
    margin-top: 10px;
    margin-bottom: 5px;
  }
  #p-3 .p-p {
      color: #000;
      margin-top: 20px;
  }
  #p-6 {
    top: 40px;
    bottom: inherit;
    transform: none;
    width: 85%;
    left: 5%;
  }
 #sensor {
     top: 30%;
     left: 51%;
     transform: translateX(-51%);
     width: 200px;
     height: 320px;
  }

  #mobile {
    height: 100vh;
    left: 0%;
  }

  #p-0,#p-1,#p-2,#p-3,#p-6{
    height: 100vh;
    top:0px;
  }

  #p-1 .p-h,
  #p-3 .p-h,
  #p-0 .p-h,
  #p-6 .p-h,
  #p-2 .p-h{
      position: absolute;
      top:20px;
  }

  #p-1 .p-p,
  #p-3 .p-p,
  #p-0 .p-p,
  #p-6 .p-p,
  #p-2 .p-p{
      position: absolute;
      top:76%;
  }

  #p-0{
      transform: inherit;
  }
 
  #p-2{
      transform: inherit;
  }

}

/**********************************
   End:  Home Page Meet SoilDrops Animation Start Style
***********************************/
/***************************************************
How It Work Page Style Start
***************************************************/

#how-it-works-scale-img-container{
    position: relative;
    /* width: 100vw; */
    height: 100%;
    max-height: 828px;
    overflow: hidden;
   display:flex;
   justify-content:center;align-items:center;
}

#how-it-works-scale-img-text{
    position: absolute;
    width: 900px;
    /* top:50%;
    left:50%;
    transform: translate(-50%,-50%); */
    background-color: #d4ccbbad;
    padding: 20px;
    text-align: center;
    color:#C21D1A;
    font-family: var(--body-font);
    font-size: 28px;
    top:0;
    bottom:0;
    margin-block:auto;
   height: fit-content;
}

@media screen and (max-width:1400px){
    #how-it-works-scale-img-text{
    width: 800px;
    font-size: 22px;
    }
}

@media screen and (max-width:1100px){
    #how-it-works-scale-img-text{
    width: 700px;
    font-size: 22px;
    }
}

@media screen and (max-width:800px){
    #how-it-works-scale-img-text{
    width: 600px;
    font-size: 16px;
    }
}

@media screen and (max-width:750px){
    #how-it-works-scale-img-text{
    width: 400px;
    font-size: 14px;
    }
}


.intro-section {
    margin-bottom: var(--spacing-80);
}
.intro-section .container .intro-inner{
    background: #f9f9f9;
    border-radius: 0 0 24px 24px;
    padding: var(--spacing-80) 1em 0 1em;
    margin-bottom: max(25%, 8em);
}

.intro-content p {
    font-size: 26px;
    font-weight: 400;
    font-family: var(--body-font);
    text-align: center;
    line-height: 1.35;
    color: var(--bs-body-color);
    margin-bottom:0px
}
@media screen and (min-width:768px){
  .intro-content p {
    font-size: var(--font-41);
   }
  .intro-section .container .intro-inner{
    margin-bottom: max(25%, 12em);
 }
}


.intro-content .title {
    font-size: calc(var(--font-41) - .25em);
    font-family: var(--body-font);
    margin-block:0 24px;
    font-weight: 600;
    color: var(--green);
    text-align: center;
    line-height:1.1;
}
.intro-content strong {
    color: var(--green);
}
.intro-image-section{
    position: relative;
  text-align:center
}
.intro-content img {
   margin-top: calc(var(--spacing-24) * 2);
   margin-bottom:-25%;
   position: relative;
}
@media screen and (min-width:480px){
  .intro-content img {
     max-width:320px
  }
}
@media screen and (min-width:768px){
  .intro-content img {
    max-width:400px
  }
}

@media screen and (min-width:992px){
  .intro-content img {
    max-width:100%
  }
}



.scroll-scaleimage-section{
  overflow:hidden
}
#how-it-works-scale-img-container .container{
    position: relative;
    height: 100vh;
    width: 100%;
    height: 100%;
    max-width: 1440px;
    max-height: 828px;
    padding-inline: 0px;
   overflow: hidden;
  margin:var(--font-41);
}

#how-it-works-scale-img-container .container img{
    height: 100%;
    width: 100%;
    max-width: 1440px;
    max-height: 828px;
    object-fit: fill;
}

/* ***********************
How it is working Sensor Section Start
*******************************************/

.sensor-working-section {
    background-color: #EDEDED;
    padding-top: var(--spacing-80);
}
@media screen and (min-width:768px) {
    .sensor-working-summery {
        padding-block: 0 var(--spacing-80);
    }
}
.sensor-working-section .title {
    font-size: 41px;
    font-weight: 700;
    color: var(--green);
    font-family: var(--body-font);
    margin-block:0 24px;
    line-height:1.12
}
@media screen and (min-width:768px) {
    .sensor-working-section .title {
        margin-block:calc(var(--spacing-24) * 1.35)
    }
}
@media screen and (min-width:1024px) {
    .sensor-working-section .title {
        margin-block:calc(var(--spacing-24) * 2)
    }
}
.sensor-working-section .summery {
    font-size: var(--font-18);
    font-weight: 400;
    font-family: var(--body-font);
    color: var(--theme-black);
    margin-bottom: 0;
    line-height:1.5
}
@media screen and (min-width:767px){
  .sensor-working-section .summery {
     font-weight: 600;
  }
}
.sensor-working-section img {
    text-align: right;
    display: block;
    margin-top:30px
}
@media screen and (min-width:768px) {
    .sensor-working-section img {
        max-width: 95%;
        margin-left: auto;
        margin-top:0
    }
}
@media screen and (min-width:1024px) {
  .sensor-working-section img {
        max-width: 90%;
        margin-left: auto;
        margin-top:0
    }
}
.sensor-working-section .sensor-mockup{
    margin-bottom: -30px;
}
.use-water-section .title {
    font-size: 41px;
    font-weight: 700;
    font-family: var(--body-font);
    color: #006AB7;
    margin-block:0 .75em;
    line-height:1.12
}
.use-water-section .description {
    font-size: var(--font-18);
    font-weight: 400;
    font-family: var(--body-font);
    color: var(--theme-black);
    margin-bottom: 0;
   line-height:normal;
}

.average-water-system {
    display: flex;
    flex-flow: column;
    gap: 2.5em;
    padding-block: var(--spacing-80);
}

@media screen and (min-width:660px) {
    .average-water-system {
        flex-flow: row;
       gap: 1em;
    }
  .use-water-section .description {
    font-weight: 600;
  }
}

@media screen and (max-width:767px) {
    .use-water-section{
      padding-bottom: 150px !important;
    }
}

.average-water-system .irrigation-system {
    flex: 1;
    display: flex;
    gap: 1em;
    align-items: center;
}
@media screen and (min-width:768px){
  .average-water-system .irrigation-system:nth-child(2) {
    flex-flow: row-reverse;
  }
}
.irrigation-system-content {
    font-size: var(--font-20);
    font-weight: 700;
    font-family: var(--body-font);
    flex: 137px;
    line-height:normal
}

@media screen and (min-width:768px) {
    .irrigation-system-content {
        font-size: calc(var(--font-20) + 3px);
    }
}

.irrigation-system-content img {
    display: block;
    margin-bottom: .5em;
}

.traditional-irrigation .irrigation-system-content {
    color: #C21D1A;
}

.soildrops-irrigation .irrigation-system-content {
    color: #006AB7;
}

.irrigation-system-image {
    flex: 25%;
    text-align: center;
}

.irrigation-system-image img {
    max-width: 90px;
}
@media screen and (min-width:768px) {
    .irrigation-system-image img {
        max-width: 110px;
    }
    .irrigation-system-image {
        flex: 30%;
    }
}
@media screen and (min-width:1024px) {
    .irrigation-system-image img {
        max-width: 170px;
    }
    .irrigation-system-image {
      flex: 40%;
  }
}

/* Featured Timeline Animation */

#featured-time-line-id .container{
    min-height: 90vh;
    height: auto;
}


/* Scroll Featured Time Line Section Style*/
.featured-time-line-section{
    padding-bottom: var(--spacing-80);
}
.featured-time-image{
    position: relative;
    width: 26vw;
    height: 76vh;
    max-width: 361.8px;
    max-height: 740.7px;
    margin-left: auto;
    margin-right: auto;
    /*padding-block: var(--spacing-80);*/
}

.featured-time-image img {
    /* max-width: 50%; */
    position: absolute;
    width: 100%;
    height: 100%;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    margin-top: 40px;
    /* margin-inline: auto;
    display: block; */
}

.featured-time-image svg {
    /* max-width: 50%; */
    position: absolute;
    width: 100%;
    height: 100%;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    margin-top: 40px;
    /* margin-inline: auto;
    display: block; */
}

@media screen and (min-width:768px) {
  .featured-time-line-section {padding-bottom: 0;}
  .featured-time-image:after{
      content: '';
      border: 3px solid #B1EF18;
      border-style: dashed;
      height: 90vh;
      width: 2px;
      position: absolute;
      right: -40%;
      top: 0;
      bottom: 0;
  }
  .featured-time-image:before {
      content: '';
      border-radius: 50px;
      box-shadow: 0 0 0px 6px #B1EF1896;
      height: 20px;
      width: 20px;
      background: #599D2D;
      position: absolute;
      right: -40%;
      margin-top: 40px;
      margin-right: -7px;
      /* margin-left: 24px; */
      top: 0;
      bottom: 0;
      margin-block: auto;
      z-index: 1;
  }
}

.featured-time-line-content{
    place-content: center;
    height: 100%;
    padding-left: 5em;
}
.featured-time-line-content .title{
    font-size: var(--font-41);
    font-weight: 700;
    color: var(--green);
    font-family: var(--body-font);
    margin-bottom: .5em;
}
.featured-time-line-content .description{
    font-size: var(--font-20);
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 0;
    color: var(--theme-black);
}
@media screen and (min-width:768px){
    .featured-time-line-content .description {
        font-size: calc(var(--font-20) + 3px);
    }
}


/**********************
timeline for mobile Start
***********************/
.featured-time-line-section-mob{
  padding-bottom: var(--spacing-80);
  margin-top: -140px;
}
.featured-time-line-section-mob .featured-time-image-mob{
    position: relative;
    padding-block: var(--spacing-80);
}
.featured-time-line-section-mob .featured-time-image-mob img{
   width: 55%;
  display: block;
  margin-inline: auto;
}
.featured-time-line-content-mob {
  place-content: center;
  margin-top: 25px;
}
.featured-time-line-section-mob .title{
    font-size: 40px;
    font-weight: 700;
    color: var(--green);
    font-family: var(--body-font);
    margin-block:0 .5em;
   line-height:1.1
}
.featured-time-line-section-mob .description{
    font-size: var(--font-20);
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 0;
    color: var(--theme-black);
   line-height:normal
}

.featured-time-line-section-mob .featured-time-image-mob:after {
    content: '';
    border: 1px solid #B1EF18;
    border-style: dashed;
    width: 100%;
    height: 2px;
    position: absolute;
    right: 0;
    top: auto;
    bottom: 20px;
    margin-inline:-30px;
}
.featured-time-line-section-mob .featured-time-image-mob:before {
    content: '';
    border-radius: 50px;
    box-shadow: 0 0 0px 6px #B1EF1896;
    height: 20px;
    width: 20px;
    background: #599D2D;
    position: absolute;
    right: auto;
    top: auto;
    bottom: 14px;
    margin-block: auto;
    z-index: 1;
}
.featured-time-line-section-mob .swiper-wrapper{
    height: auto!important;
}
.featured-time-line-section-mob  .swiper-button-next,
.featured-time-line-section-mob  .swiper-button-prev{
  display:block;
  top: calc(50% - 10em * 1.25);
}
.featured-time-line-section-mob  .swiper-button-next:after,
.featured-time-line-section-mob  .swiper-button-prev:after{
    color: var(--theme-black);
    font-size: 28px!important;
}

/**********************
timeline for mobile End
***********************/

/* watch-grow-section Style Start */
.watch-grow-section {
    background-color: var(--green);
    padding-block: var(--spacing-80);
    overflow: hidden;
    position: relative;
}
.watch-grow-image {
    overflow: hidden;
}
.watch-grow-content .title {
    font-weight: 700;
    font-size: 41px;
    color: var(--theme-green);
    font-family: var(--body-font);
    margin-block: 0 .75em;
   line-height:1.12
}
.watch-grow-content .description {
    font-size: var(--font-20);
    color: var(--white);
    line-height:normal;
    font-family:var(--body-font)
}
@media screen and (max-width:767px) {
    .watch-grow-image{
      position:relative;
      margin-right:-20px;
      margin-top:25px
    }
    .watch-grow-image {
        inset: 0;
        z-index: 0;
    }
}

@media screen and (min-width:768px) {
    .watch-grow-image {
        height: 300px;
        position: absolute;
    }
    .watch-grow-section {
        min-height: 400px
    }

    .watch-grow-content .description {
        font-size: calc(var(--font-20) + 3px);
    }
}

@media screen and (min-width:1024px) {
    .watch-grow-image {
        height: 400px;
    }
    .watch-grow-section {
        min-height: 500px
    }
}

@media screen and (min-width:1280px) {
    .watch-grow-image {
        height: 500px;
    }

    .watch-grow-section {
        min-height: 650px
    }

    .watch-grow-content .title {
        font-size: calc(var(--font-66) - 14px);
    }
}

/***************************************************
How It Work Page Style End
***************************************************/
/***********************
 Box Navigation
 **************************/
 .box-navigation{
    background:#F9F9F9;
    padding-block: 73px  60px;
}
.box-navigation .box-navigation-inner{
    display: flex;
    flex-flow: column;

    justify-content: space-between;
    margin: 0;
    list-style: none;
    padding: 0;
    max-width: 1144px;
    margin-inline: auto;
    gap:24px
}
@media screen and (min-width:660px) {
    .box-navigation .box-navigation-inner {
     flex-flow: row;
    align-items: center;
    }
}
@media screen and (min-width:1280px) {
    .box-navigation .box-navigation-inner {
        gap: 40px
    }
}
.box-navigation .box-navigation-item {
    flex: 1
}
.box-navigation .box-navigation-item a{
    border-radius: 24px;
    border: 1px solid var(--green);
    background: #F9F9F9;
    color: var(--green);
    font-family: var(--body-font);
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    padding: 24px;
    max-width: 360px;
    min-height: 140px;
    display: flex;
    align-items: center;
    transition: all .3s ease-in-out;
    gap: 34px;
    line-height: 1.18;
}
.box-navigation .box-navigation-item a.active,
.box-navigation .box-navigation-item.active a{
    border: 3px solid var(--green);
    background: #ECFBC5;
}
.box-navigation .box-navigation-item a:hover {
    background: #ECFBC5;
}

@media screen and (max-width:991px) {
    .box-navigation .box-navigation-item a {
        gap: 24px;
    }
    .box-navigation .box-navigation-item a img{
        height: 60px;
    }
    .box-navigation {
        padding-block: 55px 40px;
    }
}
@media screen and (max-width:880px) {
    .box-navigation .box-navigation-item a {
        padding: 16px;
        font-size: 20px;
        min-height: 100px
    }
    .box-navigation .box-navigation-item a img {
        height: 45px;
    }
}
@media screen and (max-width:660px) {
    .box-navigation {
        padding-block: 40px;
    }
    .box-navigation .box-navigation-item a{
        max-width: 100%;
        min-height: 60px;
        justify-content: center;
        font-size: 26px;
        gap:12px;
        padding: 6px;
    }
    .box-navigation .box-navigation-item a span{
       width: 175px;
    }
    .box-navigation .box-navigation-item a img {
        height: 40px;
    }
}

.content-detail-section{
    margin-bottom: 80px;
}

/************************************
 Common Search Section
********************************* */
.sr-only {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.common-search-section {
    margin-bottom: 32px;
}

.common-search-section .search-title {
    color: var(--green);
    text-align: center;
    font-family: var(--body-font);
    font-size: 32px;
    font-weight: 700;
    margin-block: 32px;
}

@media screen and (min-width:660px) {
    .common-search-section .search-title {
        font-size: 36px;
    }

    .common-search-section {
        margin-bottom: 44px;
    }
}

@media screen and (min-width:992px) {
    .common-search-section .search-title {
        font-size: 44px;
    }

    .common-search-section {
        margin-bottom: 52px;
    }
}

@media screen and (min-width:1140px) {
    .common-search-section .search-title {
        font-size: 52px;
    }

    .common-search-section {
        margin-bottom: 68px;
    }
}

.common-search-bar {
    width: 100%;
    position: relative;
    margin-inline: auto;
}


 .common-search-bar input {
    border-radius: 60px;
    border: 2px solid var(--green);
    padding: 14px 24px 14px 60px;
    font-family: 'Poppins';
    font-size: calc(var(--font-20) + 3px);
    font-weight: 400;
    width: 100%;
    box-shadow: none;
    outline: none;
}
.common-search-bar input::placeholder {
    color: #818181;
}

@media screen and (min-width:660px) {
    .common-search-section .search-title {
        font-size: 36px;
    }

    .common-search-bar input {
        padding: 14px 24px 14px 70px;
    }
    .common-search-bar::after {
        left: 30px;
        height: 26px;
        width: 26px;
    }
    .common-search-bar {
        max-width: 550px;
    }
}

@media screen and (min-width:992px) {
    .common-search-section .search-title {
        font-size: 44px;
    }

    .common-search-bar input {
        padding: 19px 48px 19px 90px;
    }
    .common-search-bar::after {
        left: 50px;
        height: 26px;
        width: 26px;
    }
    .common-search-bar {
        max-width: 700px;
    }
}

@media screen and (min-width:1140px) {
    .common-search-section .search-title {
        font-size: 52px;
    }
    .common-search-bar {
        max-width: 872px;
    }
}
.faq-search-mobile{
    margin-top: 32px;
}


/****************************
 Faq Tabs
***************************************/
.faq-tabs{
    display: flex;
    width: 100%;
    padding: 16px 40px;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    gap: 12px;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
}
@media screen and (min-width:768px) {
    .faq-tabs {
        padding: 40px;
        max-width: 336px;
    }
}
.faq-tabs button{
    color: var(--dark);
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 600;
    padding: 5px 12px 5px 10px;
    width: 100%;
    text-align: left;
}
.faq-tabs button.active {
    color: var(--theme-black);
    font-weight: 700;
    background: #ECFBC5;
}
.faq-tabs button:hover {
    color: var(--theme-black);
}

.faq-tab-content{
    font-family: var(--body-font);
    font-size: var(--font-18);
    color: var(--theme-black);
    font-weight: 400;
    margin-block: 32px;
}
.faq-tab-content .accordion-button{
    color: var(--green);
    font-size: 18px;
    font-weight: 700;
    padding-inline: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding-block: 24px;
}
.faq-tab-content .accordion-item{
    border-color: var(--green);
}
.faq-tab-content .accordion-body {
    padding: 0px 0px 20px 0;
}





/********************************
Tutorials Card
*********************************** */
.tutorials-detail-card{
    margin-bottom: calc(var(--spacing-80) - 18px);
    display: flex;
    flex-flow: column-reverse;
    text-decoration: none;
    width: 100%;
    gap:32px
}
.tutorials-detail-card .tutorials-card-thumbnail{
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0px 2.23px 4.461px 0px rgba(0, 0, 0, 0.20);
}
.tutorials-detail-card .tutorials-card-thumbnail img {
    object-fit: cover;
    width: 100%;
    border-radius: 11.832px;
    box-shadow: 0px 2.23px 4.461px 0px rgba(0, 0, 0, 0.20);
}
.tutorials-card-content .tutorials-card-title{
    color: var(--green);
    font-family: var(--body-font);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-24) - 2px);
    display:block;
    line-height: 1.17;
}
.tutorials-update-date{
    color: var(--theme-black);
    font-family: var(--body-font);
    font-size: var(--font-20);
    margin-bottom: 0px;
}
@media screen and (min-width:768px) {

    .tutorials-card-content .tutorials-card-title {
        margin-bottom: var(--spacing-24);
    }
    .tutorials-detail-card {
        margin-bottom: calc(var(--spacing-80) - 10px);
        flex-flow: column;
        gap:var(--spacing-24);
    }
}
@media screen and (min-width:1024px) {
    .tutorials-update-date {
        font-size: calc(var(--font-20) + 3px);
    }
    .tutorials-detail-card {
        margin-bottom:var(--spacing-80);
        gap:40px;
    }
}
/* tutorials-detail-card End */

/************** sensor animation css start ********************/

.canvas-container-sensor {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    /* background: linear-gradient(180deg, #ECFBC5 0%, #FFFFFF 61.33%); */
}

.canvas-container-sensor .animation-sensor {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    object-fit: contain;
}

.canvas-container-sensor .main-heading {
     font-family:var(--body-font);
     font-weight: bold;
    color:#006AB7;
    font-size: 3.6vw;
    position: absolute;
    top: 20px;
    left: 0;
    text-align: center;
    width: 100%;
}

.p-div-sensor {
     font-family:var(--body-font);
    color: #006AB7;
    font-size: 22px;
    text-align: left;
    width: 240px;
    height: auto;
    opacity: 0;
}

.p-p-sensor {
    margin-top: 10px;
    font-family:var(--body-font);
    font-size: 14px;
    color: #000000;
    font-weight: lighter;
}

.p-p-sensor span {
     font-family:var(--body-font);
}

#p-1-sensor,#p-2-sensor {
    position: absolute;
    top: 50%;
    right: 14%;
}

#p-3-sensor,#p-4-sensor {
    position: absolute;
    top: 30%;
    left: 12%;
}

.bg-waves-sensor {
    position: absolute;
    top: 0;
    width: 100vw;
    height: auto;
}

.bg-waves-sensor svg {
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}

.intro-heading-div-sensor {
    position: absolute;
    top: 38%;
     font-family:var(--body-font);
    color: #006AB7;
    width: 100%;
    text-align: center;
}

.intro-heading-div-sensor .h1-sensor {
    font-size: 5.8vw;
    word-spacing: 8vw;
    font-weight: bold;
}

#notification {
    transform: center center;
}

.waves-2-sensor-div{
    width: 100vw;
    height: auto;
    position: absolute;
    top:0;
    left:0;
    opacity: 0;
}

.waves-2-sensor-div img{
    width: 100%;
    height: 100%;
}

.p-h-sensor{
    font-weight: bold;
}

.p-p-sensor{
    font-weight: normal;
}

@media (min-width:1800px){
    #p-1-sensor,#p-2-sensor {
        right: 22%;
    }
    
    #p-3-sensor,#p-4-sensor {
        left: 20%;
    }
}

@media(max-width:1000px){
    #p-1-sensor,#p-2-sensor {
        position: absolute;
        top: 50%;
        right: 8%;
    }
}

@media (max-width: 960px) {

    .p-div-sensor {
        font-size: 16px;
        width: 160px;
    }
    
    .p-p-sensor { 
        font-size: 14px;
    }
    
}

@media (max-width: 760px) {

    .p-div-sensor {
        font-size: 14px;
        width: 160px;
    }
    
    .p-p-sensor { 
        font-size: 12px;
    }
    
}

@media (max-width: 860px) {
    .p-div-sensor {
        width: 160px;
    }

    #p-1-sensor,#p-2-sensor {
        position: absolute;
        top: 50%;
        right: 12%;
    }

}

@media screen and (max-width:700px){

    .intro-heading-div-sensor .h1-sensor{
        font-size: 32px;
        word-spacing:normal;
    }

    .canvas-container-sensor .main-heading {
        top: 40px;
        font-size: 26px;
        text-align: left;
        left: 6%;
        width: 85%;
        line-height: 1.3;
        display:none;
    }
    .canvas-container-sensor .animation-sensor {
        position: absolute;
        left: 50%;
        top: 30%;
        transform: translate(-50%,-30%);
        width: 200%;
        height: 60%;
        object-fit: contain;
    }

  .p-h-sensor {
    font-size: 23px;
    width: 100vw;
    text-align: center;
    line-height: 1.3!important;;
  }

  .p-p-sensor {
    font-size: 16px;
    margin-top: 0px;
    line-height: 1.4;
}

  #p-1-sensor,#p-2-sensor,#p-3-sensor,#p-4-sensor {
    left: 0;
    width: 100vw;
    right: 0;
    text-align: center;
    /* background-color: red; */
    bottom:inherit;
    height: 100vh;
    top:0px;
  }

  #p-1-sensor .p-h-sensor,
  #p-2-sensor .p-h-sensor,
  #p-3-sensor .p-h-sensor,
  #p-4-sensor .p-h-sensor{
      position: absolute;
      top:40px;
  }

  #p-1-sensor .p-p-sensor,
  #p-2-sensor .p-p-sensor,
  #p-3-sensor .p-p-sensor,
  #p-4-sensor .p-p-sensor{
      position: absolute;
      top:73%;
      text-align: center;
  }

}

/************** sensor animation css end ********************/


.box-navigation-item.active.fixed{
    position: fixed;
    left: 20px;
    right: 20px;
    top: 0;
}

/************************************************
Landing Page Start
 ******************************************* */
 .container-sm{
    max-width: 1200px;
}

.simplified-section{
    background-position: center bottom!important;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    padding-block: var(--spacing-80) calc(var(--spacing-80) + 4em);
    color: var(--white);
}
.simplified-content-section .title{
    color: var(--white);
    font-family: var(--body-font);
    font-size: var(--font-41);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}
.simplified-content-section .description{
    font-size: var(--font-18);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 15px;
    line-height: normal;
}
.simplified-content-section .green-btn{
    min-height: 45px;
    padding: 10px;
    border-radius: 20px;
    border: none;
    outline: none;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
    background-color: var(--theme-green);
    color: var(--theme-black);
    transition: .3s;
}
.simplified-content-section .green-btn:hover {
    opacity: .75;
}
.form-input{
    background-color: var(--white);
    color: var(--theme-black);
    width: 100%;
    min-height: 45px;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    outline: none;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.simplified-specific-point{
    margin-block:20px 10px;
    padding-left: 0;
    list-style: none;
}
.simplified-specific-point li{
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 300;
    color: var(--white);
    opacity: .9;
}
@media screen and (max-width:767px) {
    .simplified-content-section{
        margin-top: 35px;
    }
}


/****************************
 Transform Your Landscape with SoilDrops Section Start
********************************************/
.light-bg {
    position: relative;
}

.transform-soildrops-section {
    padding-block: var(--spacing-80);
}

.transform-soildrops-section .title {
    font-weight: 700;
    font-family: var(--body-font);
    font-size: var(--font-41);
    margin-bottom: 15;
    color: var(--green);
    line-height: 1.4;
    text-align: center;
}

.transform-soildrops-inner {
    flex-direction: column-reverse;
    padding-top: 30px
}

@media screen and (min-width:767px) {
    .transform-soildrops-inner {
        flex-direction: row;
        padding-top: var(--spacing-80);
    }
}

.transform-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 35px;
}

.transform-card {
    text-align: center;
    max-width: 140px;
    margin-top: 14px;
}

.transform-card img {
    max-width: 70px;
    max-height: 60px;
    text-align: center;
    margin-bottom: 8px;
}

@media screen and (min-width:767px) {
    .transform-card-container {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
    }

    .transform-card img {
        max-width: 70px;
        max-height: 60px;
        text-align: center;
        margin-bottom: 14px;
    }

    .transform-card {
        margin-top: var(--spacing-24);
    }
}


/****************************
 Traditional Watering Section Start
********************************************/

.light-bg:before{
    background: linear-gradient(180deg, #FFF -25%, #E1F9A5 60.5%, #D8F78C 84.5%, #B1EF18 125%);
    opacity: 0.2;
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.traditional-watering-section{
    padding-block: var(--spacing-80);
    position: relative;
}
.traditional-content-section .title {
    color: var(--green);
    font-family: var(--body-font);
    font-size: var(--font-41);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: center;
}

.traditional-content-section .description {
    font-size: var(--font-18);
    font-weight: 400;
    color: #2B2B2B;
    margin-bottom: 0px;
    line-height: normal;
    text-align: center;
}

@media screen and (min-width:768px) {
    .traditional-content-section .description {
        padding-inline: var(--spacing-24);
    }
}
.traditional-two-box{
    margin-top: 35px;
}
.image-box,.image-big-box{
    border-radius: 14px;
    padding: 20px;
    background-position: center!important;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    color: var(--white);
    font-family: var(--body-font);
    font-size: var(--font-20);
    font-weight: 400;
    margin-bottom: 0;
    display: flex;
    justify-content: start;
    align-items: end;
    flex: 1;
    min-height: 280px;
}
.image-big-box{
    margin-top: 1.5em;
}
@media screen and (min-width:767px) {
    .image-big-box{
        height: 450px;
        margin-top: 0;
    }
}
.green-box{
    background-color: var(--theme-green);
    border-radius: 14px;
    padding: 20px;
    font-size: calc(var(--font-20) + 4px);
    font-weight: 700;
    font-family: var(--body-font);
    color: var(--dark);
    text-align: center;
    margin-top: .75em;
}
.traditional-compare-box{
    display: flex;
    flex-flow: column;
    height: 100%;
}


/***********************
 SoilDrops Solution Section Start
***************************** */

.soildrops-solution-section{
    padding-block: var(--spacing-80);
}
.solution-content-section .title {
    color: var(--green);
    font-family: var(--body-font);
    font-size: var(--font-41);
    font-weight:700;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: center;
}
.solution-content-section .description {
    font-size: var(--font-18);
    font-weight: 400;
    color: #2B2B2B;
    margin-bottom: 0px;
    line-height: normal;
    text-align: center;
}
@media screen and (min-width:768px) {
    .solution-content-section .description {
        padding-inline: var(--spacing-24);
    }
}
.solution-slider{
    margin-top:35px;
}
.solution-slide-description{
    font-size: var(--font-18);
    font-weight: 400;
    color: #2B2B2B;
    margin-block:15px 0px;
    line-height: normal;
    text-align: center;
}

.solution-slider .swiper-wrapper{
    height: auto;
    padding-bottom: 4rem;
}
.solution-slider .swiper-wrapper .swiper-slide img {
    min-height: 200px;
    object-fit: cover;
    border-radius: 20px;
}
.solution-slider .swiper-pagination-bullet-active{
    background-color: #BCBCBC;
}
.solution-slider :is(.swiper-button-prev,.swiper-button-next){
    background-color: #BCBCBC;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    top: auto;
    bottom: 0;
}
.solution-slider :is(.swiper-button-prev, .swiper-button-next):after {
    font-size: 15px;
    color: var(--white);
    padding-left: 10px;
}

.solution-slider .swiper-button-prev {left: calc(50% - 6em)}
.solution-slider .swiper-button-next {right: calc(50% - 6em)}
.solution-slider .swiper-pagination{bottom: 1px;z-index: 0;}



/******************
 Pre Order Section Start
****************************/
.pre-order-section {
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding-bottom: 40px;
    color: var(--white);
}
.pre-order-section .row {
    align-items: center;
}
@media screen and (min-width:992px){
    .pre-order-section .row {
        align-items: end;
    }
    .pre-order-section {
        padding-block: 40px;
    }
}
.pre-order-section .simplified-content-section {
    margin-top: 40px;
}
@media screen and (min-width:767px) {
   .pre-order-section .simplified-content-section {
        margin-top: 80px;
    }
}

.pre-order-section .title {
    color: var(--white);
    font-family: var(--body-font);
    font-size: var(--font-41);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.5;
}

.pre-order-section .description {
    font-size: var(--font-18);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 15px;
    line-height: normal;
}

.pre-order-section .green-btn {
    min-height: 45px;
    padding: 10px;
    border-radius: 20px;
    border: none;
    outline: none;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
    background-color: var(--theme-green);
    color: var(--theme-black);
    transition: .3s;
}

.pre-order-section .green-btn:hover {
    opacity: .75;
}

.form-input {
    background-color: var(--white);
    color: var(--theme-black);
    width: 100%;
    min-height: 45px;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    outline: none;
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.simplified-specific-point {
    margin-block: 20px 10px;
    padding-left: 0;
    list-style: none;
}

.simplified-specific-point li {
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 300;
    color: var(--white);
    opacity: .9;
}

@media screen and (max-width:767px) {
    .pre-order-section {
        margin-top: 35px;
    }
}


/*************************
 Application Setup Section Start
 ************************************** */
.setup-application-section{
    padding-block:calc(var(--spacing-80) - 20px) var(--spacing-80);
}
.setup-application-section .row{
    justify-content: center
}
.setup-application-section .application-content{
    display: flex;
    gap: 10px;
    margin-top: 25px;
}
.application-featured{
    width: 50%;
}
.application-featured .application-featured-box{
    border-radius: 20px;
    padding: 20px 15px;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: var(--font-20);
    min-height: 140px;
    display: flex;
    justify-content: center;
    flex-flow: column;
    background: #F8F8F8;
    margin-top: 10px;
    line-height: 1.4;
}
@media screen and (min-width:768px) {
    .application-featured .application-featured-box {
        min-height: 180px;
        margin-top: 15px;
    }
    .setup-application-section .application-content {
        gap: 15px;
        margin-top: 0;
    }
}
.application-featured .application-featured-box img{
    max-width: 45px;
    margin-left: auto;
    margin-top: var(--spacing-24);
}
.application-featured .application-featured-box.black{
    background-color: var(--dark);
    font-weight: 600;
    color: var(--white);
    font-size: calc(var(--font-20) + 2px);
}
.application-featured .application-featured-box.green {
    background-color: var(--theme-green);
    font-weight: 600;
    font-size:var(--font-20);
}
@media screen and (min-width:768px) {
    .application-featured .application-featured-box:is(.black,.green){
        font-size: calc(var(--font-20) + 4px);
    }
    .application-featured .application-featured-box img {
        max-width: 60px;
    }
}

.application-featured .application-title{
    margin-block: var(--spacing-24);
    font-size: calc(var(--font-20) + 2px);
}


/* Pre Order Booking */
.pre-order-booking{
    background: var(--theme-green);
    margin-block: var(--spacing-80);
}
.pre-order-booking .row{
    align-items: center;
    justify-content: center;
}
@media screen and (max-width:767px) {
    .pre-order-booking .row {
        flex-direction: column-reverse;
    }

    .banner-box {
        display: none !important;
    }
}
.pre-order-inner .pre-order-btn{
    background: var(--white);
    color: var(--dark);
    font-weight: 700;
    font-size: calc(var(--font-20) + 4px);
    font-family: var(--body-font);
    text-decoration: none;
    padding: 7px 10px 7px 25px;
    border-radius: 50px;
    display: flex;
    width: fit-content;
    align-items: center;
    transition: all .3s ease-in-out;
    border: 2px solid var(--white);
    margin:var(--spacing-24) auto;
}
@media screen and (min-width:992px) {
    .pre-order-inner .pre-order-btn {
        font-size: calc(var(--font-20) + 10px);
    }
}

.pre-order-inner .pre-order-btn:hover {
    background: var(--theme-green);
    color: var(--theme-black);
    border-color:var(--theme-black)
}
.pre-order-inner .pre-order-btn:hover:after {
    background-color: var(--theme-black)
}
.pre-order-product-image {
    margin-top: -40px;
}

@media screen and (min-width:767px) {
    .pre-order-product-image {
        margin-block: -40px;
    }
    .pre-order-inner .pre-order-btn {
        margin-inline: 0;
    }
}



/******************
 Built for Any Landscape Section
 **********************************/
.landscape-section{
    padding-block: var(--spacing-80);
    overflow: hidden;
}
.landscape-slider{
    margin-top: 35px;
    overflow: visible;
    padding-bottom: var(--spacing-80);
}
.landscape-slider .swiper-wrapper{
    height: fit-content;
}
.landscape-slider-card:hover .landscape-inner-btn{
    opacity: 1;
}
.landscape-card-inner{
    background-repeat: no-repeat !important;;
    background-position: center !important;;
    background-size: cover!important;
    background-color: var(--dark);
    position: relative;
    z-index: 1;
    border-radius: 14px;
    overflow: hidden;
}
.landscape-card-inner:before {
    content: '';
    background-color: rgba(0, 0, 0, 0.30);
    position: absolute;
    inset: 0;
    z-index: -1;
}
.landscape-content .title {
    color: var(--green);
    font-family: var(--body-font);
    font-size: var(--font-41);
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}
.landscape-content .description {
    font-size: var(--font-18);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: normal;
    text-align: center;
}
.landscape-card-inner{
    border-radius: 20px;
    padding: 14px;
    min-height: 350px;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
}
.landscape-inner-btn{
    display: flex;
    align-items: center;
    justify-content: start;
    background: transparent;
    border: none;
    transition: all .3s ease-in-out;
}
@media screen and (min-width:768px) {
    .landscape-inner-btn {
        opacity: 0;
    }
}
.landscape-inner-btn span{
    background-color: var(--theme-green);
    padding: 7px 14px;
    border-radius: 50px;
    color: var(--dark);
    font-size: var(--font-18);
    font-weight: 700;
    font-family: var(--body-font);
    display: inline-block;
}

.landscape-card-content .landscape-card-title{
    font-size: calc(var(--font-20) + 4px);
    font-weight: 600;
    font-family: var(--body-font);
    color: var(--dark);
}
.landscape-card-description {
    font-size: var(--font-18);
    font-weight: 400;
    font-family: var(--body-font);
    color: var(--dark);
}

.landscape-slider .swiper-pagination-bullet-active {
    background-color: #BCBCBC;
}

.landscape-slider :is(.swiper-button-prev, .swiper-button-next) {
    background-color: #BCBCBC;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    top: auto;
    bottom: 0;
}
.landscape-slider :is(.swiper-button-prev, .swiper-button-next):after {
    font-size: 15px;
    color: var(--white);
    padding-left: 10px;
}

.landscape-slider .swiper-button-prev {left: calc(50% - 6em)}
.landscape-slider .swiper-button-next {right: calc(50% - 6em)}
.landscape-slider .swiper-pagination{bottom: 1px;z-index: 0;}




/******************
 Spec Section Start
 ********************** */
.spec-section{
    padding-block: var(--spacing-80);
}
@media screen and (min-width:1024px) {
    .spec-section {
        padding-bottom: calc(var(--spacing-80) * 2);
    }
}
.spec-content .title{
    font-size: var(--font-41);
    font-weight: 700;
    font-family: var(--body-font);
    color: var(--green);
    margin-bottom: 15px;
    text-align: center;
}
.spec-content-image{
    margin-top: 35px;
}

/*******************
Easy Installation,
Powerful Results Section Start
**************************** */

.installation-section{
    padding-block: var(--spacing-80);
}
.installation-card-container{
    margin-top: 15px;
}
.installation-inner .title{
    font-size: var(--font-41);
    font-weight: 700;
    font-family: var(--body-font);
    color: var(--green);
    margin-bottom: 15px;
    text-align: center;
}
.installation-inner .description {
    font-size: var(--font-18);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: normal;
    text-align: center;
}
.installation-card{
    min-height: 340px;
    background-repeat: no-repeat !important;;
    background-position: center !important;;
    background-size: cover!important;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}
.card-widget-content{
  padding: 20px;
}
.installation-card-title{
    font-weight: 600;
    font-family: var(--body-font);
    font-size: calc(var(--font-20) + 2px);
    margin-bottom: 0;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 10px;
}
.installation-card-description {
    font-weight: 400;
    font-family: var(--body-font);
    font-size: var(--font-18);
    margin-bottom: 0;
    color: var(--dark);
    line-height: 1.4;
}
.installation-card-widget{
    background:#F8F8F8;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    align-items: center;
    flex: 1;
    gap:20px
}
.installation-card-widget .card-widget-content {
    padding: 0;
}
.installation-card-widget:first-child {
    background: linear-gradient(180deg, #f8f8f833 -25%, #e1f9a53a 60.5%, #d8f78c33 84.5%, #b1ef1833 125%);
}
.installation-card-widget img {
    max-width: 80px;
}
@media screen and (min-width:992px) {
    .installation-card-widget {
        padding: 20px;
    }
    .installation-card-widget img {
        max-width: 100px;
    }
}
.card-widget-title {
    font-weight: 700;
    font-family: var(--body-font);
    font-size: calc(var(--font-20) + 4px);
    margin-bottom: 0;
    color: var(--dark);
    line-height: 1.4;
}
.card-widget-description{
    font-weight: 400;
    font-family: var(--body-font);
    font-size: var(--font-18);
    color: var(--dark);
    margin-block:15px 0px
}





.our-mission-section{
    background-color: var(--theme-black);
    padding-block: var(--spacing-64);
}
.our-mission-section .title{
    font-family: var(--body-font);
    font-size: calc(var(--font-20) + 8px);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: normal;
    color: var(--white);
}
.our-mission-section .description {
    font-size: var(--font-18);
    font-family: var(--body-font);
    line-height: normal;
    color: var(--white);
    margin-bottom: 0;
}

/************************************************
Landing Page End
 ******************************************* */

   .swiper-button-prev {
        display: block !important;
    }
    .swiper-button-next{
       display: block !important;
    }

 @media screen and (min-width:768px) {
      .watering-simplified-section::after {
          min-height: 65%
      }
  }

  .watering-simplified-section .row {
      align-items: center;
  }

  .watering-simplified-section .top-title {
      display: inline-flex;
      align-items: center;
      color: var(--white);
      margin-bottom: var(--spacing-24);
  }

  .watering-simplified-section .top-title img {
      flex-shrink: 0;
  }

  .watering-simplified-section .top-title span {
      font-family: var(--body-font);
      font-size: max(var(--font-41), 32px);
      font-weight: 400;
      margin-bottom: 0;
      padding-left:7px;
  }

  .watering-simplified-section .title {
      color: var(--white);
      font-family: var(--body-font);
      font-size: var(--font-41);
      font-weight: 700;
      margin-block: 0px 15px;
  }

  .watering-simplified-section .description {
      font-size: var(--font-18);
      font-weight: 400;
      color: var(--white);
      margin-bottom: 15px;
      line-height: normal;
  }

  .watering-simplified-section .row .watering-simplified-form {
      margin-block: 30px 20px
  }

  .watering-simplified-section .row .watering-simplified-form .vm_form_submit,
  button.vm_form_submit {
      background: #b1f01a !important;
  }

  .watering-simplified-section .offer-point {
      list-style: none;
      margin-top: var(--spacing-24);
      color: var(--theme-black);
      font-family: var(--body-font);
      font-weight: 400;
      font-size: var(--font-18);
      padding-left: 0;
  }

  @media screen and (max-width:767px) {
      .watering-simplified-image {
          margin-top: 0px;
          margin-bottom: 35px;
      }
      .watering-simplified-section .offer-point {
           color: var(--theme-black);
      }
  }

  .care-section {
      background: linear-gradient(180deg, rgba(236, 251, 197, 0.5), #fff 100%);
      padding-top: var(--spacing-80);
  }

  .get-started-section .get-started-inner {
      text-align: center;
      font-family: var(--body-font);
  }

  .care-inner {
      align-items: flex-start;
      position: relative;
      justify-content: center;
  }
  

  .care-section .care-content {
      text-align: center;
      padding-inline: 1.5rem;
      margin-top: 5.5rem;
  }
  @media screen and (min-width:992px) {
      .care-section .care-content {
          place-self: center;
          margin-top: 0;
      }
  }
  .care-content .care-content-box .top-title {
      color: var(--green);
      font-family: var(--body-font);
      font-size: calc(var(--font-41) - 10px);
      font-weight: 600;
      margin-block: 0px 15px;
      display: inline-block;
  }

  .care-content .care-content-box .sub-title {
      color: var(--green);
      font-family: var(--body-font);
      font-weight: 600;
      font-size: calc(var(--font-41) - 8px);
  }

  @media screen and (min-width:992px) {
      .care-content .care-content-box .sub-title {
          font-size: 24px!important;
      }
  }

  .care-content .care-content-box .sub-title {
      color: var(--green);
      font-family: var(--body-font);
      font-weight: 600;
      font-size: calc(var(--font-41) - 8px);
  }




  .care-content .care-content-box .title {
      color: var(--green);
      font-family: var(--body-font);
      font-size: 28px;
      font-weight: 700;
      margin-block: 0 16px;
      line-height: 1.2;
  }


  @media screen and (min-width:768px) {
      .care-content .care-content-box .title {
          font-size: 36px;
          margin-block: 0 20px;
          font-weight: 700;
      }
  }

  @media screen and (min-width:1024px) {
      .care-content .care-content-box .title {
          font-size: 40px;
      }
  }

  @media screen and (min-width:1280px) {
      .care-content .care-content-box .title {
          font-size: 45px;
      }
  }


  .care-content .care-content-box .description {
      color: var(--theme-black);
      font-family: var(--body-font);
      text-align: center;
      font-size: var(--font-18);
      font-weight: 400;
      line-height: normal;
      margin-block: 1rem 0rem;
  }

  @media screen and (min-width:992px) {
      .care-content .care-content-box .top-title {
          margin-block: 0px 20px;
      }
      .care-content .care-content-box .description {
          line-height:2;
          margin-block:2rem;
      }
  }

  .care-content-img-grid {
      display: grid;
      gap: .5rem;
      order: -1;
      margin-bottom: 3rem;
  }

  @media screen and (min-width:992px) {
      .care-content-img-grid {
          gap: .75rem;
          order: 2;
          margin-bottom: 0;
      }
  }

  .care-content-img {
      border-radius: 20px;
      overflow: hidden;
  }

  .care-content-img img {
      object-fit: cover;
  }

  .care-content-img-grid.in-it {
      grid-template-columns: repeat(2, 1fr);
  }

  @media screen and (min-width:992px) {
      .care-content-img-grid.in-it {
          grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
  }

  .care-content-img-grid.in-it .care-content-img img {
      min-height: 120px;
      max-height: 300px;
  }

  .care-sensor-image {
      display: none;
  }

  @media screen and (min-width:992px) {
      .care-sensor-image {
          text-align: right;
          display: block;
      }
      .care-mob-image {
          margin-top: 50px;
      }
  }

  .care-sensor-md-image {
      width: 320px;
   
  }
  @media screen and (min-width:768px){
      .care-sensor-md-image{
          width: 500px;
      }
  }



  .plantcare-slider :is(.swiper-button-prev, .swiper-button-next) {
      top: auto;
      bottom: 0;
  }

  .plantcare-slider :is(.swiper-button-prev, .swiper-button-next):after {
      font-size: 2rem;
      color: #000;
  }

  .plantcare-slider .swiper-button-next {
      right: calc(45% - 2em);
  }

  .plantcare-slider .swiper-button-prev {
      left: calc(45% - 2em);
  }



   .plantcare-slider :is(.swiper-button-prev, .swiper-button-next) {
       top: 425px;
   }

  @media screen and (min-width:768px) {
      .plantcare-slider :is(.swiper-button-prev, .swiper-button-next) {
          top:660px;
      }
  }
  @media screen and (min-width:992px) {
      .plantcare-slider :is(.swiper-button-prev, .swiper-button-next) {
          top: auto;
      }
      .plantcare-slider .swiper-button-next {
          right: calc(50% - 5em);
      }
      .plantcare-slider .swiper-button-prev {
          left: calc(50% - 5em);
      }
    
     .banner{
        margin-left: 46px;
      }
  }

  .plantcare-slider .swiper-wrapper {
      height: auto;
      padding-bottom: 4rem;
  }


  .inquiry-form {
      padding-top: max(var(--spacing-48), 40px)
  }

  @media screen and (max-width:768px) {
      .inquiry-form {
          padding-bottom: 2.5rem;
      }
  }

  .banner-box {
      background-color: var(--green);
      text-align: center;
      opacity: 1;
      display: block;
  }
 
  .discount-offer-strip {
      background-color: var(--green);
      text-align: center;
      color: var(--white);
     
     
  }
  
 

  #vm-banner-signup {
      display: none;
  }
  .no-bg{
      background: none;
  }

   #map {
        height: 500px;
        width: 100%;
        border-radius:20px
      }
      #controls {
        margin-bottom: 10px;
      }
      .map_input{
        outline: .2rem solid rgba(18,18,18, .5);
      }
      .green-btn {
        min-height: 45px;
        border-radius: 20px;
        border: none;
        outline: none;

        display: inline-block;
        margin-top: 15px;
        background-color: var(--theme-green);
        color: var(--theme-black);
        transition: .3s;
    }
    .form-input{
      padding: 0px 20px;
    }
    .map_description{
      font-size: 26px;
      color: var(--theme-black);
      font-family: var(--body-font);
      text-align: center;
      font-size: 18px;
      margin-bottom: 16px;
      line-height: 1.38;
    }
    .kickstarter-page .lottie-container .animation {
      top:25% !important;
    }
    .kickstarter-heading{
      top:60px !important;
    }
    .text-image-wrapper {
      display: inline-flex; 
      align-items: center; 
      gap: 2px; 
    }
    .feature-box {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  .feature-box img {
      width: 100%;
      border-radius: 8px;
  }
  .text-content {
      padding: 20px;
  }
  .icon {
      font-size: 30px;
      color: #2c6e49;
  }
    
  .text-content h3 {
      font-family: var(--body-font);
      font-weight: 400;
      font-size: 30px;
      line-height: 1.3;
      vertical-align: middle;
      color: #024942;
  }
   @media screen and (min-width:768px){
      .text-content h3 {
        font-size: 32px;
      }
    }
   @media screen and (min-width:1024px){
      .text-content h3 {
        font-size: 41px;
      }
    }
  
 .text-content p {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.kickstarter-page-banner {
   height: 80px;
}


/* 18-03-2025 Kickstarted Section Style */

.kickstarted-section .text-content h3 {
  margin-bottom: .35em
}
.kickstarted-section .text-content img {
    max-width:40px
}

@media screen and (min-width:992px){
  .kickstarted-section .text-content img {
    max-width:60px
  }
  .kickstarted-section {
    padding-block: 1.5em;
  }
}
@media screen and (min-width:1024px){
  .kickstarted-section .text-content h3 {
    margin-bottom: .65em
  }
  .kickstarted-section .text-content img {
    max-width:80px
  }
  .kickstarted-section .text-content {
      max-width: 480px;
      margin-inline: auto;
  }
}

/*Landing page Hero section start*/
.landing-hero{
      font-family: var(--body-font);
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 750px;
    background:url("/cdn/shop/t/7/assets/Landing-hero.jpg") no-repeat center center;
  background-size:cover;
    display: flex;
  position: sticky;
    top: 0;
    left: 0;
  padding:120px 0;
}
.landing-hero .heading{
    font-size:60px;
    font-weight:700;
    margin:0;
    padding:0;
    color:#FFF;
}
 @media (max-width: 992px) {
   .landing-hero .heading{
     font-size:50px;
   }
 }
 @media (max-width: 767px) {
   .landing-hero{
     align-items: flex-start;
     height:595px;
     background:url("/cdn/shop/t/7/assets/landing-mob-hero.png?v=1744423005") no-repeat center right;
     padding-top:50px;
   }
   .landing-hero .heading{
        font-size: 38px;
        color: #024942;
        line-height: 1.1;
        padding-left: 10px;
   }
 }

.green-bg-section-blank{
  background-color:#024942;
  height:100px;
  width:100%;
  position: relative;
  overflow:hidden;
  text-indent:-99999px;
}
 @media (max-width: 767px) {
   .green-bg-section-blank{
     height:30px;
   }
 }
/*Landing page Hero section end*/

.social-icons a {
    text-decoration: none;
}

.social-icons img {
    width: 32px;
    height: 32px;
    margin-left: 10px;
}
.support-email  {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.support-email a {
    color: #fff !important;
    text-decoration: none;
}

.list-social__item .icon {
  font-size: 40px !important;
  color: #fff !important;
}

.svg-wrapper {
  font-size: 40px !important;
  width: 40px !important; 
  height: 40px !important;
}


/*Landing page slider section start*/   
  .carousel-slider{
    width:100%;
    background: #024942;
    position: relative;
    padding: 80px 0;
  }
/* .carousel-slider .swiper {
  overflow: visible;
} */
.carousel-slider .slide-inner{
    max-width: 872px;
    margin: 0 auto;
}
.carousel-slider h2{
  text-align: center;
  color: #B1EF18;
  font-size: 52px;
  font-weight: 700;
  margin: 0;
  padding: 0 20px 45px 20px; 
}

   .carousel-slider .swiper-slide img{
     border-radius: 16px;
   }
.carousel-slider .caption-box{
  margin-top: 30px;
  line-height: 1.5;
}
.carousel-slider .caption-box h3{
  color: #B1EF18;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  padding: 0 0 10px 0;
} 
.carousel-slider .caption-box p{
  color: #FFF;
  margin: 0;
  padding: 0;
}

.carousel-slider .swiper-pagination{
    position: static;
    display: none;
}
.carousel-slider .swiper-pagination-bullet{
    width: 9px;
    height: 9px;
    background: #D9D9D9;
    opacity:1;
    border-radius: 10px;
  transition: all 0.5s ease;
}
.carousel-slider .swiper-pagination-bullet.swiper-pagination-bullet-active{
  width: 37px;
}
.carousel-slider .thumb-swiper-unique .swiper-wrapper{
  justify-content: center;
} 
.carousel-slider .thumb-swiper-unique{
    background: #024942;
    margin-bottom: 45px;
    position: sticky;
    z-index: 10;
    top: 0;
    padding: 10px 0;
}
.carousel-slider .thumb-swiper-unique .swiper-slide{
  color: #B1EF18;
  font-size: 23px;
   width: auto;
  cursor: pointer;
}
.carousel-slider .thumb-swiper-unique .swiper-slide.swiper-slide-thumb-active{
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 9px;
  text-decoration-thickness: 3px;
}

.carousel-slider .swiper-button-prev, 
.carousel-slider .swiper-button-next{
  border: 2px solid #FFF;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  display: flex !important;
    align-items: center;
    justify-content: center;
}
.carousel-slider .swiper-button-prev:after, 
.carousel-slider .swiper-button-next:after{
  color: #FFF;
  font-size: 24px;
}

.carousel-slider .container{
    max-width: 1010px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

 @media (max-width: 767px) {
   .carousel-slider{
     padding: 40px 0;
   }
   .carousel-slider h2{
     font-size: 32px;
     padding-bottom: 35px;
   }
   .carousel-slider .swiper {
     padding: 10px 30px;
   }
   .carousel-slider .caption-box{
     margin-bottom: 30px;
     padding-top: 20px;
   }
   .carousel-slider .caption-box h3{
     font-size: 16px;
   }
   .carousel-slider .caption-box p{
     font-size: 14px;
   }
   .carousel-slider .swiper-pagination{
     display: block;
   }
   .carousel-slider .thumb-swiper-unique .swiper-slide{
    font-size: 18px
  }
  .carousel-slider .thumb-swiper-unique {
    margin-bottom: 35px;
}
   .carousel-slider .thumb-swiper-unique .swiper-wrapper{
     justify-content: inherit;
   }
   .carousel-slider .container{
         top: 31%;
   }
   .carousel-slider .swiper-button-prev, 
.carousel-slider .swiper-button-next{
  width: 30px;
  height: 30px;
  border: 1px solid #FFF;
}
   .carousel-slider .swiper-button-prev:after, .carousel-slider .swiper-button-next:after{
     font-size: 15px;
   }
   
 }
/*Landing page slider section end*/


/*Cart lsiting page fixes start*/
.quantity__button{
      width: 20px !important;
}
.quantity__button:first-child {
    margin-left: 10px !important;
}
.quantity__button:last-child {
    margin-right: 10px !important;
}
/*Cart lsiting page fixes end*/

/*********************************
Booster product page CSS start
***********************************/
.map-section {
  background-color: #F9F9F9;
  padding: 100px 0;
  margin-bottom: 130px;
}
.map-section .legend{
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}
.map-section .legend li{
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #000;
   gap: 20px;
  align-items: center;
}
.map-section .legend li .circle{
    width: 30px;
    height: 30px;
    border-radius:100px;
}
.map-section .legend li .circle.red{
  background-color: #C21D1A;
}
.map-section .legend li .circle.blue{
  background-color: #3236F2;
}
 @media (max-width: 767px) {
   .map-section .legend{
     flex-direction: column;
     gap: 10px;
   }
   .map-section .legend li .circle{
     width: 20px;
     height: 20px;
   }
   .map-section .legend li{
     gap: 10px;
   }
 }

.map-section .heading-box{
  text-align: center;
  margin-bottom: 13px;
}
.map-section .heading-box .title{
    color: var(--green);
    text-align: center;
    font-family: var(--body-font);
    font-size: var(--font-41);
    font-weight: 700;
    margin-block: 0px;
}
.map-section #map {
      height: {{ section.settings.height }};
      width: 100%;
      border-radius:20px
    }
.map-section #controls {
      margin-bottom: 10px;
}
.map-section .map_input{
  outline: var(--focused-base-outline);
  background-image: none !important;
  outline-color:  #024942;
  width: 100%;
  flex: 1;
}
.map-section .green-btn {
      width: 114px;
      min-height: 45px;
      border-radius: 20px;
      border: none;
      outline: none;
      display: inline-block;
      background-color: var(--theme-green);
      color: var(--theme-black);
      transition: .3s;
    margin-top: 0;
}
.map-section .form-input{
    padding: 0px 20px;
    margin-top: 0;
}
.map-section .map_description{
    font-size: 26px;
    color: var(--theme-black);
    font-family: var(--body-font);
    text-align: center;
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.38;
}


.product-effortless-section{
  padding: 50px 0 150px 0;
  background: #D9F78B;
  background: linear-gradient(180deg, rgba(217, 247, 139, 1) 0%, rgba(255, 255, 255, 1) 20%);
}
.product-effortless-section h2{
  font-size: var(--font-66);
  color: var(--green);
  font-family: var(--body-font);
  font-weight: 700;
  margin: 0 0 15px 0;
}
.product-effortless-section p{
  font-size: 23px;
  line-height: 1.5;
  color: #000;
  margin: 0 0 15px 0;
}
 @media (max-width: 992px) {
   .product-effortless-section{
     padding-bottom: 50px;
   }
   .product-effortless-section p{
     font-size: 18px;
   }
 }

/*********************************
Booster product page CSS end
***********************************/


/********************************
Blog css
*********************************/
.main-blog, .article-template {
  font-family: var(--body-font);
}

.card__content {
  padding: var(--spacing-24) !important;
}

.page-width, .article-template__content {
  width: var(--page-width);
  max-width: var(--page-width); 
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  /* styles for phones */
  .page-width, .article-template__content {
     width: 100%;
  }
  
}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* styles for small devices */
}

img.alignnone {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}

.article-template__content h4 {
  font-size: var(--font-18);
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}



/*Landing page Hero section start*/
.landing-hero-new{
    font-family: var(--body-font);
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 750px;
    background:url("/cdn/shop/t/7/assets/Landing-hero.jpg") no-repeat center center;
    background-size:cover;
    display: flex;
    position: sticky;
    top: 0;
    left: 0;
    padding:120px 0;
}
.landing-hero-new .heading{
    font-size:41px;
    font-weight:700;
    margin:0;
    padding:0;
    color:#FFF;
}
.landing-hero-new .lead-text{
    font-size:32px;
    font-weight:600;
    margin:0;
    padding:0 0 40px 0;
    color:#FFF;
    line-height: 1;
}
.landing-hero-new .water-info{
  display: flex;
  gap: 28px;
  padding: 35px 0;
}
.landing-hero-new .water-info .left-box{
  width: 88px;
}
.landing-hero-new .water-info .right-box{
  flex: 1;
}
.landing-hero-new .water-info .label-txt{
    font-size:40px;
    font-weight:700;
    margin:0;
    padding:0 0 13px 0;
    color:#73CCFC;
    line-height: 1;
}
.landing-hero-new .water-info .number-txt{
    font-size:86px;
    font-weight:700;
    margin:0;
    padding:0;
    color:#73CCFC;
    line-height: 1;
}
.landing-hero-new .water-info .number-txt span{
    font-size:32px;
    font-weight:600;
    margin:0;
    padding:0;
    color:#73CCFC;
}
.landing-hero-new .btns-group{
  display: flex;
  gap: 16px;
}
.landing-hero-new .btn{
    min-width: 164px;
    height: 48px;
    padding: 6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}
.landing-hero-new .btn-white{
  background-color: #FFF;
  color: #000;
}
.landing-hero-new .btn-white:hover{
  background-color: #DDD;
}
 @media (max-width: 992px) {
   .landing-hero-new .heading{
     font-size:36px;
   }
   .landing-hero-new .water-info .label-txt{
     font-size: 32px;
   }
   .landing-hero-new .water-info .number-txt{
     font-size: 60px;
   }
   .landing-hero-new .water-info .number-txt span{
     font-size: 20px;
   }
   .landing-hero-new .lead-text{
     font-size: 24px;
   }
   .landing-hero-new .water-info .left-box{
     width: 66px;
   }
 }
 @media (max-width: 767px) {
   .landing-hero-new{
     align-items: flex-start;
     height:595px;
     background:url("/cdn/shop/t/7/assets/landing-mob-hero.png?v=1744423005") no-repeat center right;
     padding-top:50px;
   }
   .landing-hero-new .heading{
        font-size: 26px;
        color: #024942;
        line-height: 1.1;
        padding-left: 10px;
   }
   .landing-hero-new .water-info{
     gap: 10px;
     padding: 20px 0;
   }
   .landing-hero-new .water-info .label-txt{
     font-size: 16px;
   }
   .landing-hero-new .water-info .number-txt{
     font-size: 30px;
   }
   .landing-hero-new .water-info .number-txt span{
     font-size: 13px;
   }
   .landing-hero-new .lead-text{
     font-size: 15px;
     color: #024942;
     padding-bottom: 235px;
   }
   .landing-hero-new .water-info .left-box{
     width: 40px;
   }
   .landing-hero-new .btns-group {
     padding: 0 0 0 45px;
   }
   .landing-hero-new .btn{
     min-width: 126px;
    height: 42px;
     font-size: 14px;
   }
 }

/*Landing page Hero section end*/