﻿a {
	color: #FFF;
	font-size: 16px;
	transition: all 0.5s;
}


a:hover {
	color: #fff;
}

.shadow {
	box-shadow: 0 12px 34px rgba(15, 31, 48, 0.09);
}

#fixtop {
	--header-height: 100px;
	--header-gutter: clamp(28px, 4.2vw, 80px);
	--header-accent: #004098;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}

/* The extra #fixtop specificity intentionally overrides legacy page-level header colors. */
#fixtop #header {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	width: 100%;
	min-height: var(--header-height);
	padding: 0 var(--header-gutter);
	box-sizing: border-box;
	color: #fff;
	background-color: transparent;
	box-shadow: 0 0 0 rgba(15, 31, 48, 0);
	transition: background-color 260ms ease, box-shadow 260ms ease, color 260ms ease;
}

#header .topnav {
	display: flex;
	align-items: center;
	width: 100%;
	height: var(--header-height);
	margin: 0 auto;
}

#header .logo {
	flex: 0 0 auto;
	margin-right: clamp(44px, 6.5vw, 124px);
}

#header .logo a {
	position: relative;
	display: flex;
	align-items: center;
	height: 54px;
}

#header .logo img {
	display: block;
	width: auto;
	max-width: min(220px, 18vw);
	height: 50px;
	object-fit: contain;
	transition: opacity 220ms ease;
}

#header .logo .logo-dark {
	position: absolute;
	top: 50%;
	left: 0;
	opacity: 0;
	transform: translateY(-50%);
}

#header .nav {
	line-height: 1;
}

#header .navul {
	display: flex;
	align-items: center;
	gap: clamp(24px, 2.45vw, 48px);
}

#header .navli {
	margin: 0;
}

#header .navli a {
	position: relative;
	display: flex;
	align-items: center;
	height: var(--header-height);
	color: currentColor;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.02em;
	white-space: nowrap;
	transition: color 220ms ease;
}

#header .navli a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 24px;
	left: 0;
	height: 2px;
	background: var(--header-accent);
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 240ms ease;
}

#header .navli a:hover,
#header .navli a:focus-visible {
	color: var(--header-accent);
}

#header .navli a:hover::after,
#header .navli a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left center;
}

#header .search {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-left: auto;
	line-height: 1;
}

#header #search,
#header #mnav {
	position: relative;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	color: currentColor;
	background: transparent;
	cursor: pointer;
	transition: color 220ms ease, background-color 220ms ease, transform 180ms ease;
}

#header #search::before,
#header #mnav::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	background: currentColor;
	transform: translate(-50%, -50%);
	-webkit-mask: url("../images/search.png") center / contain no-repeat;
	mask: url("../images/search.png") center / contain no-repeat;
}

#header #search:hover,
#header #search:focus-visible,
#header #mnav:hover,
#header #mnav:focus-visible {
	color: var(--header-accent);
	background: rgba(0, 64, 152, 0.08);
	outline: none;
}

#header #search:active,
#header #mnav:active {
	transform: scale(0.96);
}

#header #line {
	display: none;
}

#header .language-switch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 126px;
	height: 52px;
	padding: 0 22px;
	box-sizing: border-box;
	color: #fff;
	background: #004098;
	border-radius: 999px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.04em;
	white-space: nowrap;
	transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease, transform 180ms ease;
}

#header .language-switch__icon {
	flex: 0 0 23px;
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.55;
	stroke-linecap: round;
	stroke-linejoin: round;
}

#header .language-switch:hover {
	color: #fff;
	background: #004098;
	box-shadow: 0 8px 22px rgba(0, 64, 152, 0.24);
	transform: translateY(-1px);
}

#header .language-switch:focus-visible {
	color: #fff;
	background: #004098;
	outline: 3px solid rgba(0, 64, 152, 0.28);
	outline-offset: 3px;
}

#header .language-switch:active {
	box-shadow: none;
	transform: scale(0.98);
}

#header .m {
	display: none;
}

#header .hide {
	position: absolute;
	top: calc(100% + 12px);
	right: var(--header-gutter);
	display: none;
	width: min(440px, calc(100vw - (var(--header-gutter) * 2)));
	padding: 14px;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid rgba(18, 34, 49, 0.08);
	box-shadow: 0 20px 50px rgba(15, 31, 48, 0.16);
}

