.slider{
	position: relative; left:0%; top:0%;
    width:100%;
    height:100%;	
    overflow:hidden;
    position:relative;
    box-sizing: border-box;
    white-space: nowrap;
	
}
.slider > div{
    position:absolute;
    animation:move_slide2 30s infinite;		/* original: 16s */
    opacity:0;
	transition:1s;
}
.slider > div:nth-child(1){ animation-delay: 0; }
.slider > div:nth-child(2){ animation-delay: 8s; }
.slider > div:nth-child(3){ animation-delay: 16s; }
/* .slider > div:nth-child(4){ animation-delay: 12s; } */

@keyframes move_slide{
    90%{ opacity:1; }
    90%{ opacity:1; }
    90%{ opacity:1 }
}
@keyframes move_slide2{
    25%{opacity:1;}
    15%{opacity:1;}
}