Hello
Looking in to this further you could try removing the following from your modules style.css (../modules/mod_j51gridgallery/css/styles.css) which should go a long way in removing a lot of this hover styling....
figure.effect-roxy img {
max-width: none;
width: -webkit-calc(100% + 60px);
width: calc(100% + 60px);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(-50px,0,0);
transform: translate3d(-50px,0,0);
}
Ciarán