.logo-strip {
  overflow: hidden;
  width: 100%;
  max-width: var(--bp-xl);
  margin-inline: auto;
}

.logo-strip>div {
  height: 100px;
  display: flex;
  align-items: center;
}

.logo-strip-track {
  display: flex;
  width: max-content;
  --speed: 30s;
  animation: logo-scroll var(--speed) linear infinite;
}

.logo-strip figure {
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 40px;
}

.logo-strip figure img {
  height: 66px;
  max-width: fit-content;
}

/* Pause animation on hover */
.logo-strip:hover .logo-strip-track {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

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