/home/bdqbpbxa/demo-subdomains/lafinteca.goodface.com.ua/wp-content/themes/lafinteca/404.php
<?php
  // Template name: Text page

  get_header();

  $curr_lang = pll_current_language();

  $page_404 = get_field("page_404-{$curr_lang}", 'option');
?>

<main>
  <section class="page-not-found" data-animate-group="list">
    <div class="container">
      <div class="page-not-found__wrapper">
        <div class="img" data-animate="fade" data-index="2">
          <img src="<?php echo $page_404['image']['url']; ?>" alt="<?php echo $page_404['image']['alt']; ?>" />
        </div>
        <h1 class="title title-2 mob-title-2" data-animate="word" data-index="1"><?php echo $page_404['title']; ?></h1>
        <p class="text text-2 mob-text-2" data-animate="swim-top" data-index="2">
          <?php echo $page_404['subtitle']; ?>
        </p>
        <?php
          $button = get_link_group_field($page_404['button']);
          if ($button) :
        ?>
        <a href="<?php echo $button['url']; ?>" <?php echo $button['target']; ?> class="default-button -transparent -arrow-right" data-animate="swim-top" data-index="3">
          <span><?php echo $button['title']; ?></span>
        </a>
        <?php
          endif;
        ?>
      </div>
    </div>
  </section>
</main>

<?php
  get_footer();
?>