/** Shopify CDN: Minification failed

Line 17:14 Expected identifier but found whitespace
Line 17:16 Unexpected "{"
Line 17:25 Expected ":"
Line 17:68 Unexpected ","
Line 17:71 Unexpected "{"
Line 17:81 Expected ":"
Line 17:120 Expected identifier but found "!"

**/
.mlv-container-width{
  padding: 0 1rem !important;
}
/* New-image-banner section css start */
.banner__heading{
  font-family: {{ section.settings.banner_type_header_font.family }}, {{ settings.type_header_font.fallback_families }} !important;
}
.banner__down-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #aaaaaa;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: transform 0.3s ease-in-out, opacity 0.3s;
  z-index: 99999999;
}
.banner__down-arrow svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.banner__down-arrow:hover {
  opacity: 0.8;
}
@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}
.banner__down-arrow.animate {
  animation: bounce 1.5s infinite;
}
.banner__down-arrow:hover {
  animation: none;
}
/* New-image-banner section css end */
/* New-Image-Grid-with-Overlay section css start */
.mlv-image-grid-container .image-grid-item svg {
    width: 100%;
    height: 100%;
}

.mlv-image-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.mlv-image-grid-container h2 {
    font-weight: 800;
    line-height: 56.16px;
    color: #fff;
    margin-bottom: 0px;
    font-size: 30px;
    font-family: 'Poppins' !important;
    margin-top: 0px;
}

.mlv-image-grid-container p {
    line-height: 24px;
    font-weight: 500;
    font-size: 14px;
    color: #E0E0E0;
    width: 80%;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 20px;
}

.mlv-image-grid-container .image-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    width: 100%;
    /*height: 300px;*/
}

.mlv-image-grid-container .image-grid-item img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-fit: inherit;
    border-radius: 18px;
    transition: transform 0.3s ease-in-out;
}

.mlv-image-grid-container .image-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0px 20px;
    background-color: rgba(0, 0, 0, 0);
    /* opacity: 0; */
    opacity: 1;
    /*transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;*/
    transition: opacity 0.8s ease-in-out;
    
}



 .mlv-image-grid-container .image-grid-item:hover img {
    /*opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);*/
   transform: scale(1.1);
   
}

.mlv-image-grid-container .image-grid-item:hover {
   border: 2px solid #8FC746; 
}

/*.mlv-image-grid-container a.image-grid-item :hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
}*/ 

