header{
	position: fixed;
	width: 100%;
	height: 100px;
	background: #fff;
	z-index: 100;
	top: 0;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

header.scrolled{
	height: 80px;
	box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

header > ul{
	position: relative;
	display: flex;
	width: 1024px;
	height: 100px;
	border-bottom: 1px solid #fff;
	align-items: center;
	margin: 0 auto;
	padding: 10px 0;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

header.scrolled > ul{
	height: 80px;
	border-bottom: none;
}

header > ul > li{
	position: relative;
	margin-right: 2rem;
}

header > ul > li > a{
	position: relative;
	font-size: 1rem;
	line-height: 1.2rem;
	font-weight: bold;
	letter-spacing: 1px;
	color: #000;
}

header > ul > li:first-child{
	margin-right: auto;
	margin-left: 1rem;
}

header > ul > li:first-child > a > img{
	position: relative;
	height: 60px;
}

header > ul > li:last-child{
	margin-right: 1rem;
	background: #000;
	/* border-radius: 1rem; */
	padding: 4px 1rem;
}

header > ul > li:last-child > a{
	color: #fff;
}

.menu-toggle{
	display: none;
	position: fixed;
	width: 70px;
	height: 70px;
	top: 0;
	right: 0;
	cursor: pointer;
	background: #fff;
}
.menu-toggle>span{
	position: absolute;
	width: 35px;
	height: 2px;
	left: 50%;
	margin-left: -17.5px;
	background-color: #000;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}
.menu-toggle>span:first-child{
	top: 20px;
}
.menu-toggle>span:nth-of-type(2){
	top: calc(50% - 1px);
}
.menu-toggle>span:last-child{
	bottom: 20px;
}
.menu-toggle.open>span:first-child{
	top: 35px;
	transform: rotate(-45deg);
}
.menu-toggle.open>span:nth-of-type(2){
	display: none;
}
.menu-toggle.open>span:last-child{
	top: 35px;
	transform: rotate(45deg);
}

@media screen and (max-width: 1200px) {
	header{
		height: 70px;
	}
	header.scrolled{
		height: 70px;
	}
	.menu-toggle{
		display: block;
	}
	header > ul{
		width: 100%;
		height: auto;
		flex-wrap: wrap;
		border-bottom: 0;
		background: #fff;
		display: none;
		padding: 10px 0 2rem;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}
	header.scrolled > ul{
		height: auto;
	}
	header.open > ul{
		display: flex;
	}
	header.scrolled{
		height: auto;
		background: transparent;
	}
	header > ul > li{
		width: 100%;
		margin-right: 0;
	}
	header > ul > li:first-child{
		margin-left: 0;
		border-bottom: 1px solid #fff;
	}
	header > ul > li:not(:first-child){
		margin-top: 1.5rem;
	}
	header > ul > li:last-child{
		width: 50%;
		margin: 0 auto;
		margin-top: 1.5rem;
	}
	header > ul > li:last-child > a{
		display: block;
	}
	header > ul > li:first-child > a > img{
		height: 60px;
	}
}
