@font-face{font-family: 'Roboto';src: url(../Font/Roboto-Bold.ttf);font-weight: bold;font-style: bold;}
@font-face{font-family: 'Roboto';src: url(../Font/Roboto-Regular.ttf);font-weight: normal;font-style: normal;}


header{
	width: 100vw;
	height: 100%;
	max-height: 70px;
	background: #fefefe;
	display:grid;
	align-items: center;
	position: absolute;
	top: 0;
	z-index: 210;
}
.icon_menu{
	width: 60px;
	height: 100%;
	display: grid;
	grid-column:-2/-1;
	grid-row: 1/2;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	color: #000;
	text-decoration: none;
	transition: margin-left .3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	margin-left: 30px;
	margin-top: 30px;
	
}
.icon_menu .invisible{
	display: none;
	transition: all .3s;
}
.icon_menu .btn_close:hover{
	transform: rotateZ(90deg);
}
.icon_menu i{
	cursor: pointer;
	position: absolute;
	transition: all .3s;
}
.logo{
	display: flex;
	justify-content: center;
	margin: auto;
	height: 70px;
	max-height: 70px;
 	align-items: center;
	overflow: hidden;
	margin-top: -30px;
}
.logo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin-right: 10px;
}
.name_page{
	padding: 20px 30px;
	display: flex;
	align-items: center;
	margin-top: 10px;
	right: 0;
	position: absolute;
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
.name_page i{
	width: 20px;
	font-size: 2rem;
	z-index: 2;
}
.name_page:hover{
	color: #0FD600;
}

/* contenedor del menu UL y LI */
.menu_side{
	width: 450px;
	position: fixed;
	top: 0;
	z-index: 201;
	left: -450px;
	transition: margin-left .3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.nav_link{
	/* ----- color de las letras ---*/
	color: #faf7f7;
	display: block;
	padding: 15px 0;
	text-decoration: none;
	font-size: 1em;
	font-family: 'Roboto';
	font-weight: normal;
}
.nav_inside{
	border-radius: 6px;
	padding-left: 20px;
	text-align: left;
}
.nav_inside:hover{
	/* ----- color del hover de los sub-menu ---*/
	background: #DED9D9;
}
.list{
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	flex-direction: column;
	/* ----- color del fondo del menu ---*/
	background: #0c00a1;
	transition: margin-left .3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.list_item{
	list-style: none;
	width: 100%;
	text-align: center;
	overflow: hidden;

}

.list_item_click{
	cursor: pointer;
}
.list_buttom{
	display: flex;
	align-items: center;
	gap: 1em;
	width: 70%;
	margin: 10px ;
	font-size: 1.5em;
color:#fcfafa;
}
.list_arrow{
	margin-left: auto;
	transition: transform .3s;
}
.arrow .list_arrow{
	transform: rotate(90deg);
}
.list_show{
	width: 80%;
	margin-left: auto;
	border-left: 2px solid black;
	list-style: none;
	transition: height .4s;
	height:0;
}

/*--- clases para animacion del js */
.scroll_none{
	overflow-y: hidden;
}
.icon_menu .btn_abrir{
	display: none;
}
.icon_menu .invisible{
	display: visible;
	transition: all .3s;
}
.side_menu{
	left: 0;
}

/*   responsive */

@media screen and (max-width: 1100px){
	.logo{
		left: 25em;
	}
}
@media screen and (max-width: 800px){
	.logo{
		left: 18em;
	}
}
@media screen and (max-width: 600px){
	.logo{
		left: 10em;
	}	
}
@media screen and (max-width: 450px){
	.menu_side{
	width: 100vw;
}