<br><br>
<footer class="my-5 p-t-50 p-b-20" style='border-style:solid; border-width:0px;; border-top-width:2px; border-color:#efeef4;'>
<div class='container'>
<div class='row'>
<div class='col-7'>
<h4><b>{{ information.name }}</b></h4>
<p style="margin-top:5px;">"{{information.slogan}}"</p>
<p style="margin-top:5px;">{{ information.aboutUs|raw }}</p>
{% if information.address != '' %}
<p style="margin-top:10px;">{{ information.address|raw }}</p>
{% endif %}
<p style='margin-top:10px'><i class='fa fa-phone'></i> {{information.phones}} <i class='fa fa-envelope'></i> {{information.email}}</p>
{% if information.instagram != '' %}
<a href="{{information.instagram}}" target="_blank" >
<img style="width:30px;height: 30px;;margin-top: 10px;margin-left:5px;cursor:pointer;" src="{{ asset('images/icon_instagram.png') }}">
</a>
{% endif %}
{% if information.facebook %}
<a href="{{information.facebook}}" target="_blank" >
<img style="width:30px;height: 30px;margin-top: 10px;float:left;cursor:pointer;" src="{{ asset('images/icon_facebook.png') }}">
</a>
{% endif %}
</div>
{% if webSetting and webSetting.brandMenuFeatured == '1' %}
<div class='col'>
<h4><b>Marcas</b></h4>
<br>
<ul>
{% for item in brands %}
<li style="margin-bottom: 8px;">
<a style="color: #4e5768;" href="{{ path('frontend_product', {'brand': item.brandId, slug:slug}) }}">
{{ item.name }}
</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
<div class='col'>
<h4><b>Información</b></h4>
<br>
<ul>
{% for item in policies %}
<li style="margin-bottom: 8px;">
<a style="color: #4e5768;" href="{{ path('footer_policy', {'id': item.policyId, slug:slug}) }}">
{{ item.name }}
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</footer>