slideshow--6-for-6 {
  position: relative;
  z-index: 1;
}

.slideshow--6-for-6 img {
  color: transparent;
  opacity: 0;
  z-index: 0;
  animation: slideshow__fade--6-for-6 36s linear infinite 0s;
  backface-visibility: hidden;
  height: auto; 
  width: 100%; 
  object-fit: cover;
  line-height:0
}


.slideshow--6-for-6 img:not(:first-child) {
  position: absolute;
  top: 0px;
  left: 0px;
}

.slideshow--6-for-6 img:nth-child(1) {
  animation-delay: 0s;
}

.slideshow--6-for-6 img:nth-child(2) {
  animation-delay: 6s;
}

.slideshow--6-for-6 img:nth-child(3) {
  animation-delay: 12s;
}

.slideshow--6-for-6 img:nth-child(4) {
  animation-delay: 18s;
}

.slideshow--6-for-6 img:nth-child(5) {
  animation-delay: 24s;
}

.slideshow--6-for-6 img:nth-child(6) {
  animation-delay: 30s;
}

@keyframes slideshow__fade--6-for-6 {  
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  10.00% {
   opacity: 1;
   animation-timing-function: ease-out;
  }
  16.67% {
    opacity: 1;
  }
  23.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}