.slider{
	position:relative;
	width: 100%;
}
.items{
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-bottom: 350px;
}
.item{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	opacity: 0;
	transition: opacity .6s ease-in-out;
}
.current{
    opacity: 1;
}
.item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.buttons{
	position:absolute;
	z-index: 1;
	top:0;
	left:0;
	width:100%;
	height:330px;
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.button{
	width:32px;
	height:32px;
	border:none;
	outline:none;
	padding:0;
	background:transparent center no-repeat;
	cursor:pointer;
	opacity:.4;
}
.prev{
    background-image: url(../Img/prev.png);
}
.next{
    background-image:url(../Img/next.png);
}
.button:hover{
    opacity:.8;
}
.dots{
	position: absolute;
	top: 330px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 10px;
}
.dot{
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	outline: none;
	padding: 0;
	background: #777;
	cursor: pointer;
	opacity: .5;
	transition: opacity .4s ease-in-out;
}
.dot:nth-child(n+2){
    margin-left: 5px;
}