.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: rgb(246, 246, 246);;
  color: #1d3d4e;
  padding: 12px 0;
  position: relative;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}

.marquee-item {
  display: inline-block;
  padding: 0 50px;
  font-size: 32px;
  font-weight: 500;
}

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

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}
@media (max-width: 768px) {
  .marquee-item {
    font-size: 16px;
    padding: 0 30px;
  }
}
.marquee-content a {
  text-decoration: none;
  color: #1d3d4e;
}
