/home/bdqbpbxa/demo-subdomains/paytech.goodface.com.ua/wp-content/themes/paytech/404.php
<?php
  get_header();

  $template_directory = get_template_directory_uri();
  $srcset = 'srcset="' . $template_directory . '/assets/images/lazyload.png"';
?>

<main>
		<section class="page-404 --black-section">
      <div class="container -bigger">
        <div class="img">
          <picture>
            <source srcset="<?php echo $template_directory; ?>/assets/images/404/mobile.svg" media="(max-width: 760px)">
            <img src="<?php echo $template_directory; ?>/assets/images/404/pc.svg" alt="">
          </picture>
        </div>
        <h1 class="title title-3 mob-title-1">
          Sorry, page not found.
        </h1>
        <p class="text text-2 mob-text-2">
          The page you are looking for does not exist.
        </p>
        <a href="<?php echo get_home_url(); ?>" class="default-button">Back to Home</a>
      </div>
    </section>
</main>

<?php
  get_footer();
?>