/* Swiper full page and settings */
.swiper {
    width: 100%;
    height: 100vh; /* Fullscreen height */
    background:var(--primary_03);
    position: relative;
}
.swiper-slide {
    font-size: 18px;
    color: var(--gray_01);
    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: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
/* Title animation */
.swiper-slide .title {
    bottom: 20vh;
    text-shadow: 1px 1px 2px var(--gray_01);
    position: absolute;
	left: 5vw;
}

.swiper-slide .title h3 {
  font-family: "Castoro Titling", "Noto Serif TC", serif;
    color: var(--primary_03);
	font-size: 1.75rem;
	letter-spacing: 1px;
}
.swiper-slide .title h3 span {
  font-family: "Castoro Titling", "Noto Serif TC", serif;
    color: var(--primary_02);
	font-size: 3.5rem;
	position: absolute
}

.swiper-slide .title p {
	color: var(--gray_05);
	font-size: 1rem;
	letter-spacing: 1px;
	line-height: 1.5;
	
}
@media (min-width: 992px) {
.swiper-slide .title {
	bottom: 30vh;
	text-shadow: 2px 2px 10px var(--gray_01);
	position: absolute;
	left: 8vw;

}
	
.swiper-slide .title h3 {

	font-size: 3rem;
}
.swiper-slide .title h3 span {
	font-size: 5rem;
}

.swiper-slide .title p {
	font-size: 1.5rem;
	
}
}