#header .searchbox {
	display: flex;
	margin: 0;
}

#header .searchbox .serach-btn {
	flex: 0 0 88px;
	height: 46px;
	padding: 0 18px;
	text-align: center;
	border: 1px solid var(--header-accent);
	background-color: var(--header-accent);
	color: #fff;
	cursor: pointer;
	transition: background-color 200ms ease, transform 180ms ease;
}

#header .searchbox .serach-btn:hover {
	background-color: #0b55b5;
}

#header .searchbox .serach-btn:active {
	transform: scale(0.98);
}

#header .searchbox .serach-txt {
	min-width: 0;
	width: 100%;
	height: 46px;
	padding: 0 16px;
	box-sizing: border-box;
	border: 1px solid #d8dee6;
	border-right: 0;
	color: #202934;
	background: #fff;
	outline: none;
}

#header .searchbox .serach-txt:focus {
	border-color: var(--header-accent);
	box-shadow: inset 0 0 0 1px var(--header-accent);
}

#header .mnav {
	display: none;
}

body.is-subpage #fixtop #header,
#fixtop #header.is-subpage,
#fixtop #header.is-scrolled,
#fixtop #header.is-search-open,
#fixtop #header.is-menu-open {
	color: #202934;
	background-color: #fff;
	box-shadow: 0 12px 34px rgba(15, 31, 48, 0.09);
}

body.is-subpage #header .logo-light,
#header.is-subpage .logo-light,
#header.is-scrolled .logo-light,
#header.is-search-open .logo-light,
#header.is-menu-open .logo-light {
	opacity: 0;
}

body.is-subpage #header .logo-dark,
#header.is-subpage .logo-dark,
#header.is-scrolled .logo-dark,
#header.is-search-open .logo-dark,
#header.is-menu-open .logo-dark {
	opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
	body:not(.is-subpage) #fixtop #header:hover {
		color: #202934;
		background-color: #fff;
		box-shadow: 0 12px 34px rgba(15, 31, 48, 0.09);
	}

	body:not(.is-subpage) #header:hover .logo-light {
		opacity: 0;
	}

	body:not(.is-subpage) #header:hover .logo-dark {
		opacity: 1;
	}
}

@media only screen and (max-width: 1440px) {
	#footer .footerin {
		padding: 104px 3% 30px;
	}
	#header .logo {
		margin-right: clamp(28px, 3.8vw, 56px);
	}
	#header .navul {
		gap: clamp(18px, 1.8vw, 30px);
	}
	#header .search {
		gap: 14px;
		margin-left: auto;
	}
	#header .language-switch {
		min-width: 112px;
		padding: 0 17px;
	}
}

@media only screen and (max-width: 1180px) {
	#fixtop {
		--header-height: 72px;
		--header-gutter: 24px;
	}
	#fixtop #header {
		min-height: var(--header-height);
		padding: 0 var(--header-gutter);
	}
	#footer .footerin {
		padding: 54px 9vw 30px;
	}
	#footer .fright img,
	#header .nav {
		display: none;
	}
	#header .search {
		display: flex;
		gap: 0;
		margin-left: auto;
	}
	#header .search #search {
		display: none;
	}
	#header .language-switch {
		gap: 7px;
		min-width: 84px;
		height: 40px;
		padding: 0 13px;
		font-size: 15px;
	}
	#header .language-switch__icon {
		flex-basis: 18px;
		width: 18px;
		height: 18px;
	}
	#header .topnav {
		height: var(--header-height);
	}
	#header .logo {
		margin-right: 0;
	}
	#header .logo a {
		height: 44px;
	}
	#header .logo img {
		max-width: min(190px, 58vw);
		height: 40px;
	}
	#header .m {
		display: flex;
		align-items: center;
		margin-left: 6px;
	}
	#header #mnav::before {
		-webkit-mask-image: url("../images/mnav.png");
		mask-image: url("../images/mnav.png");
	}
	#header .mnav {
		position: absolute;
		top: 100%;
		left: 0;
		display: none;
		width: 100%;
		max-height: calc(100dvh - var(--header-height));
		padding: 8px 24px 22px;
		box-sizing: border-box;
		overflow-y: auto;
		background: #fff;
		box-shadow: 0 22px 38px rgba(15, 31, 48, 0.12);
	}
	#header .mnav .mnavul {
		text-align: left;
	}
	#header .mnav .mnavli {
		border-bottom: 1px solid #edf0f3;
	}
	#header .mnav .mnavli:last-child {
		border-bottom: 0;
	}
	#header .mnav a {
		display: block;
		padding: 0 4px;
		color: #202934;
		font-size: 16px;
		line-height: 56px;
	}
	#header .mnav a:hover,
	#header .mnav a:focus-visible {
		color: var(--header-accent);
	}
}

