.header {
	position: fixed;
	padding: 0 20px;
	top: 20px;
	left: 0;
	right: 0;
	z-index: 10;
}
.header_container {
	width: 100%;
	max-width: 1396px;
	height: 77px;
	background-color: #fff;
	padding: 0 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: auto;
	border-radius: 15px;
}
.header_logo {
	width: 260px;
	height: auto;
	display: block;
}
.header_list {
	display: flex;
	align-items: center;
}
.header_list_item {
	
}
.header_list_item + .header_list_item {
	margin-left: 48px;
}
.header_list_item_link {
	font-size: 20px;
	color: #4D4949;
}
.header_list_item_link_contact {
	font-size: 20px;
	color: #fff;
	background-color: #DA2E5A;
	border-radius: 10px;
	width: 154px;
	height: 43px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width: 1200px) {
	.header_container {
		justify-content: center;
	}
	.header_list {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.header {
		top: 15px;
		padding: 0 15px;
	}
	.header_container {
		height: 57px;
	}
	.header_logo {
		width: 200px;
	}
}