/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 60:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  html, body {
    max-width: 100%;
    overflow-x: hidden;
    touch-action: manipulation;
  }

  .marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
  }

  .marquee-content {
    display: flex;
    gap: 20px;
    animation: marquee-scroll 10s linear infinite;
  }

  .benefits-bar-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }

  .benefits-bar-section {
    margin-top: 20px;
    margin-bottom: 60px;
    padding: 20px 0px;
    background-color: #409150;
    overflow: hidden;
  }

  .benefits-bar-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  @keyframes marquee-scroll {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
</style>