.pagelist-home {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.pagelist-home .item {
    height: 700px;
    width: 33.333%;
    display: table-cell;
    vertical-align: bottom;
    transition: all .4s ease-in-out;
}
.pagelist-home .item .item-inner {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagelist-home .item .overlay {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
}
.pagelist-home .item .inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pagelist-home .item a {
    text-align: center; 
}
.pagelist-home .item img {
    width: 60%;
    margin-bottom: 20px;
}
div.ccm-page .pagelist-home .item h1 {
    color: white;
    font-weight: 100;
    text-align: center;
    font-size: 1.6em;
    margin: 0;
}
div.ccm-page .pagelist-home .item h1 span {
    display: block;
}
.pagelist-home .item:hover {
    width: 40%;
}
.pagelist-home .item:hover a {
    text-decoration: none;
}
.pagelist-home .item .link-esterno {
    margin-top: 10px;
}
.pagelist-home .item .link-esterno-text {
    padding: 10px 15px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    mix-blend-mode: lighten;
    background-color: white;
    display: block;
}
.pagelist-home .item .link-esterno-text p {
    margin: 0;
}

@media screen and (max-width: 568px) {
    .pagelist-home .item {
        width: 100%;
        height: auto;
        display: table;
    }
    .pagelist-home .item .item-inner {
        padding: 80px 0;
    }
    .pagelist-home .item:hover {
        width: 100%;
    }
}