@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;600&family=Montserrat:wght@200&display=swap');

.themeEventContainer{
	font-family: 'Noto Sans TC', sans-serif;
	font-size: clamp(10px, 1.16vw, 14px);
	overflow: hidden;
}

/*********************************** aboutBlock start ***********************************************/
.aboutBlock{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.aboutBlock p{
	line-height: 1.8em;
	margin:0;
	text-align: center;
	font-family: Montserrat;
	font-weight: 200;
	font-size: 2.5em;
}

.aboutBlock figure{
	width:100%;
	margin-top: 5%;
}
.aboutBlock figure img{
	display: block;
	width:100%;
}
/*********************************** aboutBlock end ***********************************************/

/*********************************** themeIntro start ***********************************************/
.themeIntro{
	margin:7.5% auto 0;
	width:85%;
}

.themeIntro > li{
	display: flex;
	justify-content: space-between;
}
.themeIntro > li+li{
	margin-top:5%;
}

.themeIntro .img{
	width:40%;
}
.themeIntro > li:nth-child(odd) .img{
	order:1;
}
.themeIntro .slick{
	margin:0;
}
.themeIntro .img li{
	position: relative;
}
.themeIntro img{
	display: block;
	width:100%;
}
.themeIntro .img li em{
	position: absolute;
	right:0;
	bottom:0;
	max-width:100%;
	padding:0.5em 1em;
	font-style: normal;
	font-size: 0.7em;
	line-height: 1em;
	text-align: right;
	color:#FFF;
	background: rgba(0, 0, 0, 0.3);
}

.themeIntro .slickPN{
	opacity: 0;
	transition: opacity 0.2s;
}
.themeIntro .slick:hover .slickPN{
	opacity: 1;
}

.themeIntro h4{
	text-align: center;
	font-size: 1em;
	font-weight: normal;
	margin-top:0.5em;
	opacity: 0;
	transition: opacity 0.5s;
}
.themeIntro h4.done{
	opacity:1;
}

.themeIntro li .txt{
	width:50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.themeIntro li .txt h3{
	font-size: 2em;
	font-weight: 600;
	line-height: 1em;
	color:#000;
}
.themeIntro li .txt p{
	margin: 1.2em 0 0;
	line-height: 1.8em;
	color:#666;
	text-align: justify;
}
/*********************************** themeIntro end ***********************************************/

/*********************************** video start ***********************************************/
.videoBlock{
	position:relative;
	margin-top:5%;
}

.videoBlock img{
	display:block;
	width:100%;
}

.videoBlock .vBtn{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	cursor:pointer;
	display:flex;
	justify-content:center;
	align-items:center;
}
.videoBlock .vBtn span{
	display:block;
	width:8.5%;
	min-width:50px;
	max-width:68px;
	animation:flashVBtn 0.8s ease-in infinite alternate;
}
@keyframes flashVBtn{
	from{
		transform:scale(0.9);
		opacity:0.6;
	}
}
.videoBlock .vBtn span:before{
	content:"";
	display:block;
	padding-top:100%;
	background:url(https://www.nordic.com.tw/images/vBtn.png) no-repeat center;
	background-size:contain;
}
.videoBlock .vBtn:hover span{
	animation:none;
}

/** videoOverlay start **/
.videoOverlay{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100vh;
	z-index:2;
	background:rgba(255, 255, 255, 0.9);
	justify-content:center;
	align-items:center;
	display:flex;
	opacity:0;
	transition:opacity 0.3s;
	pointer-events:none;
}
.videoOverlay.show{
	opacity:1;
	pointer-events:auto;
}
.videoOverlay .videoOverlayCT{
	position:relative;
	width:95%;
	max-width:960px;
	background:#000;
	transform:scale(0.5);
	transition:transform 0.3s;
}
.videoOverlay.show .videoOverlayCT{
	transform:none;
}
.videoOverlay .videoOverlayCT:before{
	content:"";
	display:block;
	padding-top:56.25%;
}
.videoOverlay iframe{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	border:none;
	display:block;
}

.videoOverlay .closeBtn{
	position:absolute;
	right:0;
	bottom:calc(100% + 10px);
	width:30px;
	height:30px;
	cursor:pointer;
}
.videoOverlay .closeBtn:before,
.videoOverlay .closeBtn:after{
	position:absolute;
	content:"";
	right:0;
	top:50%;
	width:90%;
	height:2px;
	background:#999;
	border-radius:1px;
}
.videoOverlay .closeBtn:before{
	transform:translateY(-50%) rotate(-45deg);
}
.videoOverlay .closeBtn:after{
	transform:translateY(-50%) rotate(-135deg);
}
.videoOverlay .closeBtn:hover:before,
.videoOverlay .closeBtn:hover:after{
	background:#666;
}
/** videoOverlay end **/
/*********************************** video end ***********************************************/


@media screen and (max-width:1023px){
	
	.themeEventContainer{
		font-size: 14px;
	}
	
	/*********************************** aboutBlock start ***********************************************/
	.aboutBlock p{
		width:90%;
		font-size: 4.5vw;
	}
	
	.aboutBlock figure{
		margin-top:10%;
	}
	/*********************************** aboutBlock end ***********************************************/
	
	/*********************************** themeIntro start ***********************************************/
	.themeIntro{
		width:auto;
		margin-top:15%;
	}

	.themeIntro > li{
		display: block;
	}
	.themeIntro > li+li{
		margin-top:0;
	}

	.themeIntro .img{
		width:auto;
	}

	.themeIntro li .txt{
		width:auto;
		padding:7.5% 5%;
	}
	.themeIntro li .txt h3{
		font-size: 1.3em;
	}
	/*********************************** themeIntro end ***********************************************/
	
	/*********************************** video start ***********************************************/
	.videoBlock{
		margin-top:10%;
	}
	/*********************************** video end ***********************************************/
	
}
