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

@keyframes slidy {

0% { left: 0%; }

20% { left: 0%; }

25% { left: -100%; }

45% { left: -100%; }

50% { left: -200%; }

70% { left: -200%; }

75% { left: -300%; }

95% { left: -300%; }

100% { left: -400%; }

}


/*  slider  */


.slide {
	width: 20%;
	height: 800px;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	background-image: url(../img/slider/1.jpg);
}
.slide:nth-child(2) {
	width: 20%;
	height: 800px;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	background-image: url(../img/slider/2.jpg);
}
.slide:nth-child(3) {
	width: 20%;
	height: 800px;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	background-image: url(../img/slider/1.jpg);
}
.slide:nth-child(4) {
	width: 20%;
	height: 800px;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	background-image: url(../img/slider/2.jpg);
}
.slide:nth-child(5) {
	width: 20%;
	height: 800px;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	background-image: url(../img/slider/1.jpg);
}



div#slider {
	overflow: hidden;
	height: auto;
}

div#slider figure .slide {
	width: 20%;
	float: left;
}	

div#slider figure {
	position: relative;
	width: 500%;
	height: auto;
	margin: 0;
	left: 0;
	text-align: left;
	font-size: 0;
	animation: 35s slidy infinite;

}
/*  end slider  */


@media all and (max-width: 768px) { 
div#slider {
	overflow: hidden;
	height: 640px;
}
div#slider figure {
	position: relative;
	width: 500%;
	height: 640px;
	margin: 0;
	left: 0;
	text-align: left;
	font-size: 0;
	animation: 30s slidy infinite;

}
div#slider figure .slide {
	width: 20%;
	float: left;
	height: 640px;
}	
}
