<section class="relative bg-white text-blue pt-32 lg:pt-52 pb-6 lg:pb-16" section-shade="light">
<div class="big-container">
{# Top info #}
<div class="flex flex-col gap-6 lg:flex-row justify-between">
{# Content #}
<div class="flex flex-col lg:w-10/12 xl:w-9/12 max-w-[930px]">
<h1 class="title text-[2.5rem] lg:text-6xl xl:text-7xl mt-6">{{content.Title}}</h1>
</div>
</div>
</div>
</section>
<section class="gallery-section h-80 md:h-96 lg:min-h-[650px] lg:h-[85vh]" fade fade-trigger="none">
<div class="big-container-mob-zero h-full">
<div class="gallery-slider swiper-container relative md:overflow-hidden h-full">
<div class="gallery-slider-wrapper swiper-wrapper">
{% for photo in content.Images %}
{% if photo|length > 0 %}
{% set image = photo.thumbnails['1920x1080'] %}
{% else %}
{% set image = '' %}
{% endif %}
<div class="gallery-slide swiper-slide"
data-src="{{image}}"
data-external-thumb-image="{{image}}"
>
{# Image size 1920*1080 #}
<img class="swiper-lazy w-full h-full object-cover select-none"
data-src="{{image}}"
data-external-thumb-image="{{image}}"
alt="{{content.heroSectionTitle}}">
<div class="swiper-lazy-preloader"></div>
</div>
{% endfor %}
</div>
<button class="swiper-button-prev flex items-center pl-2 lg:pl-4 absolute top-0 left-0 bottom-0 z-10 cursor-pointer" aria-label="Prev Slide">
<div class="flex items-center justify-center rounded-full bg-white text-[#111] w-[52px] h-[52px] lg:w-14 lg:h-14">
<svg class="w-6" viewBox="0 0 37 14">
<use xlink:href="#arrow-prev"></use>
</svg>
</div>
</button>
<button class="swiper-button-next flex items-center pr-2 lg:pr-4 absolute top-0 right-0 bottom-0 z-10 cursor-pointer" aria-label="Next Slide">
<div class="flex items-center justify-center rounded-full bg-white text-[#111] w-[52px] h-[52px] lg:w-14 lg:h-14">
<svg class="w-6" viewBox="0 0 37 14">
<use xlink:href="#arrow-next"></use>
</svg>
</div>
</button>
<div class="gallery-count-wrapp absolute bottom-0 md:bottom-6 left-1/2 -translate-x-1/2 translate-y-1/2 md:translate-y-0 bg-[#111] text-sm text-white rounded-full flex items-center px-4 py-2 z-10 opacity-0">
<span class="gallery-count__current"></span>
<span class="opacity-30"> / </span>
<span class="gallery-count__all opacity-30"></span>
</div>
</div>
</div>
</section>