html,
body {
	max-width: 100%;
	overflow-x: hidden;
	font-family: 'Noto Sans TC', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smooth: always;
	-webkit-user-select: none;
	/* Chrome all / Safari all */
	-moz-user-select: none;
	/* Firefox all */
	-ms-user-select: none;
	/* IE 10+ */
	user-select: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}

body {
	background-color: #1d100b;
	background-repeat: no-repeat;
    background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	background-image: url(../img/body-bg.jpg);
}

@media only screen and (max-width: 766px) {
	body {
		background-image: url(../img/body-bg-m.jpg);
	}
}

img {
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

a[href^="tel"] {
	color: inherit;
	text-decoration: none;
}


/* header*/

.header {
	position: relative;
	width: 100vw;
	height: 100vh;
	position: relative;
	top: 0;
	background-color: #1d100b;
}

.header-frame {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	mix-blend-mode: lighten;
}

.header-frame video {
	object-fit: cover;
	object-position: center bottom;
	width: 100%;
	height: 100%;
}

.header-frame .grd {
	position: absolute;
	z-index: 2;
	width: 50%;
	height: 100%;
	left: -5px;
	top: 0;
	background: rgb(29,16,11);
    background: linear-gradient(90deg, rgba(29,16,11,1) 5%, rgba(29,16,11,0) 100%);
}

.header-mobile-logo {
	position: absolute;
	z-index: 3;
	width: 70%;
	height: auto;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
}

.mouse-ani {
	position:absolute;
	z-index:5;
	width: 22px;
	height: 85px;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	background: no-repeat center bottom scroll;
	-moz-background-size:contain;
	-webkit-background-size:contain;
	-o-background-size:contain;
	background-size:contain;
	background-image:url(../img/mouse.svg);
}

.mouse-ani .v1 {
	position: absolute;
	z-index: 1;
	width: 2px;
	height: 35px;
	top:0;
	left: 10px;
	background-color: rgba(255,255,255, .3);
}

.mouse-ani .v2 {
	position: absolute;
	z-index: 2;
	width: 2px;
	height: 8px;
	top:0;
	left: 10px;
	background-color: rgba(255,255,255, 1);
	animation: mouse-down 1.5s linear infinite;
}

@keyframes mouse-down {
  0% { top:0; opacity:1}
  70% {top: 27px; opacity:1}
  80% { top: 27px; opacity:0}
  100% { top: 27px; opacity:0}
}

@media only screen and (max-width: 766px) {
	.header {
		height: 100vh;
		max-height: 100svh;
	}

	.header-frame video {
		object-position: center center;
	}
}

/* Loading */

#loading {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99999;
	width: 100%;
	height: 100%;
	overflow: visible;
	background: rgba(0, 0, 0, 0.95);
}

@keyframes lds-rolling {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@-webkit-keyframes lds-rolling {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.lds-rolling {
	position: relative;
}

.lds-rolling div,
.lds-rolling div:after {
	position: absolute;
	width: 86px;
	height: 86px;
	border: 6px solid #bf9868;
	border-top-color: transparent;
	border-radius: 50%;
}

.lds-rolling div {
	-webkit-animation: lds-rolling 1s linear infinite;
	animation: lds-rolling 1s linear infinite;
	top: 100px;
	left: 100px;
}

.lds-rolling div:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.lds-rolling {
	width: 200px !important;
	height: 200px !important;
	-webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
	transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}

.video-frame, .pic-frame {
	position: relative;
	display: block;
	padding: 0;
}

.video-frame .grd, .pic-frame .grd {
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgb(29,16,11);
    background: radial-gradient(circle, rgba(29,16,11,0) 55%, rgba(29,16,11,1) 85%);
	mix-blend-mode: multiply;
}

.video-frame.as11, .pic-frame.as11, .pic-frame.as11a {
	aspect-ratio: 1 / 1;
	padding: 0;
	overflow: hidden;
}

.pic-frame.as54 {
	aspect-ratio: 5 / 4;
	padding: 0;
	overflow: hidden;
}

.pic-frame.as2013 {
	aspect-ratio: 20 / 13;
	padding: 0;
	overflow: hidden;
}

.as2168 {
	aspect-ratio: 1000 / 2168;
	padding: 0;
	overflow: hidden;
}

.pic-frame.as162 {
	aspect-ratio: 100 / 62;
	padding: 0;
	overflow: hidden;
}

.pic-frame.as109 {
	aspect-ratio: 10 / 9;
	padding: 0;
	overflow: hidden;
}

.pic-frame.as58 {
	aspect-ratio: 100 / 58;
	padding: 0;
	overflow: hidden;
}

.pic-frame.as104 {
	aspect-ratio: 10 / 4;
	padding: 0;
	overflow: hidden;
}

.video-frame video, .pic-frame img {
	object-fit: cover;
	object-position: center 85%;
	width: 100%;
	height: 100%;
	padding: 0;
}

.pic-frame img.alt {
	object-position: center top;
}

@media (max-width: 766px) {
	.video-frame.as11 {
		aspect-ratio: 10 / 12;
	}

	.pic-frame.as11a {
		aspect-ratio: 2 / 3;
	}

	.pic-frame.as104 {
		aspect-ratio: 10 / 6;
	}
}


.full-img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	object-position: center center;
}

#p01 {
	background-color: #0a0000;
}

