#menu-bar {
	display: none;
}

header label {
	float: right;
	font-size: 28px;
	margin: 6px 0;
	cursor: pointer;
	color: #057F9A;
}

.menu {
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(1,28,33,0.9);
	transition: all 0.5s;
	transform: translateX(-100%);
}

.menu a {
	display: block;
	color: #fff;
	height: 50px;
	text-decoration: none;
	padding: 15px;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}


.menu a:hover {
	background: #046175;
}

#menu-bar:checked ~ .menu {
	transform: translateX(0%);
}

@media (min-width:1024px) {
	header label {
		display: none;
	}
	
	.menu {
		margin-top: 45px;
		transform: translateX(0);
		position: static;
		width: auto;
		height: auto;
		float: right;
		display: flex;
		background: none;
	}
	



.menu a {
	display: block;
	color: #333333;
	height: 55px;
	text-decoration: none;
	padding: 7px;
	padding-top: 19px;
}

.menu .activa{
	color: #06799A;
}
	
.menu a:hover{
	background: none;
	color: #06799A;
	}
}