@charset "utf-8";
*,*::before,*::after{
	box-sizing: border-box;
}
.nav-toggle{
	display: none;
}
.header .menu {
	/* [disabled]padding-top: 3%; */
	font-size: 20px;
	font-family: Titillium, "Titillium Bd", "Titillium Lt", "Titillium Up";
	font-weight: 500;
	background-color: white;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	padding-left: 44px;
	
	

}

.menu ul {
	padding: 0;
	margin: 0px;
	list-style: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	

}
.menu ul li {
	margin:0px 35px;
}
ul li a {
	text-decoration: none;
	color: #124677;
	font-size: 20px;
	line-height: 85px;
	font-weight: 700;
}
ul li a:hover {
	color:#126FC7;

}
li a img {
	margin-bottom: -5px;

}





@media screen and (max-width: 850px)  {
	ul li a {
		font-size: 15px;
		line-height: 35px;
	}
	ul li{
		margin: 0px;
	}
}
@media screen and (max-width: 660px)  {
	.header{
		width: 100%;
	}
	.header .menu{
		display: none;
	}
	.nav-toggle{
		display: none;
	}
	.nav-toggle-lable{
		margin-left: 15px;
		margin-top: 15px;
		margin-bottom: 20px;
	}
	.nav-toggle-lable span,
	.nav-toggle-lable span::before,
	.nav-toggle-lable span::after{
		width: 2em;
		display: block;
		background: #124677;
		height: 3px;
		border-radius: 2px;
		position: relative;
		cursor: pointer;
	}
	.nav-toggle-lable span::before,
	.nav-toggle-lable span::after{
		content: '';
		position: absolute;
		
	}
	.nav-toggle-lable span::before{
		bottom: 7px;
	}
	.nav-toggle-lable span::after{
		top: 7px;
	}	
	ul li a {
		font-size: 15px;
		line-height: 20px;
		
	}
	.menu ul {
		flex-direction: column;

		top: -300px;
	}
	.nav-toggle:checked ~ .menu{
		display: block;
		margin-left: 15px;
		padding-left: 0px;
	}
	.menu ul li{
		margin-left: 0px;
	}
}