body {
	font-family: 'PingFang TC', 'Heiti TC', 'Noto Sans TC', 'Noto Sans CJK TC', source-han-sans-traditional, 'Microsoft JhengHei', sans-serif;
	color: #1e455b;
	font-size: 1.125rem;
	width: 100%;
}
body.loaded {
}
p {
	line-height: 1.5;
}
a {
	text-decoration: none;
	color: #1e455b;
}
a, button, input[type="submit"] {
	cursor: pointer;
}
input, select, textarea {
	font-family: 'PingFang TC', 'Heiti TC', 'Noto Sans TC', 'Noto Sans CJK TC', source-han-sans-traditional, 'Microsoft JhengHei', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
}
/* Preloader */
#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#ffffff; /* change if the mask should have another color then white */
	z-index:100; /* makes sure it stays on top */
}
#status {
	border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* layout */
.container {
	padding: 4em 2em;
	max-width: 1025px;
	width: 100%;
	margin: 0 auto;
}
footer .container {
	padding: 2em 2em;
}
.max-w7 {max-width: 620px;}
.max-w6 {max-width: 500px;}

.col {
	display: inline-block;
}
.flex {
	display: flex;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.w100 {
	width: 100%;
}
.d-table {
	display: table;
}
.d-row {
	display: table-row;
}
.d-cell {
	display: table-cell;
}
.mt-1 {	margin-top: 1em; }
.mt-2 {	margin-top: 1.4em; }
.mb-1 {	margin-bottom: 1em; }
.mb-2 {	margin-bottom: 1.4em; }
.mb-3 {	margin-bottom: 2em; }
.mb-s { margin-bottom: 10px; }

/* position */
.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-middle {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
/* color */
.main-gradient {
	background: linear-gradient(#4abbc1, #e1f4f5);
}
.bg-no {
	background: transparent;
}
.bg-white {
	background-color: #fff;
}
.bg-white-gradien {
	background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9));
}
.main-blue {
	color: #197f95;
}
.sub-blue {
	color: #39b8c8;
}
.mid-blue {
	color: #0097a3;
}
.main-orange {
	color: #d97a25;
}
/* text */
.t-xlarge {
	font-size: 1.67em; /* 30px */
}
.t-large {
	font-size: 1.45em; /* 26px */
}
.t-midlarge {
	font-size: 1.225em; /* 22px */
}
.t-mid {
	font-size: 1em; /* 18px */
}
.t-small {
	font-size: 0.89em; /* 16px */
}
.t-xsmall {
	font-size: 0.78em; /* 14px */
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.bold {
	font-weight: 700;
}
.font-w4 {
	font-weight: 400;
}
.lh-mid {
	line-height: 1.3;
}
/* button */
.main-btn {
	background-color: #f7b400;
	color: #125785;
	text-align: center;
	border-radius: 25px;
	border: 0;
	display: block;
	font-weight: 700;
	font-size: 22px;
}
.wide-btn {
	height: 50px;
	width: 245px;
	letter-spacing: 2px;
	line-height: 50px;
}
.long-btn {
	height: 180px;
	width: 50px;
	writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 14px;
    letter-spacing: 4px;
}
.main-btn:hover {
	background-color: #39b8c8;
	color: #fff;
}
.trans-btn {
	border: 1px solid #39b8c8;
	border-radius: 18px;
	height: 36px;
	width: 120px;
	line-height: 36px;
	display: block;
	text-align: center;
}
.top-btn {
	background-color: #ccc;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: block;
	margin-top: 10px;
	padding: 21px 18px;
}
.top-btn::before {
	content: "";
	width: 13px;
	height: 13px;
	border: 2px solid #666;
	border-right: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	display: block;
}

/* header */
header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background: linear-gradient(rgba(74, 187, 193, 0.7), rgba(88, 193, 199, 0.7));
	z-index: 99;
    transition: all 0.4s ease;
}
.navtop.container {
	padding: 1em 2em 0.4em;
}
.navbar {
	float: right;
	padding-top: 1.6em;
	margin-right: -10px;
}
.navbar li {
	display: inline-block;
}
.navbar li + li {
	margin-left: 2em;
}
.navbar a {
	padding: 5px 10px;
	color: #fff;
}
.navbar a:hover, .navbar a.active {
	color: #1e455b;
}
.logo {
	transition: all 0.2s ease;
	height: 59px;
	display: inline-block;
}
.logo img {
	height: 100%;
	width: auto
}
header.detachedHide {
	transform: translateY(-100%);
}
header.detached {
	transition: transform 0.4s ease;
	background: rgba(25, 127, 149, 0.5);
}
header.detached.show {
	transform: translateY(0);
}
header.detached .navtop.container {
	padding-top: 0.6em;
}
header.detached .logo {
	height: 40px;
}
header.detached .navbar {
	padding-top: 0.6em;
}

/* navbar toggle */
.hbg-btn {
	border: 1px solid rgba(255, 255, 255, 0.6);
	border: 0;
	float: right;
	height: 50px;
	width: 50px;
	border-radius: 5px;
	vertical-align: top;
	margin-top: 7px;
	display: none;
	transition: margin 0.2s ease;
}
header.detached .hbg-btn {
	margin-top: 0;
}
.icon-hbg,
.icon-hbg::before,
.icon-hbg::after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 4px;
	background-color: #fff;
	border-radius: 2px;
	position: relative;
}
.icon-hbg::before {
	position: absolute;
	top: -10px;
}
.icon-hbg::after {
	position: absolute;
	bottom: -10px;
}


