@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500&family=Cormorant+Garamond&display=swap');

.kvContainer,
.midBlock,
.themeMain{
	display: none;
}

.themeEventContainer{
	font-family: 'Noto Sans TC', sans-serif;
	font-size: clamp(10px, 1.16vw, 14px);
	font-weight: 400;
	max-width: 1920px;
	margin:0 auto;
}

/*********************************** home start ***********************************************/
.home{
	position: relative;
	aspect-ratio:2.55;
	color:#FFF;
}

.home .slick-list,
.home .slick-track{
	height:inherit;
}

.home .img{
	height:100%;
}
.home img{
	width:100%;
	height:inherit;
	display: block;
	object-fit: cover;
}

.home hgroup{
	position: absolute;
	left:0;
	bottom:0;
	margin:0 0 4% 17.5%;
	font-family: 'Cormorant Garamond';
	font-size: clamp(10px, 1.78vw, 34px);
	width:11.52em;
	filter:drop-shadow(0 0 0.15em rgba(0, 0, 0, 1)) drop-shadow(0 0 1em rgba(0, 0, 0, 1));
}
.home hgroup h2{
	font-size: 2.5em;
	font-weight: normal;
	line-height: 1.2em;
	color:inherit;
}
.home hgroup em{
	font-style: normal;
	display: flex;
	align-items: center;
	margin-top:1.5em;
}
.home hgroup em i{
	text-indent: 100%;
	line-height: 0;
	white-space: nowrap;
	overflow: hidden;
	display: block;
	width:9em;
	aspect-ratio:9.47;
	margin-left:0.5em;
	background: url(../images/logo.svg) no-repeat center/100%;
}

/********************* scrollHint start *************************/
.scrollHint{
	position:absolute;
	left:50%;
	bottom:8%;
	width:1.38%;
	aspect-ratio:0.43;
	transform:translateX(-50%);
	cursor:pointer;
	border:1px solid;
	border-radius:50% / 21.66%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.scrollHint:before{
	content:"";
	display: block;
	margin-top:30%;
	width:42%;
	aspect-ratio:1;
	background: currentColor;
	border-radius:50%;
	animation:scrollHint 0.5s ease-in infinite alternate;
}
@keyframes scrollHint{
	to{
		transform:translateY(100%);
	}
}
/********************* scrollHint end *************************/
/*********************************** home end ***********************************************/

.CTWrapper{
	max-width:1200px;
	margin:5% auto 0;
}
.CT{
	padding:0 5%;
}

/*********************************** about start ***********************************************/
.about{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	overflow: hidden;
}
.about+.about{
	margin-top:5%;
}

.about .img{
	width:46%;
}
.about:nth-child(even) .img{
	order:1;
}
.about .img li{
	position: relative;
}
.about img{
	display: block;
	width:100%;
}
.about .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);
}

.about .slickPN{
	opacity: 0;
	transition: opacity 0.2s;
}
.about .slick:hover .slickPN{
	opacity: 1;
}

.about .txt{
	width:46%;
	margin-top:1em;
}
.about .txt h3{
	font-size: 1.8em;
	font-weight:500;
}
.about .txt h3 *{
	display: block;
}
.about .txt h3 em{
	font-style: normal;
	font-size: 0.6em;
	margin-top:0.25em;
}
.about .txt p{
	line-height: 1.8em;
	margin:1.5em 0 0;
	text-align: justify;
}
/*********************************** about 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 ***********************************************/

/*********************************** product start ***********************************************/
.productBlock{
	margin-top:5%;
}

.productBlock .tabCT{
	justify-content: space-between;
	align-items: flex-start;
	display:none;
}
.productBlock .tabCT.active{
	display:flex;
}

/******************* 圖 start ********************/
.productBlock .tabCT .img{
	width:46%;
}
.productBlock .tabCT .img:hover .slickPN{
	opacity: 1;
}
.productBlock .tabCT .img li{
	position: relative;
}
.productBlock .tabCT .img img{
	display: block;
	width:100%;
}
.productBlock .tabCT .img 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);
}
/******************* 圖 end ********************/

