<div class="bgc-F7F6F2 zi-999 w-100 he-115 t-0 position-fixed content-nav">
<div class="fixed-top bbs-solid bbw-1 bc-F7F6F2 mar-80 bgc-F7F6F2 position-fixed he-30 d-flex align-items-center zi-999 c-013399 pay-5">
<div class=" pax-15 mx-auto w-100">
<div class="row align-items-center justify-content-between">
<div class="col par-20 d-flex align-items-center justify-content-between">
<div class='col-auto pax-5 align-items-center fs-12'>
<div class="d-flex navbar-rs align-items-center">
<i class="fa-light no-fa-mobile fa-phone-flip mar-10 c-15683A fs-14"></i>
<a class=" fw-500 tdl-none-h c-15683A" href="tel:+33474972537">04 74 97 25 37</a>
</div>
</div>
<div class='col-auto pax-5 d-block align-items-center fs-12 mailNav'>
<div class="d-flex navbar-rs align-items-center">
<i class="fa-light no-fa-mobile fa-envelope c-15683A mar-10 fs-16"></i>
<a class=" fw-500 tdl-none-h c-15683A" href="javascript:window.location.href = 'mailto:' + ['facomia.sarl','facomia.com'].join('@')"> {{ "facomia.sarl<!---->@<!---->facomia.com" }}</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class=" wip-100 bgc-white he-85 nav-mobile position-fixed l-0 t-30 zi-999">
<div class="rectangle-green-nav wi-70 he-115 bgc-15683A t-0 r-0 position-fixed zi-999">
</div>
<a href="{{path('front_landing')}}" class="d-block">
<img class='logo-nav position-absolute t-10 l-15' src="{{ asset('assets/img/logo.svg') }}" alt="Facomia" />
</a>
<div id="menuToggle" class="position-relative my-auto he-24 max-10 d-block d-lg-block">
<input type="checkbox" />
<span class="navTrigger">
<i></i><i></i><i></i>
</span>
<div class=" baskerville linear-blue" id="menu">
<nav class="navbar pl-1" >
<ul class="navbar-nav w-100 justify-content-between d-sm-flex align-items-center">
{% for key, category in getCategories()|slice(0, 3) %}
<li class="{% if getSubCategories(category)|length and category.isChaine %}dropdown{% endif %} nav-item max-5">
<a type="button" class="text-left c-244A90-h c-1E2446 nav-link "
{% if getSubCategories(category)|length and category.isChaine %}href="#" id="navbarDropdown{{loop.index}}" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" {% else %}href="{{ path('front_products', {'catSlug':category.slug}) }} "{% endif %}>
{{ category.title }}
{% if getSubCategories(category)|length and category.isChaine %}
<i class="fas no-fa fa-chevron-down mal-5 fs-10"></i>
{% endif %}
</a>
{% if getSubCategories(category)|length and category.isChaine %}
<div class="dropdown-menu px-0 pay-16" aria-labelledby="navbarDropdown{{loop.index}}">
{% for key, subCategory in getSubCategories(category) %}
<a class="dropdown-item c-1E2446 c-244A90-h" href="{{ path('front_products', {'catSlug':category.slug, "subCatSlug":subCategory.slug}) }}">
{{ subCategory.title }}
</a>
{% endfor %}
</div>
{% endif %}
</li>
{% endfor %}
{% for key, linkNav in getLinksNav() %}
{% if linkNav is not iterable %}
<li class="nav-item max-5">
<a class="text-left c-244A90-h fw-500 c-1E2446 nav-link" href="{{linkNav}}">
{{key}}
</a>
</li>
{% else %}
<li class=" dropdown">
<a class="nav-link fs-14 pr-0 c-1E2446 c-244A90-h" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
{{key}}
<i class="fas fa-chevron-down c-white mal-7"></i>
</a>
<div class="dropdown-menu px-0 pay-16" aria-labelledby="navbarDropdown">
{% for subKey, subLink in linkNav %}
<a class="dropdown-item c-1E2446 c-244A90-h" href="{{ subLink }}">
{{ subKey }}
</a>
{% endfor %}
</div>
</li>
{% endif %}
{% endfor %}
<div class="d-flex justify-content-start mr-auto">
{% if managedLocales|length > 1 %}
{% for key, managedLocale in managedLocales %}
{% set params = app.request.get('_route_params') %}
{% set params = params | filter((v, k) => k != '_locale') %}
<li class="{{ app.request.locale == managedLocale ? '' : "" }} d-flex max-10">
<a class="text-center d-flex c-inherit pax-10 text-uppercase {{ app.request.locale == managedLocale ? 'fw-700' : "fw-300 o-70" }} text-md-left nav-link"
href="{{ path('front_change_language', {'locale':managedLocale, "routeName":app.request.get('_route')})~"?"~params|url_encode }}">
<img src="{{ asset('assets/img/'~managedLocale~'.svg') }}" class="mar-4 br-20 bw-2 bc-white bs-solid" alt="drapeau {{ managedLocale }} "/>
{{ managedLocale }}
</a>
</li>
{% endfor %}
{% endif %}
</div>
</ul>
</nav>
</div>
</div>
</div>
</div>