<div class="bg-white h-[62px] bg-white container flex h-[62px] justify-between items-center">
{% include "app/partials/header/logo.html.twig" %}
<div class="flex justify-end items-center gap-8 top-navigation--items">
{% include "app/partials/header/emergency.html.twig" with {showIcon: true} %}
{% if document.getProperty('workAtPage') %}
{% set workAtLink = document.getProperty('workAtPage').url %}
{% set workAtTitle = document.getProperty('workAtPage').getProperty('navigation_name') %}
{% include "app/partials/header/link.html.twig" with {href: workAtLink, label: workAtTitle, class: 'text-blue-800 hidden 2xl:block'} %}
{% endif %}
{% if document.getProperty('contactPage') %}
{% set contactLink = document.getProperty('contactPage').url %}
{% set contactTitle = document.getProperty('contactPage').getProperty('navigation_name') %}
{% include "app/partials/header/link.html.twig" with {href: contactLink, label: contactTitle, class: 'text-blue-800 hidden 2xl:block'} %}
{% endif %}
<div class="hidden xl:block">
{% include 'app/partials/header/search.html.twig' %}
</div>
{% include 'app/partials/languageswitch.html.twig' with {'theme': 'header' } %}
</div>
</div>