@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;600;700;800&family=Oswald:wght@400;500;600&display=swap');
:root {
	--dark: #1d1f20;
	--dark2: #282b2d;
	--gold: #b78b4a;
	--gold2: #d1aa70;
	--green: #06c755;
	--paper: #f4f3ef;
	--light: #fff;
	--text: #4a4d4f;
	--line: #d9d7d0;
	--container: 1280px;
	--header: 92px;
	--ease: cubic-bezier(.22, .61, .36, 1)
}
* {
	box-sizing: border-box
}
html {
	scroll-behavior: smooth
}
body {
	margin: 0;
	color: var(--text);
	font-family: "Noto Sans TC", Arial, sans-serif;
	background: #fff;
	line-height: 1.8;
	overflow-x: hidden
}
body.navOpen {
	overflow: hidden
}
a {
	color: inherit;
	text-decoration: none
}
img {
	max-width: 100%;
	display: block
}
button, input, textarea, select {
	font: inherit
}
.container {
	width: min(calc(100% - 48px), var(--container));
	margin: auto
}
.section {
	padding: 120px 0
}
.siteHeader {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header);
	color: #fff;
	transition: .35s var(--ease);
	border-bottom: 1px solid rgba(255, 255, 255, .14)
}
.siteHeader.scrolled, .siteHeader.open {
	background: rgba(255, 255, 255, .96);
	color: var(--dark);
	box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
	backdrop-filter: blur(12px);
	border-color: transparent
}
.headerInner {
	width: min(calc(100% - 48px), 1440px);
	height: 100%;
	margin: auto;
	display: flex;
	align-items: center;
	gap: 42px
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	flex-shrink: 0
}
/*.brandMark {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	background: var(--gold);
	color: #fff;
	font-family: Oswald, sans-serif;
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 1px
}*/
.brandMark{

    width:58px;
    flex-shrink:0;

}

