.banner-slides {
    font-size: 0.652vw;
    position: relative;
    overflow: hidden;
    margin-top: 0.3em;
}

.banner-slides .banner-item {
    height: 100%;
    aspect-ratio: 1920 / 800;
}

.banner-slides .banner-item a{
    width: inherit;
    height: inherit;
    display: block;
}

.banner-slides .banner-item>a>picture {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slides .slideshow__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.banner-slides .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--white);
    opacity: 1;
}

.banner-slides .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--black);
}

.group-btn-slide {
    position: absolute;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
}

.swiper-banner-button {
    position: relative;
    width: 4em;
    height: 4em;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .2);
    /* font-size: var(--vw-12); */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.swiper-banner-button:hover {
    opacity: 1;
}

.swiper-banner-button svg {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    color: var(--white);
    object-fit: cover;
}

.swiper-banner-button-next {
    right: 0.75em;
}

.swiper-banner-button-prev {
    left: 0.75em;
    transform: rotate(180deg);
}

.banner-slides .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.banner-slides .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 3em;
    border-radius: 1em;
    opacity: 0.5;
    margin: 0 0.5em;
    height: 0.75em;
}

.banner-slides .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
}

/* Responsive */
@media (max-width: 767px) {
    .banner-slides {
        font-size: 1.5vw;
    }
    .banner-slides .banner-item {
        aspect-ratio: 12 / 8;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .banner-slides {
        font-size: 1.25vw;
    }
    .banner-slides .banner-item {
        aspect-ratio: 12 / 8;
    }
}

@media (min-width: 1200px) {

}