/* Add custom CSS styles below */ 
/* Marquee styles */
.marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 1rem;
  gap: var(--gap);
}
.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, #111 0%, transparent 100%);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, #111 0%, transparent 100%);
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}
/* Enable animation */
.enable-animation .marquee__content {
  animation: scroll 15s linear infinite;
}
/* Reverse animation */
.marquee--reverse .marquee__content {
  animation-direction: reverse;
}
/* Pause on hover */
.marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}

.marquee__content li{
  list-style-type:none;
}

.marquee__content a {
   text-decoration: none !important;

}