.galeria {
  width: 100vw !important;
  height: 42vw;
  overflow: hidden;
  position: relative;
}

.poster {
  position: absolute;
  overflow: hidden;
  height: 40vw;
  animation: moveAcross 20s linear infinite;
}

.poster-1 {
  animation-delay: -0s;
  animation-duration: 20s;
}

.poster-2 {
  animation-delay: -4s;
  animation-duration: 10s;
}

.poster-3 {
  animation-delay: -8s;
  animation-duration: 20s;
}

.poster-4 {
  animation-delay: -12s;
  animation-duration: 10s;
}

.poster-5 {
  animation-delay: -16s;
  animation-duration: 20s;
}

.poster-6 {
  animation-delay: -20s;
  animation-duration: 10s;
}

.poster-7 {
  animation-delay: -24s;
  animation-duration: 20s;
}

.poster-8 {
  animation-delay: -28s;
  animation-duration: 10s;
}

.poster-9 {
  animation-delay: -32s;
  animation-duration: 20s;
}

.poster-10 {
  animation-delay: -36s;
  animation-duration: 10s;
}

@keyframes moveAcross {
  0% {
    left: -40vw;
  }

  100% {
    left: 110vw;
  }
}