.marquee {
  width: 100%;
  overflow: hidden;
  background: #032950;
  padding: 1rem 0;
  margin: 0px;
}

.marquee-track {
  display: flex;
  width: fit-content;
  animation: scroll 20s linear infinite;
}

.marquee-item {
  min-width: 200px;
  margin-right: 10px;
  font-size: 1rem;
  font-weight: 300;
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}