.marquee div {
  display: flex;
  width: max-content;
  animation: marquee-loop 24s linear infinite;
}

.marquee-set {
  display: flex;
  min-width: 100vw;
  align-items: center;
  justify-content: space-around;
  padding: 0 2.5vw;
}

.marquee-set span,
.marquee-set b {
  margin: 0;
}

@keyframes marquee-loop {
  to { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .marquee-set { min-width: 150vw; justify-content: space-between; gap: 26px; }
}
