header{
	position:fixed;
	top:0px;
	left:0px;
	height: auto;
	min-height: 60px;
	width: 100%;
	height: auto;
	transition:1s;
}

#menu{
	position: absolute;
	height:calc(100vh - 60px);
	width:0px;
	top:60px;
	right:0px;

	overflow:hidden;
	display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;

	opacity:0;

	transition:0.5s;
}
#menu a{
	color:#1b2542;
}
.menuOpen{
	width:100vw !important;
	opacity:1 !important;

	transition:1s;
}
.e-menu{width: 100%;text-align: center;padding-top:15px;padding-bottom:15px;}
.e-menu:hover{background-color:#1b2542 !important; }
a:hover .e-menu {color:white !important;}
.container-submenu{
	text-align: center;
	cursor:pointer;
}
.container-submenu:hover > .sub-menu {color:white !important;}
.container-submenu:hover > .sub-menu > i{color:white !important;}
.e-submenu{
	width:100vw;
	display:none;
	flex-flow: column nowrap;
	justify-content: center;
}
.submenu-activo{
	display:flex !important;
	animation-name: submenu-animation;
    animation-duration: 0.5s;
}

@keyframes submenu-animation {
    0%   {opacity: 0; }
    100% {opacity: 1;}
}
.e-submenu > div{
	width:100%;
}
.e-submenu > a{
	width:100%;
}
.e-submenu > a{
	padding:10px,5px !important;
	margin-bottom:0px !important;
	transition:0.5s;
}
.e-submenu > a:hover {
	color: #1b2542 !important;
	background-color:white !important;
	transition:0.5s;
}
.e-submenu > a > div{
	padding: 10px 5px;
}
/* ICONO DE LA HAMBURGUESA CON ANIMACIÓN */ 
.container-burger{
	width:100vw;
	height:60px;
	position:absolute;
	top:0;
	left:0;
	
}
.mt-n-15{margin-top:-15px;}
#burger{
    position: absolute;
    top: 32px;
    right: 0px;
}
.menu-burguer{
	display:none;
}
/*toggle-icon*/
.toggle-icon {
display: block;
position: relative;
width: 100%;
margin: -2.2em auto 0 0.2em;
-webkit-transition: margin 600ms;
-moz-transition: margin 600ms;
transition: margin 600ms;
cursor: pointer;
transform: scale(0.6);
}

.toggle-icon .bar {
display: block;
width: 3.8em;
height: 0.2em;
margin: 0.9em;
border-right: 2.8em solid #1b2542;
border-left: 0.6em solid #1b2542;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition-property: -webkit-transform, margin, border-right-color, box-shadow;
-moz-transition-property: -moz-transform, margin, border-right-color, box-shadow;
transition-property: transform, margin, border-right-color, box-shadow;
-webkit-transition-duration: 600ms;
-moz-transition-duration: 600ms;
transition-duration: 600ms;
}
/* .toggle-icon .bar:nth-of-type(1) {
	-webkit-transition: opacity 300ms;
	-moz-transition: opacity 300ms;
	transition: opacity 300ms;
} */
.toggle-icon .bar:nth-of-type(2) {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

/*pushed*/
.pushed .toggle-icon {
margin: -3.2em 0 0 0.7em;
}

.pushed .bar:nth-of-type(1) {
	opacity: 0;
}

.pushed .bar:nth-of-type(2) {
	margin-left: 1.4em;
	-webkit-transform: rotate(-137deg) translateY(-1.5em);
	-moz-transform: rotate(-137deg) translateY(-1.5em);
	-ms-transform: rotate(-137deg) translateY(-1.5em);
	-o-transform: rotate(-137deg) translateY(-1.5em);
	transform: rotate(-137deg) translateY(-1.5em);
}

.pushed .bar:nth-of-type(3) {
	margin-left: 0.5em;
	-webkit-transform: rotate(-42deg);
	-moz-transform: rotate(-42deg);
	-ms-transform: rotate(-42deg);
	-o-transform: rotate(-42deg);
	transform: rotate(-42deg);
}

/* FIN - ICONO DE LA HAMBURGUESA CON ANIMACIÓN */ 

@media only screen and (min-width: 576px){
	#burger{right: 20px;}
	
}
@media only screen and (min-width: 768px){
	.menu-burguer{
		display:block;
		position: absolute;
		top: 9px;
		right: 110px;
		font-size:30px;
	}
}
@media only screen and (min-width: 992px){
	.menuOpen{
		width:450px !important;
		align-items: flex-end !important;
		transition:1s;
	}
	.w-menu-aux{width:750px !important;}
	.e-menu{
		width:450px;
		padding-left:30px;
		text-align:left;
	}
	.e-submenu {
		position: absolute !important;
		text-align: right;
		align-items: flex-end;
		width: calc(100vw - 450px) !important;
		height: 100% !important;
		right: 450px !important;
		top: 0px !important;
	}
	.e-submenu > a{
		width:300px !important;
	}
	.d-menu-none{
		display:none !important;
	}
}

@media only screen and (min-width: 1200px){

}

 