.lightgallery-wrapper .field-content:hover .img-responsive {
    transform: scale(1.1);
}

.lightgallery-wrapper .field-content a {
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.lightgallery-wrapper .field-content a::before {
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    opacity: 0;
    content: "\f002";
    font-family: FontAwesome;
    width: 100%;
    color: white;
    height: 100%;
    font-size: 25px;
    text-align: center;
    padding-top: 27%;
    display: block;
    position: absolute;
    background-color: rgba(210, 165, 85, 0.32);
    z-index: 99;
}

.lightgallery-wrapper .field-content:hover a::before {
    opacity: 1;
}
.lightgallery-wrapper .field-content {
    width: 150px;
    float: left;
    margin: 5px;
    overflow: hidden;
    height: 90px;
    position: relative;
}


