.section{
	background-color:var(--theme-blue);
	position:relative;
}
.sec1 .inner{
	padding:5.2% 0;
	color:#fff;
	display:flex;
	align-items:center;
	justify-content:space-between;
	flex-direction:row;
}
.sec1 h3{
	font-size:3.25em;
}
.sec1 h3 span{
	font-size:0.615em;
	vertical-align:top;
}
.sec1 .tab-control{
	display:flex;
	align-items:center;
}
.sec1 .tab-control a{
	border:1px solid #fff;
	padding:1.25em 1.5625em;
	border-radius:1.75em;
	margin-right:1.875em;
	transition:color 0.5s,border-color 0.5s;
}
.sec1 .tab-control a:last-child{
	margin-right:0;
}
.sec1 .tab-control a.active{
	color:var(--theme-cyan);
	border-color:var(--theme-cyan);
}


.sec2{
	color:#fff;
	padding-bottom:5.2%;
}
.sec2 .content{
	opacity:0;
	position:absolute;
	top:0;
	transform:translateY(20vh);
	pointer-events:none;
}
.sec2 .content.active{
	transition:transform 0.5s, opacity 0.5s;
	pointer-events:auto;
	position:static;
	opacity:1;
	transform:translateY(0);
}
.sec2 a{
	border-top:1px solid rgba(255,255,255,0.25);
	display:flex;
	align-items:center;
	justify-content:space-between;
	flex-direction:row;
	padding:3.53% 0;
}
.sec2 p{
	font-size:1.125em;
	line-height:2;
}
.sec2 .img-box{
	border-radius:1.5em;
	overflow:hidden;
}
.sec2 .text{
	width:42%;
}
.sec2 .des{
	width:47%;
}
.sec2 .flex-box{
	display:flex;
	align-items:center;
}
.sec2 .tag{
	border:1px solid #fff;
	padding:0.625em 1.125em;
	border-radius:1.125em;
	margin-right:1.5em;
}
.sec2 h3{
	font-size:2em;
	line-height:1.5;
	margin:1.5em 0;
}



.sec3{
	pointer-events:none;
	position:fixed;
	z-index:10;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
.sec3 ul{
	transition:width 0.5s,height 0.5s;
	width:9.85em;
	height:0;
	overflow:hidden;
}
.sec3 ul.active{
	width:26.25em;
	height:18.75em;
}
.sec3 li{
	border-radius:1.5em;
	overflow:hidden;
	display:none;
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
}
.sec3 li.active{
	display:block;
}
@media only screen and (min-width:1025px){
	.sec1 .tab-control a:hover{
		color:var(--theme-cyan);
		border-color:var(--theme-cyan);
	}
}


@media only screen and (max-width:1024px){
	.sec1{
		overflow:hidden;
	}
	.sec1 .inner{
		padding:7.5% 0 5%;
		display:block;
	}
	.sec1 h3{
		font-size:2.75em;
		margin-bottom:5%;
	}
	.sec1 .scroll-box{
		overflow-x:auto;
		margin-left:-5vw;
		margin-right:-5vw;
		padding:5%;
	}
	.sec1 .tab-control{
		width:max-content;
	}
	.sec1 .tab-control a{
		flex-shrink:0;
	}


	.sec2{
		padding-bottom:10%;
	}
	.sec2 a{
		display:block;
		padding:10% 0;
	}
	.sec2 .text{
		width:100%;
		margin-top:10%;
	}
	.sec2 .flex-box{
		display:flex;
		align-items:center;
	}
	.sec2 .tag{
		border:1px solid #fff;
		padding:0.625em 1.125em;
		border-radius:1.125em;
		margin-right:1.5em;
	}
	.sec2 h3{
		font-size:2em;
		line-height:1.5;
		margin:1.5em 0;
	}


	.sec3{
		display:none;
	}
}