html{
	min-height: 100%;
}
body{
	min-height: 100vh;
}
main{
	float: left;
	width: 100%;
}
.scroll_not #menus{
	position: fixed;
}
#menus{
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 25px calc((100% - 1070px) / 2);
}
#menus ol{
    flex: 1;
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
}
#menus ol li{
	position: relative;
	display: inline-block;
}
#menus ol li a,#menus ol li span{
    position: relative;
	display: inline-block;
	padding: 10px 37px;
	color:#fff;
	cursor: pointer;
	text-decoration: none;
	text-transform: uppercase;
	transition-property: background;
}
#menus ol li ol{
	position: absolute;
	visibility: hidden;
	opacity: 0;
	background:var(--colorhover);
	transition-property: opacity;
}
#menus ol li:hover ol{
	visibility: visible;
	opacity: 1;
}
#menus ol li ol li a,#menus ol li ol li span{
	white-space: nowrap;
}
#menus ol li ol li a:hover,#menus ol li ol li span:hover,#menus ol li ol li a.menuOn,#menus ol li ol li span.menuOn{
	background:rgba(var(--rgb),0.5);
}
#btn_menu{
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 999;
	width:50px;
	padding:2px 5px;
	border:none;
	cursor: pointer;
	text-align: center;
	background:#0053a1;
	visibility: hidden;
	opacity: 0;
	transition-property: opacity;
}
#btn_menu svg{
	flex: 0 0 40px;
	width:40px;
	height: 40px;
	fill:#fff;
	transition-property: fill;
}
#btn_menu:active svg{
	fill:var(--colorhover);
}
#btn_menu path{
	transition-property: transform;
}
#btn_menu.menu_on path.barre-menu-milieu{
	transform: translate(100%,0)
}
#btn_menu path.barre-menu-haut{
	transform-origin: 79px 176px;
}
#btn_menu.menu_on path.barre-menu-haut{
	transform: rotate(45deg);
}
#btn_menu path.barre-menu-bas{
	transform-origin:61px 314px;
}
#btn_menu.menu_on path.barre-menu-bas{
	transform: rotate(-45deg);
}