:root {
	--color-gray: #847667;
}

body {
	font-family: 'Arial', 'Noto Sans CJK TC', 'PingFang TC', 'Heiti TC', 'Noto Sans TC', source-han-sans-traditional, 'Microsoft JhengHei', sans-serif;
	color: #1a1a1a;
	font-size: 1rem;
	font-weight: 400;
	display: flex;
	overflow-y: hidden;
}
body.loaded {
}

#scroll-x-wrap {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	flex-grow: 1;
	width: calc(100vw - 400px);
	position: relative;
}
header {
	min-width: 400px;
	width: 25vw;
	flex-grow: 1;
}
main {
	display: flex;
}
section {
	min-width: calc(100vw - 400px);
	min-height: 100vh;
}

p {
	line-height: 1.5;
	font-weight: 400;
}
p + p {
	/*margin-top: 0.75em;*/
}
a {
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
}
a, button, input[type="submit"], input[type="button"] {
	cursor: pointer;
}
input, select, textarea, button {
	font-family: 'Arial', 'Noto Sans CJK TC', 'PingFang TC', 'Heiti TC', 'Noto Sans TC', source-han-sans-traditional, 'Microsoft JhengHei', sans-serif;
	font-size: 1rem;
	font-weight: 400;
}
img {
	max-width: 100%;
	width: auto;
	height: auto;
}

.sr-only {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important; /* 1 */
	-webkit-clip-path: inset(50%) !important;
		clip-path: inset(50%) !important;  /* 2 */
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;            /* 3 */
}
.hide {
	opacity: 0;
	pointer-events: none;
}

