section.ex-carrusel{
    background-color: rgba(0, 0, 0, 0.1);
}


section.ex-carrusel {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

section.ex-carrusel div {
    width: 33.33%;
    min-height: 350px;
    height: auto;
    max-height: 500px;
    background-size: cover;
    transition-duration: 500ms;
}

section.ex-carrusel div:hover {
    transform: scale(1.05);
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

@media (max-width: 700px) { 
    section.ex-carrusel{
        flex-direction: column;
        gap: 5px;
    }
    section.ex-carrusel div{
        width: 100%;
    }
    section.ex-carrusel div:hover{
        transform: none;
        box-shadow: none;
    }
}