.banner__title,
.banner__text,
.banner__btn {
	display: block;
	opacity: 0;
	transform: translate(0, 50px);
}
.slick-active .banner__title {
	opacity: 1;
	transform: translate(0);
	transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.5s;
}
.slick-active .banner__text {
	opacity: 1;
	transform: translate(0);
	transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.8s;
}
.slick-active .banner__btn {
	opacity: 1;
	transform: translate(0);
	transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 1s;
}

.banner__dots {
	width: 100%;
	position: absolute;
	bottom: 10px;
	left: 0;
	line-height: 0;
	text-align: center;
	list-style: none;
	padding-inline-start: 0;
}
.banner__dots li {
	margin: 0 5px;
	width: 20px;
	height: 30px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}
.banner__dots li span {
	width: 20px;
	height: 2px;
	display: block;
	background-color: #fff;
	opacity: 0.5;
	transition: opacity 0.3s ease-out;
}
.banner__dots li.slick-active span {
	opacity: 1;
}
.banner__item:before {
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	background-color: #fff;
	bottom: 0;
	left: 0;
}
.slick-current .banner__item {
	position: relative;
	opacity: 1;
	transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62);
}
.slick-current .banner__item:before {
	transition: all 0.7s ease-out;
}
.banner__nav .slick-list .slick-track {
	overflow: hidden;
}
.banner__nav .slick-list .slick-slide {
	height: 100%;
}
