<!-- Offer Area -->
<section id="offer_area" class="section_padding_top"
style=" background-image: url({{ zone.backgroundImage }});
background-position: center;
background-repeat: no-repeat;
background-size: cover; "
>
<div class="container py-5">
<div class="d-flex justify-content-between align-items-center mb-4">
<div>
<h2>{{ zone.title }}</h2>
<small class="text-uppercase text-muted ">{{ zone.description }}</small>
</div>
</div>
<div class="row g-4">
{% for item in zone.items|slice(0, zone.itemsCount) %}
{{ include('front/main/zones/itemZone1.html.twig', {'item': item}) }}
{% endfor %}
</div>
</div>