/* Marquee text component */
.marquee-section {
  overflow: hidden;
  padding: 40px 0;
  background: #fff;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-text {
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  /* letter-spacing: 0.02em; */
  padding-right: 48px;
  /* font-style: normal; */
}

.marquee-text em {
  /* font-style: normal; */
  color: rgba(230, 0, 18, 0.12);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
