body, html {
	padding: 0px;
	margin: 0px;
}

.slider {
	position: relative;
	height: 33vw;
	padding: 0px; 
	margin: 0px;
}

.cover {
	width: 100%;
	height: inherit;
	position: absolute;
	top: 0px;
	left: 0px;
	background-repeat: none;
	background-position: center;
	background-size: cover;
}

.arrow-left,
.arrow-right {
	color: white;
	position: absolute;
	bottom: 5%;
	opacity: .6;
	transition: opacity .3s ease;
	font-size: 6vw;
}

.arrow-left {
	left: 20px;
}

.arrow-right {
	right: 20px;
}

.arrow-left:hover,
.arrow-left:focus,
.arrow-right:hover,
.arrow-right:focus {
	opacity: .9;
	cursor: pointer;
}

.dots {
	margin: 0px;
	padding: 0px;
	position: absolute;
	bottom: 2%;
}

.dots li {
	margin: 0px 5px;
	display: inline;
	color: white;
	opacity: .6;
	transition: opacity .3s ease;
	font-size: 1vw;
}

.dots li:hover,
.dots li:focus {
	opacity: 1;
	cursor: pointer;
}

.dots li.active-dot {
	opacity: 1;
}