*{
	font-family: "Geograph", "Roboto", "Noto Sans TC", sans-serif;
	font-style: normal;
}

body{
	width: 100vw;
	overflow-x: hidden;
	background: #f7f7f7;
	font-size: 16px;
}


h1, h2, h3, h4, h5, h6{
	font-family: "Geograph", "Roboto", "Noto Sans TC", sans-serif;
}

h1{
	font-size: 3.4em;
	font-weight: 700;
	line-height: 1.2em;
}

h2{
	font-size: 1.8em;
	font-weight: 700;
	line-height: 1.4em;
	margin-bottom: 10px;
}

h3{
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.4em;
}

h4{
	font-size: 1.25em;
	font-weight: 700;
}

h5{
	font-size: 1.125em;
	font-weight: 500;
}

h6{
	font-size: 1.1em;
    font-weight: 500;
}

p{
	font-family: "Geograph", "Roboto", "Noto Sans TC", sans-serif;
	text-align: justify;
	font-size: 1em;
    line-height: 1.4em;
    font-weight: 400;
}


::selection {
    color: #ffffff;
    background: #ffcc00;
}

.show{
	display: block;
}

.hide{
	display: none;
}

.mobile{
	display: none;
}

.desktop{
	display: block;
}

.clearfix{
	clear: both;
}

section{
	position: relative;
	width: 100%;
	margin: 0 auto;
	/* overflow: hidden; */
}

.scrollfixed{
	overflow: hidden;
}

/* ============================================================
LOADING
============================================================ */
.progress {
	position: fixed;
	z-index: 11111;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffcc00;
	color: #999999;
}

.progress-inner {
	position: absolute;
	left: calc(50% - 75px);
	top: calc(50% - 75px);
	width: 150px;
	height: 150px;
	background-color: #ffcc00;
	/*overflow: hidden;*/
}

.progress-bar {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #ffcc00;
}

.progress-text {
	color: #198995;
	font-family: "Geograph", "Roboto", "Noto Sans TC", sans-serif;
	font-size: 2em;
	font-weight: 700;
	position: absolute;
	z-index: 9999999;
	width: 250px;
	text-align: center;
	top: 130%;
	left: 50%;
	transform: translate(-50%, 0);
}

/* .complete {
	overflow: auto;
} */

.progress-logo {
	-moz-transform: scale(1.02, 1.02);
	-ms-transform: scale(1.02, 1.02);
	-webkit-transform: scale(1.02, 1.02);
	transform: scale(1.02, 1.02);
	position: absolute;
	top: 0;
}

.progress-complete .progress-bar {
	background-color: #ffffff;
}

.earth.earth-loading{
	width: 150px;
	/* margin-top: -43%; */
}


.earth-text.earth-text-loading{
	width: 150%;
	margin: 0 auto;
	margin-left: -24%;
	animation: earthTextRotate 3s linear forwards infinite;
}


/* ============================================================
nav
============================================================ */
nav{
	width: 100%;
	height: 52px;
	position: fixed;
	top: 0;
	left: 0;
	background: #ffffff;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, .2);
	z-index: 20;
}

.nav-logo{
	width: 75px;
	height: 34px;
	position: absolute;
	top: 9px;
	left: 15px;
}

.nav-logo img{
	width: 100%;
}

.nav-logo a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}



.nav-icon{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
}

/* ======= icon animation ======= */
.menu-icon{
	width: 40px;
	/* height: 40px; */
	position: absolute;
    cursor: pointer;
    top: 14px;
    right: 15px;
    z-index: 5;
}

.menu-icon-line{
	width: 100%;
    height: 3px;
    background: #198995;
    margin-bottom: 7px;
    border-radius: 50000px;
}

.menu-icon-line:nth-child(3){
	margin-bottom: 0;
}

@keyframes navActive1{
	0%{
		transform: rotate(0deg);
    	margin-top: 0px;
    	background: #ffffff;
	}

	100%{
		transform: rotate(45deg);
    	margin-top: 10px;
    	background: #ffffff;
	}
}

@keyframes navActive1Back{
	0%{
    	transform: rotate(45deg);
    	margin-top: 10px;
    	background: #198995;
	}

	100%{
		transform: rotate(0deg);
    	margin-top: 0px;
    	background: #198995;
	}
}

@keyframes navActive3{
	0%{
		transform: rotate(0deg);
    	margin-top: 0px;
    	background: #ffffff;
	}

	100%{
		transform: rotate(-45deg);
    	margin-top: -10px;
    	background: #ffffff;
	}
}

@keyframes navActive3Back{
	0%{
    	transform: rotate(-45deg);
    	margin-top: -10px;
    	background: #198995;
	}

	100%{
		transform: rotate(0deg);
    	margin-top: 0px;
    	background: #198995;
	}
}

.menu-line1-active{
    animation: navActive1 .2s;
	animation-fill-mode: forwards;
}

.menu-line3-active{
    animation: navActive3 .2s;
	animation-fill-mode: forwards;
}

.menu-line1-back{
    animation: navActive1Back .2s;
	animation-fill-mode: forwards;
}

.menu-line3-back{
    animation: navActive3Back .2s;
	animation-fill-mode: forwards;
}

/* ======= END OF icon animation ======= */

.menu{
	width: 100vh;
	height: 100vh;
	position: absolute;
	top: 0;
	right: -100vw;
	background: #198995;
	border-radius: 50%;
	display: none;
	opacity: 0;
}

