 .header{
 	height: 150px;
 	width: 100%;
 	background: rgba(188,188,188,0.5);
 	position: relative;
 }

 .header_texture{
 	width: 100%;
 	height: 100%;
 	position: absolute;
 	top: 0;
 	left: 0;
 	background-color: rgba(0,104,112,0.5);
 	z-index: 1;
 }

 .header_navbar{
 	display: flex;
 	width: 100%;
 	height: 100px;
 	flex-direction: row;
 	justify-content: space-between;
 	align-items: center;
 }

 .header_navbar_menu .header_navbar_menu_link:hover{     /* Quand on mouseover le menu, la couleur de la bordure du bas 
 															et du texte passe en orange et gold*/
	color: white;
	border-bottom: 2px solid white;
}

.header_navbar_menu .header_navbar_menu_link{
	border-bottom: 2px solid transparent;
	padding: 10px 0px;
}

.header_navbar_logo_title{
	flex-direction: column;
}

.header_navbar_logo_title{
 	color: white;
 	font-size: 32px;
}

.header_navbar_menu_link{
 	margin-left: 40px;
 	color: white;
 	font-size: 26px;
 	text-decoration: none;
}



.header_navbar_toggle{
 	width: 40px;
 	height: 60px;
 	display: flex;
 	align-items: center;
 	display: none;
 	cursor: pointer;
}

.header_navbar_toggle_icon, .header_navbar_toggle_icon:before, .header_navbar_toggle_icon:after{
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	border-right: 5px;
	background: white;
	position: relative;
}

.header_navbar_toggle_icon:before{
	top: 10px;
}
.header_navbar_toggle_icon:after{
	top: -14px;
}

.is_open .header_navbar_menu{
	transform: translateY(0);
}

@media only screen and (max-width: 1250px){
	.container{
		width: 100%;
		padding: 20px 0;
	}

	.header_navbar_toggle{
		display: flex;
		z-index: 1000;
	}

	.header_navbar_menu{
		transition: all 0.3s ease-in-out;
		transform: translateY(-100%);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: absolute;
		width: 100vw;
		height: 100vh;
		background: rgba(0,104,112,1);
		top: 0;
		left: 0;
	}

	.header_navbar_menu_link{
		margin: 20px 0;
	}

	.header_navbar_logo{
		margin-left: 10px;
	}

	.header_navbar_toggle{
		margin-right: 10px;
	}
}