/* 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%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.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;
}

.banner-container .text-content .email {
	color: #FFFFFF;
	margin: 0;
}

@media screen and (max-width: 1023px) {
	.banner-container .text-content .en-name {
		font-size: max(26px, 4vw);
	}

	.banner-container .text-content .zh-name {
		font-size: max(40px, 6vw);
	}

	.banner-container .text-content .email {
		font-size: max(20px, 2vw);
		margin-top: -14px;
	}
}

@media screen and (min-width: 1024px) {
	.banner-container .text-content .en-name {
		font-size: 3rem;
	}

	.banner-container .text-content .zh-name {
		font-size: 4.75rem;
	}

	.banner-container .text-content .email {
		font-size: 2rem;
		margin-top: -24px;
	}
}