.section_7 {
    width: 99%;
    height: 300px;
    display: flex;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.section_7 .image-container {
    flex: 1;
    overflow: hidden;
    margin: 10px;
    border-radius: 5px;

    transition: transform .2s;
}

.section_7 .image-container img {
    width: 100%;
    object-fit: cover;
}


.produits{
    text-align: center;
    font-size: 40px;
    margin: 0;
    margin-top: 20px;
    color: #5fbff2;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.overflow-auto {
    overflow-x: auto;
}

@media (max-width: 720px) {
    .section_7 {
        display: flex;
        flex-direction: column;
        height: auto;
        margin: 0;
    }
    
    .section_7 .image-container {
        width: 100%;
        margin: 2px;
    }
}