header{
	width: 100%;
	height: 100px;
	background: white;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.25);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0px;
	z-index: 999;
}

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

header nav ul.navigation{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

header nav ul.navigation li{
	margin-left: 10px;
	margin-right: 10px;
	border-bottom: 1px solid  transparent;
}
header nav ul.navigation li:first-child{
	margin-left: 0px;
}
header nav ul.navigation li:last-child{
	margin-right: 0px;
}
header nav ul.navigation li a{
	font-size: 16px;
	color: #0f4f89;
	text-transform: uppercase;
	text-decoration: none;
}
header nav ul.navigation li.current-menu-item a{
	font-weight: bold;
}
header nav ul.navigation li.current-menu-item,header nav ul.navigation li:hover{
	cursor: pointer;
	border-bottom: 1px solid  #0f4f89;
}

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

.wrapper-menu .menu-menu-container{
	margin: 0px auto;
}


header button.menu-burger {
	display: none;
	width: 31px;
	height: 31px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 0px;
	background-color: transparent;
	cursor: pointer;
}

header button.menu-burger span {
	position: relative;
	width: 31px;
	height: 4px;
	margin-bottom: 5px;
	border-radius: 2px;
	transition: all 0.2s ease-in-out;
	background-color: #0f4f89;
}
header .menu-burger span:last-child {
	margin-bottom: 0px;
}

body.open header button.menu-burger span:first-child {
	transform: rotate(45deg);
	top: 11px;
}
body.open header button.menu-burger span:nth-child(2) {
	opacity: 0;
}
body.open header button.menu-burger span:nth-child(3) {
	top: -7px;
	transform: rotate(-45deg);
}


@media all and (max-width: 768px) {
	header button.menu-burger {
		display: flex;
	}
	.wrapper-menu{
		display: none;
	}
	header,header nav{
		height: 60px;
	}
	header .logo{
		max-height: 40px;
	}
	body.open .wrapper-menu{
		display: flex;
		position: fixed;
		top:60px;
		left: 0px;
		right: 0px;
		bottom: 0px;
		z-index: 999;
		background-color: white;
		flex-direction: column;
		align-items: center;
		justify-content: center;

	}

	.wrapper-menu  .navigation{
		flex-direction: column;
	}
	.wrapper-menu  .navigation li{
		margin-left: 0px;
		margin-right: 0px;
		margin-bottom: 15px;
	}
	.wrapper-menu  .navigation li a{
		font-size: 26px;
	}
	header nav ul.navigation{
		margin-bottom: 15px;
	}
	.sm-social{
		width: 100%;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		margin-top: 15px;
	}
	.sm-social ul.social li{
		margin-left: 15px;
		margin-right: 15px;
	}
}