.logos-strip {
  padding: 40px 24px 56px;
  background: #f7f8f7;
}

.logos-strip__label {
  margin: 0 0 22px;
  text-align: center;
  font-size: 0.96rem;
  font-weight: 600;
  color: #9a9a9a;
}

.logos-strip__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.logos-strip__viewport::before,
.logos-strip__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos-strip__viewport::before {
  left: 0;
  background: linear-gradient(to right, #f7f8f7 0%, rgba(247, 248, 247, 0) 100%);
}

.logos-strip__viewport::after {
  right: 0;
  background: linear-gradient(to left, #f7f8f7 0%, rgba(247, 248, 247, 0) 100%);
}

.logos-strip__track {
  display: flex;
  width: max-content;
  animation: logos-marquee 22s linear infinite;
  will-change: transform;
}

.logos-strip__group {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
  flex-shrink: 0;
}

.logos-strip__item {
  width: 500px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logos-strip__logo {
  max-width: 200%;
  max-height: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1) brightness(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.logos-strip__logo:hover {
  opacity: 0.78;
  transform: translateY(-1px);
}

.logos-strip__viewport:hover .logos-strip__track {
  animation-play-state: paused;
}

@keyframes logos-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
