Hi There,
To achieve that, please add the following code under functions.php file locates in your child theme:
add_action( 'x_before_view_global__footer-widget-areas', 'add_extra_footer' );
function add_extra_footer(){
?>
<footer id="extra-footer">
<div class="x-container max width">
<div class="x-column x-md x-1-3">Column 1</div>
<div class="x-column x-md x-1-3">Column 2</div>
<div class="x-column x-md x-1-3 last">Column 3</div>
</div>
</footer>
<?php
}
Hope it helps 🙂