.pix-bandeau-swiper {
    aspect-ratio: 1920 / 835;
    position: relative;
    overflow: hidden;
    user-select: none;
    /* padding: 18px; */

    margin-top: calc(var(--header-top-radius) * -1 - 5px);
}

.pix-bandeau-swiper::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    z-index: 1000;
    width: clamp(200px, 35vw, 400px);
    aspect-ratio: 2 / 1;
    background: url('i/slogan-bandeau.svg') no-repeat center center;
    background-size: 100% auto;
    filter: drop-shadow(8px 8px 5px rgba(0, 0, 0, 0.7));
    
    transform: rotate(-5deg);
}

.pix-bandeau-swiper .swiper-slide .swiper-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920 / 835;
    background-position: center center;
    background-size: cover;
}
.pix-bandeau-swiper .swiper-slide img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pix-bandeau-swiper .swiper-slide {
    position: relative;
    opacity: 0;
}
.pix-bandeau-swiper .swiper-slogan {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
    font-weight: 900;
    font-size: clamp(22px, 4vw, 50px);
    text-align: center;
    width: 80%;
}
.pix-bandeau-swiper .swiper-slide-active .swiper-slogan {
}
.pix-bandeau-swiper .swiper-slogan h3 {
    padding: 0;
    margin: 0;
    font-weight: inherit;
    font-size: inherit;
    line-height: 1.1;
}
.pix-bandeau-swiper .swiper-slogan span.dl {
    display: block;
    font-size: 0.8em;
}


.pix-bandeau-swiper .swiper-button-prev::after,
.pix-bandeau-swiper .swiper-button-next::after {
    content: none;
}
.pix-bandeau-swiper .swiper-button-prev,
.pix-bandeau-swiper .swiper-button-next {
    width: 30px;
    height: 30px;
    background: #e95078 url('i/arrow-right.svg') no-repeat left 4px center / 25px 25px;
    border-radius: 99px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.pix-bandeau-swiper .swiper-button-prev {
    transform: rotate(180deg);
}
.pix-bandeau-swiper:hover .swiper-button-prev,
.pix-bandeau-swiper:hover .swiper-button-next {
    opacity: 0.7;
}
.pix-bandeau-swiper .swiper-button-prev:hover,
.pix-bandeau-swiper .swiper-button-next:hover {
    opacity: 1;
}


@media (max-width: 1250px) {
    .pix-bandeau-swiper {
        height: 543px;
        aspect-ratio: initial;
    }
}

@media (max-width: 900px) {
    .pix-bandeau-swiper {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .pix-bandeau-swiper {
        height: 320px;
    }
}

@media (max-width: 480px) {

    .pix-bandeau-swiper {
        height: 240px;
    }
}