/* estilos barra de navegación */

.header{
	font-family: sans-serif;
	background-color: #394087;
	height: 80px;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index:2;

}

.navbar{

	display: flex;
	justify-content: space-between;
	max-width: 992px;
	margin: 0 auto;
}

.brand{	
	margin-top: -10px;
	font-size: 30px;
	line-height: 80px;
	font-weight: bolder;

}
.brand span{
	color: #E5F033;
	font-weight: bold;
}


.menu{
	display: flex;
	width: 50%;
	justify-content: space-around;
	line-height: 80px;
	margin-right: 40px;
	list-style: none;
}

.nav-menu-item{
	font-size: 20px;
	line-height: 80px;
}


.menu a{
	color: white;
	text-decoration: none;
	font-weight: bold;

	border-radius: 3px;
}
.menu .active{
	color: white;
}
/*
.menu .active:hover{
	background-color: yellow;
	transition: ease-in .5s;
	color: black;
}*/

.nav-toggle{
	color: white;
	background: none;
	border: none;
	font-size: 30px;
	padding: 0 20px;
	line-height: 60px;
	display: none;
	cursor: pointer;
}

@media (max-width: 1010px){
	
.header{
	height: 60px;

}

.navbar{
	display: flex;
	justify-content: space-between;
	max-width: 992px;
	min-width: 400px;
	margin: 0 auto;
}

.brand{
	font-size: 25px;
	line-height: 60px;	
	padding: 0 20px;
}

.menu{
	flex-direction: column;
	align-items: center;
	margin: 0px;
	background-color: #2c3e50;
	position: fixed;
	left: 0;
	top: 60px;
	width: 100%;
	padding: 20px 0;
	height: auto;
	overflow-y: auto;
	left: 100%;
	transition: left 0.3s;
}

.nav-menu-item{
	line-height: 70px;
}

.menu .active:hover{
	background: none;
	color: skyblue;

}

.nav-toggle{
	margin-top: -5px;
	display: block;
}

.menu-visible{
	left: 0;
}


}