/* Preloader */
#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color: var(--color-darkblue); /* change if the mask should have another color then white */
	z-index:100; /* makes sure it stays on top */
}
#status {
	border: 5px solid var(--color-gold); /* Light grey */
	border-top: 5px solid var(--color-darkblue); /* yellow */
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* layout */
.container {
	padding: 6em 4em 6em 4em;
	width: calc(100vw - 400px);
	min-height: calc(100vh);
	margin: 0 auto;
}
.container.wide {
	max-width: 1480px;
}
footer .container {
	padding: 1em 2em;
}
.max-w8 {max-width: 800px;}
.max-w7 {max-width: 680px;}
.max-w6 {max-width: 600px;}
.max-w5 {max-width: 500px;}
.max-w4 {max-width: 400px;}
.max-w3 {max-width: 300px;}
.max-w2 {max-width: 200px;}
.max-w100 { max-width: 100%; }
.col {
	display: inline-block;
}
.block {
	display: block;
}
.flex {
	display: flex;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.w100 {
	width: 100%;
}
.w60 {
	width: 60%;
}
.w50 {
	width: 50%;
}
.w40 {
	width: 40%;
}
.d-table {
	display: table;
}
.d-row {
	display: table-row;
}
.d-cell {
	display: table-cell;
}
.grid-3fr {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	grid-gap: 2em 2em;
}
.grid-3fr .post-img {
	width: 100%;
}
.mt-s { margin-top: 8px; }
.mt-1 { margin-top: 0.8em; }
.mt-2 { margin-top: 1.4em; }
.mt-3 { margin-top: 3.5em; }
.mb-1 { margin-bottom: 0.8em; }
.mb-2 { margin-bottom: 1.4em; }
.mb-3 { margin-bottom: 2em; }
.mb-4 { margin-bottom: 4em; }
.mb-s { margin-bottom: 10px; }
.ml-s { margin-left: 10px; }
.ml-1 { margin-left: 1em; }
.ml-2 { margin-left: 1.8em; }
.mr-1 { margin-right: 1em; }
.mr-s { margin-right: 3px; }
.mr-2 { margin-right: 2em; }
.mr-3 { margin-right: 3em; }

.my-1 { margin-top: 0.5em; margin-bottom: 0.5em;}

.pt-1 { padding-top: 0.8em; }
.pt-2 { padding-top: 1.4em; }
.pt-4 { padding-top: 4em; }
.pb-1 { padding-bottom: 1em; }
.pb-4 { padding-bottom: 4em; }
.px-1 { padding-left: 0.8em; padding-right: 0.8em; }
.pr-2 { padding-right: 2.5em; }
.pl-2 { padding-left: 2.5em; }

/* position */
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.ab-center {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.fixed-right {
	position: fixed;
	right: 20px;
	top: 150px;
	z-index: 90;
}
.flex-column {
	flex-direction: column;
}
.flex-middle {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.flex-space {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.flex-right {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.flex-left {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}
.flex-al-start {
	align-items: flex-start;
}

.flex-grow-1 {
	flex-grow: 1;
}
.zindex-1 {
	z-index: 1;
}

.no-pe {
	pointer-events: none;
}
.float-right {
	float: right;
}
/* color */
.bg-no {
	background: transparent;
}
.bg-transwhite {
	background-color: rgba(255,255,255,0.9);
}
.bg-gray {
	background-color: var(--color-gray);
}
.main-bg {
	position: fixed;
	z-index: -1;
	width: 100vw;
	height: 100vh;
	background: url('../img/bg2.jpg');
	background-size: cover;
}
.rocks {
	position: fixed;
	z-index: 100;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
}
#rock-1, #rock-2 {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	background: url('../img/bgmo_1.png') repeat-x;
	background-size: 20% auto;
	background-position-y: bottom;
	background-position-x: 0;
	pointer-events: none;
	opacity: 0.5;
}
#rock-2 {
	background-image: url('../img/bgmo_2.png');
	background-size: 22% auto;
	opacity: 0.1;
}

.ruler {
	position: fixed;
	pointer-events: none;
	left: 0;
	top: 0;
	right: 0;
	height: 90px;
	background: url('../img/cloud.png') repeat-x;
	background-size: auto 140%;
	background-position: 50% -30px;
}

.super {
	position: absolute;
	z-index: 99;
    max-width: 120px;
    animation: fly 2s ease-in-out infinite;
    /*cursor: grab;*/
    left: 3em;
    bottom: 2em;
}
/*.super:active {
	cursor: grabbing;
}*/
@keyframes fly {
	0%, 100%{ transform: translateY(10px); }
	50% { transform: translateY(0); }
}

.black { color: #1a1a1a; }
.white { color: #fff; }
.gray { color: var(--color-gray); }
.blue { color: #2f858e }

.opacity3 { opacity: 0.3; }
.opacity6 { opacity: 0.6; }

.border-1 { border: 1px solid #000; }
.border-5 { border: 5px solid #000; }

.border-gray { border-color: var(--color-gray); }
.border-white { border-color: #fff; }
.border-gold { border-color: var(--color-gold); }

.border-top { border-style: solid none none none; }
.border-left { border-style: none none none solid; }

/* text */
.t-xxlarge { font-size: 46px; /* 30px */ }
.t-xlarge { font-size: 2.2em; /* 30px */ }
.t-large { font-size: 1.88889em; /* 26px */ }
.t-midlarge { font-size: 1.444445em; /* 22px */ }
.t-mid { font-size: 1.125em; /* 18px */ }
.t-small { font-size: 0.89em; /* 16px */ }
.t-xsmall { font-size: 0.625em; /* 14px */ }
.t-xxsmall { font-size: 0.5em; /* 14px */ }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }
.text-nowrap { white-space: nowrap; }
.bold { font-weight: 700; }
.font-w4 { font-weight: 400; }
.font-w5 { font-weight: 500; }
.lh-13 { line-height: 1.3; }
.lh-15 { line-height: 1.5; }
.lh-20 { line-height: 2; }
.ls-1 { letter-spacing: 1px; }
.show-sm,.show-xs , .show-mid { display: none; }

hr {
	border: 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}
.link {
	text-decoration: underline;
	text-underline-offset: 6px;
}
.link:hover {
	opacity: 0.9;
}

/* button */
.btn-readmore {
	display: inline-block;
	border: 1px solid #000;
	padding: 5px 20px;
}
.btn-readmore span {
	transition: all 0.4s ease;
	display: inline-block;
}
.btn-readmore:hover span {
	transform: translateX(8px);
}
.icon-img {
	width: 1em;
	height: auto;
	vertical-align: middle;
}
.btn-play {
	position: absolute;
	border: 1px solid #fff;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	padding: 8px 5px 7px 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	z-index: 1;
}
/* header */
.header {
	position: relative;
	left: 0;
	height: 100vh;
	z-index: 99;
	transition: transform 0.2s ease, background-color 0.2s ease, height 0.2s ease-in-out;
	background-color: transparent;
	padding: 1.5em 0em 3em 0.5em;
	display: flex;
	flex-direction: column;
}
.header-shadow {
	position: absolute;
	top: 0;
	width: 50%;
	height: 100vh;
	display: inline-flex;
	align-items: center;
	pointer-events: none;
	background: url('../img/linearbg.png') no-repeat;
	z-index: -1;
}

#headerlogo {
	padding-top: 10px;
}
.navtop {
}
.navbar {
	padding: 1em 1em 5em;
	width: 100%;
	height: 100vh;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .9);
	display: flex;
	z-index: 500;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: translateX(-100%);
	transition: all 0.4s ease;
	font-size: 22px;
	line-height: 2;
}
.active .navbar {
	transform: translateX(0);
}
.navbar li {
	display: inline-block;
}
.navbar li + li {
	margin-top: 1.5em;
}
.navbar a {
	padding: 5px 10px;
	transition: color 0.12s ease;
	font-weight: 300;
	position: relative;
	color: #fff;
}
.navbar a:hover, .navbar a.active {
	color: var(--color-gold);
}
.navbar a::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 4px;
	left: 10px;
	width: calc(100% - 20px);
	height: 1px;
	background-color: var(--color-gold);
	max-width: 0;
	transition: max-width 0.4s ease;
}
.navbar a:hover::after, .navbar a.active::after {
	max-width: 200px;
}

.header.detachedHide {
}
.header.detached {
	background-color: var(--color-darkblue);
}
.header.detached .navbar {
}
.header.detached.show {
}

/* navbar toggle */
.hbg-btn {
	border: 0;
	height: 50px;
	width: 50px;
	z-index: 600;
	transition: margin 0.2s ease;
	position: relative;
	background: transparent;
}
header.detached .hbg-btn {
	margin-top: 0;
}
.icon-hbg,
.icon-hbg::before,
.icon-hbg::after {
	content: "";
	box-sizing: border-box;
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 4px;
	border: 0;
	background: #c7c6e1;
	position: relative;
	border-radius: 8px;
	transition: all 0.4s ease;
	transform-origin: 1px 2px;
}
.icon-hbg::before {
	position: absolute;
	top: -10px;
}
.icon-hbg::after {
	position: absolute;
	bottom: -10px;
}
.active .icon-hbg {
	border: 0;
	background: transparent;
}
.active .icon-hbg::before {
	transform: rotate(45deg);
}
.active .icon-hbg::after {
	transform: rotate(-45deg);
}
/* taiwan-anime */
.taiwan-anime {
	position: relative;
	margin: 2em 0em 2em 0em;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	flex-direction: column;
}

.taiwan-imgs {
	position: relative;
}
.taiwan-text {
	position: absolute;
    color: var(--color-gray);
    border: 1px solid var(--color-gray);
    right: 3.5em;
    left: 0;
    margin: 0 auto;
    top: -2em;
    opacity: 0.7;
    letter-spacing: 2px;
    padding: 7px 8px 5px 10px;
    max-width: 130px;
}
.taiwan-anime svg {
	position: absolute;
	left: 0;
	top: 0;
}
/*.taiwan-anime .taiwan-imgs img {
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.8s ease;
	opacity: 0;
	z-index: 99;
	width: 100%;
    height: 100%;
    object-fit: contain;
}
.taiwan-anime .taiwan-imgs img:last-child {
	position: relative;
	opacity: 0!important;
	transition: all 0s ease 0s !important;
}*/

/*#tw1 { transform: translate(150px, -100px) scale(1.75); transition: transform 0.8s ease 1.2s, opacity 0.4s ease 0.6s;}
#tw2 { transform: translate(220px, -200px) scale(1.75); transition: transform 0.8s ease 1.8s, opacity 0.4s ease 1.2s;}
#tw3 { transform: translate(180px, -100px) scale(1.75); transition: transform 0.8s ease 2.4s, opacity 0.4s ease 1.8s;}
#tw4 { transform: translate(200px, -200px) scale(1.75); transition: transform 0.8s ease 3.0s, opacity 0.4s ease 2.4s;}
#tw5 { transform: translate(150px, -100px) scale(1.75); transition: transform 0.8s ease 3.6s, opacity 0.4s ease 3.0s;}
#tw6 { transform: translate(250px, -100px) scale(1.75); transition: transform 0.8s ease 4.2s, opacity 0.4s ease 3.6s;}
#tw_shadow { opacity: 0; transition-delay: 5s;}*/

.taiwan-anime.active #taiwanimgs img {
	transform: none;
	opacity: 1;
}
.taiwan-anime.darker #taiwanimgs #tw_shadow{
	filter: grayscale(80%);
	opacity: 0.5;
	transition-delay: 0s;
}
.taiwan-anime.finished #taiwanimgs img {
	transition-delay: 0s;
}
.taiwan-anime.darker #taiwanimgs img.active {
	opacity: 1;
}
.taiwan-anime.darker #taiwanimgs img {
	opacity: 0;
	transition-delay: 0s;
}
.fade {
	transition: opacity 0.4s ease;
	opacity: 0;
}
#fade0 { transition: opacity 0.4s ease 0s; }
#fade1 { transition: opacity 0.4s ease 0.2s; }
/* tw text */
#fade2 { transition: opacity 0.4s ease 0.6s; }
#fade3 { transition: opacity 0.4s ease 1.2s; }
#fade4 { transition: opacity 0.4s ease 1.8s; }
#fade5 { transition: opacity 0.4s ease 2.4s; }
#fade6 { transition: opacity 0.4s ease 3.0s; }
#fade7 { transition: opacity 0.4s ease 3.6s; }
/* tw text end */
#fade8 { transition: opacity 0.4s ease 5.4s; }
#fade9 { transition: opacity 0.4s ease 6s; }
.active .fade {
	opacity: 1 !important;
}

