<!-- ======= Hero Section ======= -->
<section class="hero w-full md:h-screen-1/2flex flex-col justify-end text-center relative z-10" style='background: linear-gradient(
180deg,rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 20.69% )'>
<div class="absolute -z-0 top-0 left-0 right-0 bottom-0 ">
{% if content.cover_hp and content.cover_hp is defined %}
<img class="w-full h-full min-w-full object-cover " src="{{ content.cover_hp.thumbnails['2880x1160'] }}" alt="">
{% endif %}
{% if content.cover_video_hp and content.cover_video_hp is defined %}
<video class="w-full h-full min-w-full object-cover " src="{{ content.cover_video_hp.url }}" playsinline autoplay
muted loop>
</video>
{% endif %}
</div>
{% if content.cover_title is defined %}
<div class="relative z-20 overflow-hidden">
<h2 class="text-">{{ content.cover_title }}</h2>
</div>
{% endif %}
</section>
<!-- End Hero -->