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

}
li {
	display:inline-block;
	vertical-align: text-bottom;
}
li .opcion {
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	display:block;
	height: 60px;
    font-size: 0.82vw;
	line-height: 80px;
	color: #AAAAAA;
	margin-left: 25px;
	text-align: left;
	padding: 5px;
	
	vertical-align: text-top;
	font-weight: 500;
	border-bottom: 2px solid #A5A5A5;
}
li:hover .opcion {
	margin-bottom: 0px;
	font-weight: 500;
}
.active, .opcion:hover {
	/*** background:linear-gradient(30deg, #fff,#696969, #696969, #DCDCDC, #696969); ***/
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	font-weight: 500;
	border-bottom: 2px solid #9f172e;
}
li:hover ul .opcion {
	background: rgba(178, 193, 51, 0.8);
	font-family: 'Montserrat', sans-serif;
	color: #1F1F1F;
	height: 40px;
	line-height: 70px;
	font-size: 1.05vw;
	text-align: left;
	padding: 8px;	
	font-weight: 500;
	
}
li:hover ul .opcion:hover {
	background: rgba(0, 0, 0, 0.2);
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	font-size: 1.05vw;
	font-weight: 500;
	
}
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: 'Montserrat', sans-serif;
	color: #fff;
	background: #2C2C2C;
	text-align: center;
	padding: 8px 0;
	display: none;
	font-size: 1.05vw;
}
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;
	}
}