.imagescroll {
  max-width: 300px;
  max-height: 5rem;
  padding: 0 15px;
  object-fit: cover;
}

.imagescroll:last-of-type {
  padding-left: 0;
}

.imagescrollinner {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 5rem;
}

.imagescrollwrapper {
  position: absolute;
  display: flex;
}

.imagescrollsection {
  display: flex;
  animation: swipe var(--speed) linear infinite backwards;
}

@keyframes swipe {
  0% {
    transform: translate(0);
  }

  100% {
    transform: translate(-100%);
  }