/* banner */
#banner {
	padding: 0px 0vw 0;
	width: 100%;
	z-index: 9;
}

#banner,
#banner * {
	transition: all 0s ease-in-out;
	-webkit-transition: all 0s ease-in-out;
}

#banner .item {
	aspect-ratio: 32/15;
}

#banner .main-slider {
	-webkit-clip-path: url(#clip_banner);
	clip-path: url(#clip_banner);
}

#banner .item .clip>* {
	width: 100%;
}

#banner .item .clip .bgBox {}

#banner .item .clip iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

#banner .item .clip video {
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

#banner .item .info>div {
	margin: auto;
	width: calc(100% - 60px);
}

#banner .item .info>div .txt {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
	transform: scaleX(0);
	-webkit-transform: scaleX(0);
	transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
}

#banner .item .info>div .txt:nth-child(2) {
	-webkit-transition-delay: .4s;
	transition-delay: .4s;
}

#banner .item .info>div .txt>* {
	padding: 10px 15px;
	max-width: calc(100% - 30px);
	font-size: 18px;
}

#banner .item .info>div .txt h3 {
	margin-bottom: 15px;
	line-height: 120%;
	font-size: 35px;
}

#banner .item.slick-current .clip .bgBox {}

#banner .item.slick-current .info>div .txt {
	transform: scaleX(1);
	-webkit-transform: scaleX(1);
}

@-webkit-keyframes scale_banner {
	to {
		-webkit-transform: scale(1);
	}
}

@keyframes scale_banner {
	to {
		transform: scale(1);
	}
}

@media screen and (max-width: 1280px) {
	#banner {
		padding-top: 70px;
	}
}

@media screen and (max-width: 1024px) {
	#banner .item {
		height: 65vh;
	}
}
@media screen and (max-width: 480px)
{
	#banner .item{
    height: 423px;
}
	#banner{
    padding-top: 15px;
}
}