Hi Dean,
This feature is not available in our theme. It needs code customization and you need to hire a developer to fix it.
To add link in service icon go to the theme folder -> inc ->widgets -> interface_widgets.php. Can you see this code on line no 329 to 333
<?php
if ( has_post_thumbnail() ) {
echo'<div class="service-icon">'.get_the_post_thumbnail( $post->ID, 'icon' ).'</div>'; }
?>
Replace above code with this below code
<?php
if ( has_post_thumbnail() ) {
echo'<div class="service-icon"><a href="'.get_permalink() .'">'.get_the_post_thumbnail( $post->ID, 'icon' ).'</a></div>';
}
?>
Now you can have a link in services icon. Just make a custom service widgets as i have told before in your child theme to avoid you customized code lost.
Thank you!