/* Swiper full page and settings */
.swiper {
    width: 100%;
    height: 100vh; /* Fullscreen height */
    background: #000;
    position: relative;
}
.swiper-slide {
    font-size: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 60px;
	position: relative;
}
.parallax-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 130%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
/* Title animation */
.swiper-slide .title {
    font-size: 32px;
    font-weight: 300;
	position: absolute;
	bottom: 30vh;
	text-shadow: 1px 1px 20px var(--gray_07);
  	font-family: "EB Garamond", "Noto Serif TC", "Microsoft JhengHei", Roboto, "Helvetica Neue", arial, sans-serif;
	font-weight: 600;
}
.swiper-slide .title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}
@media (min-width: 992px) {
.swiper-slide .title {
    font-size: 56px;
	bottom: 10vh;
}
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}

