ul {
    list-style-type: none;
    padding: 0;
    position: absolute;
    z-index: 10;	
}

li {
	display:inline-block;
}

li .opcion {
	text-decoration: none;
	font-family: 'Oswald', sans-serif;
	display:block;
	height: 45px;
	text-align: center;
    font-size: 17px;
	line-height: 40px;
	color: rgb(5,169,226);
	margin-left: 73px;

}

li:hover .opcion {
	border-bottom: 3px solid #b0e815;
	color: rgb(2,2,76, 0.99);
}

li:hover ul .opcion {
	background: rgb(5,169,226, 0.99);
	font-family: 'Oswald', sans-serif;
	color: #fff;
	height: 40px;
	line-height: 40px;
	font-size: 17px;
}

li:hover ul .opcion:hover {
	background: rgba(0, 0, 0, 0.6);
	font-family: 'Oswald', sans-serif;
	color: #fff;
	font-size: 17px;
}

li ul {
	display: none;
}

li ul li {
	display: block;
	float: none;
}

li ul li .opcion {
	width: 120px;	
}

ul li .opcion:hover + .oculto, .oculto:hover {
	display: block;
}

.menu-responsive {
	text-decoration: none;
	font-family: 'Oswald', sans-serif;
	color: #fff;
	background: rgb(2,2,76, 0.99);
	text-align: center;
	padding: 10px 0;
	display: none;
	font-size: 17px;
}

input[type=checkbox]{
    display: none;
}

input[type=checkbox]:checked ~ #menu{
    display: block;
}

@media screen and (max-width : 820px){
	ul {
		position: static;
		display: none;
	}
	
	li {
		margin-bottom: 1px;
	}
	
	#menu li, li .opcion {
		width: 100% !important;
        border-radius: 5px;
	}
	
	.menu-responsive {
		display:block;
	}
}
