div#lightgallery-1 a, div#lightgallery-2 a {
    height: 220px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 5px 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: box-shadow 0.218s;
}
div#lightgallery-1 a:hover, div#lightgallery-2 a:hover {
    box-shadow: 0px 0px 4px #ccc;
}
div#lightgallery-1 a img, div#lightgallery-2 a img {
    margin: auto;
}

div#lightgallery-1, div#lightgallery-2 {
    margin: 0 auto;
}

#lightgallery-1 .desc, #lightgallery-2 .desc {
    position: absolute;
    display: none;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    transition: display 0.218s;
    z-index: 3;
}

span.desc-text {
    display: block;
    width: 25px;
    height: 25px;
    margin: auto;
    top: 0;
    bottom: 0;
    position: absolute;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    left: 0;
    right: 0;
}
div#lightgallery-1 a:hover .desc, div#lightgallery-2 a:hover .desc {
    display: block;
}
span.image-desc {
    display: block;
    position: absolute;
    z-index: 2;
    top: 150px;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-overflow: ellipsis;
    font-size: 0.85em;
    line-height: 1.4em;
    padding: 10px 0;
}

span.desc-text::after {
    content: '\f065';
    font-family: "Font Awesome 5 Free";
}
#lightgallery-1 .col-9, #lightgallery-1 .col-md-4, #lightgallery-1 .col-lg-3, #lightgallery-2 .col-9, #lightgallery-2 .col-md-4, #lightgallery-2 .col-lg-3 {
    padding: 0;
}
.page-content-shard-gallery {
    max-width: initial;
}