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


a:hover {
	color: #fff;
}

/* 公共栏目菜单：页面中使用 {include file=common-menu.html} 引入 */
.common-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 96px;
	box-sizing: border-box;
	background: #fafafa;
}

.common-menu__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(52px, 5.2vw, 100px);
	margin: 0;
	padding: 0 24px;
	list-style: none;
}

.common-menu__item {
	margin: 0;
}

.common-menu__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: #68717a;
	font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	white-space: nowrap;
	transition: color 180ms ease;
}

.common-menu__link::after {
	position: absolute;
	right: 0;
	bottom: 3px;
	left: 0;
	height: 2px;
	content: "";
	background: #2f7d57;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 180ms ease;
}

.common-menu__link:hover,
.common-menu__link:focus-visible,
.common-menu__link[aria-current="page"] {
	color: #2f7d57;
}

.common-menu__link:hover::after,
.common-menu__link:focus-visible::after,
.common-menu__link[aria-current="page"]::after {
	transform: scaleX(1);
}

.common-menu__link:focus-visible {
	outline: 2px solid #2f7d57;
	outline-offset: 4px;
}

@media (max-width: 768px) {
	.common-menu {
		min-height: 68px;
		overflow-x: auto;
		justify-content: flex-start;
		-webkit-overflow-scrolling: touch;
	}

	.common-menu__list {
		width: max-content;
		min-width: 100%;
		gap: 38px;
		padding: 0 22px;
		box-sizing: border-box;
	}

	.common-menu__link {
		font-size: 15px;
	}
}

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

#fixtop {
	--header-height: 92px;
	--header-gutter: clamp(32px, 6.7vw, 128px);
	--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: linear-gradient(90deg, #336a5c 0%, #5a905b 29%, #74a85c 59%, #53895b 79%, #7eb05d 100%);
	box-shadow: none;
}

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

#header .logo {
	flex: 0 0 auto;
	margin-left: 24px;
	margin-right: clamp(64px, 8.3vw, 158px);
}

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

#header .logo img {
	display: block;
	width: auto;
	max-width: min(157px, 16vw);
	height: 34px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	transition: opacity 220ms ease;
}

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

#header .navul {
	display: flex;
	align-items: center;
	gap: clamp(34px, 3.1vw, 59px);
}

#header .navli {
	margin: 0;
}

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

#header .navli a::after {
	display: none;
}

#header .navli a:hover,
#header .navli a:focus-visible {
	color: #fff;
}

#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: 26px;
	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 img {
	display: block;
	width: 27px;
	height: 25px;
	margin: auto;
	object-fit: contain;
}

#header #mnav::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	background: currentColor;
	transform: translate(-50%, -50%);
}

#header #search:hover,
#header #search:focus-visible,
#header #mnav:hover,
#header #mnav:focus-visible {
	color: #fff;
	background: transparent;
	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;
	width: 38px;
	min-width: 38px;
	height: 38px;
	padding: 0;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 50%;
	transition: opacity 180ms ease;
}

#header .language-switch__flag {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#header .language-switch:hover {
	opacity: .86;
}

#header .language-switch:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 4px;
}

#header .language-switch:active {
	opacity: .72;
}

#header .after-sales {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 132px;
	height: 52px;
	padding: 0;
	box-sizing: border-box;
	border: 0;
	color: #619457;
	background: #fff;
	font-family: inherit;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
}

#header .after-sales:hover,
#header .after-sales:focus-visible {
	color: #619457;
	background: #fff;
	outline: 2px solid rgba(255, 255, 255, .72);
	outline-offset: 3px;
}

body.message-modal-open {
	overflow: hidden;
}

.message-modal {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
	background: rgba(18, 24, 22, .68);
	transition: opacity 220ms ease, visibility 220ms ease;
}

.message-modal.is-visible {
	visibility: visible;
	opacity: 1;
}

.message-modal__dialog {
	width: min(500px, calc(100vw - 32px));
	max-height: calc(100dvh - 32px);
	overflow-y: auto;
	color: #1d1d1d;
	background: #fff;
	box-shadow: 0 18px 48px rgba(23, 55, 43, .24);
	transform: translateY(18px);
	transition: transform 220ms ease;
}

.message-modal.is-visible .message-modal__dialog {
	transform: translateY(0);
}

.message-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 52px;
	padding: 0 12px 0 20px;
	box-sizing: border-box;
	background: #f4f4f4;
}

.message-modal__header h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
}

.message-modal__close {
	position: relative;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.message-modal__close::before,
.message-modal__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 21px;
	height: 2px;
	background: #111;
	transform: translate(-50%, -50%) rotate(45deg);
}

