{% extends 'layout/base.html.twig' %}
{% block title %}About Us – {{ parent() }}{% endblock %}
{% block seo_en %}{{ url('about_us_index') }}{% endblock %}
{% block seo_hu %}{{ url('about_us_index', {'lang': 'hu'}) }}{% endblock %}
{% block seo_x %}{{ url('about_us_index') }}{% endblock %}
{% block body_classes %}about-us-index{% endblock %}
{% block content %}
{% include 'page/about_us/components/banner.html.twig' %}
<div class="about-us-page" id="about-us">
{% include 'page/about_us/components/page_text.html.twig' %}
{% include 'page/about_us/components/timeline.html.twig' %}
</div>
{% include 'common/components/contact_form.html.twig' with { defaultInquiry: true } only %}
<script>
const players = document.querySelectorAll('lottie-player');
for(const player of players){
const observer = new IntersectionObserver((entries) => {
if(entries[0].intersectionRatio > 0){
player.play();
}
}, {
root: null,
rootMargin: '0px',
threshold: 1.0
});
observer.observe(player);
}
</script>
{% endblock %}