.banner-container {
	position: relative;
}

.banner-container .banner-bg {
	width: 100%;
}

.banner-container .banner-text {
	user-select: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 80%;
	margin: auto;
}

.banner-container .banner-text .title {
	font-size: 2.2vw;
	color: #ffffff;

	animation: 0.8s ease 0s 1 normal both running fadeIn;
}

.banner-container .banner-text .title:lang(zh) {
	letter-spacing: 5px;
}

.banner-container .banner-text .intro {
	padding: 20px 0;
	font-size: 1.4vw;
	color: #ffffff;

	animation: 0.8s ease 0s 1 normal both running fadeIn;
}

.banner-container .banner-text .intro:lang(zh) {
	letter-spacing: 3px;
}



@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(-50px);
	}

	50% {
		opacity: 1;
	}
}


@media screen and (max-width: 767px) {
	.banner-container .banner-text .title {
		font-size: 26px;
		letter-spacing: 0;
	}
}

@media screen and (max-width: 480px) {
	.banner-container .banner-text .title {
		font-size: 20px;
		letter-spacing: 0;
	}

	.banner-container .banner-text .intro {
		padding: 10px 0;
		font-size: 12px;
		letter-spacing: 0;
	}
}