{% set media_ourshop = app_get_media_image_by_code('media_our_shop', sylius.localeCode, sylius.channel.code) %}
{% if media_ourshop is not null %}
<section class="bloc-collection-index py-lg-4 py-md-3 pt-3 pb-2 my-1">
<div class="container px-0">
<div class="row no-gutters bg-blue-opac mt-md-3 ">
<div class="col-md-7">
<div class="h-100 object-fit-img">
{% if media_ourshop.path is not null %}
{% set path_shop = media_ourshop.path %}
{% else %}
{% set path_shop = asset('images/img_boutique.jpg') %}
{% endif %}
<img src="{{path_shop}}" alt="">
</div>
</div>
<div class="col-md-5 has-bg-chouette">
<div class="pl-lg-5 pl-md-4 px-md-3 px-4 pt-md-5 pt-4 pb-sm-4 pb-4 d-flex align-items-center h-100">
<div class="max-container-txt text-left m-auto m-md-0">
<h2 class="title-medium title-medium-mobile text-white text-center text-md-left"> {{ media_ourshop.name }}</h2>
<div class="texte-gris-mobile font-seize text-center text-md-left">
{% if media_ourshop.content is not null %}
{{ media_ourshop.content|raw }}
{% endif %}
</div>
{% if media_ourshop.link is not null %}
<div class="mt-1 pt-3 pb-0 text-center text-md-left">
<a href="{{ media_ourshop.link }}" class="btn-link transition-bgcolor minw-sm bg-white-link" title="{{'app.common.learn_more'|trans}}" >{{'app.common.learn_more'|trans}}</a>
</div>
{% endif %}
</div>
</div>
</div>
</div>
</div>
</section>
{% endif %}