@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap");

.ticker-container {
  width: 100%;
  overflow: hidden;
  background: #053f44;
  color: #fff;
  padding: 5px 0;
  position: relative;
}

.ticker-wrapper {
  display: flex;
  animation: tickerScroll 30s linear infinite;
}

.ticker-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 50px;
  flex-shrink: 0;
}

.highlight {
  color: #e69d10;
  font-weight: 700;
  margin: 0 3px;
}

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