.message-modal__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.message-modal__close:hover,
.message-modal__close:focus-visible {
	background: #e9e9e9;
	outline: none;
}

.message-modal__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px 30px 30px;
}

.message-modal__field {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin: 0;
	font-size: 14px;
	line-height: 1.2;
}

.message-modal__field em {
	color: #d22f27;
	font-style: normal;
}

.message-modal__field input,
.message-modal__field textarea {
	width: 100%;
	padding: 8px 10px;
	box-sizing: border-box;
	border: 1px solid #e2e2e2;
	border-radius: 0;
	color: #222;
	background: #fff;
	font: inherit;
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.message-modal__field input {
	height: 38px;
}

.message-modal__field textarea {
	height: 80px;
	resize: vertical;
}

.message-modal__field input:focus,
.message-modal__field textarea:focus {
	border-color: #69a15e;
	box-shadow: 0 0 0 2px rgba(105, 161, 94, .13);
}

.message-modal__submit {
	width: 144px;
	height: 37px;
	margin-top: -1px;
	padding: 0;
	border: 0;
	color: #fff;
	background: #6ba15d;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 180ms ease, transform 180ms ease;
}

.message-modal__submit:hover,
.message-modal__submit:focus-visible {
	background: #5b914f;
	outline: 2px solid rgba(91, 145, 79, .26);
	outline-offset: 2px;
}

.message-modal__submit:active {
	transform: translateY(1px);
}

@media only screen and (max-width: 560px) {
	.message-modal__header {
		padding-left: 16px;
	}

	.message-modal__form {
		padding: 18px 18px 22px;
	}

	.message-modal__submit {
		width: 100%;
	}
}

#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: #fff;
	background: linear-gradient(90deg, #336a5c 0%, #5a905b 29%, #74a85c 59%, #53895b 79%, #7eb05d 100%);
	box-shadow: none;
}

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: 1; }

@media (hover: hover) and (pointer: fine) {
	body:not(.is-subpage) #fixtop #header:hover {
		color: #fff;
		background: linear-gradient(90deg, #336a5c 0%, #5a905b 29%, #74a85c 59%, #53895b 79%, #7eb05d 100%);
		box-shadow: none;
	}

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

}

@media only screen and (min-width: 769px) {
	body #fixtop #header.site-header {
		color: #fff !important;
		background: linear-gradient(90deg, #336a5c 0%, #5a905b 29%, #74a85c 59%, #53895b 79%, #7eb05d 100%) !important;
		box-shadow: none !important;
	}

	body #header.site-header .logo-light { opacity: 1 !important; }
}

@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 {
		width: 38px;
		min-width: 38px;
		padding: 0;
	}
}

@media only screen and (min-width: 1281px) {
	#header .topnav {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	}

	#header .logo {
		justify-self: start;
		margin-right: 0;
	}

	#header .logo a {
		height: 76px;
	}

	#header .logo img {
		max-width: min(280px, 22vw);
		height: 72px;
	}

	#header .nav {
		justify-self: center;
	}

	#header .search {
		justify-self: end;
		margin-left: 0;
	}
}

@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 {
		width: 38px;
		min-width: 38px;
		height: 38px;
		padding: 0;
	}
	#header .after-sales { display: none; }
	#header .topnav {
		height: var(--header-height);
	}
	#header .logo {
		margin-left: 0;
		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-text: #fff;
	--footer-muted: rgba(255, 255, 255, .74);
	position: relative;
	overflow: hidden;
	color: var(--footer-text);
	background:
		radial-gradient(circle at 74% 28%, rgba(166, 205, 105, .18), transparent 35%),
		linear-gradient(112deg, #2d6f61 0%, #4d8b5e 47%, #77ad58 100%);
}

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

#footer .footerin {
	display: grid;
	grid-template-columns: minmax(300px, 1.5fr) minmax(150px, .65fr) minmax(170px, .75fr) minmax(340px, 1.25fr);
	gap: clamp(54px, 6vw, 116px);
	width: min(calc(100% - 80px), 1404px);
	margin: 0 auto;
	padding: 88px 0 78px;
}

#footer .footer__brand {
	min-width: 0;
}

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

#footer .footer__logo img {
	display: block;
	width: auto;
	max-width: 150px;
	height: 58px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

#footer .footer__brand p {
	max-width: 320px;
	margin: 26px 0 0;
	color: var(--footer-text);
	font-size: 15px;
	line-height: 1.8;
	text-wrap: pretty;
}

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