@media only screen and (max-width: 620px) {
	#footer .navdown ul {
		flex-wrap: wrap;
	}
	#footer .navdown .firstli a {
		padding-left: 0px;
	}
	#footer .navdown li:nth-child(4) a{padding-left: 0px;}
	#footer .copyright .cright {
		display: none;
	}
}


#banner-inside{position:relative;width:100%;height:auto;overflow:hidden;margin:0 auto}
#banner-inside .bannertext{width:100%; text-align: center; position: absolute; top:40%;    }
.bannertext .bigtext{font-size: 50px;margin-bottom: 60px; color:#fff; position: relative; width: 100%; display: table;}
.bannertext .bigtext:after{ content: ''; display: block;position: absolute; left: 50%; width: 72px; height: 1px; margin-left: -36px; bottom: -40px; background: #fff;}
.bannertext .bigtext2{font-size: 40px; font-weight: 300; font-family: 'Microsoft YaHei Light', 'Microsoft YaHei';color: #5d92fe;width: 100%; display: table;}
#banner-inside img{width:100%;}

@media (max-width: 768px){
	#banner-inside{}
	#banner-inside img {left: 0; margin-left: 0px;}
	.bannertext .bigtext{font-size: 30px;}
	.bannertext .bigtext2{font-size: 20px;}

}
.g-bd{padding:50px 56px; margin:0 auto; max-width: 1392px;}
#navpart{position:relative;background:#004098;margin:102px auto 0;width:100%; display: table;}
#navpart .position{padding:25px 3% 25px; margin:0 auto;color:#999;font-size:12px;text-align:left;float: right;}
#navpart .position a{color:#999}
#navpart .position a:hover{color:#5d92fe;text-decoration:underline}
#navpart .column{padding:20px 56px 20px; max-width: 1392px; margin:0 auto;text-align:left;overflow:auto}
#navpart .column ul{text-align:left}
#navpart .column ul li{display:inline-block;float:left;border:1px solid rgba(255,255,255,0.3);background:rgba(255,255,255,0.6);height:40px;line-height:40px;padding:0 30px;margin-right:10px;font-size:14px;text-align:center; }
#navpart .column a{display:block; color:#002e90;}
#navpart .column .A,#navpart .column ul li:hover{background:#5d92fe;border:1px solid #5d92fe}
#navpart .column .A a,#navpart .column ul li:hover a{color:#fff}
#navpart .column #scrollwidth{width:auto}

.linkbox{display: none;}
.footer-social ul li{color:#ccc; display:inline-block; margin-right:10px;height:30px; line-height: 30px; color:#fff;text-align:center;font-size:12px;}
.footer-social ul{margin:1.5em 0}
.footer-social ul li a{color:#ccc; font-size: 12px;}
.footer-social ul li:hover a{color:#fff;text-decoration:none}

@media(max-width: 768px){
	#navpart{margin-top: 58px;}
	#fixtop {
		--header-gutter: 18px;
	}
	#header .mnav a{ line-height:54px; color:#202934}
	.title-style h2{ line-height:30px; height:30px}
.about-ours .img img{ height:inherit !important}
.about-ours .right2{ display:none}
}

/* Footer */
#footer {
	--footer-accent: #004098;
	--footer-ink: #343a40;
	position: relative;
	min-height: 700px;
	overflow: hidden;
	color: var(--footer-ink);
	background: #f5f5f4 url(../images/footer-bg.jpg) center bottom / 100% 100% no-repeat;
}

#footer,
#footer * {
	box-sizing: border-box;
}

#footer .footerin {
	position: relative;
	z-index: 2;
	width: min(100% - 112px, 1840px);
	max-width: none;
	margin: 0 auto;
	padding: 48px 0 168px;
}

#footer .footer__brand {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 74px;
}

#footer .footer__logo {
	display: inline-flex;
	align-items: center;
	height: 54px;
}

