@media(min-width: 320px) {
    .swiper {
        width: 90%;
        max-width: 425px;
        height: 360px;
        margin-top: 25px;
    }

    .swiper-buttons {
        width: 90%;
        max-width: 425px;
    }
}

@media(min-width: 1024px) {
    .swiper {
        width: 65%;
        margin-top: 0;
    }

    .swiper-buttons {
        width: 65%;
    }
}

@media(min-width: 1280px) {
    .swiper {
        width: 420px;
        max-width: 420px;
        height: 420px;
    }

    .swiper-buttons {
        width: 420px;
        max-width: 420px;
    }
}

@media(min-width: 1440px) {
    .swiper {
        width: 480px;
        max-width: 480px;
        height: 480px;
    }

    .swiper-buttons {
        width: 480px;
        max-width: 480px;
    }
}

.swiper-buttons {
    margin: 20px auto 0 auto;
    display: flex;
    gap: 14px;
}

.swiper-buttons .swiper-prev,
.swiper-buttons .swiper-next {
    background-color: var(--e-global-color-accent);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.swiper-buttons .swiper-prev img,
.swiper-buttons .swiper-next img{
    filter: brightness(0) invert(1);
    width: 14px;
}

.swiper-buttons .swiper-prev img{
    transform: rotate(225deg);
}

.swiper-buttons .swiper-next img{
    transform: rotate(45deg);
}

.swiper{
    z-index: 0;
}

.swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}