/** Shopify CDN: Minification failed

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

**/


/* CSS from section stylesheet tags */
<style>

    .logos {
      display: flex;
      overflow: hidden;
      flex-wrap: nowrap;
    }
    
    .logos-slide {
      display: flex;
      flex-direction: row;
      animation: slide 10s linear infinite;
    }
    
    .logos-slide img {
      max-width: 150px;
      height: auto;
      margin: 0px;
    }

    @keyframes slide {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
  </style>