<style>
.img-card{
border-top-right-radius: 10px !important;
border-top-left-radius: 10px !important;
height: 250px !important;
width: 100% !important;
}
.card{
background-color: #fff !important; margin: 10px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);border-radius: 10px !important;
}
.card-body{
position: relative; /* âÂÂÂÂ
OBLIGATOIRE */
padding: 20px !important;
z-index: 10;
margin-top: -100px;
height: 230px;
background-color: #fff;
border-bottom-left-radius: 10px !important;
border-bottom-right-radius: 10px !important;
}
.titre-formation{
font-weight: bold; font-size: 16px !important; font-family: arial; color: #051a53;
}
.info-sup{
font-family: arial; font-size: 14px;
}
.lien-plus:hover{
color: #051a53;
}
.back_formation{
background-image: url("{{ asset('public/inter/remise_diplome_cimef.png') }}");
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
padding-bottom: 60px;
padding-top: 60px;
}
</style>
<!--
<section style="background-color: #051a53; padding-top: 60px; padding-bottom: 60px;">
-->
<section class="back_formation">
<div class="fond-formation"></div>
<div data-elementor-type="wp-page" data-elementor-id="405" class="elementor elementor-405">
<section class="elementor-section elementor-top-section elementor-element elementor-element-574990e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="574990e" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-120 elementor-top-column elementor-element elementor-element-eabb843" data-id="eabb843" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-a45a98c elementor-widget elementor-widget-gimont_elementor_heading" data-id="a45a98c" data-element_type="widget" data-widget_type="gimont_elementor_heading.default">
<div class="elementor-widget-container">
<div class="ova-heading template_1" style="padding-left: 50px; padding-right: 50px;">
<a href="{{ path('front.seminaire.internationaux') }}">
<span class="subtitle" style="color: #ff6600 !important;">Formations</span>
</a>
<div style="margin-top: -20px !important;"></div>
<span class="line" style="color: #ff6600;"></span>
<h2 class="title" style="font-size: 35px; color: #fff; font-family: arial !important;">Nos prochaines sessions de formation</h2>
<div class="hauteur" style="height: 50px !important;"></div>
<div class="row">
{% if formations != null %}
{% for formation in formations %}
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="card">
<div style="z-index: 1;">
{% if formation.image == null or formation.image == 'no-file' %}
<a href="{{ path('front.seminaire.inter.detail',{'slug': formation.slug, 'id': formation.id})}}" aria-label="Event Thumbnail">
<img loading="lazy" width="600" height="300" src="https://demo.ovathemewp.com/gimont/wp-content/uploads/2023/06/event-01-600x400.jpg"
class="attachment-ovaev_event_thumbnail size-ovaev_event_thumbnail wp-post-image" alt="{{ formation.nom }}" decoding="async"
srcset="https://demo.ovathemewp.com/gimont/wp-content/uploads/2023/06/event-01-600x400.jpg 600w, https://demo.ovathemewp.com/gimont/wp-content/uploads/2023/06/event-01-450x300.jpg 450w" sizes="(max-width: 600px) 100vw, 600px" />
</a>
{% else %}
<a href="{{ path('front.seminaire.inter.detail',{'slug': formation.slug, 'id': formation.id})}}" aria-label="Event Thumbnail">
<img loading="lazy" src="{{ asset('public/uploads/images/formations/' ~ formation.image) }}"
class="img-card attachment-ovaev_event_thumbnail size-ovaev_event_thumbnail wp-post-image" alt="{{ formation.nom }}" decoding="async"
srcset="{{ asset('public/uploads/images/formations/' ~ formation.image) }}" sizes="(max-width: 600px) 100vw, 600px" />
</a>
{% endif %}
</div>
<div class="card-body">
<div style="height: 70px;">
<h2 class="titre-formation">
{% if formation.nom |length > 100 %}
{{ formation.nom |striptags|slice(0, 110) ~ '...' }}
{% else %}
{{ formation.nom }}
{% endif %}
</h2>
</div>
<div style="margin-top: 20px;">
<span class="info-sup">
<b><i class="fas fa-calendar icon_event" style="color: #ff6600;" aria-hidden="true"></i></b>
: {{ formation.dates_session}} {{ annee }}
</span>
</div>
<div style="margin-top: 5px;">
<span class="info-sup">
<b><i class="fas fa-map-marker-alt icon_event" style="color: #ff6600;" aria-hidden="true"></i></b>
: {{ formation.vilnom }}, {{ formation.pays }}
</span>
</div>
<div style="float: right;">
<a href="{{ path('front.seminaire.inter.detail',{'slug': formation.slug, 'id': formation.id})}}" class="lien-plus">En savoir plus</a>
</div>
</div>
</div>
</div>
{% endfor %}
{% endif %}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</section>