@charset "UTF-8";


body { margin: 0; } 

.SLIDE_BG {

	width: 100%;
	height: 100vh;
	background: white;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	
	backface-visibility: hidden;
	animation-name: slideBg;
	animation-duration: 80s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;

	-webkit-backface-visibility: hidden;
  	-webkit-animation-name: slideBg;
  	-webkit-animation-duration: 80s;
  	-webkit-animation-timing-function: linear;
  	-webkit-animation-iteration-count: infinite;


}


	@keyframes slideBg {

		0% {
			background-image: url('img/001.jpg');
		}
		
		30% {
			background-image: url('img/001.jpg');
		}	

		33% {
			background-image: url('img/002.jpg');
		}
		
		63% {
			background-image: url('img/002.jpg');
		}

		66% {
			background-image: url('img/003.jpg');
		}
		
		97% {
			background-image: url('img/003.jpg');
		}

		100% { 
			background-image: url('img/001.jpg');  
		 } 

	}		

