.listebloc .row {
    position: relative;
}

.listebloc .row .swiper {
    max-width: 964px;
    width: 83.33333%;
    overflow: visible;
    clip-path: inset(-100vw -100vw -100vw 1px);
    margin: 0 auto 0 0;
}

.listebloc .row .swiper .swiper-wrapper {
    overflow: visible;
}

.listebloc, .listebloc-titlecontainer {
    position: relative;
    background-color: #F0F0F0;
}

.listebloc-titlepart h2 {
    text-align: left;
    margin: 0 0 48px 0;
}

.blocListe .imgcropCtn {
    width: 100%;
    height: 300px;
}

.blocListe .content {
    background-color: rgb(250,250,250);
    padding: 24px 6%;
}

.cardListe .imgcropCtn {
    width: 100%;
    height: 300px;
}

.cardListe .content {
    padding: 24px 6%;
}

.cardListe {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 4px 6px 12px #00000029;
}

.cardListeFlip {
    width: 100%;
    height: 700px;
    perspective: 1000px;
    background-color: transparent;
}

.cardListeFlip .imgcropCtn {
    width: 100%;
    height: 300px;
}

.cardListeFlip .content {
    padding: 24px 6%;
}

.flipWrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 4px 6px 12px #00000029;
    background-color: white;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.cardListeFlip:hover .flipWrapper {
    transform: rotateY(180deg);
}

.flip-card-front {
    z-index: 2;
    background-color: white;
    -moz-transform-style: preserve-3d;
-moz-backface-visibility: hidden;
-webkit-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
}
  
.flip-card-back {
    background-color: white;
    -moz-transform-style: preserve-3d;
    -moz-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
}

.swiperListeBloc {
    overflow: hidden;
}

.swiperListeBloc::before {
    content: "";
    pointer-events: none;
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(240,240,240);
    background: -moz-linear-gradient(90deg, rgba(240,240,240,0.8) 0%, rgba(240,240,240,0) 10%, rgba(240,240,240,0) 90%, rgba(240,240,240,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(240,240,240,0.8) 0%, rgba(240,240,240,0) 10%, rgba(240,240,240,0) 90%, rgba(240,240,240,0) 100%);
    background: linear-gradient(90deg, rgba(240,240,240,0.8) 0%, rgba(240,240,240,0) 10%, rgba(240,240,240,0) 90%, rgba(240,240,240,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F0F0F0",endColorstr="#F0F0F0",GradientType=1);
}

.swiperListeBloc .swiper-wrapper .swiper-slide .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px;
    border-radius: 10px;
    background-color: #FEFEFE;
}

.swiperListeBloc .swiper-wrapper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.swiperListeBloc .swiper-wrapper .swiper-slide .content {
    height: 100%;
}

.swiperListeBloc .swiper-wrapper .swiper-slide .content h3 {
    text-align: left;
    margin: 0 0 8px;
}

.swiperListeBloc .swiper-wrapper .swiper-slide .content p {
    text-align: left;
}

.swiperListeBloc .swiper-wrapper .swiper-slide .content img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 65px;
    max-height: 65px;
    margin: 0 0 24px 0;
}

.listebloc .swiper-button-prev {
    opacity: 0.6;
    display: block;
    height: 40px;
    width: 40px;
    left: -48px;
    transform-origin: center;
    background-image: url("https://regietech.fr/wp-content/uploads/2025/04/ArrowSlider.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    transition: 0.3s all ease;
}

.listebloc .swiper-button-next {
    opacity: 0.6;
    height: 40px;
    width: 40px;
    transform-origin: center;
    background-image: url("https://regietech.fr/wp-content/uploads/2025/04/ArrowSlider.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: 0.3s all ease;
}

.listebloc .swiper-button-prev:hover {
    opacity: 1;
    transition: 0.3s all ease;
}

.listebloc .swiper-button-next:hover {
    opacity: 1;
    transition: 0.3s all ease;
}

.listebloc .swiper-button-prev::after {
    content: unset;
}

.listebloc .swiper-button-next::after {
    content: unset;
}

@media (max-width: 768px) {
    .listebloc .swiper-button-next {
        top: unset;
        bottom: -24px;
        right: unset;
        left: 56%;
        height: 40px;
        transform: translateX(-50%);
    }

    .listebloc .swiper-button-prev {
        top: unset;
        bottom: -24px;
        right: unset;
        left: 44%;
        height: 40px;
        transform: translateX(-50%) rotate(180deg);
    }
}