:root {
	--gold-gradient: #F3CBA2 0%, #F3DEBB 15%, #D5A983 40%, #A57B5D 60%, #D5A983 85%, #D5A983 100%;
	--vh: 1vh;
	--gold: #CB9F7B;
}

html, body {
	overflow-x: hidden;
}
body {
	font-family: 'Poppins', 'Arial', 'Noto Sans TC', 'Noto Sans CJK TC', 'PingFang TC', 'Heiti TC', source-han-sans-traditional, 'Microsoft JhengHei', sans-serif;
	color: #ffffff;
	font-size: 1.125rem;
	background-color: #000000;
	-webkit-text-size-adjust: 100%;
}
body.loaded {
}
p {
	line-height: 1.8;
	letter-spacing: 0.05em;
}
p + p {
	margin-top: 0.6em;
}
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;
}
img {
	max-width: 100%;
	width: auto;
	height: auto;
}

/* Preloader */
#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background: #000; /* change if the mask should have another color then white */
	z-index:100; /* makes sure it stays on top */
}
#preloader .ab-center {
	width: 100%;
	height: 2px;
}
#status {
	position: relative;
	width: 100%;
    height: 2px;
    animation: load 2s ease-in-out;
    transform-origin: left center;
    overflow: hidden;
    background: transparent;
    animation-iteration-count: 1;
}
#status::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;	
	height: 2px;
    background: linear-gradient(90deg, var(--gold-gradient));
}
@keyframes load {
    0% { width: 0px; }
    100% { width: 100%; }
}
/* layout */
.container {
	padding: 6em 2em 6em;
	max-width: 1180px;
	width: 100%;
	margin: 0 auto;
}
.container.wide {
	max-width: 1280px;
}
footer .container {
	padding: 1em 2em 2em;
}
.max-w10 {max-width: 960px;}
.max-w9 {max-width: 900px;}
.max-w8 {max-width: 820px;}
.max-w7 {max-width: 720px;}
.max-w6 {max-width: 600px;}
.max-w5 {max-width: 500px;}
.h-75vh { height: 75vh; }
.h-50vh { height: 50vh; }
.col, .inline-block {
	display: inline-block;
}
.flex {
	display: -webkit-flex;
	display: flex;
}

.mx-auto {
	margin-left: auto!important;
	margin-right: auto!important;
}
.w-full {
	width: 100%;
}
.d-table {
	display: table;
}
.d-row {
	display: table-row;
}
.d-cell {
	display: table-cell;
}
.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-1 { margin-left: 1em; }
.ml-2 { margin-left: 1.8em; }
.mr-s { margin-right: 8px; }
.mr-1 { margin-right: 1em; }
.mr-2 { margin-right: 2em; }

.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; }

