.alternative-shop {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alternative-shop__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.alternative-shop__background__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.alternative-shop__swiper {
    overflow: hidden;
}

.alternative-shop__swiper__container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 2;

    .swiper-button-next::after, .swiper-button-prev::after {
        color: #fff;
    }
}

.alternative-shop__swiper .swiper-slide {
    width: auto;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    border: 3px solid #8BB860;
    background: #8BB860;
    max-height: 20px;

    h2 {
        margin: 0;
        font-weight: bold;
    }
}


.alternative-shop__swiper__container .swiper-button-next,
.alternative-shop__swiper__container .swiper-button-prev {
    margin-top: 0;
    z-index: 2;
}

@media (max-width: 768px) {
    .alternative-shop {
        height: 300px;
    }

    .alternative-shop__swiper__container {
        width: 90%;
        bottom: 8%;
    }
}

@media only screen and (min-width: 768px) {
    .alternative-shop__swiper__container::before,
    .alternative-shop__swiper__container::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        height: 100%;
        visibility: visible;
        z-index: 2;
    }

    .alternative-shop__swiper__container::before {
        left: 0;
    }

    .alternative-shop__swiper__container::after {
        right: 0;
    }
}

@media only screen and (max-width: 1600px) {
    .alternative-shop__swiper__container {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
}