{% import "./macros_typography.html.twig" as macrosTypography %}
{% import "./macros_button.html.twig" as macrosButton %}
{% set contactInformations = sulu_snippet_load_by_area('ContactInformations_area',null, app.ContactInformations) %}
<section class="about-section relative pt-16 pb-12"
section-shade="light">
<div class="fixed-lines">
<div></div>
<div></div>
<div></div>
</div>
<div class="relative grid lg:grid-cols-[1fr_2fr] gap-10 lg:gap-0 z-10 lg:z-0 text-blue">
<div class="overflow-hidden px-8 xl:px-12">
<h2 class="h2"
split-direction="top"
split-trigger="scroll">
{{ content.AlpineTitle|raw }}
</h2>
<div class="mt-8 w-full sm:w-1/2 lg:w-full"
fade
fade-trigger="scroll">
{{ content.AlpineDescription|raw }}
</div>
{% set btnText = content.AlpineButtonText %}
{% set btnUrl = content.AlpineButtonLink %}
{{macrosButton.arrowLink({
'wrappClass': 'mt-12',
'href': btnUrl,
'text': btnText,
'trigger': 'scroll'
})}}
</div>
<div class="relative overflow-hidden px-8 xl:px-12 bg-white">
<div class="relative w-full lg:h-screen min-h-[500px] clip-path-top-right-bottom-left">
{# image size 1300x1110 #}
{% if content.AlpineMedia|length > 0 %}
{% set image = content.AlpineMedia.thumbnails['1300x1110'] %}
<img class="absolute object-cover w-full h-full"
fade
fade-trigger="scroll"
src="{{image}}"
alt="About"
loading="lazy">
{% endif %}
<div class="lg:hidden absolute top-0 bottom-0 left-1/2 w-px bg-white"></div>
</div>
</div>
</div>
<div class="text-transform-wrapp absolute bottom-12 grid grid-cols-2 lg:grid-cols-3 text-[23vw] md:text-[17vw] text-blue leading-[0.85] whitespace-nowrap uppercase tracking-[0.13em] pointer-events-none z-10 lg:z-0">
<div class="overflow-hidden bg-white">
<div class="about-text-transform about-text-transform-1" style="translate: none; rotate: none; scale: none; transform: translate(30%, 0px);">
{{contactInformations.content.contactsCompanyName}}
</div>
</div>
<div class="overflow-hidden hidden lg:block bg-white">
<div class="about-text-transform about-text-transform-2" style="translate: none; rotate: none; scale: none; transform: translate(30%, -3.264px) scale(1.05, 1.05);">
{{contactInformations.content.contactsCompanyName}}
</div>
</div>
<div class="overflow-hidden">
<div class="about-text-transform about-text-transform-3 stroke-text" style="translate: none; rotate: none; scale: none; transform: translate(30%, 0px);">
{{contactInformations.content.contactsCompanyName}}
</div>
</div>
</div>
</section>