<footer class="space-top-2 space-bottom-1 bg-primary">
<div class="container">
<div class="row space-bottom-2">
<div class="col-lg-4 space-bottom-1 text-white">
<h3 class="fw-medium" style="font-family: 'News Cycle'">A Fluidra Brand</h3>
<p class="fs-sm">©2023 Fluidra. All rights reserved. All trademarks and trade names used herein are the
property of their respective owners - {% trans %}P.IVA{% endtrans %} 02074460177</p>
</div>
<div class="col-lg-10 space-bottom-2 space-bottom-lg-0">
<div class="row">
<div class="col-lg-3">
{% for entry in footerEntries(constant('App\\Entity\\FooterEntry::POSITION_ROW_1')) %}
{% include 'frontend/partials/_footer_entry.html.twig' %}
{% endfor %}
</div>
<div class="col-lg-3">
{% for entry in footerEntries(constant('App\\Entity\\FooterEntry::POSITION_ROW_2')) %}
{% include 'frontend/partials/_footer_entry.html.twig' %}
{% endfor %}
</div>
<div class="col-lg-3">
{% for entry in footerEntries(constant('App\\Entity\\FooterEntry::POSITION_ROW_3')) %}
{% include 'frontend/partials/_footer_entry.html.twig' %}
{% endfor %}
</div>
<div class="col-lg-3">
{% for entry in footerEntries(constant('App\\Entity\\FooterEntry::POSITION_ROW_4')) %}
{% include 'frontend/partials/_footer_entry.html.twig' %}
{% endfor %}
</div>
</div>
</div>
<div class="col-lg-2 fs-sm fw-medium d-flex flex-column space-bottom-1 space-lg-0">
{% for entry in footerEntries(constant('App\\Entity\\FooterEntry::POSITION_ROW_5')) %}
{% include 'frontend/partials/_footer_entry.html.twig' %}
{% endfor %}
</div>
</div>
<div class="d-flex justify-content-center flex-column flex-sm-row border-top border-2 space-top-1 text-white">
<div class="d-flex fs-sm fw-medium justify-content-center flex-wrap flex-sm-nowrap">
{% for entry in footerEntries(constant('App\\Entity\\FooterEntry::POSITION_FOOTER')) %}
{% include 'frontend/partials/_footer_entry.html.twig' with {class: 'text-nowrap'} %}
{% endfor %}
<a class="mx-2 mb-3 link text-white fs-sm text-uppercase text-nowrap" href="#cookie-modal"
data-bs-toggle="modal">{% trans %}Modifica preferenze privacy{% endtrans %}</a>
</div>
</div>
</div>
</footer>