/* banner */
.banner-container {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}

.banner-container .img {
    display: block;
    width: 100%;
    min-height: 250px;
    object-fit: cover;
    object-position: center;
}

.banner-container .text-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.banner-container .text-content .en-name {
	font-weight: bold;
	color: #FFFFFF;
	opacity: 0.3;
	margin: 0;
}

.banner-container .text-content .zh-name {
	font-weight: bold;
	color: #FFFFFF;
	margin: 0;
}

@media screen and (max-width: 1023px) {
	.banner-container .text-content {
		align-items: center;
	}

	.banner-container .text-content .en-name {
		font-size: max(26px, 4vw);
	}

	.banner-container .text-content .zh-name {
		font-size: max(36px, 5vw);
	}
}

@media screen and (min-width: 1024px) {
	.banner-container .text-content .en-name {
		font-size: 3rem;
	}

	.banner-container .text-content .zh-name {
		font-size: 3.5rem;
	}
}