#footer h2 {
	margin-bottom: 28px;
	color: var(--footer-text);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: .01em;
}

#footer a {
	color: inherit;
	text-decoration: none;
}

#footer a:hover,
#footer a:focus-visible {
	color: #fff;
}

#footer a:focus-visible,
#footer button:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 4px;
}

#footer .footer__qrcode {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	margin: 62px 0 0;
}

#footer .footer__qrcode img {
	display: block;
	width: 132px;
	height: 132px;
	padding: 7px;
	background: #fff;
	object-fit: cover;
}

#footer .footer__qrcode figcaption {
	margin-top: 9px;
	color: var(--footer-muted);
	font-size: 13px;
}

#footer .footer__column {
	padding-top: 5px;
}

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

#footer .footer__column li + li {
	margin-top: 18px;
}

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

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

#footer .footer__contact address {
	display: flex;
	flex-direction: column;
	gap: 22px;
	font-size: 16px;
	font-style: normal;
	line-height: 1.6;
}

#footer .footer__contact address > a,
#footer .footer__contact address > span {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	transition: opacity 200ms ease;
}

#footer .footer__contact address > a:hover {
	opacity: .72;
}

#footer .footer__contact svg {
	width: 18px;
	height: 18px;
	margin-top: 3px;
	fill: currentColor;
}

#footer .footer__contact-address {
	min-width: 0;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
}

#footer .footer__bottom {
	display: flex;
	align-items: center;
	min-height: 62px;
	border-top: 1px solid rgba(255, 255, 255, .28);
}

#footer .footer__bottom p {
	width: min(calc(100% - 80px), 1404px);
	margin: 0 auto;
	color: var(--footer-muted);
	font-size: 14px;
	line-height: 1.7;
}

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

#footer .footer__bottom a {
	color: inherit;
}

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

.site-floating-actions {
	position: fixed;
	right: 16px;
	bottom: 28px;
	z-index: 55;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-end;
}

.site-floating-action {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	padding: 0;
	box-sizing: border-box;
	border: 1px solid #68a15f;
	border-radius: 6px;
	color: #fff;
	background: #68a15f;
	box-shadow: 0 7px 18px rgba(44, 88, 51, .13);
	cursor: pointer;
	transform-origin: right center;
	transition: width 220ms ease, color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-floating-action svg {
	width: 29px;
	height: 29px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-floating-action--top svg {
	width: 31px;
	height: 31px;
	stroke-width: 4.4;
}

.site-floating-action:hover,
.site-floating-action:focus-visible {
	width: 54px;
	color: #68a15f;
	background: #fff;
	box-shadow: 0 10px 26px rgba(44, 88, 51, .2);
	transform: translateX(-2px);
	outline: none;
}

.site-floating-action:focus-visible {
	box-shadow: 0 0 0 3px rgba(104, 161, 95, .24), 0 10px 26px rgba(44, 88, 51, .2);
}

.site-floating-action:active {
	transform: translateX(-2px) scale(.96);
}

.site-floating-action[hidden] {
	display: none;
}

@media (max-width: 1280px) {
	#footer .footerin {
		grid-template-columns: 1.25fr .6fr .75fr 1.3fr;
		gap: 48px;
		width: min(calc(100% - 72px), 1160px);
		padding-top: 74px;
	}
}

@media (max-width: 980px) {
	#footer .footerin {
		grid-template-columns: 1.4fr .7fr .9fr;
		gap: 54px 40px;
	}
	#footer .footer__contact {
		grid-column: 1 / -1;
		padding-top: 0;
	}
	#footer .footer__contact address {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	#footer .footerin {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 44px 28px;
		width: calc(100% - 40px);
		padding: 54px 0 46px;
	}
	#footer .footer__brand {
		grid-column: 1 / -1;
	}
	#footer .footer__logo img {
		max-width: 130px;
		height: 50px;
	}
	#footer .footer__brand p {
		margin-top: 22px;
		font-size: 14px;
	}
	#footer h2 {
		margin-bottom: 22px;
		font-size: 18px;
	}
	#footer .footer__qrcode {
		margin-top: 32px;
	}
	#footer .footer__qrcode img {
		width: 112px;
		height: 112px;
	}
	#footer .footer__contact {
		grid-column: 1 / -1;
		padding-top: 4px;
		border-top: 1px solid rgba(255, 255, 255, .24);
	}
	#footer .footer__contact h2 {
		margin-top: 36px;
	}
	#footer .footer__contact address {
		display: flex;
		gap: 18px;
		font-size: 14px;
	}
	#footer .footer__bottom {
		min-height: 76px;
	}
	#footer .footer__bottom p {
		width: calc(100% - 40px);
		font-size: 12px;
		text-align: left;
	}
	#footer .footer__bottom span {
		margin: 0 6px;
	}
	.site-floating-actions {
		right: 12px;
		bottom: 18px;
		gap: 10px;
	}
	.site-floating-action {
		width: 44px;
		height: 44px;
	}
	.site-floating-action:hover,
	.site-floating-action:focus-visible {
		width: 50px;
	}
}

