/*setting position of slider*/
#slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}
/*bottom line shows duration of slides, hidden as dots*/
#slider #line {
	height: 5px;
	background: rgba(0,0,0,0.5);
	z-index: 1;
	position: absolute;
	bottom: 0;
	right: 0;
	display: none;
}

#slider #dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 16px;
	display: flex;
	justify-content: center;
	display: none;
}

#slider #dots li {
	transition: 0.3s;
	list-style-type: none;
	width: 12px;
	height: 12px;
	border-radius: 100%;
	background: rgba(0,0,0,0.5);
	margin: 0 0.25em;
	cursor: pointer;
}

#slider #dots li:hover,
#slider #dots li.active {
	background: white;
}

@keyframes line {

	0% {width: 0%;}
	100% {width: 100%;}

}

#slider #back,
#slider #forward {
	height: 80%;
	width: 6%;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: 0.3s;
	cursor: pointer;
	position: absolute;
	top: 20%;
	left: 0;
	bottom: 0;
	color: white;
	font-weight: 700;
    font-size: 2rem;
	z-index: 999;
}

#slider #forward {
	left: auto;
	right: 0;

}

#slider:hover #back,
#slider:hover #forward {
	opacity: 0.7;
}

ul#move {
	margin: 0;
	padding: 0;
	display: flex;
	width: 100%;
	background: gray;
	margin-right: 100%;
}


ul#move li {
	transition: 0.6s;
	min-width: 100%;
	color: white;
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*width of image*/
ul#move li img {
	width: 100%;
    height:95vh;
	object-fit: cover;
}
/*in case that images dont load*/
ul#move li:nth-child(1) {
	background: #fff;
}

ul#move li:nth-child(2) {
	background: #fff;
}

ul#move li:nth-child(3) {
	background: #fff;
}

ul#move li:nth-child(4) {
	background: #fff;
}

ul#move li:nth-child(5) {
	background: #fff;
}