.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 5000;
	padding: 6rem 6rem 0;
}
.header_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_logo {
	width: 14.9rem;
	transition: .3s;
}
.header_logo .logo_eans{
	fill: #fff;
	width: 100%;
	height: 100%;
}
.header_logo.lg {
	width: 21.4rem;
}
.header_menu {
	display: flex;
	align-items: center;
	gap: 5rem;
	z-index: 9999;
}
.header_list {
	display: flex;
	align-items: center;
	gap: 5rem;
}
.header_list_item_link {
	font-family: "Manrope", sans-serif;
	font-size: 1.4rem;
	color: #fff;
	line-height: 1;
}
.header_search_link {
	font-family: ryo-gothic-plusn, sans-serif;
	font-weight: 500;
	font-size: 1.2rem;
	color: #fff;
	line-height: 1;
	width: 12.5rem;
	height: 3.5rem;
	border: 1px solid #fff;
	display: grid;
	place-items: center;
	transition: .3s;
}
.header_search_link:hover {
	background-color: #fff;
	color: #454545;
}
@media (max-width: 767px) {
	.header {
		padding: 1.5rem;
	}
	.header_logo.lg {
		width: 14.9rem;
	}
	.header_logo {
		width: 11.9rem;
	}
	.header_menu {
		display: none;
	}
}