.logos-title {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.logos-marquee {
  overflow: hidden;
}

.logos-track {
  display: flex;
  width: max-content;
  animation: logos-scroll var(--logos-duration, 30s) linear infinite;
}
.logos-track:hover {
  animation-play-state: paused;
}

.logos-set {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.logos-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  height: 86px;
  padding: 0 24px;
}
.logos-item img {
  width: auto;
  height: auto;
  max-width: 210px;
  max-height: 100%;
  object-fit: contain;
}

@keyframes logos-scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 560px) {
  .logos-item {
    height: 64px;
    padding: 0 16px;
  }
  .logos-item img {
    max-width: 150px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .logos-marquee {
    overflow-x: auto;
  }
  .logos-track {
    animation: none;
  }
  .logos-set + .logos-set {
    display: none;
  }
}

/*# sourceMappingURL=logotypu.css.map */