.mlv-image-grid-container .grid-content {
    /* opacity: 0; */
    opacity: 1;
     transform: translateY(0px); 
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.mlv-image-grid-container .image-grid-item:hover .grid-content {
    opacity: 1;
    transform: translateY(-20px);
}

/* .mlv-image-grid-container .grid-button {
    background-color: white;
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.mlv-image-grid-container .grid-button:hover {
    background-color: #000 !important;
  color:#fff;
} */
/* New-Image-Grid-with-Overlay section css end */
/* New-Feature-Cards section css start */
.mlv-feature-section {
   padding: 40px 20px;
  text-align: center;
  color: white;
  position: relative;
}
.mlv-feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.mlv-feature-content-container {
  position: relative;
  z-index: 1;
}
.mlv-feature-heading {
  font-size: 48px;
  font-weight: 800 !important;
  line-height: 51px;
  color: #fff;
  margin-bottom: 12px;
  margin-top: 12px;
}
.mlv-feature-content {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  width: 60%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 70px;
}
.mlv-feature-cards {
  display: flex;
  /*grid-template-columns: 1fr;*/
  gap: 20px;
  /* max-width: 1200px; */
  margin: 0 auto;
}
.mlv-feature-card {
  background: white;
  padding: 10px;
  border-radius: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
}
.mlv-feature-card_custom_css {
  background: transparent;
  padding: 0px;
}
.mlv-feature-image-wrapper {
  width: 100%;
   /*height: 250px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  /*border-radius: 24px;*/
  overflow: hidden;
}
.mlv-feature-card img {
   width: 100%; 
  /*width: auto;
   height: auto; 
  height: 100%;
   object-fit: cover;
  border-radius: 24px;*/
}
/* .mlv-feature-svg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
} */
.mlv-feature-svg svg {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.mlv-feature-card h3 {
  color: #024520;
  font-size: 24px;
  font-weight: 800 !important;
  margin-top: 15px;
  line-height: 25px;
      text-align: left;
    width: 100%;
  margin-bottom: 15px;
      padding-left: 12px;
    padding-right: 12px;
}
/* New-Feature-Cards section css end */
/* New image with text section css start */
/* .new-image-with-text{
background-color:#F6F6F6;
} */
div#shopify-section-template--18171995521191__new_image_with_text_cFzgDR {
    background-color: #f6f6f6;
}
.new-image-with-text__grid{
  background-color:#fff;
  border-radius:18px;
}
.new-image-with-text__media img{
   border-radius:18px !important;
}
/* New image with text section css end */
/* New multicolumn section css start */
 .multicolumn-feature-cards-section {
    text-align: center;
    padding: 60px 0;
    background-color: #F6F6F6;
  }
   .cardcontentheading{
    font-weight: 600 !important;
    font-size: 18px;
    line-height: 27px;
    font-family: 'Poppins' !important;
     color:#024520;
}
.cardcontent{
  color: #989898;
    font-size: 12px;
    font-weight: 500 !important;
    line-height: 18px;
      width: 100% !important;
    margin: 0px !important;
  }
  .multicolumn-feature-cards-section .mlv-multicolumn-heading{
    color: #024520;
  font-size: 48px;
  font-weight: 800 !important;
  line-height: 51px;
        width: 40%;
    text-align: center;
    margin: 0 auto;
  }
  .multicolumn-feature-cards-section .mlv-multicolumn-content{
    color: #989898;
  font-size: 18px;
  font-weight: 400 !important;
  line-height: 26px;
    width: 70%;
    margin: 10px auto;
  }
  .multicolumn-cards-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
  }
  .multicolumn-feature-card {
    background: white;
    padding: 20px;
    border-radius: 28px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease-in-out;
    text-align: center;
    width: 32%;
    position: relative;
    margin-bottom: 30px;
  }
  .multicolumn-feature-card:hover {
    transform: translateY(20px);
        cursor: pointer;
  }