.toptext {
	padding-left: 0em;
	padding-right: 0em;
}

/* title nav dots */
.fixed-title {
	position: fixed;
    left: calc(50% + 200px);
    margin: 2em auto 0;
    text-align: center;
    z-index: 999;
    transform: translateX(-50%);
}
.nav-dots {
	position: relative;
	padding-top: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 200px;
}
.nav-dots a {
	border: 1px solid var(--color-gray);
	border-radius: 50%;
	width: 6px;
	height: 6px;
	display: block;
	margin: 7px 5px;
}
.nav-dots li:nth-of-type(1) a { transform: translateX(80px);  }
.nav-dots li:nth-of-type(2) a { transform: translateX(64px); border-color: transparent; pointer-events: none;}
.nav-dots li:nth-of-type(3) a { transform: translateX(48px); border-color: transparent; pointer-events: none;}
.nav-dots li:nth-of-type(4) a { transform: translateX(32px); border-color: transparent; pointer-events: none;}
.nav-dots li:nth-of-type(5) a { transform: translateX(16px); border-color: transparent; pointer-events: none;}
.nav-dots li:nth-of-type(6) a { border-color: transparent; pointer-events: none; }
.nav-dots a.active {
	width: 28px;
	height: 20px;
	border: 0;
	border-radius: 0;
	margin: 0;
	background: url('../img/icon_down.svg') no-repeat;
	background-size: contain;
}
.bdtrans { border-color: transparent !important; }
.nav-dots li span {
	color: var(--color-gray);
	position: absolute;
	top: 3px;
	pointer-events: none;
	left: -120px;
	right: -200px;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s linear;
}
.nav-dots a.active + span {
	opacity: 1;
}
.nav-verti {
    writing-mode: vertical-lr;
    display: flex;
    margin: 10px 10px 0px 6px;
    letter-spacing: 2px;
}
.nav-verti li {
    padding: 10px 10px;
    margin-bottom: 5px;
    color: #7ec8c5;
}
/* post */
.post {
	display: flex;
}
.post-excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	overflow: hidden;
    max-height: 192px;
}
.post-year {
	font-size: 30px;
	font-family: 'Open Sans', sans-serif;
	color: #847667;
	margin-bottom: 0.25em;
}
.post-title {
	font-size: 34px;
	line-height: 1.2;
	margin-bottom: 0.5em;
	letter-spacing: 3px;
	color: #2b261c;
}
.post-img {
	width: 600px;
	position: relative;
	padding-top: 45%;
	overflow: hidden;
	display: block;
}
.post-img-square {
	width: 400px;
	padding-top: 66%;
	border: 5px solid #fff;
	box-shadow: 0 0 2px #000;
}
.post-img.post-img-circle {
	width: 120px;
	border-radius: 50%;
	padding-top: 120px;
	margin: 0 auto 5px;
}
.post-img.has-btn::before {
	content: '';
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #000;
	opacity: 0;
	transition: all 0.4s ease;
}
.post-img.has-btn:hover::before {
	opacity: 0.35;
}
.post-img.has-btn .btn-play {
	opacity: 0;
	transition: all 0.4s ease;
}
.post-img.has-btn:hover .btn-play {
	opacity: 1;
}
.post-img > img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	transition: all 0.4s ease;
}
.img-contain {
	padding-top: 30%;
	overflow: visible;
}

