.logos-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 48px;
}

.logos-container::before,
.logos-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

.logos-container::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-container::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-gradient {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  animation: scroll-logos 25s linear infinite;
  width: max-content;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

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

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.wembley-logo {
  max-width: 186px;

  @media (max-width: 767px) {
    max-width: 120px;
  }
}

.chart-section {
  max-width: 1920px;
  margin: 0 auto;

  @media (min-width: 1935px) {
    border-radius: 48px;
  }
}

.chart-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  height: 100%;
  background-image: url('./chart-background.png');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 1;

  @media (max-width: 767px) {
    background-image: url('./chart-background--mobile.png');
  }
}

.integration-logo img {
  transition: scale 0.4s ease-in-out;
}

.integration-logo:hover img {
  scale: 1.1;
}

.prefooter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

@media (max-width: 375px) {
  .prefooter-section::before {
    background-image: url('./background--mobile.jpg');
  }
}