/* section */
.topsec {
	min-height: 100vh;
	padding-top: 100px;
}
.section-title {
	background: url('../img/title-w.png') no-repeat 100%;
	width: 330px;
	height: 55px;
	color: #fff;
	padding-top: 22px;
	padding-right: 65px;
	text-align: right;
	font-size: 25px;
	font-weight: 700;
	white-space: nowrap;
	max-width: 100%;
}
.section-title.title-b {
	background: url('../img/title-b.png') no-repeat 100%;
	color: #39b8c8;
}
.main-title {
	width: 100%;
	max-width: 413px;
}
.topsec .dateimg {
	width: 56px;
	height: auto;
	margin-right: 12px;
}

/* main bg */
.main-bg {
	position: fixed;
	z-index: -1;
	right: 0;
	left: 0;
	height: 100%;
	top: 0;
}
.main-bg-img {
	position: absolute;
	left: calc(50% - 200px);
	top: 100px;
	width: 100%;
	max-width: 912px;
}
.main-bg-img img {
	width: 100%;
	height: auto;
}

/* speaker */
.speakers-group {
}
.speaker {
	width: 200px;
	vertical-align: top;
}
.speaker + .speaker {
	margin-left: 1%;
}
.speaker-img {
	width: 120px;
	height: 120px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.36);
	position: relative;
	display: inline-block;
}
.speaker-img img {
	width: 100%;
	height: auto;
}
.img-circle {
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	background-color: #f5f3f2;
	border-radius: 50%;
	overflow: hidden;
}

.speaker-name {
	padding: 15px 0 0;
	line-height: 1.5;
	width: 100%;
}

.speaker p {
	background-color: rgba(255, 255, 255, 0.8);
}

/* content */
.content {
	padding: 5em 2em;
}

/* info */
.info-box {
	border: 1px solid #28d0de;
	border-left: 0;
	border-right: 0;
	padding: 2em; 
}
.time-box {
	border-bottom: 1px solid #d48e3b;
	padding: 2em 0; 
	line-height: 1.5;
}
.time-box h5 {
	color: #39b8c8;
}
.time-box h4 {
	color: #197f95;
}
.info-date {
	position: relative;
	margin-right: 1em;
}
.info-date img {
	width: 70px;
	height: auto;
}
.info-date .week {
	position: absolute;
	bottom: -1.4em;
	right: 0;
	white-space: nowrap;
	font-size: 12px;
}

/* form */
.form-item + .form-item label {
	padding-top: 1.4em;
}
.form-item input,
.form-item .select,
.form-item textarea {
	width: 100%;
	padding: 10px 15px 8px;
	border-radius: 5px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
.form-item .select {
	padding: 0 15px;
	position: relative;
}
.select select {
    background: none;
    width: 100%;
    border: none;
    height: 36px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: ”;
    outline: none;
    box-sizing: border-box;
}
.select::after {
	content: "";
	border: 8px solid transparent;
	border-top: 10px solid #666;
	border-bottom: 0;
	position: absolute;
	right: 15px;
	top: 15px;
}

label.required::after {
	content: "*";
	color: #d7261d;
	padding-left: 3px;
}

/* slick */
.card {
	width: 100%;
	max-width: 360px;
	margin: 0 10px;
	text-align: left;
	background-color: #fff;
	vertical-align: top;
	position: relative;
	overflow: hidden;
}

.cover-img {
	background-color: #ccc;
	width: 100%;
	padding-top: 80%;
	position: relative;
	overflow: hidden;
}
.cover-img img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: auto;
	margin-left: -10%;
}
.card::before {
	content: "";
    position: absolute;
    z-index: 1;
    bottom: 0px;
    width: 100%;
    height: 60px;
    left: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.9) 40%);
    transition: height 0.8s;
}
.card:hover::before {
	height: 100%;
}
.card-footer {
	padding: 0.5em 0.8em;
	position: absolute;
	bottom: 0;
	z-index: 2;
	transition: bottom 0.8s;
}
.card-footer h4 {
	line-height: 1.3;
	margin-bottom: 10px;
}
.card:hover .card-footer {
	bottom: 35%;
}
.card-footer p {
	opacity: 0;
	line-height: 0;
	transition: all 0.8s;
}
.card:hover .card-footer p {
	opacity: 1;
	line-height: 1.5;
}
.card .trans-btn {
	position: absolute;
	opacity: 0;
	transition: all 0.5s;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 2;
}
.card:hover .trans-btn {
	opacity: 1;
	bottom: 40px;
}


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

