@keyframes zoomUp {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.15);
	}
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
	animation: zoomUp 7s linear 0s normal both;
}

#sec01 div.swiper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100dvh;
	width: 100vw;
}

#sec01 {
	width: 100%;
	overflow: hidden;
}

#sec01 .swiper {
	width: 100%;
	margin: 0 auto;
}

.swiper-wrapper {
	display: flex;
}

.swiper-slide {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-img img {
	width: 100vw;
	height: 100dvh;
	object-fit: cover;
}

#sec08 div.swiper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	max-width: 1500px;
	/* max-height: 60dvh; */
	margin-top: 50px;
}

@media (max-width: 999px) {
	.swiper {
		width: 100%;
		height: 100vh;
		overflow: hidden;
	}

	.swiper-wrapper,
	.swiper-slide {
		height: 100%;
	}

	.swiper-img {
		width: 100%;
		height: 100%;
	}

	.swiper-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	#sec01 {
		margin-bottom: 0;
	}
}
	@media (max-width: 767px) {
		#sec01 .swiper,
		#sec01 {
			max-height: 80vh;
			max-height: 80dvh;
		}
	}
