/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 80:2 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .product-benefits-section {
    background: #0b1d32;
    padding: 60px 20px;
    color: #fff;
  }

  .benefits-grid {
    gap: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    gap: 1rem;
  }

  .benefit-card {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    overflow: hidden;
    min-height: 200px;
    flex-direction: row;
  }

  @media screen and (max-width: 767px){
    .benefit-card {
      grid-template-columns: 1fr;
    }
  }

  .benefit-card.reverse {
    flex-direction: row-reverse;
  }

  .benefit-text {
    background: #fff;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .benefit-image {
    flex: 1;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .benefit-transparent {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  @media(max-width: 768px) {
    .benefits-grid {
      grid-template-columns: 1fr;
    }

    .benefit-card {
      flex-direction: column;
    }

    .mob-rev {
      display: flex;
      flex-direction: column-reverse;
    }
  }
  </style>