/* flip */
/*
	3D rollovers styles
	Homepage: https://github.com/codepo8/3Drollovers
	Copyright (c) 2011 Christian Heilmann
	Code licensed under the BSD License:
	http://wait-till-i.com/license.txt
*/
.rollover {
	position: relative;
	width: 100%;
	height: 170px;
	display: block;
}
.rollover figure > div {
	width: 100%;
	height: 100%;
}
.front {
	z-index: 2;
	position: absolute;
	text-align: center;
	color: #24b8b0;
}
.back {
	z-index: 1;
	position: absolute;
	background: transparent;
	text-align: center;
}
.back h5 {
	color: #24b8b0;
}
.rollover:hover .back, 
.rollover:focus .back {
	z-index: 2;
}
.rollover:hover .front, 
.rollover:focus .front {
	z-index: 1;
}
.fade .rollover .front {
	opacity: 1;
	transition: 1s;
}
.fade .rollover .back {
	opacity: 0;
	transition: 1s;
}
.fade .rollover:hover .front, 
.fade .rollover:focus .front {
	opacity: 0;
}
.fade .rollover:hover .back, 
.fade .rollover:focus .back {
	opacity: 1;
}

.flip .rollover {
	perspective: 800px;
	-ms-perspective: 800px;
	-webkit-perspective: 800px;
}
.flip .cube {
	height: 100%;
	width: 100%;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-ms-transform-style: none;
	-webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
	transform: rotateX(0) rotateY(0) rotateZ(0);
	-ms-transform: none;
	transition: 1s;
}

/* .flip .rollover:hover .cube, 
.flip .rollover:focus .cube {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	-ms-transform: rotateY(-180deg);
}
 */
.box .front {
	-webkit-transform: translateZ(100px) scale(0.85);
	transform: translateZ(100px) scale(0.85);
	-ms-transform: rotateY(0deg) translateZ(100px) scale(0.85);
}
.flip .rollover:hover .cube .front, 
.flip .rollover:focus .cube .front {
	-webkit-transform: rotateY(180deg) translateZ(50px) scale(0.85);
	transform: rotateY(180deg) translateZ(50px) scale(0.85);
	-ms-transform: rotateY(-180deg) translateZ(50px) scale(0.85);
}

.box .back {
	-webkit-transform: rotateY(180deg) translateZ(50px) scale(0.85);
	transform: rotateY(180deg) translateZ(50px) scale(0.85);
	-ms-transform: rotateY(180deg) translateZ(50px) scale(0.85);
}
.flip .rollover:hover .cube .back, 
.flip .rollover:focus .cube .back {
	-webkit-transform: rotateY(0deg) translateZ(100px) scale(0.85);
	transform: rotateY(0deg) translateZ(100px) scale(0.85);
	-ms-transform: rotateY(0deg) translateZ(100px) scale(0.85);
}


/* shiny lights */
.shiny {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.light {
	position: absolute;
	width: 30px;
	height: 30px;
}
.light::before {
	content: "";
	background: radial-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0));
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	animation: shining 3.2s infinite ease-in-out;
	opacity: 0;
}

@keyframes shining {
    0% {opacity: 0;}
    40% {opacity: 0.9}
    55% {opacity: 1;}
    100%{opacity: 0;}
}
#light-01 {top: 7.9%; left: 17.9%; opacity: 0.6;}
#light-01::before { animation-duration: 2.8s; animation-delay: 1.8s; transform: scale(1.5);}
#light-02 {top: 14.2%; left: 22.5%; opacity: 0.8;}
#light-02::before { animation-duration: 3s; animation-delay: 3.8s; transform: scale(2);}
#light-03 {top: 1.1%; left: 30.2%; opacity: 0.8;}
#light-03::before { animation-duration: 3.2s; animation-delay: 0.8s; transform: scale(1.8);}
#light-04 {top: 8.3%; left: 43.5%;}
#light-04::before { animation-duration: 3.2s; animation-delay: 0s; transform: scale(2.3);}
#light-05 {top: 14.2%; left: 46.7%; opacity: 0.75;}
#light-05::before { animation-duration: 3s; animation-delay: 2s; transform: scale(1.7);}
#light-06 {top: 1.1%; left: 62%; opacity: 0.9;}
#light-06::before { animation-duration: 3.2s; animation-delay: 1.2s; transform: scale(2);}
#light-07 {top: 14.3%; left: 71.7%;}
#light-07::before { animation-duration: 3.4s; animation-delay: 3s; transform: scale(2.3);}
#light-08 {top: 7.8%; left: 78.7%; opacity: 0.8;}
#light-08::before { animation-duration: 2.9s; animation-delay: .8s; transform: scale(1.6);}