.slideshow {
  list-style-type: none;
}

/** SLIDESHOW **/
.slideshow,
.slideshow:after {
    top: -16px;
		position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: -10;
}

.slideshow li span {
		position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: -10;
    animation-name: imageAnimation;
    animation-iteration-count: infinite;
    animation-delay: 0s;
    animation-duration: 24s;
    animation-timing-function: linear;
}

.slideshow li:nth-child(1) span {
    background-image: url("/img/slideshow/slide1.jpeg");
}
.slideshow li:nth-child(2) span {
    background-image: url("/img/slideshow/slide2.jpeg");
    animation-delay: 6s;
}
.slideshow li:nth-child(3) span {
    background-image: url("/img/slideshow/slide3.jpeg");
    animation-delay: 12s;
}
.slideshow li:nth-child(4) span {
    background-image: url("/img/slideshow/slide4.jpeg");
    animation-delay: 18s;
}



@keyframes imageAnimation {
  0% { opacity: 0; animation-timing-function: ease-in; }
  8% { opacity: 1; animation-timing-function: ease-out; }
  17% { opacity: 1; }
  25% { opacity: 1; }
  40% { opacity: 0; transform: scale(1.18); }
  100% { opacity: 0; }
}

.no-cssanimations .cb-slideshow li span {
	opacity: 1;
}