/* Section */

section.page {
	padding: 90px 0;
}

section.page2 {
	padding: 0 0 90px 0;
}

section {
	position: relative;
}

@media (max-width: 766px) {
	section.page {
		padding: 100px 0;
	}

	section.page2 {
		padding: 0 0 100px 0;
	}
}

/* Texts */

.content-text {
	padding: 0;
}

.content-text h1, .content-text h2, .content-text h3, .content-text h4, .content-text h5 {
	color: #bf9868;
	font-family: "Noto Serif TC", serif;
    font-optical-sizing: auto;
	font-style: normal;
	transform: scaleX(.95);
	letter-spacing: 1px;
}

.content-text .text-v {
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}

.content-text span.space {
	display: inline-block;
	width: 5px;
	height: 30px;
}

.content-text h1 {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.4;
}

.content-text h1.num {
	font-size: 60px;
	margin: 0;
}

.content-text h3 {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.4;
}

.content-text h4 {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
}

.content-text h5 {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0;
}

.content-text p {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	color: #fff;
	text-align: justify;
}

.content-text .sl {
	line-height: 1.4;
	margin: 0;
}

hr.gd {
	display: block;
	width: 100%;
	height: 1px;
	border: none;
	background-color: #a88852;
	margin: 30px 0;
}

hr.gd.alt {
	margin: 50px 0;
}

@media (max-width: 766px) {
	#p01 .content-text {
		padding: 80px 0 10px 0;
	}

	.content-text h1 {
		font-size: 27px;
	}

	.content-text h1.num {
		font-size: 38px;
	}

	.content-text h3 {
		font-size: 23px;
	}

	.content-text h4 {
		font-size: 20px;
	}

	.content-text h5 {
		font-size: 17px;
	}

	.content-text p {
		font-size: 16px;
	}
}

.item-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.item-title h3 {
	transform-origin: left center;
}

.item-title h3, .item-title h5 {
	margin: 0;
}

/* Custom Col Padding */

.row.custom {
	margin-left: -2px;
	margin-right: -2px;
}

.row.custom>.col {
	padding-left: 2px;
	padding-right: 2px;
}

.row.custom2 {
	margin-left: -30px;
	margin-right: -30px;
}

.row.custom2>.col {
	padding-left: 30px;
	padding-right: 30px;
}


/* Info */

