.right-carousel {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 0;
}

.carousel__slide {
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: 0;
  transform: translateX(-50%);
  animation: timeline 66s infinite;
  background-position: center center !important;
  background-size: 210px auto !important;
  background-repeat: no-repeat !important;
}

  .carousel__slide img {
    width: 250px;
    height: auto;
    margin: 0 auto;
  }

@keyframes timeline {
  5% {
    opacity: 1;
  }
  14% {
    opacity: 0;
  }
}
.carousel__slide:nth-child(1) {
  animation-delay: 0s;
}

.carousel__slide:nth-child(2) {
  animation-delay: 6s;
}

.carousel__slide:nth-child(3) {
  animation-delay: 12s;
}

.carousel__slide:nth-child(4) {
  animation-delay: 18s;
}

.carousel__slide:nth-child(5) {
  animation-delay: 24s;
}

.carousel__slide:nth-child(6) {
  animation-delay: 30s;
}

.carousel__slide:nth-child(7) {
  animation-delay: 36s;
}

.carousel__slide:nth-child(8) {
  animation-delay: 42s;
}

.carousel__slide:nth-child(9) {
  animation-delay: 48s;
}

.carousel__slide:nth-child(10) {
  animation-delay: 54s;
}

.carousel__slide:nth-child(11) {
  animation-delay: 60s;
}