.cb-slideshow,
.cb-slideshow:after { 

    position: fixed;
    width: 100%;
    height: 500px;
    top: 0px;
    left: 0px;
    z-index: -1; 
    opacity: 5;
}
.cb-slideshow:after { 
    content: '';
    background: transparent url(https://tympanus.net/Tutorials/CSS3FullscreenSlideshow/images/pattern.png) repeat top left; 
}
.cb-slideshow li span { 
    
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 90% 30%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 15s linear infinite 0s; 
    
}
 
.cb-slideshow li div h3 { 


    
    vertical-align:middle;
     text-align: center;
    font-size: 55px;
    padding: 0 0 150px 0;
    line-height: 200px; 
}
.cb-slideshow li:nth-child(1) span { 
    background-image: url(/aes/in/202/001.jpg) 
}
.cb-slideshow li:nth-child(2) span { 
    background-image: url(/aes/in/202/002.jpg);
    animation-delay: 8s; 
}
.cb-slideshow li:nth-child(3) span { 
    background-image: url(/aes/in/202/003.jpg);
    animation-delay: 16s; 
}
.cb-slideshow li:nth-child(4) span { 
    background-image: url(/aes/in/202/004.jpg);
    animation-delay: 24s; 
}


.cb-slideshow li:nth-child(2) div { 
    animation-delay: 8s; 
}
.cb-slideshow li:nth-child(3) div { 
    animation-delay: 16s; 
}
.cb-slideshow li:nth-child(4) div { 
    animation-delay: 20s; 
}

@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 }
}
@keyframes titleAnimation { 
    0% { opacity: 0 }
    8% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}
.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}
@media screen and (max-width: 1140px) { 
    .cb-slideshow li div h3 { font-size: 140px }
}
@media screen and (max-width: 600px) { 
    .cb-slideshow li div h3 { font-size: 80px }
}

/*Adicional Rotacion*/
@keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    animation-timing-function: ease-out;
	}
	8% {
	    opacity: 1;
	    transform: scale(1.05);
	    animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	  
	    animation-timing-function: ease-in;
	}
	85% {
	    opacity: 1;

	    animation-timing-function: ease-in;
	}
	100% { opacity: 0 }
}
@keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    transform: translateX(200px);
	}
	8% {
	    opacity: 1;
	    transform: translateX(0px);
	}
	17% {
	    opacity: 1;
	    transform: translateX(0px);
	}
	19% {
	    opacity: 1;
	    transform: translateX(0px);
	}
	95% { opacity: 1 }
	100% { opacity: 1 }
}