/*
.slideshow__slide { 
    opacity: 0;
}
.slideshow__slide { 
    -webkit-animation: imageAnimation 36s linear infinite 0s; 
    animation: imageAnimation 36s linear infinite 0s; 
}
.slideshow__item:nth-child(2) .slideshow__slide { 
	-webkit-animation-delay: 6s; 
    animation-delay: 6s; 
}
.slideshow__item:nth-child(3) .slideshow__slide { 
	-webkit-animation-delay: 12s; 
    animation-delay: 12s; 
}
.slideshow__item:nth-child(4) .slideshow__slide { 
	-webkit-animation-delay: 18s; 
    animation-delay: 18s; 
}
.slideshow__item:nth-child(5) .slideshow__slide {
	-webkit-animation-delay: 24s;  
    animation-delay: 24s; 
}
.slideshow__item:nth-child(6) .slideshow__slide { 
	-webkit-animation-delay: 30s; 
    animation-delay: 30s; 
}
@keyframes imageAnimation { 
    0% { opacity: 0; animation-timing-function: ease-in; }
    8% { opacity: 1; animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@-webkit-keyframes imageAnimation { 
    0% { opacity: 0; -webkit-animation-timing-function: ease-in; }
    8% { opacity: 1; -webkit-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
*/

.slideshow__box { 
	display:block;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
}