.offer {
    padding: 5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right top, #2a3ff8, #252fd1, #1d20ac, #121289, #050567);
    height: 100vh;
}

.offer .swiper {
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
    height: 80vh;
    margin: auto;
}

.offer .swiper-slide {
    padding: 5rem;
    color: #000;
    position: relative;
    z-index: 4;
}

.offer .swiper-slide h1 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 0rem;
    margin-top: 5rem;
}

.offer .swiper-slide p {
    font-size: 14px;
    margin-bottom: 2rem;
}

.offer .swiper-slide img {
    width: 100%;
    height: 100%;
}

.offer .swiper-slide .row {
    height: 100%;
    overflow: hidden;
}

.offer .img1 {
    position: absolute;
    right: -41px;
    top: 0;
    width: 160px;
    height: 230px;
    z-index: 3;
    transform: scale3d(1.5,1.5,1.5);
}

.offer .img2 {
    position: absolute;
    left: -41px;
    bottom: -26px;
    width: 200px;
    height: 250px;
    z-index: 3;
}

.offer .button-next {
    background-color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #FE5553;
    transition: all .5s;
    cursor: pointer;
}

.offer .button-prev {
    background-color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #FE5553;
    transition: all .5s;
    cursor: pointer;
}

.offer .swiper-button {
    display: flex;
    flex-flow: row-reverse;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: absolute;
    top: 0%;
    z-index: 30;
    width: 100%;
    padding: 1rem;
}

.offer .swiper-button-disabled {
    opacity: .5;
    transition: all .5s;
}

@media (max-width: 768px) {

    .offer {
        height: 100%;
    }

    .offer .swiper {
        height: 100%;
    }

    .offer .swiper .row {
        flex-flow: column-reverse;
    }

    .offer .swiper-slide {
        padding: 2rem;
    }

    .offer .swiper-slide img {
        margin-bottom: 2rem;
    }

    .offer .img1 {
        position: absolute;
        right: -41px;
        top: 0;
        width: 160px;
        height: 230px;
        z-index: 3;
        transform: scale3d(1.5,1.5,1.5);
    }

    .offer .img2 {
        position: absolute;
        left: -41px;
        bottom: -26px;
        width: 130px;
        height: 180px;
        z-index: 3;
    }

}