#footer .footer__logo img {
	display: block;
	width: auto;
	max-width: 220px;
	height: 48px;
	object-fit: contain;
}

#footer .footer__brand p {
	margin: 0;
	color: var(--footer-accent);
	font-size: clamp(20px, 1.5vw, 30px);
	font-weight: 500;
	letter-spacing: .04em;
}

#footer .footer__grid {
	display: grid;
	grid-template-columns: minmax(280px, 1.15fr) 4.3fr;
	gap: clamp(54px, 7vw, 132px);
	padding-top: 76px;
}

#footer h2,
#footer p,
#footer address,
#footer ul {
	margin-top: 0;
}

#footer h2 {
	margin-bottom: 36px;
	font-size: 21px;
	font-weight: 500;
	line-height: 1.3;
}

#footer a {
	color: var(--footer-ink);
	text-decoration: none;
}

#footer a:hover,
#footer a:focus-visible {
	color: var(--footer-accent);
}

#footer a:focus-visible,
#footer button:focus-visible {
	outline: 2px solid var(--footer-accent);
	outline-offset: 4px;
}

#footer .footer__contact h2 a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

#footer .footer__contact h2 span {
	display: inline-grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	color: #fff;
	background: var(--footer-accent);
	font-size: 16px;
	line-height: 1;
	transition: transform 220ms ease;
}

#footer .footer__contact h2 a:hover span,
#footer .footer__contact h2 a:focus-visible span {
	transform: translateX(3px);
}

#footer .footer__contact address {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	max-width: 320px;
	margin-bottom: 42px;
	font-size: 16px;
	font-style: normal;
	line-height: 1.55;
}

#footer .footer__contact address a,
#footer .footer__contact address span {
	display: block;
}

#footer .footer__follow > p {
	margin-bottom: 16px;
	font-size: 17px;
	font-weight: 500;
}

#footer .footer__wechat {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 14px;
	border: 0;
	border-radius: 20px;
	color: #555b60;
	background: #fff;
	box-shadow: 0 8px 24px rgba(68, 54, 43, .08);
	cursor: pointer;
	font: inherit;
	transition: color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

#footer .footer__wechat > svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

#footer .footer__wechat:hover,
#footer .footer__wechat:focus-visible {
	color: var(--footer-accent);
	box-shadow: 0 12px 30px rgba(68, 54, 43, .13);
	transform: translateY(-2px);
}

#footer .footer__qr {
	position: absolute;
	bottom: calc(100% + 12px);
	left: 0;
	width: 146px;
	padding: 10px;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(68, 54, 43, .16);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 200ms ease, transform 200ms ease;
}

#footer .footer__qr img {
	display: block;
	width: 100%;
	height: auto;
}

#footer .footer__wechat:hover .footer__qr,
#footer .footer__wechat:focus-visible .footer__qr {
	opacity: 1;
	transform: translateY(0);
}

#footer .footer__nav {
	display: grid;
	grid-template-columns: repeat(5, minmax(110px, 1fr));
	gap: clamp(28px, 4vw, 76px);
}

#footer .footer__nav-group ul {
	padding: 0;
	list-style: none;
}

#footer .footer__nav-group li + li {
	margin-top: 17px;
}

#footer .footer__nav-group li a {
	display: inline-block;
	font-size: 16px;
	line-height: 1.45;
	transition: color 200ms ease, transform 200ms ease;
}

#footer .footer__nav-group li a:hover,
#footer .footer__nav-group li a:focus-visible {
	transform: translateX(3px);
}

#footer .footer__bottom {
	position: absolute;
	right: 4.5vw;
	bottom: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 58%;
	height: 106px;
}

#footer .footer__bottom p {
	margin: 0;
	color: #333;
	font-size: 14px;
	line-height: 1.6;
	text-align: right;
}

