/* Outer container */
.moving-logo {
  overflow: hidden;
  position: relative;
}

/* Track that scrolls */
.moving-logo .z-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 60px;
  animation: slideLeft 18s linear infinite;
  white-space: nowrap;
}

/* Duplicate content automatically spacing logos */
.moving-logo .z-row > * {
  flex-shrink: 0;
}

/* Animation */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