/* position */
.relative {
	position: relative;
}
.ab-center {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.fixed-right {
	position: fixed;
	right: 30px;
	bottom: 120px;
	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;
}
.justify-center {
	-webkit-justify-content: center;
    justify-content: center;
}
.align-center {
	-webkit-align-items: center;
    align-items: 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-justify-content: flex-end;
    justify-content: flex-end;
}
.flex-left {
	-webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.btn {
	display: inline-block;
	border: 0;
	background: transparent;
	padding: 17px 25px 15px;
	transition: all 0.4s ease;
}
/* color */
.bg-no {
	background: transparent;
}

.black { color: #1a1a1a; }
.white { color: #fff; }
.red { color: #c14327; }
.lightred { color: #ff6357; }
.gray { color: #333333; }
.gray2 { color: #666; }
.lightgray { color: #b3b3b3; }
.yellow { color: #fbd58b; }
.lightyellow { color: #fae8ca; }
.orange { color: #f7931e; }

.gold { color: var(--gold); }
.gold-gradient {
	background: -webkit-linear-gradient(0deg, var(--gold-gradient));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.gold-gradient-hr {
	border: 0;
	width: 100%;
	height: 1px;
	margin: 1.5em 0;
	background: -webkit-linear-gradient(0deg, var(--gold-gradient));;
}
.gold-gradient-hr-s {
	border: 0;
	width: 80px;
	height: 3px;
	margin: 1.5em 0;
	background: -webkit-linear-gradient(0deg, var(--gold-gradient));;
}

.text-shadow {
	text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.75);
}
/* 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.72em; /* 14px */ }
.t-xxsmall { font-size: 0.65em; /* 14px */ }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }
.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; }
.ls-2 { letter-spacing: 2px; }
.ls-3 { letter-spacing: 3px; }
.show-sm, .show-mid, .show-android, .show-ios { display: none !important; }

.underline {
	text-decoration: underline;
}
hr {
	border: 0;
	border-bottom: 1px solid #999999;
}
/* button */
.btn.btn-large {
	padding: 17px 50px;
}

.top-btn {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border: 2px solid var(--gold);
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.4);
}
.top-btn::before {
	content: '';
	position: absolute;
	display: block;
	width: 16px;
	height: 2px;
	background-color: var(--gold);
	top: 12px;
	left: 13px;
}
.top-btn::after {
	content: '';
	width: 10px;
	height: 10px;
	border-left: 3px solid var(--gold);
	border-top: 3px solid var(--gold);
	transform: rotate(45deg);
	position: absolute;
	display: block;
	top: 22px;
	left: 15px;
}

/* header */
.header {
	position: fixed;
	display: flex;
	top: 0px;
	max-height: 78px;
	width: 100%;
	z-index: 99;
	background: linear-gradient(90deg, var(--gold-gradient));
    transition: transform 0.2s ease, background-color 0.2s ease, height 0.2s ease-in-out;
}
.header::before, .header::after {
	content: '';
	display: inline-block;
	height: 46px;
	flex-grow: 1;
	background-color: #000;
}
.navtop.container {
	padding: 0em;
	height: 100%;
	width: auto;
}
.navbar {
	display: flex;
}
.navbar::after {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: -3px;
	left: 0;
	background: linear-gradient(90deg, var(--gold-gradient));
}
.navbar li {
	display: inline-block;
	position: relative;
}
.navbar li + li::before {
	content: '';
	display: block;
	position: absolute;
    width: 2px;
    top: 12px;
    bottom: 12px;
	left: 0px;
	z-index: 1;
	background: var(--gold);
	transition: all 0.2s ease;
}
.navbar li:hover::before, .navbar li.active::before {
	top: 0;
	bottom: 0;
}
.navbar a {
	color: var(--gold);
	display: block;
	padding: 16px 24px 12px;
	transition: color 0.12s ease;
    position: relative;
    letter-spacing: 2px;
    font-size: 1em;
	font-weight: bold;
	transition: all 0.2s ease;
}
.navbar a:hover, .navbar a.active {
	color: #000000;
	transition: all 0.2s ease 0.2s;
}
.navbar a::before {
	content: '';
	display: block;
	background: #000;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 0;
	transition: all 0.2s ease-in-out;
	transform-origin: right center;
}
.navbar a:hover::before, .navbar a.active::before {
	transform: scaleX(0);
	transition: all 0.2s ease-in-out 0.2s;
}
.navbar a span {
	position: relative;
	z-index: 1;
}
.openlater {
	color: #666;
}
a.openlater:hover {
	color: #666;
}
.navbar a.openlater:hover::after, .navbar a.openlater.active::after {
	opacity: 0;
}
a.openlater span {
	display: block;
	position: absolute;
	background-color: #999;
	color: #fff;
	top: auto;
	bottom: -25px;
	left: 0;
	right: 0;
	margin: auto;
	width: auto;
	text-align: center;
	height: auto;
	border-radius: 20px;
	font-size: 13px;
	padding: 4px 10px;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	width: 75px;
}
a.openlater span::after {
	content: '';
	border-style: solid;
	border-color: transparent transparent #999 transparent;
	position: absolute;
	border-width: 0 3px 7px 3px;
    top: -6px;
    left: 0;
    right: 0;
    width: 0;
    margin: auto;
}
.navbar a.openlater:hover span, .navbar a.openlater.active span {
	opacity: 0.6;
}
.header.detachedHide {
	/* transform: translateY(-100%); */
}
.header.detached {
}
.header.detached.show {
	transform: translateY(0);
}

/* navbar toggle */
.hbg-btn {
	border: 0;
	height: 42px;
	width: 50px;
	border-radius: 5px;
	vertical-align: top;
	display: none;
	transition: margin 0.2s ease;
	margin-right: -15px;
	position: absolute;
	top: 3px;
	right: 25px;
}
header.detached .hbg-btn {
	margin-top: 0;
}
.icon-hbg,
.icon-hbg::before,
.icon-hbg::after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold-gradient));
	position: relative;
}
.icon-hbg::before {
	position: absolute;
	top: -8px;
}
.icon-hbg::after {
	position: absolute;
	bottom: -8px;
}

/* main */
main {
	
}

/* section */
.title-dec {
	display: inline-block;
	position: relative;
	width: 3px;
	height: 80px;
	margin: 0 auto 40px;
	background: linear-gradient(to bottom, var(--gold-gradient));
}

/* topsec */
#top-sec {
}

/* mainbg */
.mainbg {
	position: fixed;
	z-index: -1;
	top: 0;
	bottom: 0;
	width: 100%;
	pointer-events: none;
	overflow: hidden;
}
.mainbg img {
	position: absolute;
	display: block;
	height: auto;
}
.mainbg img:nth-of-type(1){
	left: -25%;
	top: 80px;
}
.mainbg img:nth-of-type(2){
	right: -60%;
	top: 150%;
}
.mainbg::after {
	content: '';
	position: fixed;
	inset: 0;
	background: linear-gradient(-45deg, 
		rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 0.55),
		rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 0.55)
	);
	background-size: 400% 400%;
	animation: gradient 8s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.z-index-0 {
	z-index: 0;
}
.z-index-3 {
	z-index: 3;
}

/* info */
.pl-5 {
	padding-left: 50px;
}
.time-block {
	background-color: rgba(0, 0, 0, 0.4);
}
.time-row {
	position: relative;
	padding: 0.7em 0 0.4em 0em;
    line-height: 1.4;
	display: flex;
	justify-content: start;
	margin: 0 auto;
}

.time-row::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, var(--gold-gradient));
}
.time-row:first-of-type::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: -5px;
	height: 5px;
	background: linear-gradient(90deg, var(--gold-gradient));
}
.time-row:last-of-type:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;
	height: 5px;
	background: linear-gradient(90deg, var(--gold-gradient));
}
.card-content .time-col p {
	font-size: 16px;
	line-height: 26px;
}
.time-col {
	display: inline-block;
	width: 136px;
	text-align: center;
	color: var(--gold);
}
.time-col p {
	line-height: 1.5;
	font-size: 0.875em;
}
.event-col {
	display: inline-block;
	width: 100%;
}
.event-col h5 {
	margin-bottom: 6px;
}

