/** Shopify CDN: Minification failed

Line 43:2 Unexpected "{"
Line 43:3 Expected identifier but found "%"
Line 45:2 Unexpected "{"
Line 45:3 Expected identifier but found "%"

**/

.logo-scroller-wrapper {
  width: 100%;
  text-align: center;
}

.logo-scroller-heading {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align:center;
}

.logo-scroller-description {
  max-width: 520px;
  margin: 0 auto 48px;
  opacity: 0.75;
  text-align:center
}

.logo-scroller {
  width: 100%;
  overflow: hidden;
}

.scroller-track {
  display: flex;
  width: max-content;
  animation-name: scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.logo-scroller:hover .scroller-track {
  {% if section.settings.pause_on_hover %}
    animation-play-state: paused;
  {% endif %}
}

.logo-item {
  display: flex;
  align-items: center;
  padding: 0 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-item:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.logo-item img {
  width: auto;
  display: block;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.media-logos__cta {
  margin-top: 80px;
}