#header_container
{
	width : 100%;
	height : 75px;
	margin : 0px;
	padding : 0px;
	display : flex;
	justify-content: center;
	border-bottom : 1px solid #D3D3D3;
	background-color : white;
}

#header_main
{
	width : 100%;
	height : 100%;
	margin : 0px;
	padding : 0px;
	display : flex;
	justify-content : space-between;
}

#logo_container
{
	height : 100%;
	margin : 0px;
	padding : 0px;
}

#logo_container img
{
	height : calc(100% - 20px);
	width : auto;
	margin : 0px;
	padding : 0px;
	margin-top : 10px;
	margin-left : 10px;
}

#menu_container
{
	display : flex;
	height : 100%;
	justify-content : center;
	margin : 0px;
	padding : 0px;
}

#menu_container ul
{
	margin : 0px;
	padding : 0px;
	margin-right : 10px;
}

#menu_container li
{
	display : inline-block;
	list-style-type : none;
	height : 100%;
	margin : 0px;
	padding : 0px;
	line-height : 75px;
	vertical-align : center;
	padding-left : 10px; 
	padding-right : 10px;
	min-width : 100px;
	text-align : center;
}

#menu_container li:hover
{
	height : calc(100% - 5px);
	border-bottom : 5px solid var(--main_blue);
}

#menu_container a
{
	color : #333333;
	text-decoration : none;
}