.multicolumn-icon-wrapper{
    background-color: #e8f4e8;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    margin: 0 auto;
}
.multicolumn-feature-card:hover .multicolumn-icon-wrapper img {
    animation: moveImage 1s ease-out forwards;
}
@keyframes moveImage {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    20% {
        transform: translate(20px, -20px);
        opacity: 0;
    }
    21% {
        transform: translate(-20px, 20px);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}
/* New multicolumn section css end */
/* New image-with-text section css start */
.mlv-image-with-text__heading{
    font-size: 52px !important;
    font-weight: 800 !important;
    line-height: 56px !important;
  color:#024520 !important;
}
.mlv-image-with-text__text{
   font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 23px !important;
  color:#989898 !important;
}
/* New image-with-text section css end */
/* New process section css start */
 .stepheading{
        color: #024520;
    font-weight: 800 !important;
    font-size: 42px;
    line-height: 45px;
   margin-top: 0px;
       margin-bottom: 0px;
  }
  .step-section p{
    color: #989898;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
        margin-bottom: 50px;
  }
.step-section {
  text-align: center;
  /* padding: 50px 20px; */
  padding-bottom: 40px !important;
  padding-top: 60px !important;
}
.step-section .steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* width: 80%;
  max-width: 900px; */
  width:100%;
  padding: 20px;
      padding-left: 0px;
    padding-right: 0px;
  border-bottom: 1px solid #D8D8D8;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
  .step:nth-child(1) {
   border-top: 1px solid #D8D8D8;
}
.step.visible {
  opacity: 1;
  transform: translateY(0);
}
.step .step-number {
    font-size: 24px;
    font-weight: 500;
    color: #444444;
    flex: 1;
    text-align: left;
    line-height: 27px;
}
.step .step-image {
  flex: 1;
  display: flex;
  /* justify-content: center; */
}
/* .step img {
  width: 80px;
  height: 80px;
} */
.step .step-content {
  flex: 2;
  text-align: left;
}
.step .step-content p{
  font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: #444444;
   margin-top: 14px;
      margin-bottom: 14px;
}
/* New process section css end */
/* New Text Banner section css start */
  .custom-banner-main{
    padding-bottom:40px !important;
  }
.custom-banner {
  background: linear-gradient(to bottom, #024520, #1B5E20);
  padding: 40px;
      padding-left: 80px;
  text-align: left;
  color: #fff;
      border-radius: 24px;
}

.custom-banner h2 {
      font-size: 102px;
    font-weight: 600 !important;
    color: #fff;
    line-height: 118px;
  margin: 20px 0px;
      margin-top: 0px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 24px;
  border: 2px solid #F4FFE5;
  border-radius: 50px;
  color: #F4FFE5;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}
.cta-text{
  font-weight: 600;
    font-size: 18px;
  line-height: 27px;    
  }
.cta-text, .cta-icon {
  transition: transform 0.6s ease-in-out;
}

.cta-icon {
  display: flex;
  align-items: center;
}

/* .cta-button:hover .cta-text {
  transform: translateX(-54px);
}

.cta-button:hover .cta-icon {
  transform: translateX(176px) rotate(46deg);
} */
/* New Text Banner section css end */
/* New Faq Section css start */
.faq-item:nth-child(1) {
    border-top: 1px solid #606060;
  }
  .faq-section {
    text-align: center;
    padding: 40px 20px;
        padding-top: 0px;
  }
  .mlvquestion {
    font-size: 24px !important;
    font-weight: 500 !important;
    line-height: 27px !important;
    color: #024520;
  }
  .faq-list {
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid #606060;
    padding: 30px 0px;
  }
  .faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: bold;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0 10px;
    display: block;
        text-align: left;
    padding-left: 0px;
  }
  .faq-answer.open {
    max-height: 600px;
    padding-top: 10px;
  }
  .mlicon {
    font-size: 20px;
    border: 1px solid #000;
    padding: 0px;
    border-radius: 52px;
    height: 34px;
    width: 34px;
    text-align: center;
    line-height: 34px;
  }
  .faq-section h2 {
    font-size: 48px !important;
    font-weight: 800 !important;
    line-height: 55px !important;
    color: #024520;
    margin-bottom: 50px;
    /* margin: 0px; */
  }
  .faq-section p {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 26px !important;
    margin-bottom: 50px;
    color: #989898;
  }
  .mlvanswer {
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 27px !important;
    color: #989898;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
/* New Faq section css end */
/* New Image with Text Overlay section css start */
  .mlv-image-text-overlaymain{
    padding-bottom:40px !important;
  }
  .mlv-content h2{
        font-size: 62px;
    font-weight: 600 !important;
    color: #fff;
    line-height: 72px;
    margin: 10px 0px;
  }
  .mlv-content div{
        font-size: 16px;
    font-weight: 400 !important;
    color: #BBBBBB;
    line-height: 24px;
  }
.mlv-image-text-overlay {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  padding-left:90px;
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  text-align: left;
  color: white;
  flex-direction: row;
  border-radius: 24px;
}
.mlv-image-text-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
  border-radius: 24px;
}
.mlv-image-text-overlay .mlv-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  display: flex;
  flex-direction: column;
}
.mlv-image-text-overlay .mlv-button-container {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}
.mlv-image-text-overlay .mlv-button {
    display: inline-block;
    padding: 50px 18px;
    border: 2px solid white;
    border-radius: 144px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    height: 180px;
    width: 180px;
    font-size: 18px;
    font-weight: 600 !important;
    line-height: 23px;
}
  .mlv-image-text-overlay .mlv-button svg {
  margin-left: 8px;
}
  .mlv-image-text-overlay .mlv-button:hover svg path{
  margin-left: 8px;
        fill: #000;
}
.mlv-image-text-overlay .mlv-button:hover {
  background: white;
  color: #000;
}
/* New Image with Text Overlay section css end */
/* Media Query Start */
@media (max-width: 1100px) {
  .multicolumn-feature-cards-section .mlv-multicolumn-heading{
    width:100%;
  }
 .multicolumn-cards-wrapper {
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .mlv-feature-cards {
    /*grid-template-columns: repeat(2, 1fr);*/
  }
  .mlv-feature-cards_custom_css {
    grid-template-columns: repeat(3, 1fr);
    position: absolute;
  }
  .mlv-feature-section_custom_css {
    /* background: #024520 !important; */
    height: 450px;
    position: relative;
    margin-bottom: 120px;
  }
}
@media only screen and (max-width:768px) {

  .mlv-feature-card img {
    width: 100%;
    height: auto;
  }
  
  .mlv-feature-section_custom_css {
    /* background: #024520 !important; */
    height: 750px;
    margin-bottom: 450px;
  }

  .mlv-feature-cards_custom_css {
    position: unset;
  }
  
  .multicolumn-cards-wrapper {
    gap: 20px;
  }
   .banner__down-arrow {
    position: absolute;
    bottom: -18px;
  }
  .mlv-image-grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .mlv-image-grid-container p {
    width: 100% !important;
  }
  .mlv-feature-content {
    width: 100%;
  }
  .mlv-feature-content {
    margin-bottom: 30px;
  }
 .multicolumn-cards-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .multicolumn-feature-card {
    width: 90%;
    margin-bottom: 20px;
  }
  .multicolumn-feature-cards-section .mlv-multicolumn-heading{
    width: 100%;
  }
  .multicolumn-feature-cards-section .mlv-multicolumn-content{
    width: 100%;
  }
   .step {
    flex-direction: column;
    text-align: center;
  }
  .step .step-number, .step .step-content {
    text-align: center;
  }
  .step .step-number {
    margin: 14px 0px;
}
  .step .step-image {
    margin: 14px 0px;
}
    .custom-banner h2 {
    font-size: 48px;
    font-weight: 600 !important;
    color: #fff;
    line-height: 48px;
    margin: 20px 0px;
    text-align: center;
}
  .custom-banner {
    text-align: center;
}
   .mlv-image-text-overlay {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .mlv-image-text-overlay .mlv-content {
    order: 2;
  }
  .mlv-image-text-overlay .mlv-button-container {
    order: 1;
    position: relative;
    margin-bottom: 20px;
  }
  .faq-item {
    text-align: left;
}
  .mlv-image-text-overlay {
    padding-left: 20px;
  }
  .custom-banner {
    padding-left: 40px;
  }
  .mlv-image-with-text__heading{
    font-size: 48px !important;
}
  .stepheading{
    font-size: 48px !important;
}
  .mlv-content h2 {
    font-size: 48px;
    font-weight: 600 !important;
    color: #fff;
    line-height: 48px;
    margin: 10px 0px;
}
  .mlv-image-text-overlay .mlv-button-container {
    right: unset;
}
  .mlvquestion {
    width: 80% !important;
}
}
@media only screen and (max-width:554px) {
  .mlv-feature-section_custom_css {
    margin-bottom: 500px;
  }
}
@media only screen and (max-width:465px) {
  .mlv-feature-section_custom_css {
    margin-bottom: 550px;
  }
}
@media only screen and (max-width: 420px) {
  .mlv-feature-section_custom_css {
    margin-bottom: 600px;
  }
  .mlv-image-grid-container .image-grid-overlay{
    padding-bottom:0px;
  }
  .mlv-image-grid-container h2 {
    line-height: 36px;
  }
  .mlv-image-grid-container p {
    font-size: 12px;
    margin-bottom: 10px;
}
  .mlv-image-grid-container h2 {
    font-size: 24px;
    margin-top: 0px;
}
  .mlv-image-grid-container .image-grid-item img{
    /*width:unset;*/
  }
  .mlv-feature-section {
    padding: 20px 10px;
}
   .mlv-feature-card h3 {
    text-align: center;
    width: 100%;
  }
  .mlv-feature-card {
    padding: 15px;
  }
    .mlicon {
    font-size: 20px;
    border: 1px solid #000;
    padding: 0px;
    border-radius: 52px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
}
  .mlvquestion {
    font-size: 18px !important;
}
}



@media only screen and (max-width: 1279px) {
  .mlv-feature-section{
    padding: 40px 0px;  
  }
}
@media only screen and (max-width: 989px) {
   .mlv-image-text-overlay{
     padding-left: 20px;
     align-items: center;
     text-align: center;
   }
   .mlv-image-text-overlay .mlv-button-container {
      position: relative;
      top: 20px;
      right: 0;
      z-index: 2;
      left: 0;
      margin: 0 auto;
      margin-bottom: 30px;
      text-align: center;
   }
}
@media only screen and (max-width: 768px) {
  .mlv-feature-cards{
    display: block;
    text-align:center;
  }
  .mlv-feature-card{
    margin: 15px 0px;
    width:100%;
  }
}


/* Media Query End */