Hi Hi mers216,
To remove the link from specific title and image code customisation is required as this is a new feature to be added in the theme. So you need to hire a developer to fix it.
Go to theme folder -> inc -> widgets -> ambition-widgets.php on line no 424 remove this line of code
<div class="service-img"><a title="<?php the_title(); ?>" href="<?php the_permalink(); ?>"> <?php echo get_the_post_thumbnail( $post->ID, 'ambition-icon'); ?> </a> </div>
with
<div class="service-img"><?php echo get_the_post_thumbnail( $post->ID, 'ambition-icon'); ?></div>
and also on line no 427
<h3 class="service-title"><a title="<?php echo esc_attr($page_title); ?>" href="<?php the_permalink(); ?>"><?php echo esc_attr($page_title); ?></a></h3>
with
<h3 class="service-title"><?php echo esc_attr($page_title); ?></h3>
We recommended not to change the code because if you change the code then while updating to our new version all your customisation code will be lost. So better make child theme and first unhook the functions and the edit the code.
Thank you!