@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;600&family=Abril+Fatface&display=swap');

.themeEventContainer{
	font-family: 'Noto Sans TC', sans-serif;
	font-size:clamp(10px, 1.33vw, 16px);
	color:#000;
	margin-top:5%;
	overflow: hidden;
}

.themeEventContainer :is(h2, h4){
	font-family: 'Abril Fatface';
	font-weight: normal;
	line-height: 1em;
}

/******************************** introBlock start *************************************/
.introBlock{
	width:88%;
	margin:0 auto;
}

.introBlock hgroup{
	background: #87a2ab;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:2%;
}
.introBlock hgroup h2{
	font-size:2.8em;
	color:#f0de80;
}

.introBlock .wrapper{
	background: #ede6d4;
	padding:3% 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.introBlock .img{
	width:45%;
	border-radius:50%;
	overflow: hidden;
}
.introBlock .img img{
	display: block;
	width:100%;
}

.introBlock .txt{
	width:48%;
}
.introBlock .txt h3{
	font-size: 1.6em;
	font-weight: 600;
	color:#773536;
}
.introBlock .txt p{
	margin:1em 0 0;
	font-size: 1.2em;
	line-height: 2em;
	text-align: justify;
}
/******************************** introBlock end *************************************/

/******************************** groupWrapper start *************************************/
.groupWrapper{
	width:88%;
	margin:0 auto;
}

.group{
	padding:4% 10% 6%;
}
.g1{background: #6197c5;}
.g2{background: #b4c55f;}
.g3{background: #cdb9ec;}

.group h3{
	color:#FFF;
	font-size: 2.2em;
	font-weight:600;
}

.group .itemWrapper{
	position: relative;
	margin-top:5%;
}

.group ._slickPN{
	position: absolute;
	top:50%;
	translate:0 -50%;
	width:6%;
	aspect-ratio:1;
	font-size: 0;
	cursor:pointer;
	transition: scale 0.2s;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
.g1 ._slickPN{ background-image: url(../images/arrow1.svg);}
.g2 ._slickPN{ background-image: url(../images/arrow2.svg);}
.g3 ._slickPN{ background-image: url(../images/arrow3.svg);}
.group ._slickPN.prev{
	right:102%;
	scale:-1 1;
}
.group ._slickPN.next{
	left:102%;
}
.group ._slickPN.prev:hover{
	scale:-1.2 1.2;
}
.group ._slickPN.next:hover{
	scale:1.2;
}

.group .item{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.group .item .img{
	width:42%;
	display: block;
	text-align: center;
}
.g2 .item .img{
	order:1;
}
.group .item .img h4{
	font-size: 2.3em;
}
.group .item .img img{
	display: block;
	width:100%;
	transition: scale 0.5s;
}
.group .item .img:hover{
	color:currentColor;
}
.group .item .img:hover img{
	scale:1.05;
}
.group .item .img h5{
	color:#FFF;
	font-size: 1em;
	font-weight: 600;
}

.group .item .txt{
	width:50%;
	aspect-ratio:1;
	background: #eee;
	padding:1em 1.5em;
	border:0.15em solid;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.group .item .txt h5{
	font-size:1.05em;
	font-weight: 600;
}
.group .item .txt p{
	line-height: 1.6em;
	margin:1.2em 0 0;
	text-align: justify;
}
.group .item .txt p.special{
	color:#3d2fa8;
}
/******************************** groupWrapper 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;
}
/** video end **/

/** 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 **/


@media screen and (max-width:1023px){
	
	.themeEventContainer{
		font-size:clamp(8px, 4vw, 32px);
	}

	/******************************** introBlock start *************************************/
	.introBlock{
		width:auto;
	}
	
	.introBlock hgroup{
		padding:5%;
	}
	.introBlock hgroup h2{
		font-size:1.5em;
	}

	.introBlock .wrapper{
		padding:10% 5%;
		display: block;
	}

	.introBlock .img{
		width:auto;
	}

	.introBlock .txt{
		width:auto;
		margin-top:5%;
	}
	.introBlock .txt h3{
		font-size: 1.2em;
	}
	.introBlock .txt p{
		font-size: 1em;
		line-height: 1.8em;
	}
	/******************************** introBlock end *************************************/
	
	/******************************** groupWrapper start *************************************/
	.groupWrapper{
		width:auto;
	}

	.group{
		padding:10% 10% 12%;
	}

	.group h3{
		font-size: 1.5em;
		text-align: center;
	}

	.group .itemWrapper{
		margin-top:10%;
	}

	.group ._slickPN{
		width:8%;
		top:0;
		margin-top:60%;
	}

	.group .item{
		display: block;
	}

	.group .item .img{
		width:auto;
	}
	.group .item .img h4{
		font-size: 1.9em;
	}

	.group .item .txt{
		width:95%;
		margin:10% auto 0;
		aspect-ratio:auto;
		padding:1.5em;
	}
	/******************************** groupWrapper end *************************************/
	
	/** video start **/
	.videoBlock{
		margin-top:10%;
	}
	/** video end **/
	
}
