/* Slider */
/* Slideshow container */
#slide-container {
 position: relative;
}
/* First element to be in block mode for responsiveness */
#slide-first-element {
 display: block; /* to get the dimensions set */
 width: 100%;
 height: auto;
}
/* Other element to be in absolute position */
#slide-element-2,
#slide-element-3,
#slide-element-4{
 position: absolute;
 width: 100%;
 height: 100%;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
}
/* Style images */
.slide-image {
 width: 100%;
}
/* Animation settings for individual elements */
/* For more images the animations have to be adjusted */
#slide-first-element {
 animation: fade-1 40s infinite;
 -webkit-animation: fade-1 40s infinite;
}
#slide-element-2 {
 animation: fade-2 40s infinite;
 -webkit-animation: fade-2 40s infinite;
}
#slide-element-3 {
 animation: fade-3 40s infinite;
 -webkit-animation: fade-3 40s infinite;
}
#slide-element-4 {
 animation: fade-4 40s infinite;
 -webkit-animation: fade-4 40s infinite;
}


/* and more if there are more slides to show */
/* example for a 1st slide */
@keyframes fade-1 {
 0% { opacity: 1; }
 25% { opacity: 0; }
 50% { opacity: 0; }
 75% { opacity: 0; }
 100% { opacity: 1; }
}
/* example for a 2nd slide */
@keyframes fade-2 {
 0% { opacity: 0; }
 25% { opacity: 1; }
 50% { opacity: 0; }
 75% { opacity: 0; }
 100% { opacity: 0; }
}
/* example for a 3rd slide */
@keyframes fade-3 {
 0% { opacity: 0; }
 25% { opacity: 0; }
 50% { opacity: 1; }
 75% { opacity: 0; }
 100% { opacity: 0; }
}
/* example for a 4th slide */
@keyframes fade-4 {
 0% { opacity: 0; }
 25% { opacity: 0; }
 50% { opacity: 0; }
 75% { opacity: 1; }
 100% { opacity: 0; }
}





