.showroom-scomparsa-inner{
    position: relative;
    overflow: hidden;
 
    cursor: pointer;
}


.showroom-scomparsa-inner .immagine img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.showroom-scomparsa-inner .testo-box{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,.7);

    text-align: center;
}



.showroom-scomparsa-inner .testo-box .titolo{
    padding: 20px;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}

.showroom-scomparsa-inner .testo-box .contenuto  {

    max-height:0;



    -webkit-transition: all 0.8s ease-in-out 0s;
    -moz-transition: all 0.8s ease-in-out 0s;
    -ms-transition: all 0.8s ease-in-out 0s;
    -o-transition: all 0.8s ease-in-out 0s;
    transition: all 0.8s ease-in-out 0s;
}

.showroom-scomparsa-inner:hover .testo-box .contenuto  {
    height:auto;
    max-height:1000px;
}
