@keyframes marquee {
  0% {
    transform:translate3d(100%,0,0)
  }
  to {
    transform:translate3d(-100%,0,0)
  }
}

#top .avia-section.full-marquee .container {
  max-width: 100%;
  padding: 0;
}

.slide-entry-wrap {
  --animation-speed: 20s;
}

.avia-content-slider-inner {
  overflow: visible; 
}

.slide-entry-wrap {
  animation: marquee var(--animation-speed) linear infinite;
  display: flex;
  justify-content: space-around;
}
.slide-entry-wrap:hover {
  animation-play-state: paused;
}

.slide-entry-wrap .slide-entry {
  flex: 0 1 10%;
  width: unset !important;
}