<section class="slice focus-job">
<div class="fluid-grid">
<div class="row">
<div class="col-12 lg-col-4 mb-8 lg:mb-0">
<h2 class="title title--XL text-violet mb-6 md:mb-8">
{% if slice.title is defined and slice.title is not null %}
{{ slice.title|highlight_word|raw }}
{% endif %}
</h2>
<div class="paragraph paragraph--M-bis focus-job__desc">
{% if slice.description is defined and slice.description is not null %}
{{ slice.description|raw }}
{% endif %}
</div>
<div class="focus-job__square mt-4">
<img width="252" heght="37" class="mb-8 lazyload" data-src="/assets/front/logo-CGF-campus.png"
alt="CGF Campus"/>
<p class="text-22 md:text-24 md:pr-7 leading-tight font-bold">Des formations sur mesure pour les <span class="text-orange">professionnels du commerce de gros</span></p>
<a href="https://www.cgicampus.fr" target="_blank" rel="nofollow" class=" button button--arrow button--rounded button--violet-dark mt-6">
<span class="font-weight-bold">Découvrez les formations</span>
<svg width="12" height="12" class="picto icon ml-2 flex-shrink-0">
<use href="#icon-arrow" xlink:href="#icon-arrow"></use>
</svg>
</a>
</div>
</div>
{% if slice.firstPortrait is defined and slice.firstPortrait is not null %}
{% set firstportrait = slice.firstPortrait %}
{% set secondportrait = slice.secondPortrait %}
{% else %}
{% set firstportrait = find_2_last_portraits()[0] %}
{% set secondportrait = find_2_last_portraits()[1] %}
{% endif %}
<div class="col-12 md-col-6 lg-col-4 lg:pt-40 focus-job__center">
{% include 'front/partials/cards/portrait.html.twig' with {portrait: firstportrait, portraitProperties: firstportrait.contentProperties} %}
</div>
<div class="col-12 md-col-6 lg-col-4 pt-6 md:pt-0 lg:pt-4">
{% include 'front/partials/cards/portrait.html.twig' with {portrait: secondportrait, portraitProperties: secondportrait.contentProperties} %}
</div>
</div>
</div>
</section>