<section class="hero-section relative h-screen min-h-[600px] bg-blue text-white pt-[88px] lg:pt-28"
section-shade="transparent">
<div class="big-container h-full">
<div
class="relative flex flex-col md:justify-end pt-10 pb-28 md:w-10/12 lg:w-9/12 xl:w-7/12 max-w-[690px] h-full z-10">
<div class="hero-uppertitle uppertitle"
fade
fade-trigger="none">
<i></i>
{{content.heroSectionSubTitle}}
</div>
<h1 class="hero-title h1 mt-6"
split-direction="bottom"
split-trigger="none">
{{content.heroSectionTitle}}
</h1>
<div class="hero-p lg:text-lg xl:text-2xl mt-6 {{text|length < 160 ? 'max-w-[480px] xl:max-w-xl' : ''}}"
fade
fade-trigger="none">
{{content.heroSectionDescription|raw}}
</div>
</div>
</div>
<div
class="absolute md:top-0 bottom-0 left-4 md:left-auto right-0 min-h-[240px] h-[45vh] md:h-auto md:w-10/12 max-w-[1920px] pointer-events-none">
<div
class="hero-img-wrapp relative h-full {{ luminosity ? 'mix-blend-luminosity' : '' }} overflow-hidden opacity-50"
style="clip-path: polygon(43% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 37%, 42% 37%, 42% 100%, 43% 100%);">
{# Image size 1720*1080 #}
{% if content.heroSectionImage|length > 0 %}
{% set image = content.heroSectionImage.thumbnails['1720x1080'] %}
<img class="hero-img opacity-0 scale-[1.4] w-full h-full object-cover"
src="{{image}}"
alt="Our Services">
{% endif %}
</div>
</div>
</section>