/******************* 文 start ********************/
.productBlock .txt{
	width:46%;
}
.productBlock .txt hgroup h3{
	font-weight:500;
	font-size:1.6em;
}
.productBlock .txt hgroup em{
	display:block;
	margin-top:0.5em;
	font-style:normal;
	font-size:1.05em;
	font-weight:500;
}
.productBlock .txt p{
	line-height: 1.8em;
	margin:1.1em 0 0;
	text-align: justify;
}
.productBlock .txt ul{
	display:flex;
	margin-top:1em;
	align-items: flex-start;
}
.productBlock .txt ul li{
	width:42%;
}
.productBlock .txt ul li+li{
	margin-left:5%;
}
.productBlock .txt ul li a{
	text-align: center;
}
.productBlock .txt ul li a:hover{
	color:currentColor;
}
.productBlock .txt ul li a img{
	display: block;
	width:100%;
	transition: scale 0.5s;
}
.productBlock .txt ul li a:hover img{
	scale:1.05;
}
.productBlock .txt ul li a em{
	display: block;
	font-style: normal;
	font-size: 0.85em;
	margin-top:0.5em;
}
/******************* 文 end ********************/

/******************* tab start ********************/
.tab{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top:5%;
	padding:1em 0;
	border:1px solid;
	border-left:none;
	border-right:none;
	gap:2em;
}
.tab li{
	cursor:pointer;
	font-weight: 500;
	color:#999;
	transition:color 0.2s;
}
.tab li:hover,
.tab li.active{
	color:#000;
}
/******************* tab end ********************/
/*********************************** product end ***********************************************/


@media screen and (max-width:1023px){
	
	.themeEventContainer{
		font-size: clamp(8px, 3.68vw, 28px);
	}
	
	/*********************************** home start ***********************************************/
	.home{
		aspect-ratio:0.62;
	}

	.home img.kv2{
		object-position: 25% center;
	}
	.home img.kv3{
		object-position: 25% center;
	}
	
	.home hgroup{
		margin:0 0 40% 8%;
		font-size: clamp(8px, 4.73vw, 36px);
	}
	
	/********************* scrollHint start *************************/
	.scrollHint{
		bottom:8%;
		width:1.5em;
	}
	/********************* scrollHint end *************************/
	/*********************************** home end ***********************************************/
	
	.CTWrapper{
		margin-top:15%;
	}
	
	/*********************************** about start ***********************************************/
	.about{
		display: block;
	}
	.about+.about{
		margin-top:10%;
	}

	.about .img{
		width:auto;
	}

	.about .txt{
		width:auto;
		margin-top:5%;
	}
	/*********************************** about end ***********************************************/
	
	/*********************************** video start ***********************************************/
	.videoBlock{
		margin-top:10%;
	}
	/*********************************** video end ***********************************************/
	
	/*********************************** product start ***********************************************/
	.productBlock{
		margin-top:15%;
	}

	.productBlock .tabCT.active{
		display:block;
	}

	/******************* 圖 start ********************/
	.productBlock .tabCT .img{
		width:auto;
	}
	/******************* 圖 end ********************/

	/******************* 文 start ********************/
	.productBlock .txt{
		width:auto;
		margin-top:5%;
	}
	.productBlock .txt ul{
		justify-content: space-between;
	}
	.productBlock .txt ul li{
		width:47%;
	}
	.productBlock .txt ul li+li{
		margin-left:0;
	}
	/******************* 文 end ********************/

	/******************* tab start ********************/
	.tab{
		position: sticky;
		bottom:80px;
		background: #FFF;
		flex-wrap: wrap;
		margin-top:10%;
		gap:1em;
		font-size: 0.8em;
	}
	/******************* tab end ********************/
	/*********************************** product end ***********************************************/
	
}