#footer .footer__bottom span {
	margin: 0 12px;
}

#footer .footer__bottom a {
	color: #333;
}

#footer .footer__bottom a:hover,
#footer .footer__bottom a:focus-visible {
	color: #333;
	text-decoration: underline;
}

#footer .footer__to-top {
	position: absolute;
	top: 150px;
	right: 24px;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	color: var(--footer-accent);
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 5px 20px rgba(60, 55, 50, .13);
	cursor: pointer;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

#footer .footer__to-top svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

#footer .footer__to-top:hover,
#footer .footer__to-top:focus-visible {
	box-shadow: 0 9px 26px rgba(60, 55, 50, .18);
	transform: translateY(-3px);
}

#footer .footer__to-top:active {
	transform: translateY(-1px) scale(.97);
}

@media (max-width: 1280px) {
	#footer {
		min-height: 670px;
	}
	#footer .footerin {
		width: min(100% - 72px, 1160px);
		padding-top: 40px;
	}
	#footer .footer__grid {
		grid-template-columns: 250px 1fr;
		gap: 48px;
		padding-top: 62px;
	}
	#footer .footer__nav {
		gap: 24px;
	}
	#footer .footer__nav-group li a,
	#footer .footer__contact address {
		font-size: 15px;
	}
	#footer .footer__to-top {
		right: 18px;
	}
}

@media (max-width: 980px) {
	#footer {
		min-height: 820px;
		background-size: auto 100%;
	}
	#footer .footer__grid {
		grid-template-columns: 220px 1fr;
	}
	#footer .footer__nav {
		grid-template-columns: repeat(3, minmax(120px, 1fr));
		row-gap: 38px;
	}
	#footer .footer__nav-group h2 {
		margin-bottom: 20px;
	}
}

@media (max-width: 700px) {
	#footer {
		min-height: 0;
		padding-bottom: 0;
		background: #f5f5f4;
	}
	#footer .footerin {
		width: calc(100% - 40px);
		padding: 30px 0 48px;
	}
	#footer .footer__brand {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		min-height: 0;
		padding-right: 60px;
	}
	#footer .footer__logo img {
		max-width: 170px;
		height: 40px;
	}
	#footer .footer__brand p {
		font-size: 17px;
	}
	#footer .footer__grid {
		display: block;
		padding-top: 44px;
	}
	#footer .footer__contact {
		padding-bottom: 40px;
	border-bottom: 1px solid rgba(0, 64, 152, .2);
	}
	#footer h2 {
		margin-bottom: 20px;
		font-size: 19px;
	}
	#footer .footer__contact address {
		margin-bottom: 30px;
	}
	#footer .footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 38px 28px;
		padding-top: 40px;
	}
	#footer .footer__bottom {
		position: relative;
		right: auto;
		bottom: auto;
		justify-content: flex-start;
		width: 100%;
		height: auto;
		padding: 24px 20px;
		/*background: var(--footer-accent);*/
	}
	#footer .footer__bottom p {
		font-size: 12px;
		text-align: left;
	}
	#footer .footer__bottom span {
		display: none;
	}
	#footer .footer__bottom a {
		display: block;
		margin-top: 4px;
	}
	#footer .footer__to-top {
		top: 28px;
		right: 18px;
		width: 48px;
		height: 48px;
	}
}

