.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: relative;
  padding: 0px 96px;
}

.marquee {
  display: inline-block;
  padding-left: 80%;
  animation: scroll-left 15s linear infinite;
  a:hover {
    color: #dfeba6;
    text-decoration: underline;
  }
}

.marquee-item {
  display: inline-block;
  margin-right: 50px;
  font-weight: bold;
  color: #FFF;
  text-decoration: none;
}

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