
.contenedor-menu
{
	position: fixed;
    width: 100%;
    height: 80px;
    top: 0px;
    background: white;
    box-shadow: 2px 2px 5px #e34a4c;
    z-index: 3;
}

.contenedor-menu nav
{
	position: relative;
	width: 95%;
	height: 100%;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.menu
{
	list-style: none;
	width: 100%;
	margin: 0px;
	padding: 0;	
}

.menu > li
{
	position: relative;
	display: inline-block;
	height: 100%;
	cursor: pointer;
	vertical-align: middle;
}

.menu > li > a
{
	position: absolute;
	width: max-content;
    height: fit-content;
    top: 0;
    bottom: 0;
    margin: auto;
	display: block;
	padding: 0 10px;
	color: #e34a4c;
	text-decoration: none;
	/* font-family: 'dotum'; */
	font-family: 'calibri';
	font-size: 16px;
}

.menu-texto-oculto
{
	opacity: 0;
    padding: 0 10px;
    font-size: 15px;
	font-family: 'dotum';
	font-weight: bolder;
}

.texto-menu-span
{
	position: absolute;
    width: fit-content;
    height: fit-content;
    top: 0;
    bottom: 0;
    font-size: 25px;
}

.texto-menu-span:hover
{
	color: #d80003;
}

.menu > li > a:hover
{
	color: #d80003;
}

.menu-enfocar:hover
{
	border-bottom: 2px solid;
}

.dropdown-menu > li > a
{
	padding: 3px 15px;
	color: #e34a4c;
}

.dropdown-menu > li > a:hover
{
	color: #d80003;
}

.color-menu
{
	color: #e34a4c;
}

.dropdown-menu
{
	left: calc(50% - 87px);
	top:  60%;
	margin: 15px 0;
	border: 1px solid #e34a4c;
    box-shadow: 0px 0px 4px rgb(255 255 255);
}

.dropdown-menu:before
{
	content: '';
    position: absolute;
    top: -10px;
    left: calc(50% - 10px);
    border-bottom: 10px solid #e34a4c;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.boton-menu
{
	display: none;
}

.boton-menu span
{
	color:#d80003b5;
	font-size: 25px;
	cursor: pointer;
	display: block;
	margin: auto;
}

.menu-nombre
{
	float: right;
}

.menu-nombre > a
{
	padding: 0px !important;
}

.menu-logo img
{
	height: 70px;
    margin-top: 5px;
    padding-right: 20px;
}

.menu-redes
{
	float: right;
	width: 35px;
}

.menu-redes > a
{
	padding: 0 !important;
}

.menu-pc-ocultar
{
	display: none !important;
}

.menu-pc-ocultar2
{
	display: none !important;
}

.menu-movil-ocultar
{
	display: inherit !important;
}

@media screen and (max-width: 1100px)
{
	.dropdown-menu
	{
		left: 10px;
	    top: 100%;
	    margin: 0;
	}

	.contenedor-menu nav
	{
		position: absolute;
		width: 60%;
		min-width: 300px;
		height: auto;
		min-height: 400px;
    	max-height: 80vh;
		left: -100%;
		margin: 0;
		background: #fff;
		border: 1px solid #e34a4c;
    	border-bottom-right-radius: 0.5rem;
		overflow-y: auto;
	}

	.menu > li
	{
		display: block;
		border-bottom: 1px solid #e34a4c;
		height: 40px;
	}

	.menu > li:hover
	{
		color: #d80003;
	}

	.boton-menu
	{
		width: 94%;
	    height: 100%;
	    margin: auto;
	    display: block;
	}

	.boton-menu .texto-menu
	{
		display: block;
		color: #fff;
		text-decoration: none;
		font-weight: bold;
		font-family: 'calibri';
		font-size: 25px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.menu-nombre
	{
		float: none;
	}

	.menu-nombre > a
	{
		font-weight: bolder;
		padding: 15px 10px !important;
	}

	.menu-logo
	{
		display: none !important;
	}

	.menu-enfocar:hover
	{
		border: none;
	}

	.menu-redes
	{
		float: none;
    	width: 100%;
    	padding: 0px 10px;
	}

	.menu-pc-ocultar
	{
		display: inherit !important;
	}

	.menu-pc-ocultar2
	{
		display: initial !important;
	}

	.menu-movil-ocultar
	{
		display: none !important;
	}
}