@media (prefers-reduced-motion: reduce) {
	#footer *,
	#footer *::before,
	#footer *::after,
	.site-floating-action {
		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: 1;
		filter: none;
	}
	#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; }
}

/* Header navigation interactions and layered menus. */
#header .navli {
	position: relative;
}

#header .navli > a {
	gap: 9px;
}

#header .navli > a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	height: 3px;
	background: #151515;
	content: "";
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 240ms ease;
}

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

#header .navli:hover > a,
#header .navli:focus-within > a,
#header .navli.is-open > a {
	color: #111;
}

#header .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 5;
	min-width: 200px;
	padding: 0;
	background: #fff;
	border-bottom: 3px solid #639a5b;
	box-shadow: 0 12px 20px rgba(18, 26, 20, .2);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	clip-path: inset(0 0 100% 0);
	transform: translateY(-8px);
	transform-origin: top center;
	transition: opacity 180ms ease, clip-path 300ms ease, transform 300ms ease, visibility 180ms ease;
}

#header .navli:hover > .dropdown-menu,
#header .navli:focus-within > .dropdown-menu,
#header .navli.is-open > .dropdown-menu,
#header .dropdown-item:hover > .dropdown-menu,
#header .dropdown-item:focus-within > .dropdown-menu,
#header .dropdown-item.is-open > .dropdown-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	clip-path: inset(0 0 0 0);
	transform: translateY(0);
}

#header .dropdown-item {
	position: relative;
}

#header .dropdown-item > a {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 44px;
	padding: 0 14px;
	box-sizing: border-box;
	color: #181818;
	background: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.35;
	white-space: nowrap;
	transition: color 180ms ease, background-color 180ms ease, padding-left 180ms ease;
}

#header .dropdown-item:hover > a,
#header .dropdown-item:focus-within > a {
	padding-left: 17px;
	color: #fff;
	background: #222;
}

#header .dropdown-menu--nested {
	top: 0;
	left: 100%;
	transform: translateX(12px);
}

#header .dropdown-item:hover > .dropdown-menu--nested,
#header .dropdown-item:focus-within > .dropdown-menu--nested,
#header .dropdown-item.is-open > .dropdown-menu--nested {
	transform: translateX(0);
}

#header .navli.is-mega > .dropdown-menu {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: min(560px, 68vw);
}

#header .language-menu {
	position: relative;
	display: flex;
	align-items: center;
	height: var(--header-height);
}

#header .language-switch {
	border: 0;
	background: transparent;
	cursor: pointer;
}

#header .language-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 6;
	width: 150px;
	padding: 0;
	background: #fff;
	border-bottom: 2px solid #639a5b;
	box-shadow: 0 12px 20px rgba(18, 26, 20, .2);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 14px);
	transition: opacity 190ms ease, transform 240ms ease, visibility 190ms ease;
}

#header .language-menu:hover .language-dropdown,
#header .language-menu:focus-within .language-dropdown,
#header .language-menu.is-open .language-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

#header .language-dropdown a {
	display: flex;
	align-items: center;
	height: 46px;
	padding: 0 18px;
	box-sizing: border-box;
	color: #171717;
	background: #fff;
	font-size: 16px;
	line-height: 1;
	white-space: nowrap;
	transition: color 180ms ease, background-color 180ms ease;
}

#header .language-dropdown a:hover,
#header .language-dropdown a:focus-visible,
#header .language-dropdown a.is-current {
	color: #fff;
	background: #222;
	outline: none;
}

body.search-overlay-open {
	overflow: hidden;
}

#header .search-overlay.hide {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100dvh;
	padding: 0;
	box-sizing: border-box;
	background: rgba(255, 255, 255, .98);
	border: 0;
	box-shadow: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 260ms ease, visibility 260ms ease;
}

#header .search-overlay.hide.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

#header .search-overlay__close {
	position: absolute;
	top: 24px;
	right: 30px;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