.menuin{
	animation: menuBounceIn .4s forwards;
}

.menuout{
	animation: menuBounceOut .4s forwards;
}

@keyframes menuBounceIn{
	0%{
		width: 100vh;
		border-radius: 50%;
		right: -80vw;
	}

	100%{
		width: 90%;
		right: 0;
		border-radius: 0;
	}
}

@keyframes menuBounceOut{
	0%{
		width: 90%;
		right: 0;
		border-radius: 0;
	}

	100%{
		width: 100vh;
		border-radius: 50%;
		right: -80vw;
	}
}

.menu ul{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	opacity: 0;
}

.menu-item{
	width: 100%;
	text-align: center;
	color: #ffffff;
	font-size: 1.1em;
	font-weight: 500;
	padding: 20px;
	position: relative;
	border-radius: 1000px;
	box-sizing: border-box;
}

.menu-item a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.menu-item.active{
	background: #f7f7f7;
	color: #198995;

}


@media all and (min-width: 768px) {
	nav{
		width: 100%;
		height: 60px;
	}

	.nav-logo{
		width: 80px;
		height: 38px;
		top: 11px;
		left: 15px;
	}

	.menu-icon{
		display: none;
	}


	.menu{
		width: 100%;
		height: 60px;
		position: absolute;
		top: 0;
		right: 0;
		background: none;
		border-radius: 50%;
		display: block;
		opacity: 1;
	}

	.menu ul{
		position: absolute;
	    top: 50%;
		left: auto;
		right: 15px;
		transform: translate(0,-50%);
		opacity: 1;
		display: flex;
		justify-content: right;
		align-items: center;
	}

	.menu-item{
		width: auto;
		text-align: center;
		color: #333333;
		font-size: 1.1em;
		font-weight: 500;
		padding: 5px 15px;
		margin: 0 10px;
		border-radius: 1000px;
		transition: .2s linear;
	}

	.menu-item.active{
		background: #ffcc00;
		color: #000000;
	}

	.menu-item.active-login{
		border: 1px solid #333333;
	}

	.menu-item:hover{
		background: #ffcc00;
		color: #000000;
	}
}



/* ============================================================
Header
============================================================ */
header{
	width: 100%;
	min-height: 100vh;
	position: relative;
	margin: 0 auto;
	background: #ffcc00;
	overflow: hidden;
}

.wave-top{
	width: 80%;
	max-width: 800px;
	position: absolute;
	top: 52px;
	right: -1%;
	animation: waveTop 8s linear forwards infinite;
}

.wave-bottom{
	width: 80%;
	max-width: 1000px;
	position: absolute;
	bottom: -10px;
	left: 0;
	animation: waveBottom 10s linear forwards infinite;
}

@keyframes waveTop{
	0%{
		top: 32px;
		right: -20px;
		transform: scale(1.2);
	}

	50%{
		top: 52px;
		right: -1%;
		transform: scale(1);
	}

	100%{
		top: 32px;
		right: -20px;
		transform: scale(1.2);
	}
}

@keyframes waveBottom{
	0%{
		bottom: -20px;
		left: -20px;
		transform: scale(1.2);
	}

	50%{
		bottom: -10px;
		left: 0;
		transform: scale(1);
	}

	100%{
		bottom: -20px;
		left: -20px;
		transform: scale(1.2);
	}
}


.tree-left{
	width: 50%;
	max-width: 550px;
	position: absolute;
	bottom: 5vh;
	left: 1%;
}

.tent-left{
	width: 30%;
	position: absolute;
	top: 10%;
	left: 5%;
}

.boy{
	width: 40%;
	position: absolute;
	top: 50%;
	left: 50%;
}

.boyimg1{
	animation: boyOne 3s linear forwards infinite;
}

.boyimg2{
	position: absolute;
	top: 0;
	left: 0;
	animation: boyTwo 3s linear forwards infinite;
}

/* .tentimg1{
	animation: boyTwo 4s linear forwards infinite;
}
 */
.tentimg2{
	position: absolute;
	top: 0;
	left: 0;
	animation: boyTwo 5s linear forwards infinite;
}

/* .tentimg3{
	animation: boyTwo 3s linear forwards infinite;
}
 */
.tentimg4{
	position: absolute;
	top: 0;
	left: 0;
	animation: boyTwo 4s linear forwards infinite;
}

@keyframes boyOne{
	0%{
		opacity: 1;
	}

	10%{
		opacity: 1;
	}

	20%{
		opacity: 0;
	}

	80%{
		opacity: 0;
	}

	85%{
		opacity: 1;
	}

	100%{
		opacity: 1;
	}
}

@keyframes boyTwo{
	0%{
		opacity: 0;
	}

	10%{
		opacity: 1;
	}

	15%{
		opacity: 1;
	}

	84%{
		opacity: 1;
	}

	85%{
		opacity: 0;
	}

	100%{
		opacity: 0;
	}
}



.tree-right{
	width: 60%;
	max-width: 700px;
	position: absolute;
	top: 52px;
	right: 5%;
}

.tent-right{
	width: 30%;
	position: absolute;
	bottom: 15%;
	right: -15%;
}

.girl{
	position: absolute;
	width: 40%;
	bottom: 0;
	right: 1%;
	transform: translate(0,100%);
}



.h1{
	width: 80%;
	max-width: 500px;
	position: absolute;
	top: 20%;
	left: 10%;
	/* top: 50%;
	left: 50%;
	transform: translate(-50%,-45%); */
}

