.main-img {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    background: unset;
}

.main-img .swiper-wrapper {
    transition-timing-function: linear;
}

.main-img .swiper-slide {
    position: relative;
    overflow: hidden;
    //
    box-shadow: 0px 0px 4px 6px #0000001f;
}

.main-img .swiper-slide img {
    position: relative;
    top: 0;
    left: -25%;
    max-width: calc( 150% );
    width: calc( 150%);
    transform: translateX(25%);
}

.main-text {
    position: absolute;
    z-index: 100;
    bottom: 70px;
    left: 50%;
    /* display: block; */
    width: 100%;
    text-align: center;
    transform: translateX(-50%);
    color: #fff;
    font-size: 54px;
    text-shadow: 0 0 20px #2e2e2ead;
}

@media screen and ( max-width:768px ) {
    .main-text {
        bottom: 30%;
        width: 100%;
        font-size: clamp( 18px, 9vw, 26px );
    }
    .main-img .swiper-slide img {
        max-width: 130%;
        width: 130%;
        height: 600px;
        object-fit: cover;
    }
}