
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

html, body {
  overflow-x: hidden;
}

.animate-marquee {
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.marquee-track {
  display: inline-flex;
  min-width: 200%;
  white-space: nowrap;
}

.marquee-track-vw {
  display: flex;
  width: 200vw;
  will-change: transform;
}

.marquee-page {
  flex: 0 0 100vw;
  display: flex;
  align-items: center;
}

@keyframes marquee-vw {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100vw);
  }
}

.animate-marquee-vw {
  animation: marquee-vw 30s linear infinite;
  will-change: transform;
}

#cocina-marquee:hover,
#cocina-marquee:focus-within,
#aliados-marquee:hover,
#aliados-marquee:focus-within {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {

  .animate-marquee,
  .animate-marquee-vw {
    animation: none;
    transform: none;
  }
}

.marquee-text {
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Abel", sans-serif;
  letter-spacing: 0.1em;
  font-size: clamp(2.5rem, 6vw, 5rem);
  white-space: nowrap;
  margin-left: 4rem;
  margin-right: 4rem;
}

html,
body {
  scroll-behavior: smooth;
}

#app {
  scroll-behavior: smooth;
}