header {
	background: #fff;
	margin-top: -16px;
	display:flex;
	justify-content: space-between;
	border-bottom: 1px solid #08c2;
	position: fixed;
	z-index: 1000;
	width: 100%;
}

.logo {
	padding-left: 15px;
	min-width: 180px;
	min-height: 65px;
	max-width: 180px;
	max-height: 65px;
	margin-top: 10px;
	user-select: none;
}

.header__div-vacio {
	padding-top: 5px;
	padding-right: 5px;
	padding-left: 5px;
}

.nav{
	padding-top: 20px;
	padding-right: 5px;
}

.nav__ul li+li::before {
 	content: " /" ;
	margin-top: 5px;
	padding-right: 3px;
	padding-left: 3px;
	font-weight: 900;
}

.nav__li {
	font-size: 16px;
	color: #030e2e;
	margin-right: 1px;
	display: inline-block;
	letter-spacing: 1px;
}

.nav__li a {
	color: #030e2e;
	font-family: 'Roboto', sans-serif;
	text-decoration: none;
	background-image: linear-gradient(#030e2e,#030e2e);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
    padding-top: 4px;
	padding-right: 4px;
	padding-left: 4px;
}

.nav__li-a:hover, .nav__li-a:focus {
    background-size: 100% 3px;
}




