.swiper {
    width: 80%;
    height: 50vh;
    min-height: 320px;
}
.swiper-slide {
    font-size: 18px;
    background: transparent;
    display: flex;
    padding-top: 50px;
}
.swiper-slide::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
/* Title Text */
.title {
    padding: 0 10vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
    color: #fff;
}
.title__text {
    letter-spacing: -2px;
    font-size: clamp(3rem, 13.4546rem, 7rem);
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
}
.title__text::after {
    position: absolute;
    top: 100%;
    content: "";
    display: block;
    width: 100px;
    height: 0.25em;
    background-color: #ef233c;
}