.img-contain > img {
	object-fit: contain;
}
.post-img .btn-readmore {
	letter-spacing: 6px;
	z-index: 10;
    margin: auto;
    height: 28px;
    min-height: calc(100% - 30px);
    width: 130px;
    min-width: calc(100% - 30px);
	border-color: #fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 1s ease-in-out;
}
.post-img:hover .btn-readmore {
    min-height: 0;
    min-width: 0;
}

.post-img:hover > img {
	transform: scale(1.2);
}
.img-contain:hover > img {
	transform: scale(1.1);
}
.post-img-square:hover > img {
}
.shadow {
	box-shadow: 0 0 6px rgba(0, 0, 0, .2);
}
/* slick */
.post-slick {
	display: flex;
	position: relative;
}
.slick-slider {
	width: 100%;
}
.slick-track {
	display: flex;
	align-items: center;
}
.slick-arrow {
	position: absolute;
}
.slick-list {
	max-width: 100vw;
	overflow: hidden;
}
.slick-dots button[aria-label="1 of 1"] {
	display: none;
}

.slick-arrow {
	position: absolute;
	top: 80px;
	bottom: 0;
	margin: auto;
    text-indent: -200px;
    overflow: hidden;
    z-index: 2;
    border: 0;
    background: transparent;
    width: 50px;
    height: 50px;
    transition: all 0.2s ease;
}

