My website is not showing Footer section

Please add below code in your footer.php file above included JavaScript files :

<?php
if ( is_active_sidebar( 'footer-1' ) ){
    dynamic_sidebar( 'footer-1' );
}

if ( is_active_sidebar( 'footer-2' ) ){
    dynamic_sidebar( 'footer-2' );
}

if ( is_active_sidebar( 'footer-3' ) ){
    dynamic_sidebar( 'footer-3' );
}
?>