It is a bit beyond what I can assist with, but I can give some pointers.
Create a new page template, and where you want to show the featured posts, try adding something like this:
<?php get_template_part('inc/featured'); ?>
Then you also need to edit /inc/featured.php, remove line 15 and 30 entirely. These two:
<?php if ( is_home() && !is_paged() && ( get_theme_mod('featured-posts-count','3') !='0') && $featured->have_posts() ): // Show if posts are not 0 ?>
and
<?php endif; ?>
This should make the featured posts appear, but I can’t guarantee that it will work.