.slick-arrow::after {
	content: '';
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	text-indent: 0;
	color: inherit;
	border-width: 5px 5px 0 0;
	border-style: solid;
	border-color: var(--color-gray);
}
.slick-arrow.slick-prev::after {
	transform: rotate(-135deg);
}
.slick-arrow.slick-next::after {
	transform: rotate(45deg);
}

.slick-arrow.slick-prev {
	left: 0;
	right: 630px;
}
.slick-arrow.slick-next {
	right: 0;
	left: 630px;
}

.slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: -10px;
    margin: auto;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 0px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    content: '';
    text-align: center;
    border: 1px solid var(--color-gray);
    right: 0;
    margin: auto;
    bottom: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    background-color: var(--color-gray);
}

/* circle */
.title-dec-line::before, .title-dec-line::after {
	content: '';
	width: 50px;
	height: 5px;
	border-radius: 5px;
	display: block;
	position: absolute;
	background: #2f858e;
	left: -60px;
	top: 15px;
}
.bigdash {
	width: 30px;
	height: 3px;
	border-radius: 5px;
	background: var(--color-gray);
	display: inline-block;
	vertical-align: middle;
	margin-top: -5px;
}
.title-dec-line::after {
	left: auto;
	right: -60px;
}
.circle-text {
	width: 120px;
	height: 120px;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	padding: 4px 2px 2px;
	margin: 0 0.5em 10px 0.5em;
	border: 5px solid #f9f9f9;
	background-color: #bf403a;
}
.circle-text-lg {
	width: 130px;
	height: 130px;
}
.circle-text-xlg {
	width: 130px;
	height: 130px;
}
.circle-text.t-large {
	font-size: 30px;
}
.circle-text.t-xlarge {
	font-size: 40px;
}
.circle-yellow { background-color: #e68748; }
.circle-green { background-color: #89aa3d; }
.circle-blue { background-color: #459bbb; }
.circle-pink { background-color: #b66393; }
.hoverlarge {
	transition: all 0.4s ease;
}
.hoverlarge:hover {
	transform: scale(1.15);
}
.bgline {
	position: relative;
}
.bgline::before {
	content: '';
    display: block;
    position: absolute;
    width: 110%;
    height: 5px;
    background: var(--color-gray);
    z-index: -1;
    opacity: 0.7;
    border-radius: 5px;
    top: 65px;
}

/* footer */
footer .container {
	padding: 2em 2em;
}

/* right btns */
.hideontop {
	opacity: 0;
	pointer-events: none;
	transition: all 0.6s ease;
}
.hideontop.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(50px);
}
.hideontop.show:hover {
	opacity: 1;
}

/* fadein */
.fadein {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s ease, transform 0.8s ease;
}
.fadein.show {
	opacity: 1;
	transform: translateY(0);
}
.fadein.nav-scrollspy {
	transition-delay: 0.4s;
}

.hide {
	opacity: 0;
	transform: translate(0, 0);
	transition: opacity 0.6s ease 0s, transform 0.8s ease 0s;
}
.hide.show {
	opacity: 1;
	transform: translate(0, 0) !important;
	pointer-events: auto;
}

.video-wrap {
	position: relative;
	width: 100%;
	padding-top: 36%;
}
.video-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

::-webkit-scrollbar {
	width: 0;
	height: 0;
} /* the new scrollbar will have a flat appearance with the set background color */


.mouse {
  display: block;
  margin: 0 auto;
  width: 33px;
  height: 60px;
  border-radius: 20px;
  border: 2px solid var(--color-gray);
  position: absolute;
  top: 0;
  right: 4em;
  bottom: 0;
  margin: auto;
}
.mouse span {
  display: block;
  margin: 12px auto;
  width: 2px;
  height: 9px;
  border-radius: 100%;
  background: var(--color-gray);
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
}
.taiwan-anime .mouse {
	top: auto;
	bottom: 3em;
	right: -1.4em;
	transform: scale(0.75);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0s ease 0s;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(24px);
    transform: translateY(24px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(24px);
    -ms-transform: translateY(24px);
    transform: translateY(24px);
  }
}


.ad-tag {
	position: fixed;
    top: 1.5em;
    right: 1.5em;
    border: 1px solid var(--color-gray);
    border-radius: 5px;
    font-size: 14px;
    padding: 5px 10px 3px;
    color: var(--color-gray);
    pointer-events: none;
    opacity: 0.9;
}