/* 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: 41px;
    font-weight: 300;
	position: absolute;
	bottom: 10vh;
}
.swiper-slide .title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}