@media (prefers-reduced-motion: reduce) {
	#footer *,
	#footer *::before,
	#footer *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

/* Final mobile-header overrides follow the legacy responsive rules. */
@media only screen and (max-width: 768px) {
	body.mobile-nav-open { overflow: hidden; }
	#fixtop { --header-height: 80px; --header-gutter: 20px; }
	#fixtop #header,
	body:not(.is-subpage) #fixtop #header {
		color: #15191d;
		background: #fff;
		box-shadow: 0 2px 8px rgba(23, 29, 35, .13);
	}
	#header .topnav { position: relative; z-index: 2; height: var(--header-height); }
	#header .logo a { height: 44px; }
	#header .logo img { width: auto; max-width: 54vw; height: 43px; }
	#header .logo .logo-light { opacity: 0; }
	#header .logo .logo-dark {
		opacity: 1;
		/*filter: invert(51%) sepia(92%) saturate(1901%) hue-rotate(346deg) brightness(98%) contrast(84%);*/
	}
	#header .search #search { display: block; width: 44px; height: 44px; color: #11171c; }
	#header #search::before {
		width: 21px;
		height: 21px;
		box-sizing: border-box;
		border: 2px solid currentColor;
		border-radius: 50%;
		background: none;
		-webkit-mask: none;
		mask: none;
		transform: translate(-57%, -57%);
	}
	#header #search::after {
		position: absolute;
		top: 28px;
		left: 28px;
		width: 9px;
		height: 2px;
		background: currentColor;
		content: "";
		transform: rotate(48deg);
		transform-origin: left center;
	}
	#header .language-switch { display: none; }
	#header .m { margin-left: 5px; }
	#header #mnav { width: 44px; height: 44px; color: #11171c; background: none !important; }
	#header #search:hover,
	#header #mnav:hover {
		color: #11171c;
		background: transparent;
	}
	#header #search:focus-visible,
	#header #mnav:focus-visible {
		color: #11171c;
		background: transparent;
	outline: 2px solid rgba(0, 64, 152, .72);
		outline-offset: 1px;
	}
	#header #mnav::before,
	#header #mnav::after {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 28px;
		height: 2px;
		margin: 0;
		background: currentColor;
		content: "";
		-webkit-mask: none;
		mask: none;
		transform: translate(-50%, -50%);
		transition: box-shadow 220ms ease, opacity 180ms ease, transform 220ms ease;
	}
	#header #mnav::before { box-shadow: 0 -9px 0 currentColor, 0 9px 0 currentColor; }
	#header #mnav::after { opacity: 0; }
	#header.is-menu-open #mnav::before {
		box-shadow: none;
		transform: translate(-50%, -50%) rotate(45deg);
	}
	#header.is-menu-open #mnav::after {
		opacity: 1;
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	#header .hide { top: calc(100% + 1px); right: 16px; width: calc(100vw - 32px); }
	#header .mnav {
		top: var(--header-height);
		height: calc(100dvh - var(--header-height));
		max-height: none;
		padding: 0 24px;
		background: #fff;
		box-shadow: none;
		overscroll-behavior: contain;
	}
	#header .mnav .mnavli:first-child { display: none; }
	#header .mnav .mnavli,
	#header .mnav .mnavli:last-child { border-bottom: 1px solid #eceeef; }
	#header .mnav a {
		position: relative;
		display: flex;
		align-items: center;
		height: 84px;
		padding: 0 42px 0 0;
		box-sizing: border-box;
		color: #1d2933;
		font-size: 22px;
		font-weight: 500;
		line-height: 1.3;
		transition: color 180ms ease, padding-left 180ms ease;
	}
	#header .mnav .mnavli > a::after {
		position: absolute;
		top: 50%;
		right: 8px;
		width: 16px;
		height: 16px;
		border-top: 3px solid #454b50;
		border-right: 3px solid #454b50;
		content: "";
		transform: translateY(-50%) rotate(45deg);
		transition: border-color 180ms ease, right 180ms ease;
	}
	#header .mnav .mnavli > a:hover,
#header .mnav .mnavli > a:focus-visible { padding-left: 4px; color: #004098; outline: none; }
	#header .mnav .mnavli > a:hover::after,
#header .mnav .mnavli > a:focus-visible::after { right: 4px; border-color: #004098; }
	#header .mobile-language {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 14px;
		padding: 40px 0 36px;
		font-size: 20px;
		line-height: 1;
		letter-spacing: .02em;
	}
#header .mobile-language__current { color: #004098; }
	#header .mobile-language__divider { color: #18232d; }
	#header .mobile-language a {
		display: inline;
		height: auto;
		padding: 0;
		color: #18232d;
		font-size: inherit;
		font-weight: 400;
	}
}

@media only screen and (max-width: 420px) {
	#fixtop { --header-height: 72px; --header-gutter: 16px; }
	#header .logo img { height: 38px; }
	#header .mnav a { height: 68px; font-size: 19px; }
	#header .mobile-language { padding-top: 32px; font-size: 18px; }
}
