.subtop, .subtop *{ 
	box-sizing:border-box; 
}
*{ 
	box-sizing:border-box; 
}
.subtop{ 
	position:relative; 
	z-index:1; 
	overflow:hidden; 
	background-color:#333; 
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 450px;
}

.st-caption{
	width: 100%;
	height: 100%; 
	position: absolute; 
	top: 0; 
	left: 0;
	text-align: center; 
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.20) 50%, rgba(0, 0, 0, 0.40) 100%);
}
.st-caption > h3{
	font-size: 12px; 
	font-weight: 400;
	letter-spacing: 6px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 24px;
	padding-top: 60px;
}
.st-caption > h2{
	color: #FFF;
	text-align: center;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.30);
	font-size: 44px;
	font-weight: 400;
	letter-spacing: 6px;
	margin-bottom: 30px;
}
.st-caption > h5{
	color: rgba(255, 255, 255, 0.85);
	font-size: 16px; 
	font-weight: 300;
}

article{ 
	padding:100px 0; 
}
.art_con{ 
	width:100%; 
	margin:0 auto; 
	max-width: 1440px;
	padding: 0 15px;
	background-color: #fff;
}


@media(max-width:1440px){
	.st-caption > h3{
		margin-bottom: 20px;
	}
	.st-caption > h2{
		font-size: 36px;
		margin-bottom: 24px;
	}
	.st-caption > h5{
		font-size: 15px;
	}
}
@media(max-width:1199px){

	.subtop{
		height: 300px;
	}

	.st-caption > h2{
		font-size: 22px;
		margin-bottom: 1rem;
	}
	.st-caption > h5{
		font-size: 14px;
	}

	article{
		padding: 70px 0;
	}
	.st-caption > h3{
		padding-top: 30px;
		margin-bottom: 10px;
	}

}
@media(max-width:600px){
	article{
		padding: 30px 0;
	}
	.st-caption > h3{
		letter-spacing: 5px;
	}
	.st-caption > h2{
		font-size: 20px;
		letter-spacing: 2px;
	}
	.st-caption > h5{
		font-size: 13px;
	}

}