@charset "UTF-8";
/* CSS Document */

.crossfade > figure {
	animation: imageAnimation 24s linear infinite 0s;
	backface-visibility: hidden;
	background-size: cover;
	background-position: center center;
	color: transparent;
	height: 100%;
	left: 0px;
	opacity: 0;
	position: absolute;
	top: 0px;
	width: 100%;
	z-index: 0;
	
}
.crossfade > figure:nth-child(1) {
	background-image: url('images/crossfade1.jpg');
}
.crossfade > figure:nth-child(2) {
	animation-delay: 5s;
	background-image: url('images/crossfade2.jpg');
}
.crossfade > figure:nth-child(3) {
	animation-delay: 10s;
	background-image: url('images/crossfade3.jpg');
}
.crossfade > figure:nth-child(4) {
	animation-delay: 15s;
	background-image: url('images/crossfade4.jpg');
}
.crossfade > figure:nth-child(5) {
	animation-delay: 20s;
	background-image: url('images/crossfade5.jpg');
}

/******
.tinted-image {
  background: 
    /* top, transparent red, faked with gradient */ 
/******
    linear-gradient(
      rgba(255, 0, 0, 0.45), 
      rgba(255, 0, 0, 0.45)
    );
}
**************/


 @keyframes imageAnimation {
0% {
 animation-timing-function: ease-in;
 opacity: 0;
}
 8% {
 animation-timing-function: ease-out;
 opacity: 1;
}
 17% {
 opacity: 1
}
 25% {
 opacity: 0
}
 100% {
 opacity: 0
}
}
