<?php
// Template name: Contacts
get_header();
$curr_lang = pll_current_language();
$template_directory = get_template_directory_uri();
$srcset = "srcset='" . $template_directory . "/assets/images/lazyload.png'";
?>
<main>
<section class="form-section" data-animate-group="list">
<div class="container">
<div class="title-wrapper">
<h2 class="title-2 mob-title-2 title" data-animate="word" data-index="1">
<?php the_field('title'); ?>
</h2>
<p class="text text-1 mob-text-1" data-animate="swim-top" data-index="2">
<?php the_field('text'); ?>
</p>
</div>
<?php
get_template_part('templates/contact-form');
?>
</div>
</section>
</main>
<?php
get_template_part('templates/breadcrumbs');
?>
<?php
get_footer();
?>