{% extends 'front.html.twig' %}
{% block title %}Nos partenaires | CIMEF-INTERNATIONAL{% endblock %}
{% block styleSheets %}
<style id='wp-emoji-styles-inline-css' type='text/css'>
#map {
height: 500px;
width: 100%;
}
.title{
font-family: arial;
font-weight: bolder;
font-size: 18px !important;
text-transform: uppercase !important;
}
.wrap_header_banner .overlay-slider {
position: absolute;
top: 0;
left: 0;
padding-top: 30px;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6392156863);
}
.card_centre{
/*border: 1px solid #ededed;*/
border-radius: 5px;
margin: 10px;
border: 1px solid #ededed;
}
.card_centre:hover{
/*box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
}
.text-center{
text-align: center;
padding: 10px;
margin-top: -10px;
}
.titre-formation{
font-weight: bold;
font-size: 16px !important;
font-family: arial;
color: #051a53;
}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
{% endblock %}
{% block mapjs %}
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"/>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
{% endblock %}
{% block body %}
{% include 'section/navbar.html.twig' %}
<div class="wrap_header_banner" style="height: 200px; background: url({{ asset('public/inter/wp-content/uploads/2023/06/header-banner.jpg')}});">
<div class="overlay-slider">
<div class="row_site">
<div class="container_site">
<div class="cover_color"></div>
<div class="header_banner_el">
<div class="header_breadcrumbs">
<div id="breadcrumbs">
<ul class="breadcrumb">
<li><a href="{{ path('front.inter.index') }}" style="color: #fff!important;" title="accueil">Accueil</a></li>
<li class="li_separator"><span class="separator"><i class="ovaicon-next" style="color: #fff!important;"></i></span></li>
<li style="color: #fff!important;">Nos partenaires</li>
</ul>
</div>
</div>
<h1 class="header_title" style="color: #fff!important;">Nos partenaires </h1>
</div>
</div>
</div>
</div>
</div>
<div style="padding-top: 50px; padding-bottom: 50px;" 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;">
<span class="line"></span>
<span class="subtitle">Nos partenaires</span>
<!--
<h2 class="title" style="font-size: 28px;">Nos centres de formations</h2>
<p class="desc" style="margin-top: -20px;">
Présent à Abidjan, Paris, Dakar et Casablanca, le CIMEF vous accompagne dans vos projets de formation, de reconversion professionnelle ou de
développement d’entreprise.Nos équipes locales sont disponibles pour vous conseiller et répondre à toutes vos questions sous 24h.</p>
-->
<br>
{% if groupes is not empty %}
{% for pays, partenaires in groupes %}
<h3 class="mt-4 title">{{ pays }}</h3><div style="border: 1px solid #ff6600; display: inline-block, width: 100%;"></div>
<div class="row" style="margin-bottom: 20px; margin-top: 20px;">
{% for partenaire in partenaires %}
<div class="col-lg-2 col-md-3 col-sm-6 col-12 mb-4">
<a href="#">
<div class="card_centre">
{% if partenaire.imagepart is not null %}
<div style="width: 150px; height: 100px; background-position: center center; background-repeat: no-repeat;
background-image: url('{{ asset('public/uploads/images/partenaires/' ~ partenaire.imagepart) }}'); background-size: contain;">
</div>
{% else %}
<img
loading="lazy" title="logo cimef-international"
style="width: 100%; height: 150px; object-fit: cover;"
src="{{ asset('public/inter/logo-inter.jpg') }}"
alt="Logo CIMEF INTERNATIONAL"
>
{% endif %}
<!--
<div class="text-center mt-2">
<h6 class="titre-formation">{{ partenaire.nompart }}</h6>
</div>
-->
</div>
</a>
</div>
{% endfor %}
</div><hr>
{% endfor %}
{% else %}
<p>Aucun partenaire disponible.</p>
{% endif %}
</div>
</div>
</div>
</div>
</div>
</section>
</div>
{% include 'section/footer.html.twig' %}
{% endblock %}