/**{	*/
/*	margin: 0;*/
/*	padding: 0;*/
/*	box-sizing: border-box;*/
/*}*/
.slides{
	position: relative;
	background: whitesmoke;
	height: 100vh;
	overflow: hidden;
}
.slide{
	position: absolute;
	inset: 0;
	opacity: 0;
animation: sliding 12s infinite ;
}

	.slide_two{
		animation-delay: 4s;
	}

	.slide_three{
		animation-delay: 8s;
	}
		.slide_three{
		animation-delay: 8s;
	}
		.slide_four{
		animation-delay: 8s;
	}
		.slide_five{
		animation-delay: 8s;
	}
		.slide_six{
		animation-delay: 8s;
	}
.slide_img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes sliding{
	    0%{opacity:0;}
		10%{opacity:1;}
        20%{opacity:1; transform: scale(1.05);}
         30%{opacity:0; transform: scale(1.05);}
	100%{opacity:0;}


}