#header .search-overlay__close::before,
#header .search-overlay__close::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 42px;
	height: 3px;
	background: #111;
	content: "";
	transform: translate(-50%, -50%) rotate(45deg);
	transition: transform 180ms ease;
}

#header .search-overlay__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

#header .search-overlay__close:hover::before {
	transform: translate(-50%, -50%) rotate(135deg);
}

#header .search-overlay__close:hover::after {
	transform: translate(-50%, -50%) rotate(45deg);
}

#header .search-overlay__form {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 64px;
	width: min(1200px, 60vw);
	margin-top: -4vh;
	border-bottom: 1px solid #d8d8d8;
}

#header .search-overlay__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

#header .search-overlay__form .serach-txt {
	width: 100%;
	height: 72px;
	padding: 0;
	box-sizing: border-box;
	border: 0;
	color: #171717;
	background: transparent;
	font-size: 28px;
	font-weight: 400;
	outline: none;
}

#header .search-overlay__form .serach-txt::placeholder {
	color: #7d7d7d;
	opacity: 1;
}

#header .search-overlay__form .serach-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 72px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

#header .search-overlay__form .serach-btn img {
	width: 27px;
	height: 25px;
	filter: brightness(0);
}

@media only screen and (min-width: 769px) {
	body #fixtop #header.site-header {
		transition: background 280ms ease, box-shadow 280ms ease;
	}

	body #fixtop #header.site-header.is-scrolled {
		background: linear-gradient(90deg, rgba(48, 100, 79, .98), rgba(92, 151, 82, .98)) !important;
		box-shadow: 0 10px 26px rgba(22, 42, 28, .2) !important;
	}
}

@media only screen and (max-width: 1180px) {
	#header .mobile-menu-row {
		display: flex;
		align-items: center;
	}

	#header .mobile-menu-row > a {
		flex: 1 1 auto;
	}

	#header .mobile-submenu-toggle {
		position: relative;
		flex: 0 0 52px;
		width: 52px;
		height: 52px;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
	}

	#header .mobile-submenu-toggle::before {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 10px;
		height: 10px;
		border-right: 2px solid #30383e;
		border-bottom: 2px solid #30383e;
		content: "";
		transform: translate(-50%, -70%) rotate(45deg);
		transition: transform 220ms ease;
	}

	#header .mnavli.is-submenu-open .mobile-submenu-toggle::before {
		transform: translate(-50%, -30%) rotate(225deg);
	}

	#header .mobile-submenu {
		display: none;
		padding: 4px 0 12px 18px;
		background: #f5f7f5;
	}

	#header .mobile-submenu li a {
		height: 52px;
		padding: 0 16px;
		color: #36413a;
		font-size: 17px;
		line-height: 52px;
	}
}

@media only screen and (max-width: 768px) {
	#header .search-overlay__close {
		top: 16px;
		right: 16px;
	}

	#header .search-overlay__form {
		width: calc(100vw - 48px);
		grid-template-columns: minmax(0, 1fr) 52px;
	}

	#header .search-overlay__form .serach-txt {
		height: 60px;
		font-size: 22px;
	}

	#header .search-overlay__form .serach-btn {
		width: 52px;
		height: 60px;
	}

	#header .mnav .mobile-menu-row > a::after {
		display: none;
	}
}

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

@media only screen and (min-width: 1181px) {
	#header .topnav.nav-box {
		position: relative;
		display: grid;
		grid-template-columns: 128px minmax(0, 1fr) 235px;
		column-gap: clamp(36px, 7.55vw, 145px);
		width: 100%;
		max-width: 1440px;
		height: var(--header-height);
		padding: 0 14px;
		box-sizing: border-box;
	}

	#header .nav-box .logo {
		grid-column: 1;
		justify-self: start;
		margin: 0;
	}

	#header .nav-box .nav {
		position: static;
		grid-column: 2;
		justify-self: stretch;
		width: 100%;
		transform: none;
	}

	#header .nav-box .navul {
		justify-content: space-between;
		width: 100%;
		gap: 0;
	}

	#header .nav-box .search {
		grid-column: 3;
		justify-self: stretch;
		justify-content: space-between;
		width: 100%;
		margin: 0;
		gap: 0;
	}

	#header .nav-box #search {
		flex-basis: 32px;
		width: 32px;
		height: 32px;
	}

	#header .nav-box #search img {
		width: 24px;
		height: 23px;
	}

	#header .nav-box .language-switch {
		width: 32px;
		min-width: 32px;
		height: 32px;
	}

	#header .nav-box .after-sales {
		width: 111px;
		height: 43px;
		font-size: 16px;
	}
}
