<?php

get_header();

$globalFields = get_fields('option');
$pageFields = get_fields();

?>
<div class="page-not-found">
    <div class="container">
        <div class="page-not-found-wrap">
            <h1 class="heading-section">
                404
                <span>Page Not Found</span>
            </h1>
            <div class="cta-button-wrap">
                <a href="<?php echo get_home_url( ); ?>" class="cta-button">
                    <span><?php echo __( 'Back To Home Page', 'hello-thedavanigroup' ); ?></span>
                </a>
            </div>

        </div>
    </div>
</div>
<?php

get_footer();

