/* UTF-8 à jamais */
/*--------- A GARDER ---------*/
.menu_btn_ouvre,
.menu_btn_ferme{
	position:absolute;
	top:20px;
	left:0;
	cursor:pointer;
	display:none;
}
.menu_btn_ouvre svg,
.menu_btn_ferme svg{
	width:30px;
	height:auto;
}
.menu_btn_ferme{
	left:285px;
}
.menu_btn_ouvre svg .element_change_couleur,
.menu_btn_ferme svg .element_change_couleur{
	fill:#e0710d;
}
/*---------------------------*/
#menu ul{
	border-radius:10px;
	background:#fff;
	padding:25px 45px;
	display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-moz-flex;display:-webkit-flex;display:flex;
	gap:30px;
}
#menu ul li{
	border-right:2px solid #d9d9d9;
	padding-right:30px;
}
#menu ul li.dernier{
	border-right:0;
	padding-right:0;
}
#menu ul li a{
	text-decoration:none;
	font-family:"BigShouldersDisplay";
	font-size:1.44em;
	font-weight:600;
}
#menu ul li.sel a{
	color:#1a161a;
}

@media screen and (max-width:1279px){
	.menu_btn_ouvre,
	#menu.aff .menu_btn_ferme{
		display:block;
	}
	#menu{
		position:fixed;
		top:0;
		left:-332px;
		width:332px;
		height:100vh;
		overflow-y:scroll;
		background:#051423;
		z-index:10;
		transition:all 0.3s ease;-moz-transition:all 0.3s ease;-webkit-transition:all 0.3s ease;-o-transition:all 0.3s ease;
	}
	#menu.aff{
		left:0;
	}
	#menu ul{
		border-radius:none;
		background:none;
		padding:40px 20px;
		flex-direction:column;
		gap:24px;
	}
	#menu ul li{
		border-right:0;
		border-bottom:1px solid #d9d9d9;
		padding-right:0;
		padding-bottom:24px;
	}
	#menu ul li.sel a{
		color:#fff;
	}
}