.solidres-module-location-item {
    overflow: hidden;
}
.solidres-module-location-item img {
    width: 100%;
}
.solidres-module-location-item .location-item-name {
    background: rgba(0,0,0,0.25);
    color: #fff;
    font-size: 18px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
}

.solidres-module-location-item:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.solidres-module-location-item:hover .location-item-name {
    background: transparent;
    text-decoration: none;
    text-shadow: 2px 2px 1px rgba(0,0,0,0.8);
}
.solidres-module-location-item img, .solidres-module-location-item:hover img,
.solidres-module-location-item .location-item-name, .solidres-module-location-item:hover .location-item-name {
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}