* {
	margin:0;
	padding: 0;
	box-sizing: border-box;
}

section #navegaslider {
	position:relative;
	width: 100%;
	height: 100vh;
	 

}

section video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
section .navegacionslider{
	position: relative;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	display: flex;
	justify-content:center;
	align-items:center;
}

section .navegacionslider li{
	list-style: none;
	cursor: pointer;
	margin: 0 10px;
	border-radius: 2px;
	background: #eee;
	padding: 3px 3px 0;
	opacity: 0.65;
	transition: 0.6s;
}

section .navegacionslider li:hover{
	opacity: 1;
	background: #fff;
}

section .navegacionslider li img{
	width: 100px;
	transition: 0.6s;
}

section .navegacionslider li img:hover{
	width: 150px;
}



