At the bottom of your style.css file add this:
.blog .hentry a .attachment-post-thumbnail {
filter: none;
-webkit-filter: none;
-moz-filter: none;
-o-filter: none;
-ms-filter: none;
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
.blog .hentry a:hover .attachment-post-thumbnail {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-webkit-filter: grayscale(1); /* Older versions of webkit */
-moz-filter: grayscale(100%);
-o-filter: grayscale(100%);
-ms-filter: grayscale(100%); /* IE 10 */
filter: gray; /* IE 9 */
filter: url('inc/desaturate.svg#greyscale'); /* Firefox */
opacity: .8;
-webkit-opacity: .8;
-moz-opacity: .8;
}