.gallery-title{
    text-align: center;
    margin-top: 3em;
}

.gallery-with-hover .gallery-with-hover-entry{
    position: relative;
    overflow: hidden;
}

.gallery-with-hover .gallery-with-hover-entry img{
    width: 100%;
}

.gallery-with-hover .gallery-with-hover-entry .inner-hover-entry .entry-title,
.gallery-with-hover .gallery-with-hover-entry .inner-hover-entry .entry-desc{
    text-align: center;
    color: #FFFFFF;
    /*visibility: hidden;*/
    
    opacity: 0;
    transition: opacity 800ms ease;
    -moz-transition: opacity 800ms ease;
    -webkit-transition: opacity 800ms ease;
    -o-transition: opacity 800ms ease;
}


.gallery-with-hover .gallery-with-hover-entry .inner-hover-entry{
    cursor: pointer;
    position: absolute; 
    width: 100%;
    height: 100%;
    
    display: flex;
    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0; left: 0;
    
    /*background-color: rgba(248, 248, 248, 0);*/
    background-color: rgba(0, 0, 0, 0);
    
    transition: all 800ms ease;
    -moz-transition: all 800ms ease;
    -webkit-transition: all 800ms ease;
    -o-transition: all 800ms ease;
}


.gallery-with-hover .gallery-with-hover-entry:hover .inner-hover-entry{
    /*background-color: rgba(248, 248, 248, .8);*/
    /*background-color: rgba(0, 0, 0, .8);*/
    background-color: rgba(0, 0, 0, .7);
}

.gallery-with-hover .gallery-with-hover-entry:hover .inner-hover-entry .entry-title,
.gallery-with-hover .gallery-with-hover-entry:hover .inner-hover-entry .entry-desc
{
    /*visibility: visible;*/
    opacity: 1;
}


.gallery-with-hover .gallery-with-hover-entry:hover a{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


/* fix temporaneo - gallery referenze con titoli tutti in maiuscolo */
#gallery-2 .inner-hover-entry h4{ text-transform:uppercase; }