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

}
li {
	display:inline-block;
	vertical-align: text-top;
	margin-left: 5px;
}
li .opcion {
	text-decoration: none;
	border-bottom: 2px solid #484848;
	font-family: 'Montserrat', sans-serif;
	display:block;
	height: 8px;
    font-size: 0.82vw;
	line-height: 10px;
	color: #fff;
	margin-left: 22px;
	margin-right: 22px;
	text-align: right;
	padding: 10px 5px;
	vertical-align: text-top;
	font-weight: 600;
}

li:hover .opcion {
	border-bottom: 2px solid #fff;
	margin-bottom: 0px;
	color: #484848;
	font-weight: 600;
	font-size: 0.82vw;
	line-height: 10px;
	font-family: 'Montserrat', sans-serif;
}

.active, .opcion:hover {
  border-bottom: 2px solid #fff;
	font-weight: 600;
	font-size: 0.82vw;
	color: #484848;
	font-family: 'Montserrat', sans-serif;
}
a:active, .opcion:hover {
  border-bottom: 2px solid #fff;
	font-weight: 600;
	font-size: 0.82vw;
	color: #484848;
	font-family: 'Montserrat', sans-serif;
}

li:hover ul .opcion {
	background: rgba(178, 193, 51, 0.8);
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	height: 40px;
	line-height: 20px;
	font-size: 0.82vw;
	text-align: left;
	padding: 12px;	
	font-weight: 600;
}
li:hover ul .opcion:hover {
	background: rgba(0, 0, 0, 0.7);
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	font-size: 0.82vw;
	font-weight: 600;
}
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: 13px;
	font-weight: 600;
}

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

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

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