section-borne{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.borne-logo-slider {
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
}

.borne-logo-slide {
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: max-content;
    /* animation: scroll 20s linear infinite; */
    align-items: center;
}

.borne-logo-slide:hover {
    animation-play-state: paused;
}

.borne {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bornes-title2{
    color: white;
    text-align: center;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width:768px) {

    #carousel-wrapper, #carousel-wrapper2 , .bornes-title{
        display: none;
    }

    .borne-logo-slider {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .borne-logo-slide {
        /* animation: none; */
        width: max-content;
    }

    .borne-logo-slider::-webkit-scrollbar {
        display: none;
    }

    .borne-img,
    .borne-img2 {
        width: 260px;
        height: auto;
        border-radius: 10px;
        border: 5px solid white;
    }

    .containerrenovbornes{

        flex-direction: column;
        align-items: center;
    }

}