.event-col p {
	color: #ffffff;
}

/* list */
.num-list {
	padding-left: 1.15em;
	text-indent: -1.15em;
}
.num-list.tc {
	padding-left: 2em;
	text-indent: -2em;
}
.num-list li + li {
	margin-top: 0.4em;
}

/* review */
.review-news {
	display: flex;
	gap: 40px;
	background: rgba(0, 0, 0, 0.4);
}
.review-news .gold-img-wrap {
	width: 62%;
}
.review-news .review-news-info {
	width: 38%;
}
#podcast-sec .review-news .gold-img-wrap {
	width: 50%;
}
#podcast-sec .review-news .review-news-info {
	width: 50%;
}
.review-news-info {
	gap: 1em;
}
.review-news h3 {
	margin-top: -7px;
}
.review-news a {
	transition: all 0.4s ease;
}
.review-news a:hover {
	color: var(--gold);
}
.gold-img-wrap {
	position: relative;
	display: inline-block;
    height: fit-content;
}
.gold-img-wrap img {
	position: relative;
	display: block;
	z-index: 1;
}
.gold-img-wrap::before {
	content: '';
	position: absolute;
	display: block;
	inset: -3px;
	z-index: 0;
	background: linear-gradient(135deg, var(--gold-gradient));
}
.read-more-btn {
	position: relative;
	display: inline-flex;
	width: 248px;
	height: 45px;
	background: url('../img/btn-border.svg') no-repeat;
	background-size: 100% 100%;
	color: var(--gold);
	align-items: center;
	justify-content: space-between;
	padding: 6px 24px;
	background-color: rgba(0, 0, 0, 0.4);
	transition: all 0.4s ease;
}
.read-more-btn:hover {
	padding-left: 36px;
}
.btn-arrow {
	position: relative;
	display: inline-block;
	width: 62px;
	height: 7px;
	overflow: hidden;
}
.btn-arrow::after {
	content: '';
	display: inline-block;
	width: 400%;
	height: 100%;
	left: 0;
	background: url('../img/arrow.svg') repeat-x;
	background-position: 0 50%;
	background-size: 50% 100%;
	position: absolute;
	transition: all 0.4s ease;
}
.read-more-btn:hover .btn-arrow::after {
	background-position: 100% 50%;
}
/* select */
.select-news-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 60px;
}
.select-news .img-wrap {
	position: relative;
	padding-bottom: 65%;
	margin-bottom: 12px;
	overflow: hidden;
}
.select-news .img-wrap img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	transition: all 0.4s ease;
}
.select-news:hover img {
	transform: scale(1.15);
}
.read-more-dec {
	position: relative;
	display: block;
	height: 30px;
	width: 100%;
}
.read-more-dec span {
	position: absolute;
	color: var(--gold);
	left: 0px;
	width: 0px;
	transition: all 0.4s ease;
	white-space: nowrap;
	overflow: hidden;
}
.select-news:hover .read-more-dec span {
	width: 100px;
}
.read-more-dec::before {
	content: '';
	display: inline-block;
	width: 40px;
	height: 18px;
	left: 0;
	background: url('../img/arrow-b.svg') repeat-x;
	background-position: 0 50%;
	background-size: 64px 8px;
	position: absolute;
	overflow: hidden;
	transition: left 0.4s ease, width 0.4s ease;
}
.select-news:hover .read-more-dec::before {
	left: calc(100% - 64px);
	width: 64px;
}
/* forward */
.forward-news-list {
	position: relative;
}
.forward-news-list::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: -5px;
	height: 5px;
	background: linear-gradient(90deg, var(--gold-gradient));
}
.forward-news-list li {
	position: relative;
}
.forward-news-list li::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 1px;
	background: linear-gradient(90deg, var(--gold-gradient));
}
.forward-news-list a {
	display: block;
	padding: 20px 100px 20px 0px;
	transition: all 0.4s ease;
}
.forward-news-list a:hover {
	color: var(--gold);
}
.forward-news-list a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	height: 5px;
	width: 60px;
	background: linear-gradient(90deg, var(--gold-gradient));
	transition: all 0.6s ease-in-out;
}
.forward-news-list a:hover::before {
	width: 100%;
}
.forward-news-list a::after {
	content: '';
	display: inline-block;
	width: 0px;
	height: 7px;
	left: calc(100% - 62px);
	background: url('../img/arrow.svg') repeat-x;
	background-position: 0 50%;
	background-size: 124px 7px;
	position: absolute;
	top: 0px;
	bottom: 0;
	margin: auto;
	transform: translateX(-12px);
	transition: all 0.4s ease;
}
.forward-news-list a:hover::after {
	width: 62px;
	transform: translateX(0px);
}
/* footer */
.logolinks {
	display: flex;
	align-items: center;
	justify-content: center;
}
.logolinks li {
	display: inline-block;
	margin: 0.6em;
    vertical-align: middle;
}
.logolinks li img {
	max-height: 50px;
	width: auto;
}
.textlogo {
	display: inline-block;
	padding: 5px 10px;
	font-size: 18px;
	color: #323a4c;
	font-weight: 600;
	line-height: 1.2;
}

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


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