.promo-marquee {
  background: #000;
  padding: 10px 16px;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  height: auto;
}
.marquee-text {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  color: #f3bd00;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-right: 4rem;
}
/* see */
.promo-marquee:hover .marquee-text {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 768px) {
  .promo-marquee {
    padding: 8px 12px;
    z-index: 500;
    position: relative;
    /* top: 75px; */
  }
  .marquee-text {
    font-size: 0.9rem;
    margin-right: 2rem;
    line-height: 1.2;
  }
}
@media (max-width: 480px) {
  .promo-marquee {
    padding: 6px 10px;
    z-index: 500;
  }
  .marquee-text {
    font-size: 0.85rem;
    margin-right: 1.5rem;
    line-height: 1.1;
  }
}
@media (max-width: 360px) {
  .promo-marquee {
    padding: 6px 8px;
    z-index: 1100;
  }
  .marquee-text {
    font-size: 0.8rem;
    margin-right: 1rem;
    line-height: 1;
  }
}
