.justified-gallery > a > img {
    height: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 0.15s ease 0s;
    width: 100%;
}
.justified-gallery > a:hover > img {
    transform: scale3d(1.1, 1.1, 1.1);
}
.justified-gallery > a:hover .gallery-poster > img {
    opacity: 1;
}
.justified-gallery > a .gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: background-color 0.15s ease 0s;
}
.justified-gallery > a .gallery-poster > img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transition: opacity 0.3s ease 0s;
}
.justified-gallery > a:hover .gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}

#lightgallery .justified-gallery a {
    height: 132px;
    width: 190px;
}