#slideshow-div{
    position: relative;
    width: 100%;
    height:95vh;
    background-color: rgb(43,46,51);

}


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




.slideshow,
.slideshow:after {
	
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index:0; 
}
.slideshow:after { 
    content: '';  position: fixed;	
}
.slideshow li span {  /* IMG div */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: #fff;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat:no-repeat;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 36s linear infinite 0s;
    -moz-animation: imageAnimation 36s linear infinite 0s;
    -o-animation: imageAnimation 36s linear infinite 0s;
    -ms-animation: imageAnimation 36s linear infinite 0s;
    animation: imageAnimation 36s linear infinite 0s; 
}




.slideshow li div {  /* TXT div */ 
    z-index: 2;
    position: absolute;
	bottom:5%;
	left:5%;
	margin-left: auto;
	margin-top: auto;		
    width: auto;
    text-align: left;
    opacity: 0;	
    color: #fff;
    -webkit-animation: titleAnimation 36s linear infinite 0s;
    -moz-animation: titleAnimation 36s linear infinite 0s;
    -o-animation: titleAnimation 36s linear infinite 0s;
    -ms-animation: titleAnimation 36s linear infinite 0s;
    animation: titleAnimation 36s linear infinite 0s;	
}


.slideshow li div h1, h2 {
    font-family: 'Source Sans Pro', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    hyphens: auto;
    opacity: 1;
    width: auto;
    height: auto;
    text-align: left;


}

.slideshow li div h1 { 
    display:block;
	font-weight:600;
	text-transform: uppercase;
	font-size: 2em;  
    


}


.slideshow li div h2 { 
position: relative;
    font-weight:900;
    text-transform: uppercase;
    font-size: 5em;
    border: none;
    
}

/* ---------------------------------------Einleitung */
.slideshow li:nth-child(1) div { 
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    -ms-animation-delay: 0s;
    animation-delay: 0s; 
}

/* ---------------------------------------TxT 1 */
.slideshow li:nth-child(2) div { 
    -webkit-animation-delay: 5s;
    -moz-animation-delay: 5s;
    -o-animation-delay: 5s;
    -ms-animation-delay: 5s;
    animation-delay: 5s; 
}

/* ---------------------------------------Bild 1 */
.slideshow li:nth-child(2) span { 
    background-image: url(../../images/pictures/reference/slideshow/1.jpg); 
     -webkit-animation-delay: 11s;
    -moz-animation-delay: 11s;
    -o-animation-delay: 11s;
    -ms-animation-delay: 11s;
    animation-delay: 11s; 
}

/* ---------------------------------------TxT 2 */
.slideshow li:nth-child(3) div { 
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s; 
}

/* ---------------------------------------Bild 2 */
.slideshow li:nth-child(3) span { 
    background-image: url(../../images/pictures/reference/slideshow/2.jpg);
    -webkit-animation-delay: 23s;
    -moz-animation-delay: 23s;
    -o-animation-delay: 23s;
    -ms-animation-delay: 23s;
    animation-delay: 23s; 
}


/* ---------------------------------------Ende */
.slideshow li:nth-child(4) div { 
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s; 
}

    
/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation { 
    0% { opacity: 0;    -webkit-animation-timing-function: ease-in; }
    4% { opacity: 1;    -webkit-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@-moz-keyframes imageAnimation { 
    0% { opacity: 0;    -moz-animation-timing-function: ease-in; }
    2% { opacity: 1;    -moz-animation-timing-function: ease-out; }
    15% { opacity: 1 }
    18% { opacity: 0 }
    100% { opacity: 0 }
}
@-o-keyframes imageAnimation { 
    0% { opacity: 0;    -o-animation-timing-function: ease-in; }
    4% { opacity: 1;    -o-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 1 }
}

/* Animation for the title */
@-webkit-keyframes titleAnimation { 
    0% { opacity: 0 }
    2% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}
@-moz-keyframes titleAnimation { 
    0% { opacity: 0 }
    2% { opacity: 1 }   
    11% { opacity: 1 }  /* Einblenden Anfang */
    13% { opacity: 0 }  /* Einblenden Ende > je niedriger der Abstand desto schneller */
    100% { opacity: 0 }
}
@-o-keyframes titleAnimation { 
    0% { opacity: 0 }
    2% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 1 }
}

/* Show at least something when animations not supported */
.no-cssanimations .slideshow li span{
	opacity: 1;
}

/* -----------------------------------------------------------------Mobil & Tablet */
@media only screen and (min-width: 0em) and (max-width: 50em){



.slideshow li div h1 { font-size: 1em; padding-left: 0; }

.slideshow li div h2 {font-size: 2em;}



}

