#marquee.container-fluid {
  padding: 0 !important;
  margin-top: -5px;
}
.marquee-container {
  background-color: #b6ff00;
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  -webkit-animation: marquee 30s linear infinite;
  animation: marquee 30s linear infinite;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 2rem;
  color: black;
  animation-play-state: running;
}

.marquee-container:hover .marquee-content {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  cursor: pointer;
}

@keyframes marquee {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}

@-webkit-keyframes marquee {
  0% {
      -webkit-transform: translateX(0);
  }
  100% {
      -webkit-transform: translateX(-50%);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .marquee-content {
      -webkit-animation: marquee 20s linear infinite;
      animation: marquee 20s linear infinite;
  }
}

@media (max-width: 767.98px) {
  .marquee-content {
      -webkit-animation: marquee 10s linear infinite;
      animation: marquee 10s linear infinite;
  }
}

.marquee-item {
  display: inline-block;
  margin: 0;
}

.fa-arrow-right {
  margin: 0;
}

.bold {
  font-weight: bolder;
}

.outline {
  font-weight: normal;
  -webkit-text-stroke: 1px black;
  color: transparent;
}