.brandMark img{

    width:100%;
    display:block;

}
.brandText {
	display: flex;
	flex-direction: column;
	line-height: 1.25
}
.brandText strong {
	font-size: 24px;
	letter-spacing: .08em
}
.brandText small {
	font-family: Oswald, sans-serif;
	font-size: 13px;
	letter-spacing: .22em;
	margin-top: 2px;
	opacity: .8
}
.mainNav {
	margin-left: auto
}
.mainNav ul {
	display: flex;
	align-items: center;
	gap: 34px;
	list-style: none;
	margin: 0;
	padding: 0
}
.mainNav a {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .04em;
	position: relative
}
.mainNav ul a:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 0;
	height: 2px;
	background: var(--gold);
	transition: .3s
}
.mainNav ul a:hover:after, .mainNav ul a.current:after {
	width: 100%
}
.lineBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--green);
	color: #fff!important;
	padding: 13px 20px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 2px;
	white-space: nowrap
}
.lineDot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff
}
.mobileLineBtn {
	display: none
}
.menuBtn {
	display: none;
	margin-left: auto;
	width: 44px;
	height: 44px;
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer
}
.menuBtn span {
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	margin: 7px 0;
	transition: .3s
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 15px 25px;
	border: 1px solid transparent;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .06em;
	transition: .3s var(--ease)
}
.btnPrimary {
	background: var(--gold);
	color: #fff
}
.btnPrimary:hover {
	background: var(--gold2);
	transform: translateY(-2px)
}
.btnGhost {
	border-color: rgba(255, 255, 255, .65);
	color: #fff
}
.btnGhost:hover {
	background: #fff;
	color: var(--dark)
}
.sectionTitle span {
	display: block;
	color: var(--gold);
	font-family: Oswald, sans-serif;
	font-size: 13px;
	letter-spacing: .28em;
	margin-bottom: 14px
}
.sectionTitle h2 {
	margin: 0;
	color: var(--dark);
	font-size: clamp(32px, 3.2vw, 52px);
	line-height: 1.28;
	letter-spacing: .02em
}
.lightTitle h2 {
	color: #fff
}
.sectionHead {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 52px
}
.sectionHead>p {
	max-width: 560px;
	margin: 0;
	color: #6f7375
}
.textLink {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	color: var(--dark);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em
}
.textLink span {
	color: var(--gold);
	transition: .3s
}
.textLink:hover span {
	transform: translateX(6px)
}
.siteFooter {
	background: #17191a;
	color: #c7c7c4
}
.footerTop {
	display: grid;
	grid-template-columns: 1.3fr .7fr 1fr;
	gap: 80px;
	padding: 82px 0 60px
}
.footerLogo {
	color: #fff
}
.footerBrand p {
	max-width: 440px;
	margin: 24px 0 0
}
.siteFooter h3 {
	margin: 0 0 22px;
	color: #fff;
	font-size: 16px
}
.footerNav {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px
}
.footerNav a, .footerContact a {
	transition: .25s
}
.footerNav a:hover, .footerContact a:hover {
	color: var(--gold2)
}
.footerContact p {
	margin: 5px 0
}
.footerBottom {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding: 23px 0;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	font-size: 12px;
	letter-spacing: .05em
}
.footerBottom p {
	margin: 0
}
.floatLine {
	position: fixed;
	z-index: 950;
	right: 24px;
	bottom: 82px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: none;
	place-items: center;
	background: var(--green);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .18)
}
.backTop {
	position: fixed;
	z-index: 900;
	right: 25px;
	bottom: 24px;
	width: 48px;
	height: 48px;
	border: 1px solid #ddd;
	background: #fff;
	color: var(--dark);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: .3s
}
.backTop.show {
	opacity: 1;
	visibility: visible;
	transform: none
}
.pageLoader {
	position: fixed;
	z-index: 9999;
	inset: 0;
	background: #17191a;
	display: grid;
	place-items: center;
	transition: .6s var(--ease)
}
.pageLoader.hide {
	opacity: 0;
	visibility: hidden
}
.loaderMark {
	width: 72px;
	height: 72px;
	display: grid;
	place-items: center;
	/*border: 1px solid var(--gold);*/
	color: var(--gold2);
	font-family: Oswald, sans-serif;
	font-size: 28px;
	animation: pulse 1.1s infinite alternate
}
@keyframes pulse {
	to {
		transform: scale(.9);
		opacity: .55
	}
}
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity .75s var(--ease), transform .75s var(--ease)
}
.reveal.show {
	opacity: 1;
	transform: none
}
.delay1 {
	transition-delay: .12s
}
.delay2 {
	transition-delay: .24s
}
.delay3 {
	transition-delay: .36s
}
@media(max-width:1100px) {
	:root {
		--header: 76px
	}
	.desktopLineBtn {
		display: none
	}
	.menuBtn {
		display: block;
		order: 3
	}
	.mainNav {
		position: fixed;
		top: var(--header);
		left: 0;
		width: 100%;
		height: calc(100vh - var(--header));
		padding: 45px 30px;
		background: #fff;
		color: var(--dark);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-15px);
		transition: .3s;
		overflow: auto
	}
	.mainNav.active {
		opacity: 1;
		visibility: visible;
		transform: none
	}
	.mainNav ul {
		display: block
	}
	.mainNav li {
		border-bottom: 1px solid #e8e6e0
	}
	.mainNav ul a {
		display: block;
		padding: 18px 0;
		font-size: 18px
	}
	.mainNav ul a:after {
		display: none
	}
	.mobileLineBtn {
		display: flex;
		margin-top: 28px
	}
	.floatLine {
		display: grid
	}
}
@media(max-width:768px) {
	.container, .headerInner {
		width: min(calc(100% - 30px), var(--container))
	}
	.section {
		padding: 82px 0
	}
	/*.brandMark {
		width: 42px;
		height: 42px
	}*/
	.brandText strong {
		font-size: 16px
	}
	.brandText small {
		font-size: 8px
	}
	.sectionHead {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 35px
	}
	.sectionTitle h2 {
		font-size: 32px
	}
	.footerTop {
		grid-template-columns: 1fr;
		gap: 38px;
		padding: 65px 0 45px
	}
	.footerBottom {
		flex-direction: column
	}
	.delay1, .delay2, .delay3 {
		transition-delay: 0s
	}
}
.pageHero {
	position: relative;
	height: 520px;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden
}
.pageHeroBg {
	position: absolute;
	inset: 0;
	background: url('../images/inbanner.jpg') center/cover no-repeat;
	transform: scale(1.03)
}
.pageHeroShade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(18, 20, 21, .9) 0%, rgba(18, 20, 21, .66) 48%, rgba(18, 20, 21, .28) 100%)
}
.pageHeroInner {
	position: relative;
	z-index: 2;
	padding-top: 70px
}
.pageHeroInner>span {
	font-family: Oswald, sans-serif;
	font-size: 13px;
	letter-spacing: .32em;
	color: var(--gold2)
}
.pageHero h1 {
	margin: 14px 0 12px;
	font-size: clamp(44px, 5vw, 72px);
	line-height: 1.15;
	color: #fff;
	letter-spacing: .06em
}
.pageHero p {
	max-width: 630px;
	margin: 0;
	color: rgba(255, 255, 255, .82);
	font-size: 17px
}
@media(max-width:768px) {
	.pageHero {
		height: 430px
	}
	.pageHeroInner {
		padding-top: 55px
	}
	.pageHero p {
		font-size: 15px
	}
}
@media(max-width:480px) {
	.pageHero h1 {
		font-size: 40px
	}
}