Use post in multiple places on a page with multiple posts

You can make use of the the_content filters to apply markup to get_the_content()

$content = get_the_content();
echo apply_filters( 'the_content', $content );

You’ll need to do the same for get_the_title() where you would use the_title filters instead of the_content

Just another note on your code, remember to reset each of your custom loops with wp_reset_postdata(); just after closing your while() loop