{% set contactInformations = sulu_snippet_load_by_area('ContactInformations_area',null, app.ContactInformations) %}
<section class="cover_contact relative h-screen min-h-[600px] bg-blue text-white"
section-shade="transparent">
<div class="relative flex h-full pl-8 lg:pl-12">
<svg
class="absolute aspect-square bottom-4 right-20 lg:top-0 lg:left-0 h-[80%] lg:h-full xl:h-auto xl:w-7/12 text-white/5 pointer-events-none yellow_bg">
<use xlink:href="#circle"></use>
</svg>
{# Text side #}
<div class="relative flex flex-col justify-end h-full lg:w-7/12 pb-24 lg:pb-12 pt-[88px] lg:pt-28">
<div>
<p class="uppertitle">
<i></i>
{{ content.heroSectionSubTitle }}
</p>
<h1 class=" h1 mt-6">
{{ content.heroSectionTitle }}
</h1>
</div>
<div class="flex flex-col gap-8 mt-6 lg:mt-16">
<div>
<p class="uppercase text-[10px] font-extrabold">{{contactInformations.content.contactsAdressTitle}}</p>
<address class="text-sm not-italic">
<p class="font-extrabold">{{contactInformations.content.contactsCompanyName}}</p>
<p class="mt-1">
<span>{{contactInformations.content.contactsCompanyAdress}}</span>
</p>
</address>
</div>
<div>
<p class="uppercase text-[10px] font-extrabold">{{contactInformations.content.contactsPhoneText}}</p>
<p class="mt-1">
<a class=""
href="tel:{{contactInformations.content.contactsPhone}}">{{contactInformations.content.contactsPhone}}</a>
</p>
</div>
<div>
<p class="uppercase text-[10px] font-extrabold">{{contactInformations.content.contactsEmailText}}</p>
<p class="mt-1">
{% include 'partials/layout/contact_email.html.twig' with { email: contactInformations.content.contactsEmail } %}
</p>
</div>
</div>
</div>
{# Image #}
<div class="hidden lg:block relative h-full lg:w-5/12">
{# image size 900*1360 #}
{% if content.heroSectionImage|length > 0 %}
{% set image = content.heroSectionImage.thumbnails['900x1360'] %}
<img class="object-cover w-full h-full"
src="{{ image }}"
alt="Contact">
{% endif %}
<div class="hidden lg:block absolute inset-0 bg-blue/30 z-10"></div>
</div>
</div>
</section>