/** Shopify CDN: Minification failed

Line 104:16 Expected identifier but found whitespace
Line 104:17 Unexpected "120%"

**/
.benefits-image {
  padding: 80px 0;
}

.benefits-image__wrapper {
  display: flex;
  gap: 48px;
  align-items: center;

  >div {
    flex:1;
  }
}

.benefits-image__content {
  display: grid;
  grid-template-columns: repeat(var(--cols-desktop), 1fr);
grid-row-gap: 16px;
  grid-column-gap: 32px;
  overflow:hidden;
  @media (max-width:1000px) {
grid-column-gap: 16px;
  }
  
}

.benefits-image__item {
  display: flex;
  gap: 16px;
  position:relative;
  padding-bottom: 32px;
  padding-top: 16px;

   @media (max-width:1000px) {
    flex-direction:column;
    gap:.45rem;
    padding-bottom: 26px;
  padding-top: 8px;

    img {
        height:auto;
        width:35px;
    }
   }

  &:nth-child(odd) {
    padding-right:1rem;
    &::before {
        content: "";
  position: absolute;
  width: 1px;
  height: 75%;
  background-color: #242526;
  top: 9%;
  right: -15px;

   @media (max-width:1000px) {
    right: -1px;
   }
    }
  }

  &:nth-child(even) {
    padding-left:1rem;

     @media (max-width:1000px) {
        padding-left:0;
     }
  }


  &:not(:last-child):not(:nth-child(5)) {
    &::after {
        content: "";
        position: absolute;
        width: 70vw;
        height: 1px;
        background-color: #DBDBDB;
        bottom: 0;

    }
  }

}

.benefits-image__icon svg {
  width: 32px;
  height: 32px;
}

.benefits-image__text h3 {
  margin: 0 0 6px;
  color: #242526;
    font-family: "Poppins";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%

     @media (max-width:1000px) {
        font-size:16px;
    }
}

  @media (max-width:1000px) {
    .benefits-image__text *:not(p) {
        font-size:16px !important;
    } 
    
  }

.benefits-image__text p {
  margin: 0;
  color: #4D4D4D;
    font-family: "Poppins";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
  line-height: 1.5;

  @media (max-width:1000px) {
    display:none;
  }
}

.benefits-image__media {
  position: relative;
  max-width:448px;

  @media (max-width:1000px) {
    display:none;
  }
}

.benefits-image__img {
  width: 100%;
  height: auto;
  display: block;
}

.benefits-image__img--mobile {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .benefits-image__wrapper {
    grid-template-columns: 1fr;
  }

  .benefits-image__content {
    grid-template-columns: repeat(var(--cols-mobile), 1fr);
  }

  .benefits-image__img--desktop {
    display: none;
  }

  .benefits-image__img--mobile {
    display: block;
  }
}
