This is the one I ended up using:
img {
-webkit-transition: all 0.1s ease;
transition: all 0.5s ease;
}
.gallery-grid-item img:hover {
filter: brightness(109%)
}
It works really well as I needed it to work on the gallery block. Thanks so much though!