.carosello{
    background-color: #fff;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: stretch;

}

.row{
    display: flex;
    width: 100%;
    height: 50%;
    align-items: center;
}

#secondary-img{
    height: 100%;
}

.carosello img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 400ms;
}

.carosello img:hover{
    cursor: pointer;
}

.carosello-content img:hover{
    scale: 1.1;
    transition: 400ms;
}

#secondary-img:hover  :not(:hover){
    filter: blur(2px);
    opacity: 0.8;
    transition: 500ms;
}

#secondary-img{
    transition: 500ms;
}

.carosello-content{
    width: 34%;
    height: 100%;
    overflow: hidden;
}

#main-img{
    cursor: default;
    height: auto;
    min-width: 50%;
}

@media screen and (max-width: 1111px){
    .carosello{
        flex-direction: column;
        height: 600px;
        width: 80%;
        margin: 0 10%;
    }

    #secondary-img{
        height: 300px;
    }

    #main-img{
        width: 100%;
        height: 300px;
    }
}