body > header {
	background-image: linear-gradient(to bottom,
		var(--theme-gradient-light-color) 0, var(--theme-gradient-light-color) 10vh, #fff 10vh);
	background-size: 100% 100vh;
}
body > header .top-white-area {
	width: 100%;
	height: 6vh;
	background-color: #fff;
}
body > header > section.top_menu_bar {
	height: 4vh;
	position: relative;
}
body > header > section.top_menu_bar>a {
	width: 7vw;
	aspect-ratio: 1;
	background-color: var(--theme-gradient-light-color);
	background-repeat: no-repeat;
	background-image: url("../img/custom/logo.webp");
	background-position: center;
	background-size: 85%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: 1;
}
body > header > section.top_menu_bar > table {
	background-color: #434343;
}
body > header > section.top_news {
	height: 32vh;
	min-height: 32vh;
	max-width: var(--theme-main-width);
	width: var(--theme-main-width);
	margin-right: auto;
	margin-left: auto;
	background-color: #2a2a2a;
	border-bottom-left-radius: 5rem;
	border-bottom-right-radius: 5rem;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding-bottom: 10vh;
}
body > header > section.top_news::before {
	content: "";
	width: 60%;
	height: 24vh;
	background-color: var(--theme-gradient-light-color);
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 9999px;
}
body > header > section.top_news .main_services {
	display: flex;
	gap: 2vw;

	justify-content: space-around;
	padding: 0 5rem;
	margin-bottom: 2vh;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
body > header > section.top_news .main_services .main_services_item {
	width: 6vw;
	height: 16vh;
	background-color: #2a2a2acc;
	list-style: none;
	border-radius: 9999px;
	/* transition: all .2s ease-out; */
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
body > header > section.top_news .main_services .main_services_item:hover {
	cursor: pointer;
	background-color: #2a2a2af0;
	bottom: -.5vh;
}
body > header > section.top_news .main_services .main_services_item a {
	text-align: center;
	width: 100%;
}
body > header > section.top_news .main_services .main_services_item h3 {
	font-size: .89rem;
	font-weight: normal;
	color: #fff;
	height: 8vh;
}
body > header > section.top_news .main_services .main_services_item img {
	margin-bottom: 1rem;
}
@media (max-width: 1024px) {
	body > header > section.top_news .main_services .main_services_item img {
		display: none;
	}
	body > header > section.top_news .main_services .main_services_item h3 {
		height: auto;
	}
	body > header > section.top_news .main_services .main_services_item {
		height: auto;
		white-space: nowrap;
		padding: 1rem 2rem;
		background-color: #0005;
		width: 100%;
	}
}
@media (max-width: 760px) {
	body > header > section.top_news .main_services {
		display: none;
	}
}
body > header > section.main_menu {
	height: 5vh;
	min-height: 45px;
	padding-top: 1vh;
	border-bottom: 1px solid #ddd;
	display: inline-block;
	width: 100%;
}
body > header > section.main_menu .content {
	max-width: var(--theme-main-width);
	width: var(--theme-main-width);
	margin:0 auto;
}
#_header_form {
	width: 180px;
}
#_header_svg > a > svg {
	fill:#d19a6d;
}
#_header_svg .Lang_EN {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	display: inline-flex;
	justify-content: center;
	background-color: #d19a6d;
	cursor: pointer;
	border-radius: 7px;
}
#_header_svg .Lang_EN > p {
	color: #434343;
	font: bold 10px/20px serif;
}

@media only screen and (max-width: 760px){
	body > header > section.top_menu_bar > a {
		display: none;
	}
	#_header_form, #_header_form form, #_header_form input {
		width: 150px;
	}
}
@media(min-aspect-ratio: 2){
	body > header > section.top_news .main_services .main_services_item h3 {
		width: 100%;
		height: 100%;
		background-color: #2a2a2acc;
		position: absolute;
		border-radius: 9999px;
		top: 0;
		align-items: center;
		justify-content: center;
		display: none;
	}
	body > header > section.top_news .main_services .main_services_item:hover {
		bottom: 0;
	}
	body > header > section.top_news .main_services .main_services_item:hover a {
		filter: none;
	}
	body > header > section.top_news .main_services .main_services_item:hover h3 {
		display: flex;
	}
	body > header > section.top_news .main_services .main_services_item {
		height: 8vh;
	}
}
