JSFiddle - React, Tailwind, and code Playground
HTML
<?php
/*
Template Name: Footer Section One
*/
?>
<div class="footer-section-one">
<div class="container">
<div class="row">
Hi there
<div class="col-sm-12 col-md-6 col-lg-6 col-xl-6">
<?php get_post_meta('big_number'); ?>
<?php get_post_meta('big_title'); ?>
</div>
<div class="col-sm-12 col-md-2 col-lg-2 col-xl-2">
<img src="<?php the_field('middle_image'); ?>" />
</div>
<div class="col-sm-12 col-md-4 col-lg-4 col-xl-4">
<?php the_field('main_text_right'); ?>
<?php the_field('button_text'); ?>
<?php the_field('button_link'); ?>
</div>
</div><!-- /.row -->
</div><!-- /.container -->
</div>