<div class=" recherche-eve">
<h1>
<strong>Recherche simplifiée de services</strong>
</h1>
<p style="max-width: 800px;font-style: italic;">Planifiez les vacances de vos rêves en toute simplicité . </p>
<div class="container-prestataire position-relative">
<div id="rowPrestataire" class="row sixPrestaire">
{% for categoryData in categoriesData %}
<div class="col-12 col-md-4 text-center mb-5">
<a href="{{ path('front_product_category_slug', {'slug': categoryData.categories.slug}) }}">
<div class="zoomimg container-imgPrestataire">
<img src="{{ asset(constant('App\\Services\\File::IMAGE_CATEGORY_DIR') ~ categoryData.categories.image) }}" alt="" class="imgPrestataire">
</div>
<h1 class="titrePrestataire">{{ categoryData.categories.name }}</h1>
{% set nbProduct = 0 %}
{% for subCategoryData in categoryData.subCategoriesData %}
{% set nbProduct = nbProduct + subCategoryData.productsCount %}
{% endfor %}
<h3>({{ nbProduct }}) prestations disponibles</h3>
</a>
</div>
{% endfor %}
</div>
<div class="flou"></div>
<button id="voirPlus" class="btn btn-default mt-5">Voir tous</button>
</div>
</div>