.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: #f4f4f4;
  position: relative;
  height: 2.5em;
}

.marquee {
  display: inline-flex;
  align-items: center;
  animation: scroll 17s linear infinite;
  transition: 0.3s;
  opacity: 0.9;
}

.marquee:hover {
  opacity: 1;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee img {
  height: 2em;
  margin-right: 20px;
}

.marquee span {
  font-size: 16px;
  color: #333;
  font-weight: 700;
  margin-right: 50px;
}

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

@keyframes scroll {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translateX(-100%);
  }
}

