.head-menu { /*CONTENEDOR PRINCIPAL DE TODA LA SECCION DE MENU*/
	position: relative;
	padding: 10px 0px;
	border-bottom: 1px solid gainsboro;
}
.site-navigation { /*CONTENEDOR DE SOLAMENTE EL MENU Y BOTON DE MENU RESPONSIVO*/
	display: flex;
	justify-content: flex-end;
}
nav {
	position: absolute;
	width: 100%;
	top: 100%;
	left: -100%;
	transition: .5s all; /*ANIMAR CUALQUIER CAMBIO EN ESTE CASO EL CAMBIO DE LEFT*/
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
nav ul {
	display: flex;
	flex-direction: column;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
nav ul li {
	position: relative;
}
nav ul li a {
	display: flex; /*PARA MANEJAR EL CARET INTERIOR*/
	align-items: center;
	padding: 10px 20px;
	text-decoration: none;
	line-height: 2;
	border-bottom: 1px solid gainsboro;
}
nav a b {
	font-size: 14px !important;
	margin-left: auto;
}
nav li ul { /*OCULTAR TODO SUBMENU QUE ESTE DENTRO DE UN ITEM DE PRIMER NIVEL DEL MENU*/
	display: none;
}
.menu-mobile-button {
	display: inline-flex;
	padding: 8px;
	border: 1px solid #cacaca;
	border-radius: 3px;
	cursor: pointer;
}
.menu-mobile-button label {
	display: inline-flex;
	cursor: inherit;
}
.menu-mobile-button i {
	line-height: 16px;
	font-size: 21px
}
.menu-mobile-button input[type=checkbox] {
	display: none;
}

@media (min-width: 992px) {
	.head-menu {
		padding: 0px;
	}
	.site-navigation {
		justify-content: center;
	}
	nav {
		position: static;
		width: auto;
	}
	nav a b {
		margin-left: 15px;
	}
	nav ul {
		flex-direction: row;
		/*background-color: whitesmoke;*/
	}
	nav ul ul ul {
		left: 100%;
		top: 0;
	}
	nav > ul > li > a { /*REMOVE BORDER DE FONDO SOLO DEL PRIMER NIVEL*/
		border-bottom: none;
	}
	nav li ul {
		position: absolute;
		flex-direction: column;
	}
	nav ul li a {
		padding: 10px 30px;
		white-space: nowrap;
	}
	nav ul li:hover > ul {
		display: flex;
	}
	.menu-mobile-button {
		display: none;
	}
}