/*Menu Responsive*/
header{
	width: 100%;
	height: 50px;
	background: rgba(0,46,130,1);
	color:  #fff;
	-webkit-box-shadow: 0px 6px 5px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 6px 5px -2px rgba(0,0,0,0.75);
     box-shadow: 0px 6px 5px -2px rgba(0,0,0,0.75);
     position: fixed;       /*propiedad para que el menu se quede estatico al momento de hacer scroll*/
     top: 0;
     left: 0;
     z-index: 100;  /*para que el header sea siempre quien tape a los demas elementos*/
}

@font-face {
font-family: roboto;
src: url(./font/roboto.ttf);
}


#btn-menu{
	display: none;
}

header label{
	display: none;
	width: 40px;
	height: 40px;
	padding: 10;
	
	cursor: pointer;

}

header label:hover{
	cursor: pointer;
	background: rgba(0,0,0,0.3);
}

.menu ul{
	margin: 0;
	list-style: none;
	padding: 0;
	display: flex; 
	justify-content: center;
	 font-family: roboto thin;
	 font-size: 26px;
}

.menu li{
/*	flex-grow: 1; */
}


.menu li:hover{
	background: rgba(255,255,255,0.5);
	border-radius: 15px;	
	transition: all 0.4s;

}

.menu li a{
	display: block;
	padding: 7.5px 20px;
	color: #fff;
	text-decoration: none;
}


@media (max-width:768px){
	
	header label{
		display: block;
	}

	.menu{
		position: absolute;
		background: rgba(0,46,130,1);
		width: 70%;
		margin-left: -90%;
		transition: all 0.5s;
	}
	.menu ul{
		flex-direction: column;
	} 

	.menu li {
		border-top: 1px solid #fff;
	} 

	#btn-menu:checked ~ .menu{
		margin: 0;

	}

}








	/*
#btn-menu{
	display: none;
}

header label{
	display: none;
	width: 40px;
	height: 40px;
	padding: 10;
/*	border-right: 1px solid	#fff; */
/*
}

header label:hover{
	cursor: pointer;
	background: rgba(0,0,0,0.3);
}

.menu ul{
	margin: 0;
	list-style: none;
	padding: 0;
	display: flex; 
	justify-content: center;
	 font-family: roboto thin;
	 font-size: 26px;
}

.menu li{
/*	flex-grow: 1; */  /*
}


.menu li:hover{
	background: rgba(255,255,255,0.5);
	border-radius: 15px;	
	transition: all 0.4s;
}

.menu li a{
	display: block;
	padding: 7.5px 20px;
	color: #fff;
	text-decoration: none;
}


@media (max-width:768px){
	
	header label{
		display: block;
	}

	.menu{
		position: absolute;
		background: rgba(0,46,130,1);
		width: 70%;
		margin-left: -90%;
		transition: all 0.5s;
	}
	.menu ul{
		flex-direction: column;
	} 

	.menu li {
		border-top: 1px solid #fff;
	} 

	#btn-menu:checked ~ .menu{
		margin: 0;

	}

}




/*---------------------*/