ul.info {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.info li {
	font-family: "Noto Serif TC", serif;
	font-size: 16px;
	font-weight: 400;
	color: #bf9868;
	display: flex;
	padding: 12px 10px;
	position: relative;
}

ul.info li::before {
	content: '';
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 1px;
	top: 0;
	left: 0;
	background-color: #bf9868;
}

ul.info li span:first-child {
	font-weight: 600;
	margin: 0 5px 0 0;
	white-space: nowrap;
}

ul.info li:last-child {
	align-items: end;
}

ul.info li:last-child::after {
	content: '';
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: #bf9868;
}

ul.info li span.num {
	font-family: "Noto Sans TC", sans-serif;
	font-size: 36px;
	font-weight: 400;
	line-height: 1;
}

@media (max-width:766px) {
	ul.info li {
		font-size: 13px;
	}

	ul.info li span.num {
		font-size: 28px;
	}
}


.testimonials {
	background-color: #1b0500;
	aspect-ratio: 2 / 1;
	display: block;
	position: relative;
	background-image: url(../img//p8.jpg);
}


.testimonials .p8 {
	position: absolute;
	z-index: 1;
	width: 40%;
	height: auto;
	left: 50%;
	top: 30%;
	transform: translateX(-50%);
}

@media (max-width:766px) {
	.testimonials {
		aspect-ratio: 2 / 1.5;
	}

	.testimonials .p8 {
		top: 20%;
		width: 75%;
	}
}

.testimonials .testimonial-item {
	max-width: 18rem
}

.testimonials .testimonial-item img {
	max-width: 12rem;
	box-shadow: 0 5px 5px 0 #adb5bd
}

.call-to-action {
	position: relative;
	padding-top: 6rem;
	padding-bottom: 6rem;
	background-color: #06247e;
	background-image: url(../img/11.jpg);
}

.call-to-action h2 {
	font-weight: 500;
}

.call-to-action .overlay {
	position: absolute;
	background-color: #1d2087;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	opacity: .85
}

.call-to-action p.text-light {
	font-size: .85rem;
}

@media (max-width:768px) {
	.call-to-action {
		padding-top: 6rem;
		;
		padding-bottom: 6rem;
	}

	.call-to-action p.text-light {
		font-size: .75rem;
	}
}

footer.footer {
	padding-top: 1rem;
	padding-bottom: 70px;
}

@media only screen and (min-width: 767px) {
	footer.footer {
		padding-bottom: 1rem
	}
}



#map {
	width: 100%;
	height: 300px;
	margin-top: 0;
	margin-bottom: 0;
}

.form-control {
	border-radius: 0;
}

.bg-primary {
	background-color: #333 !important;
}



#myBtn {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Fixed/sticky position */
	bottom: 0;
	/* Place the button at the bottom of the page */
	right: 0;
	/* Place the button 30px from the right */
	z-index: 500;
	/* Make sure it does not overlap */
	border: none;
	/* Remove borders */
	outline: none;
	/* Remove outline */
	background-color: #000;
	/* Set a background color */
	color: #bf9868;
	/* Text color */
	cursor: pointer;
	/* Add a mouse pointer on hover */
	padding: 10px 15px 10px 15px;
	border-radius: 0px;
	/* Rounded corners */
	font-size: 1rem;
	/* Increase font size */
	/*border-radius: 50%;*/
}

@media only screen and (max-width: 766px) {
	#myBtn {
		bottom: 0;
		right: 0;
		padding: 5px 10px 5px 10px;
	}
}

#myBtn:hover {
	color: rgba(0, 0, 0, 0.75);
	background-color: #bf9868;
	/* Add a dark-grey background on hover */
}


.add-text {
	position: absolute;
	z-index: 3;
	color: #fff;
	font-size: 11px;
	font-weight: 450;
	text-shadow: 0px 0px 4px #000000;
}

.add-text.rb {
	right: 10px;
	bottom: 10px;
	text-align: right;
	transform: scale(.75);
	transform-origin: right bottom;
}

.add-text.rb2 {
	font-size: 13px;
	right: 10px;
	bottom: 10px;
}

.add-text.rb3 {
	right: 15px;
	bottom: 12px;
	text-align: right;
}

.add-text.rt {
	right: 2%;
	bottom: 2%;
}

.add-text.lb {
	left: 15px;
	bottom: 15px;
}

.add-text.lb2 {
	left: 13%;
	bottom: 2%;
}

.add-text.lb3 {
	left: 2%;
	bottom: 2%;
}

.add-text.lb4 {
	left: 15px;
	bottom: 12px;
}

@media (max-width: 766px) {
	.add-text.rb, .add-text.rb2 {
		right: 5px;
		bottom: 5px;
	}
}

.full-bg {
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.full-bg2 {
	-moz-background-size: contain;
	-webkit-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
}

.line-title {
	font-family: "Noto Serif TC", serif;
    font-size: 18px;
    font-weight: 600;
    color: #bf9868;
	text-align: center;
}

.btn-custom {
	display: flex !important;
	justify-content: center;
	align-items: center;
	font-family: "Noto Serif TC", serif;
	font-size: 18px;
	font-weight: 600;
	background-color: #bf9868;
	color: #1b0500;
	border: solid 1px #bf9868;
	animation: all 0.3s ease-in;
}

.btn-custom:hover {
	background-color: #1b0500;
	color: #bf9868;
}

@media (max-width: 766px) {
	.btn-custom {
		font-size: 17px;
	}
}