*{
    box-sizing: border-box;
}
.section_image_9 {
    width: 100%;
    height: 500px;
    border: 1px solid #ccc;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); /* Add some shadow for a nice effect */
    margin-top: 30px;
}

.image_interieur {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carrousel {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    background-color: red;
}

.carrousel_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}


@media (max-width: 760px) {
    .section_image_9 {
        width: 100%;
        height: 500px;
        border: 1px solid #ccc;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); /* Add some shadow for a nice effect */
    }
    
    .image_interieur {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .carrousel {
        width: 100%;
        height: 200px;
        overflow: hidden;
        position: relative;
    }
    
    .carrousel_image {
        width: 99%;
        height: 100%;
        position: absolute;
        border-radius: 10px;
        margin-left: 0.5%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
}