@media all and (min-width: 768px){
	.h1{
		top: 50%;
		left: 50%;
		transform: translate(-50%,-45%);
	}
}

.h1-container{
	width: 100%;
	padding-bottom: 76.734%;
	position: relative;
	padding: 10px 0;
	background: rgba(255, 204, 0, .9);
}


.earth-text{
	width: 52%;
	margin: 0 auto;
	/* transform: rotate(0deg); */
    transform-origin: 50% 100%;
    animation: earthTextRotate 5s linear forwards infinite;
}

@keyframes earthTextRotate{
	0%{
		transform: rotate(-20deg);
		opacity: 0;
	}

	5%{
		transform: rotate(-20deg);
		opacity: 0;
	}

	15%{
		transform: rotate(0deg);
		opacity: 1;
	}

	85%{
		transform: rotate(0deg);
		opacity: 1;
	}

	95%{
		transform: rotate(20deg);
		opacity: 0;
	}

	100%{
		transform: rotate(20deg);
		opacity: 0;
	}
}

.earth{
	width: 35%;
	margin: 0 auto;
	position: relative;
	/* margin-top: -15%; */
}

.earth-like-left, .earth-like-right{
	width: 55%;
	position: absolute;
	bottom: 2%;
}

.earth-like-left{
	left: -30%;
	transform-origin: 0% 100%;
	animation: earthLikeLeft 5s linear forwards infinite;
}

.earth-like-right{
	right: -30%;
	transform-origin: 100% 100%;
	animation: earthLikeRight 5s linear forwards infinite;
}


@keyframes earthLikeLeft{
	0%{
		left: -50%;
		opacity: 0;
	}

	10%{
		left: -30%;
		opacity: 1;
		transform: rotate(0deg);
	}

	15%{
		transform: rotate(-5deg);
	}

	20%{
		transform: rotate(0deg);
	}


	95%{
		left: -30%;
		opacity: 1;
		transform: rotate(0deg);
	}

	100%{
		left: -50%;
		opacity: 0;
	}
}

@keyframes earthLikeRight{
	0%{
		right: -50%;
		opacity: 0;
	}

	10%{
		right: -30%;
		opacity: 1;
		transform: rotate(0deg);
	}

	15%{
		transform: rotate(5deg);
	}

	20%{
		transform: rotate(0deg);
	}


	95%{
		right: -30%;
		opacity: 1;
		transform: rotate(0deg);
	}

	100%{
		right: -50%;
		opacity: 0;
	}
}


.title{
	width: 100%;
	position: relative;
	margin: 20px 0 15px 0;
}

.title-1{
	width: 11%;
	position: absolute;
	top: 10%;
	left: 1%;
	opacity: 0;
	animation: titleOpacity1 5s linear forwards infinite;
}

.title-2{
	width: 6.5%;
	position: absolute;
	top: 41%;
	left: 23.3%;
	opacity: 0;
	animation: titleOpacity2 5s linear forwards infinite;
}

.title-3{
	width: 8.5%;
	position: absolute;
	top: -16%;
	left: 39.3%;
	opacity: 0;
	animation: titleOpacity3 5s linear forwards infinite;
}

.title-4{
	width: 4%;
	position: absolute;
	top: 7%;
	left: 51.3%;
	opacity: 0;
	animation: titleOpacity4 5s linear forwards infinite;
}

.title-5{
	width: 4.5%;
	position: absolute;
	top: 55%;
	left: 67.3%;
	opacity: 0;
	animation: titleOpacity5 5s linear forwards infinite;
}

.title-6{
	width: 7%;
	position: absolute;
	top: 0%;
	left: 84.3%;
	opacity: 0;
	animation: titleOpacity6 5s linear forwards infinite;
}

@keyframes titleOpacity1{
	0%{
		opacity: 0;
	}

	5%{
		opacity: 1;
	}

	95%{
		opacity: 1;
	}

	100%{
		opacity: 0;
	}
}

@keyframes titleOpacity2{
	0%{
		opacity: 0;
	}

	5%{
		opacity: 0;
	}

	10%{
		opacity: 1;
	}

	95%{
		opacity: 1;
	}

	100%{
		opacity: 0;
	}
}

@keyframes titleOpacity3{
	0%{
		opacity: 0;
	}

	10%{
		opacity: 0;
	}

	15%{
		opacity: 1;
	}

	95%{
		opacity: 1;
	}

	100%{
		opacity: 0;
	}
}

@keyframes titleOpacity4{
	0%{
		opacity: 0;
	}

	15%{
		opacity: 0;
	}

	20%{
		opacity: 1;
	}

	95%{
		opacity: 1;
	}

	100%{
		opacity: 0;
	}
}

@keyframes titleOpacity5{
	0%{
		opacity: 0;
	}

	20%{
		opacity: 0;
	}

	25%{
		opacity: 1;
	}

	95%{
		opacity: 1;
	}

	100%{
		opacity: 0;
	}
}

@keyframes titleOpacity6{
	0%{
		opacity: 0;
	}

	25%{
		opacity: 0;
	}

	30%{
		opacity: 1;
	}

	95%{
		opacity: 1;
	}

	100%{
		opacity: 0;
	}
}

.title-line{
	width: 25%;
	height: 5px;
	position: relative;
	margin: 0 auto;
	border-radius: 1000px;
	background: #198995;
	animation: titleLine 5s linear forwards infinite;
}

