{% sw_extends '@parent/storefront/layout/footer/footer.html.twig' %}
{% block layout_footer_inner_container %}
<footer class="footer-main d-print-none">
<div class="container-fluid limited">
{% block layout_footer_navigation %}
{% block layout_footer_navigation_columns %}
<div class="row d-flex flex-wrap justify-content-center align-items-center">
<div class="col-12 col-xl-10 d-lg-flex flex-wrap">
{% if context.salesChannel.customFields.custom_footer_block_menu %}
<div class="footer-menu mb-4 mb-lg-0 d-lg-flex align-items-center">
{{ context.salesChannel.customFields.custom_footer_block_menu|raw }}
</div>
{% endif %}
{% if context.salesChannel.customFields.custom_footer_block_scl_linkedin or context.salesChannel.customFields.custom_footer_block_scl_instagram or context.salesChannel.customFields.custom_footer_block_scl_pinterest or context.salesChannel.customFields.custom_footer_block_scl_facebook %}
<ul class="footer-social-channels d-flex justify-content-center justify-content-lg-end ml-lg-auto">
{% if context.salesChannel.customFields.custom_footer_block_scl_linkedin %}
<li><a href="{{ context.salesChannel.customFields.custom_footer_block_scl_linkedin }}" target="_blank" title="LinkedIn" rel="noopener" class="d-flex align-items-center justify-content-center"><i class="icon-linkedin"></i></a></li>
{% endif %}
{% if context.salesChannel.customFields.custom_footer_block_scl_instagram %}
<li><a href="{{ context.salesChannel.customFields.custom_footer_block_scl_instagram }}" target="_blank" title="Instagram" rel="noopener" class="d-flex align-items-center justify-content-center"><i class="icon-instagram"></i></a></li>
{% endif %}
{% if context.salesChannel.customFields.custom_footer_block_scl_pinterest %}
<li><a href="{{ context.salesChannel.customFields.custom_footer_block_scl_pinterest }}" target="_blank" title="Pinterest" rel="noopener" class="d-flex align-items-center justify-content-center"><i class="icon-pinterest"></i></a></li>
{% endif %}
{% if context.salesChannel.customFields.custom_footer_block_scl_facebook %}
<li><a href="{{ context.salesChannel.customFields.custom_footer_block_scl_facebook }}" target="_blank" title="Facebook" rel="noopener" class="d-flex align-items-center justify-content-center"><i class="icon-facebook"></i></a></li>
{% endif %}
</ul>
{% endif %}
</div>
</div>
{% endblock %}
{% endblock %}
</div>
</footer>
{% endblock %}