.carrousel-section{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #131C43;
    padding: 5rem;
}
.carrousel-section h2{
    margin: 0 0 0 1.5rem;
    color: #fff;
    font-size: 2.5rem;
}
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.video-container {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

video {
    width: 100%;
    border-radius: 8px;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #3599D1;
    font-weight: bold;
    color: #000;
    border: none;
    padding: 12px;
    margin: 1rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1;
}

.prev-btn:focus,
.next-btn:focus {
    outline: none;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.buttonSuivezNous {
    cursor: pointer;
    border: none;
    background-color: #3599D1;
    border-radius: 15px;
    padding: 15px;
    margin: 1.5rem 0 0;
    color: #fff;
    font-weight: bold;
    transform: scale(1);
    transition: 0.5s ease;
}
.buttonSuivezNous:hover {
    background-color: #4fd0ff;
    transform: scale(1.1);
}
@media screen and (max-width:768px){
    .carrousel-section{
        padding: 2.5rem;
        display: block;
    }
    .carrousel-section h2{
        font-size: 1.5rem;
        padding: 10px;
    }
    .carousel-container{
        overflow: hidden;
        display: block;
        width: auto;
    }
    .video-container {
        padding: 0;
    }
}
@media screen and (max-width:320px){
    .carrousel-section{
        padding: 1rem;
    }
}