@keyframes titleLine{
	0%{
		width: 0;
	}

	15%{
		width: 25%;
	}

	100%{
		width: 25%;
	}
}

.slogan{
	width: 75%;
	padding-bottom: 6.627%;
	position: relative;
	margin: 0 auto;
	margin-top: 18px;
}

.slogan-1{
	width: 52.47%;
	position: absolute;
	top: 0;
	left: 0;
	animation: sloganTop 5s linear forwards infinite;
}

.slogan-2{
	width: 47.53%;
	position: absolute;
	top: 0;
	right: 0;
	animation: sloganBottom 5s linear forwards infinite;
}

@keyframes sloganTop{
	0%{
		top: 20px;
		opacity: 0;
	}

	15%{
		top: 0;
		opacity: 1;
	}

	90%{
		top: 0;
		opacity: 1;
	}

	95%{
		opacity: 0;
	}

	100%{
		opacity: 0;
	}
}

@keyframes sloganBottom{
	0%{
		top: -20px;
		opacity: 0;
	}

	15%{
		top: 0;
		opacity: 1;
	}

	90%{
		top: 0;
		opacity: 1;
	}

	95%{
		opacity: 0;
	}

	100%{
		opacity: 0;
	}
}



.wave-top img,
.wave-bottom img,
.tree-left img,
.h1 img{
	width: 100%;
}


.cancel-info{
	width: 80%;
	max-width: 600px;
	position: absolute;
	margin: 20px auto;
	background: #868687;
	border-radius: 5px;
	box-sizing: border-box;
	bottom: 30px;
	right: 10%;
}

.cancel-info h6{
	font-size: 1.1em;
	font-weight: 600;
	color: #ffffff;
	padding: 10px;
	box-sizing: border-box;
}


@media all and (min-width: 550px){
	.title-3{
		top: 0;
	}
}


@media all and (min-width: 768px){
	.wave-top{
		top: 60px;
	}

}

@media screen and (orientation: landscape) {
	.tree-left{
		bottom: 20vh;
	}
}


.sticker{
	width: 100px;
	position: fixed;
	bottom: 20vh;
	right: 15px;
	animation: stickerJump .8s linear forwards infinite;
	z-index: 19;
}

.sticker img{
	width: 100%;
}

.sticker a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

@keyframes stickerJump{
	0%{
		margin-bottom: 20px;
	}

	50%{
		margin-bottom: 0;
	}

	100%{
		margin-bottom: 20px;
	}
}



/* ============================================================
article
============================================================ */
section.article{
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 50px 0;
	overflow: hidden;
}

.article-bg-green{
	width: 80%;
	max-width: 1100px;
	height: 300px;
	position: absolute;
	top: 20px;
	left: 0;
	background: #198995;
}

.article-bg-green-s{
	width: 20%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #62abb2;
}

.sub-title{
	width: 90%;
	position: relative;
	margin: 10px auto;
	padding-bottom: 10px;
}

.sub-title h2{
	text-align: center;
	font-size: 1.7em;
	font-weight: 600;
}

.sub-title h2.gray{
	color: #333333;
}

.sub-title h2.white{
	color: #ffffff;
}

.sub-title:after{
	content: '';
	display: table;
	width: 50px;
	height: 4px;
	background: #ffcc00;
	position: relative;
	margin: 5px auto;
	border-radius: 1000px;
}

.article-container{
	width: 90%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
}



@media all and (min-width: 768px){
	section.article{
		padding: 80px 0;
	}

	.sub-title h2{
		font-size: 2em;
	}
}



li.article-item{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 20px 0;
}

li.article-item a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

li.article-item:nth-child(2){
	background: #000000;
	border: 5px solid #000000;
}

.article-pic{
	width: 35%;
	padding-bottom: 20%;
	position: relative;
	overflow: hidden;
}

.article-pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
}

.article-text{
	width: 65%;
	position: relative;
}

.article-text h3, .article-text p{
	width: 90%;
	position: relative;
	margin: 0 auto;
}

