#menu-bar{
	display: none;
}

header label{
	float: right;
	font-size: 35px;
	margin:2px 0;
	cursor: pointer;
	padding-right:5px;
}
header label a{
	font-size: 22px;	
}
.enlace{
	position: absolute;
	padding:0px 0px;
	left:0px;
}
.logo{
	height: 55px;
}
.menu{
	position: absolute;
	top: 106px;
	left: 0;
	width: 50%;
	height: 42vh;
	padding-right:0px;
	background: rgba(0,0,0,0.9);
	transition: all 0.5s;
	transform: translateX(-100%);
}

.menu a{
	display: block;
	color: #fff;
	height:53px;
	text-decoration: none;
	padding:10px;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.menu a:hover{
	background: rgba(255,255,255,0.3);
}

#menu-bar:checked ~ .menu{
	transform: translateX(0%);
}


/*----------------------Inicio de Pagina responsive -------------------*/
@media(min-width:980px){
	.menu{
		position: static;
		width: auto;
		height: auto;
		transform: translateX(0%);
		float: right;
		display: flex;
		background-color: hsl(215,50%,50%);
	}
	nav ul{
		float: right;
		margin-right: 20px;
	}
	nav ul li{
		display: inline-block;
		line-height: 35px;
		margin:0px 5px;
		list-style:none;
		position: relative;
	}
	nav ul li a{
		color:#fff;	
		font-size:15px;
		padding: 0px 13px;
		border-radius:3px;
		text-transform: uppercase;
		align-items: center;
	}	
	nav ul li a:hover{
		transform: scale(1.1);
		background: #0074C7;
		box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);
	}
	.menu a{
		border: none;
	}
	
	header label{
		display: none;
	}
}
