.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: clamp(20px, 2.1vw, 40px)
            clamp(24px, 3.1vw, 60px);
    height: 458px!important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.swiper-slide .content {
    font-size: 4rem;
    font-weight: 700;
    text-align: left;
}

@media (max-width: 768px) {
  .swiper-slide .content {
    font-size: 2rem;
  }
}

.swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.swiper-slide > * {
    position: relative;
    z-index: 1;
}

.swiper-slide.image01 {
    background: url(../../images/slide_1.png);
    background-size: cover;
}
.swiper-slide.image02 {
    background: url(../../images/slide_2.png);
    background-size: cover;
}
.swiper-slide.image03 {
    background: url(../../images/slide_3.png);
    background-size: cover;
}

.swiper-pagination {
    bottom: 0 !important;
    position: relative;
}