.article-text h3{
	text-align: left;
	font-size: 1.2em;
	font-weight: 600;
	height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-text h3.gray{
	color: #333333;
}

.article-text h3.white{
	color: #ffffff;
}

.article-text p{
	font-size: 1.1em;
	text-align: right;
	font-weight: 500;
	text-transform: uppercase;
}

.article-text p.yellow{
	color: #ffcc00;
}

.article-text p.green{
	color: #198995;
	font-size: 1em;
}

.sponsor-tag{
	position: absolute;
	color: #ffffff;
	background: #999999;
	font-size: .8em;
	font-weight: 400;
	padding: 5px 10px;
	bottom: 0;
	left: 0;
}

@media all and (min-width: 768px){
	.sponsor-tag{
		font-size: .9em;
	}
}



li.article-item:nth-child(1){
	display: block;
}

/* li.article-item:nth-child(1) .article-pic:after{
	content: '';
	display: table;
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	background: linear-gradient(to top,rgba(0, 0, 0, .8),rgba(0, 0, 0, 0),rgba(0, 0, 0, 0));
} */

li.article-item:nth-child(1) .article-text{
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #ffffff;
	padding: 5px 0;
}

li.article-item:nth-child(1) .article-pic{
	width: 100%;
	padding-bottom: 66.67%;
}

li.article-item:nth-child(1) .article-text h3{
	font-size: 1.4em;
	height: 65px;
}

@media all and (min-width: 768px){
	ul.article-content{
		width: 100%;
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		flex-wrap: wrap;
	}
	li.article-item{
		width: 32%;
		display: block;
		background: #ffffff;
	}

	li.article-item:nth-child(1){
		width: 57%;
	}

	li.article-item:nth-child(2){
		width: 40%;
	}

	.article-pic, .article-text{
		width: 100%;
	}

	.article-pic{
		padding-bottom: 66.67%;
	}

	.article-text{
		padding-bottom: 15px;
	}

	.article-text h3, li.article-item:nth-child(1) .article-text h3{
		font-size: 1.5em;
		height: 65px;
		margin: 10px auto;
	}
}


/* ============================================================
21
============================================================ */
section.twentyone-challenge{
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 50px 0 200px 0;
	overflow: hidden;
}

.twentyone-white{
	position: absolute;
	width: 100%;
	height: 90%;
	top: 4%;
	left: 0;
	background: #ffffff;
	z-index: -1;
	display: none;
}

.twentyone-green{
	position: absolute;
	width: 40%;
	height: 50%;
	bottom: 5%;
	right: 0;
	background: #198995;
	z-index: -1;
	display: none;
}

h3.bg-text{
	font-size: 4em;
	font-weight: 600;
	text-transform: uppercase;
	color: #ffffff;
	line-height: 0.8em;
	position: absolute;
	top: 50%;
	right: -15%;
	transform: rotate(90deg) translate(100%);
	transform-origin: 100% 0;
	z-index: -1;
	display: none;
}

@media all and (min-width: 1100px){
	.twentyone-white,
	.twentyone-green,
	h3.bg-text{
		display: block;
	}

	.twentyone-green{
		width: 30%;
		height: 100%;
		bottom: 0;
	}

	h3.bg-text{
		font-size: 5em;
		top: 0;
		right: 1%;
	}
}

.twentyone-white-opacity{
	position: absolute;
	width: 100%;
	height: 90%;
	top: 4%;
	left: 0;
	background: rgba(255, 255, 255, .15);
	z-index: -1;
}

.ty-cha-container{
	width: 90%;
	position: relative;
	margin: 0 auto;
}

@media all and (min-width: 768px) {
	.ty-cha-container{
		width: 80%;
	}
}

h2.twentyone-title-21{
	font-size: 8em;
	font-family: 'Caveat', cursive;
}

h3.twentyone-title-top{
	font-size: 2em;
	color: #333333;
	letter-spacing: .2em;
}

h3.twentyone-title-top em{
	font-size: 1.8em;
	color: #198995;
}

h5.twentyone-title-bottom{
	font-size: 1em;
	color: #198995;
}

.twentyone-title{
	width: 310px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.twentyone-title-s{
	margin-top: 10px;
}


.twentyone-content{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: 30px;
}

.ty-left{
	width: 100%;
	position: relative;
	order: 2;
}

.ty-right{
	width: 100%;
	position: relative;
	order: 1;
}

p.ty-intro{
	color: #333333;
	width: 100%;
}

@media all and (min-width: 1100px) {
	p.ty-intro{
		width: 35%;
	}
}

p.ty-intro a{
	color: #ff8100;
    text-decoration: underline;
}

h6.countdown-title{
	font-size: 1.1em;
	font-weight: 600;
	color: #198995;
	margin-top: 20px;
	text-align: center;
}

.countdown{
	width: 250px;
	position: relative;
	margin: 0 auto;
	/* margin-top: 20px; */
	font-size: 1.3em;
	z-index: 1;
}

.signin-btn{
	width: 100%;
	position: relative;
	height: 46px;
	text-align: center;
	line-height: 46px;
	font-size: 1.1em;
	font-weight: 500;
	color: #000000;
	background: #ffcc00;
	border-radius: 5px;
	margin: 10px 0;
	/* animation: signInHit 1s linear forwards infinite; */
}

.signin-btn a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.signin-btn.signin-btn-disable{
	color: #e8e8e8;
	background: #c3c3c3;
}

@keyframes signInHit{
	0%{
		background: #ffcc00;
	}

	50%{
		background: #ffdf60;
	}

	100%{
		background: #ffcc00;
	}
}


.calendar{
	width: 100%;
	position: relative;
	padding: 20px;
	box-sizing: border-box;
	background: #eeeeee;
	z-index: 1;
	margin-top: 30px;
	margin-bottom: 50px;
}

.calendar-login{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .8);
}

.login-text{
	position: absolute;
	width: 100%;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.login-text h6{
	color: #ffffff;
	font-size: 1.1em;
	font-weight: 500;
}

.lo-btn{
	width: 250px;
	height: 46px;
	position: relative;
	margin: 10px auto;
	text-align: center;
	line-height: 46px;
	font-size: 1.1em;
	font-weight: 500;
	color: #ffffff;
	background: #198995;
	border-radius: 5px;
}

.lo-btn a{
	position: absolute;
	width: 250px;
	height: 46px;
	top: 0;
	left: 0;
}

.calendar.login:after{
	content: '您尚未登入，請立即登入';
	display: table;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .8);
	color: #ffffff;
}

.month{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.month h5{
	font-size: 1.2em;
	font-weight: 600;
	color: #333333;
}

.month h5 em{
	color: #198995;
}

.calendar-info span{
	margin-left: 20px;
}

.calendar-info span:nth-child(1){
	margin-left: 0;
	color: #00b71f;
}

.calendar-info span:nth-child(2){
	color: #000000;
}

.calendar-info span:nth-child(3){
	color: #198995;
}

ul.calendar-num{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

ul.calendar-num li{
	width: calc(100%/7);
	position: relative;
	margin: 10px 0;
	text-align: center;
	font-size: 1.1em;
	font-weight: 600;
	font-style: normal;
	color: #333333;
	cursor: auto;
}

/* ul.calendar-num li.open{
	color: #198995;
	cursor: pointer;
} */

ul.calendar-num li.no:before{
	content: '';
	display: table;
	position: absolute;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	border: 1px solid #000000;
	top: -2px;
	left: 50%;
	transform: translate(-50%,0);
}

ul.calendar-num li.yes:before{
	content: '';
	display: table;
	position: absolute;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #00b71f;
	border: 1px solid #00b71f;
	top: -2px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -1;
}

ul.calendar-num li.today:before{
	content: '';
	display: table;
	position: absolute;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	border: 1px solid #198995;
	top: -2px;
	left: 50%;
	transform: translate(-50%,0);
}

ul.calendar-num li.week{
	font-size: .85em;
	color: #999999;
	font-weight: 400;
}

ul.calendar-num li.non{
	color: #999999;
}

ul.calendar-num li.no{
	color: #000000;
}

ul.calendar-num li.yes{
	color: #ffffff;
}

ul.calendar-num li.today{
	color: #198995;
}


li.calendar-item.click-animation:after{
	content: '';
	display: table;
	position: absolute;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #999999;
	border: 1px solid #999999;
	top: -2px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -1;
	opacity: 0;
	animation: dateClick .3s linear forwards;
}

.page-container li.click-animation:after {
    content: '';
    display: table;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #999999;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,0);
    z-index: -1;
    opacity: 0;
	animation: dateClick .3s linear forwards;
}

@keyframes dateClick{
	0%{
		transform: translate(-50%,0) scale(.2);
		opacity: 0;
	}

	50%{
		transform: translate(-50%,0) scale(1);
		opacity: 1;
	}

	100%{
		transform: translate(-50%,0) scale(2);
		opacity: 0;
	}
}



.twentyone-slide{
	width: 100%;
	position: relative;
	margin: 0 auto;
}

.slide-container{
	width: 100%;
	position: relative;
	overflow: hidden;
}

.intro-icons{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}



.slide-img{
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

.slide-img img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.slide-img iframe{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}



.slide-text{
	width: 100%;
	position: relative;
	margin: 10px 0;
}

.slide-text h5{
	font-size: 1.2em;
	font-weight: 600;
	color: #198995;
}

.slide-text p{
	font-size: 1em;
	font-weight: 500;
	color: #000000;
}

.slide-control{
	width: 100%;
	max-width: 400px;
	position: relative;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	color: #333333;
}

.page-container{
	width: 65%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin: 10px auto;
}

.page-container li{
	width: calc(100%/5);
	font-size: 1.1em;
	font-weight: 600;
	color: #666666;
	text-align: center;
	line-height: 30px;
	position: relative;
	cursor: pointer;
}

.page-container li.active{
	color: #ffffff;
}

.page-container li.active:before{
	content: '';
	display: table;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #198995;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,0);
	z-index: -1;
}

.slide-prev, .slide-next{
	width: 10%;
	position: relative;
	text-align: center;
	font-size: 1.5em;
}

li.intro-icon-0{
	position: relative;
}

li.intro-icon-0 a{
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}





@media all and (min-width: 1100px) {
	.ty-left{
		width: 35%;
		order: 1;
	}

	.ty-right{
		width: 60%;
		margin-top: -16%;
		order: 2;
	}
}




.twentyone-awards{
	width: 100%;
	position: relative;
	margin: 50px auto;
}

.twentyone-awards h4{
	text-align: left;
	color: #198995;
	font-size: 1.3em;
	font-weight: 600;
	margin: 10px 0;
}

.twentyone-awards h6{
	font-size: 1em;
	font-weight: 400;
	color: #333333;
	margin: 10px 0;
}

.twentyone-awards h6 em{
	font-weight: 500;
}

.twentyone-awards a{
	color: #ff8100;
    text-decoration: underline;
}



.twentyone-awards ul, .twentyone-awards ul li{
	list-style: decimal;
	font-size: 1em;
	font-weight: 400;
	color: #333333;
	margin-left: 10px;
}

.gift-all{
	width: 100%;
	position: relative;
	margin-top: -20px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}

.gift-item{
	width: 48%;
	position: relative;
	margin: 20px auto;
	border-radius: 5px;
	border: 1px solid #999999;
	box-sizing: border-box;
}

.gift-container{
	width: 90%;
	position: relative;
	margin: 0 auto;
}

.gift-pic{
	width: 100%;
	position: relative;
	margin-top: 10px;
}

.gift-pic img{
	width: 100%;
}

.gift-text{
	width: 100%;
	position: relative;
	margin: 10px auto;
}

.gift-text p{
	color: #333333;
	font-size: 1em;
	font-weight: 500;
}

.gift-text p em{
	font-weight: 900;
}

.gift-text p.p-center{
	text-align: right;
}

@media all and (min-width: 1100px){
	.gift-item{
		width: 19%;
	}
}

.toggle-trigger{
	cursor: pointer;
}

.toggle-area{
	display: none;
}

.toggle-trigger em{
	font-size: .8em;
	font-weight: 500;
	color: #333333;
}

/* ============================================================
Magazine
============================================================ */
section.magazine{
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding-bottom: 50px;
	/* overflow: hidden; */
}

.magazine-container{
	width: 90%;
	position: relative;
	margin: 0 auto;
}

.sub-title-magazine{
	margin-top: -50px;
}

.sub-title-magazine h2{
	font-size: 1.7em;
	color: #333333;
	text-align: left;
	font-weight: 600;
}

.sub-title-magazine:after{
	content: '';
    display: table;
    width: 50px;
    height: 4px;
    background: #ffcc00;
    position: relative;
    border-radius: 1000px;
}

ul.magazine-project{
	width: 100%;
	position: relative;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	padding-bottom: 20px;
	/* border-bottom: 1px solid #cccccc; */
}

li.magazine-item{
	width: 100%;
	position: relative;
	margin: 20px auto;
	padding: 20px 0 0 0;
	background: #ffffff;
}

li.magazine-item img{
	width: 100%;
}

.magazine-wave-top{
	width: 80%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.magazine-wave-bottom{
	width: 90%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}

.mag-item-title{
	width: 90%;
	position: relative;
	margin: 10px auto;
	z-index: 1;
}

.mag-item-title h2{
	text-align: right;
	font-size: 1.4em;
	color: #198995;
	text-align: center;
	text-decoration: underline;
}

.mag-item-pic{
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

.mag-item-pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
}

.mag-item-video{
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

.mag-item-video iframe{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
}

.mag-item-content{
	width: 90%;
	position: relative;
	margin: 10px auto;
	z-index: 1;
}


.mag-item-content h5, .mag-item-content h4{
	font-size: 1.05em;
	font-weight: 500;
	color: #333333;
}

.mag-item-content h4{
	color: #000000;
	text-align: right;
}

.mag-item-content h5{
	min-height: 90px;
}

.mag-item-content h5 em, .mag-item-content h4 em{
	font-weight: 400;
	font-size: .8em;
}

.mag-item-content h4 span{
	font-size: 1.5em;
	color: #ff6b00;
	font-weight: 700;
}

.mag-item-content h4 em{
	color: #333333;
	text-decoration: line-through;
}

.mag-item-btn{
	width: 100%;
	height: 46px;
	position: relative;
	margin-top: 20px;
	text-align: center;
	line-height: 46px;
	color: #000000;
	font-size: 1.05em;
	font-weight: 500;
	background: #ffcc00;
	transition: .2s linear;
	cursor: pointer;
}

.mag-item-btn a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}

.magazine-intro{
	width: 100%;
	position: relative;
	margin: 20px auto;
}

ul.mag-intro-flex{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

li.mag-intro-item{
	width: 100%;
	position: relative;
	margin: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.mag-intro-logo{
	width: 30%;
	position: relative;
	text-align: center;
}

.mag-intro-logo img{
	max-width: 100%;
	max-height: 130px;
}

.mag-intro-text{
	width: 65%;
	position: relative;
}

.mag-intro-text h3{
	font-size: 1.2em;
	font-weight: 600;
	color: #198995;
}

.mag-intro-text p{
	font-size: .9em;
	font-weight: 400;
	color: #333333;
}


@media all and (min-width: 768px){
	.magazine-container{
		width: 80%;
	}

	.sub-title-magazine h2{
		font-size: 2em;
	}

	.mag-item-content h5, .mag-item-content h4{
		font-size: 1.3em;
	}

	li.magazine-item{
		width: 48%;
	}

	.mag-item-btn:hover{
		background: #000000;
		color: #ffcc00;
	}

	li.mag-intro-item{
		width: 48%;
	}

}



/* ============================================================
cooperation
============================================================ */
section.cooperation{
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 50px 0;
	overflow: hidden;
	background: #ffffff;
}

.twentyone-green-2{
	position: absolute;
	width: 40%;
	height: 50%;
	bottom: 5%;
	left: 0;
	background: #198995;
	z-index: -1;
}

.cooperation-container{
	width: 90%;
	position: relative;
	margin: 0 auto;
}

.cooperation-content{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: stretch;
	flex-wrap: wrap;
}

.cooperation-item{
	width: 100%;
	position: relative;
	margin: 20px auto;
	background: #f7f7f7;
	transition: .2s linear;
}

.cooperation-item a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.coop-item-container{
	width: 90%;
	position: relative;
	margin: 0 auto;
	padding: 20px 0;
}

.cooperation-pic{
	width: 70%;
	padding-bottom: 65%;
	position: relative;
	margin: 0 auto;
}

.cooperation-pic.cooperation-pic100{
	width: 100%;
}

.cooperation-pic img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	position: absolute;
}

.cooperation-text{
	width: 100%;
	position: relative;
	margin: 20px auto;
}

.cooperation-text h5{
	font-size: 1.2em;
	font-weight: 600;
	color: #198995;
	line-height: 1.4em;
	margin-bottom: 10px;
}

.cooperation-text p{
	font-size: 1em;
	font-weight: 400;
	color: #333333;
	margin-bottom: 15px;
}

.cooperation h3.bg-text{
	right: 95%;
}

@media all and (min-width: 768px){
	section.cooperation{
		padding: 150px 0 200px 0;
		background: none;
	}

	.twentyone-green-2{
		width: 30%;
		height: 100%;
		bottom: 0;
	}

	.cooperation-container{
		width: 80%;
	}

	.cooperation-item{
		width: 24%;
	}

	.cooperation-item:hover{
		opacity: .8;
	}
}
	

/* ============================================================
Sponsor
============================================================ */
section.sponsor{
	width: 100%;
	position: relative;
	overflow: hidden;
	display: none;
}

.sponsor-container{
	width: 90%;
	max-width: 1100px;
	position: relative;
	margin: 0 auto;
	padding: 60px 0;
}

h3.sponsor-title{
	width: 80%;
	font-size: 4em;
    font-weight: 600;
    text-transform: uppercase;
    color: #198995;
    line-height: 0.8em;
    position: absolute;
    top: 1%;
    right: 1%;
    z-index: -1;
    text-align: right;
}

ul.sponsor-icons{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

ul.sponsor-icons li{
	width: 30%;
	padding: 2%;
	margin: 10px 0;
	box-sizing: border-box;
	position: relative;
	-webkit-filter:grayscale(0);
	text-align: center;
	opacity: 1;
}

ul.sponsor-icons li img{
	max-width: 90%;
	max-height: 100px;
}

ul.sponsor-icons li img.sponsorlogo-wide{
	max-width: 124%;
    margin-left: -6%;
}

ul.sponsor-icons li img.sponsorlogo-wide2{
	max-width: 130%;
    margin-left: -10%;
}



ul.sponsor-icons li a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

@media all and (min-width: 768px){
	h3.sponsor-title{
		font-size: 5em;
	}


	ul.sponsor-icons li{
		width: 16%;
		margin: 20px 0;
		transition: .2s linear;
		-webkit-filter:grayscale(1);
		opacity: .8;
	}

	ul.sponsor-icons li.bigger{
		width: 30%;
	}

	ul.sponsor-icons li:hover{
		-webkit-filter:grayscale(0);
		opacity: 1;
	}
}

/* ============================================================
popup
============================================================ */
div.popup{
	width: 90%;
	max-width: 640px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	opacity: 1;
	background: #ffffff;
	border-radius: 5px;
	box-shadow: 3px 7px 7px rgba(0, 0, 0, .3);
	z-index: 30;
}

.popup-container{
	width: 90%;
	position: relative;
	margin: 0 auto;
	padding: 15px 0;
}

.popup-container h3{
	font-size: 1.5em;
	font-weight: 700;
	color: #198995;
	text-align: center;
	margin: 30px 0 15px;
}

.popup-container p{
	font-size: .9em;
	font-weight: 500;
	color: #333333;
	text-align: center;
	margin: 10px 0;
}

.popup-container p em{
	font-size: 1.2em;
	font-weight: 700;
	color: #198995;
	text-align: center;
}

.popup-close{
	width: 45px;
	height: 45px;
	position: absolute;
	top: 0;
	right: 0;
	background: #198995;
	color: #ffffff;
	text-align: center;
	line-height: 45px;
	font-size: 2em;
	cursor: pointer;
}

.popup-open{
	width: 100px;
	height: 46px;
	position: relative;
	background: #ffcc00;
	color: #000000;
	text-align: center;
	line-height: 46px;
	font-size: 1em;
	font-weight: 500;
	margin: 10px 0;
	border-radius: 5px;
	transition: .2s linear;
}

.popup-open a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

@media all and (min-width: 768px){
	.popup-open:hover{
		background: #000000;
		color: #ffffff;
	}
}

/* ============================================================
FOOTER
============================================================ */
footer{
	width: 100%;
	position: relative;
	background: #000000;
	color: #ffffff;
	overflow: hidden;
}

footer h5{
	text-align: center;
	font-weight: 600;
	font-size: 1.2em;
	margin: 10px 0;
}

footer p{
	text-align: center;
}

footer p a{
	color: #ffffff;
	text-decoration: underline;
}




.copyright{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.ng-logo{
	width: 100px;
	position: relative;
	padding: 15px;
}

.boulder-logo{
	width: 150px;
	position: relative;
	padding: 15px;
}

.copyright-p{
	color: #ffffff;
	font-size: .9em;
	padding: 10px;
}

.footer-logo a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.copyright-p a{
	text-decoration: none;
	color: #f5f5f5;
}



/* ============================================================
GO TOP
============================================================ */

#gotop{
	width: 52px;
	height: 52px;
	background: rgba(255,204,0,.7);
	z-index:9;
	position: fixed;
	right: 20px;
	bottom: 20px;
	cursor: pointer;
	/* border-radius: 50%; */
	display:none;
	-o-transition: .2s linear;
	-webkit-transition: .2s linear;
	-moz-transition: .2s linear;
	transition:  .2s linear;
	z-index: 15;
}

#gotop i{
	font-size: 2em;
	color: #FFFFFF;
	width: 52px;
	line-height: 52px;
	text-align: center;
	-o-transition: .2s linear;
	-webkit-transition: .2s linear;
	-moz-transition: .2s linear;
	transition:  .2s linear;
}


/* ============================================================
RWD
============================================================ */
@media all and (max-width: 1440px) {
	
}

@media all and (max-width: 1366px){
	
}

@media all and (max-width: 1280px){
	
}

@media all and (max-width: 1024px) {
	
}

@media all and (max-width: 960px) {
	
}

@media screen and (orientation: portrait) {
	

}

@media all and (max-width: 768px) {
	
}

@media all and (max-width: 640px) {
	
}

@media all and (max-width: 480px) {
	
}


@media all and (max-width: 320px){
	
}

