@charset "UTF-8";
/*
sass/
|
|– abstracts/
|   |– _variables.scss                  # Sass Variables
|   |– _mixins.scss                     # Sass Mixins
|   |– _keyframes.scss                  # Sass Keyframes animations
|
|– vendor/
|   |– 
|
|– base/
|   |– _reset.scss                      # Reset/normalize
|   |– _typography.scss                 # Typography rules
|   |– _global.scss                     # Global rules
|
|– layout/
|   |– _wrapper.scss                    # Wrapper styles
|   |– _grid.scss                       # Grid styles
|   |– _row.scss                        # Row styles
|
|– components/
|   |– _menu.scss                       # Menu styles
|   |– _footer.scss                     # Footer styles
|   |– _header.scss                     # Header styles
|   |– _banner.scss                     # Banner styles
|   |- _breadcrumb.scss                 # Breadcrumb styles
|   |- _sidebar.scss                    # Sidebar styles
|   |- _cookies.scss                    # Cookies pop-up styles
|
|– template/
|   |– _uikit.scss                      # Uikit specific styles
|   |– _page-texte-landing-page.scss    # Landing page specific styles
|   |– _page-texte-repertoires.scss     # Page texte - Répertoires specific styles
|   |– _page-texte-equipe.scss          # Page texte - Équipe specific styles
|   |– _page-texte-partenaires.scss     # Page texte - Partenaires specific styles
|   |– _page-texte-evenements.scss      # Page texte - Événements specific styles
|   |– _page-texte-evenements-fiche.scss# Page texte - Événements fiche specific styles
|   |– _page-texte-nouvelles.scss       # Page texte - Nouvelles specific styles
|   |– _page-texte-nouvelle-fiche.scss  # Page texte - Nouvelles specific styles
|   |– _page-texte-vraiOuFaux.scss      # Page texte - Vrai ou faux specific styles
|   |– _page-texte-documents.scss       # Page texte - Documents specific styles
|   |– _page-texte-webinaires.scss      # Page texte - Webinaires specific styles
|   |– _page-texte-balados.scss         # Page texte - Balados specific styles
|   |– _page-texte-communiques.scss     # Page texte - Communiqués specific styles
|   |– _page-texte-communique-fiche.scss# Page texte - Communiqué fiche specific styles
|   |– _espace-membres.scss             # Espace membres specific styles
|   |– _espace-membres-individu.scss    # Espace membres - Demande d'accès specific styles
|   |– _espace-membres-entreprise.scss  # Espace membres - Adhésion d'entreprise specific styles
|
|– page/
|   |– _error-404.scss                  # 404 error page styles
|   |– _accueil.scss                    # Accueil page styles
|   |– _page-texte.scss                 # Page texte styles
|   |- _nous-joindre.scss               # Nous joindre styles
|
|– themes/
|   |– _theme.scss                      # Default theme
    |- buttons/
        |- _buttons.scss                # Buttons styles
    |- fields/
        |- _forms.scss                  # Form styles
    |- links/
        |- _icons.scss                  # Icons styles
        |- _links.scss                  # Links styles
|
| – site.scss                           # Main Sass input file
*/
/* 02- IMPORTATION DES MIXINS */
/*********************
BREAKPOINTS
*********************/
/*
* HoverMobile
* Hover option with media query for mobile device
* Prevent hover from showing on no pointer devide
*/
/*
* Only browser css
*
*/
/*
Usage:
@include target-metro {
  color: cyan;
}
*/
@-webkit-keyframes loading-orbit1 {
  0% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(350deg);
    transform: rotate(350deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(495deg);
    transform: rotate(495deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(710deg);
    transform: rotate(710deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(855deg);
    transform: rotate(855deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit1 {
  0% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(350deg);
    transform: rotate(350deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(495deg);
    transform: rotate(495deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(710deg);
    transform: rotate(710deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(855deg);
    transform: rotate(855deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading-orbit2 {
  0% {
    -webkit-transform: rotate(215deg);
    transform: rotate(215deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(340deg);
    transform: rotate(340deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(485deg);
    transform: rotate(485deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(700deg);
    transform: rotate(700deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(845deg);
    transform: rotate(845deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(935deg);
    transform: rotate(935deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit2 {
  0% {
    -webkit-transform: rotate(215deg);
    transform: rotate(215deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(340deg);
    transform: rotate(340deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(485deg);
    transform: rotate(485deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(700deg);
    transform: rotate(700deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(845deg);
    transform: rotate(845deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(935deg);
    transform: rotate(935deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading-orbit3 {
  0% {
    -webkit-transform: rotate(205deg);
    transform: rotate(205deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(475deg);
    transform: rotate(475deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(690deg);
    transform: rotate(690deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(835deg);
    transform: rotate(835deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(925deg);
    transform: rotate(925deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit3 {
  0% {
    -webkit-transform: rotate(205deg);
    transform: rotate(205deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(475deg);
    transform: rotate(475deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(690deg);
    transform: rotate(690deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(835deg);
    transform: rotate(835deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(925deg);
    transform: rotate(925deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading-orbit4 {
  0% {
    -webkit-transform: rotate(195deg);
    transform: rotate(195deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(320deg);
    transform: rotate(320deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(465deg);
    transform: rotate(465deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(680deg);
    transform: rotate(680deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(825deg);
    transform: rotate(825deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(915deg);
    transform: rotate(915deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit4 {
  0% {
    -webkit-transform: rotate(195deg);
    transform: rotate(195deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(320deg);
    transform: rotate(320deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(465deg);
    transform: rotate(465deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(680deg);
    transform: rotate(680deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(825deg);
    transform: rotate(825deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(915deg);
    transform: rotate(915deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading-orbit5 {
  0% {
    -webkit-transform: rotate(185deg);
    transform: rotate(185deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(310deg);
    transform: rotate(310deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(455deg);
    transform: rotate(455deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(670deg);
    transform: rotate(670deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(815deg);
    transform: rotate(815deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(905deg);
    transform: rotate(905deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit5 {
  0% {
    -webkit-transform: rotate(185deg);
    transform: rotate(185deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(310deg);
    transform: rotate(310deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(455deg);
    transform: rotate(455deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(670deg);
    transform: rotate(670deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(815deg);
    transform: rotate(815deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(905deg);
    transform: rotate(905deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes plusSpin1 {
  from {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
  }
  to {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
  }
}
@keyframes plusSpin1 {
  from {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
  }
  to {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
  }
}
@-webkit-keyframes plusSpin2 {
  from {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
  }
}
@keyframes plusSpin2 {
  from {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*
* Typography file
* 01. Import all necessary font
* 02. All text styles
*/
/*@font-face {
    font-family: 'Minnerva-Bold';
    src: url('./fonts/minnerva/minnerva-bold/minnerva-bold.eot'); //IE9+ Compat Modes
    src: url('./fonts/minnerva/minnerva-bold/minnerva-bold.eot#iefix') format('embedded-opentype'), //IE6-IE8 
        url('./fonts/minnerva/minnerva-bold/minnerva-bold.woff2') format('woff2'), //Super modern browsers 
        url('./fonts/minnerva/minnerva-bold/minnerva-bold.woff') format('woff'), //Modern browsers 
        url('./fonts/minnerva/minnerva-bold/minnerva-bold.ttf')  format('truetype'), //Safari, Android, iOS 
        url('./fonts/minnerva/minnerva-bold/minnerva-bold.svg#Minnerva-Bold') format('svg'); //Legacy iOS 
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}*/
h1, h2, h3, h4, h5, p, ol, ul, li, a, button,
* {
  font-weight: inherit;
  margin: 0;
  color: inherit;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.bold, strong {
  font-weight: 700 !important;
}

.semibold {
  font-weight: 500 !important;
}

.light {
  font-weight: 100 !important;
}

.underline {
  text-decoration: underline;
}

h1, .h1 {
  font-family: var(--title), sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 32px;
  font-size: 2rem;
}
@media (min-width: 600px) {
  h1, .h1 {
    font-size: 48px;
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 72px;
    font-size: 4.5rem;
  }
}

h2, .h2 {
  font-family: var(--title), sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30px;
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

h3, .h3 {
  font-family: var(--title), sans-serif;
  font-weight: 700;
  font-size: 25px;
  font-size: 1.5625rem;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

h4, .h4 {
  font-family: var(--title), sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

h5, .h5 {
  font-family: var(--title), sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  h5, .h5 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.btn, button {
  font-family: var(--text), sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
}
.btn *, button * {
  font-family: var(--title), sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

p, .p {
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  p, .p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p1 {
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .p1 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p1 * {
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .p1 * {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

small, .small {
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  font-size: 0.625rem;
}
@media (min-width: 768px) {
  small, .small {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

a, .link {
  font-family: var(--text), sans-serif;
  text-decoration: underline;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  a, .link {
    font-size: 16px;
    font-size: 1rem;
  }
}

.lm {
  font-family: var(--text), sans-serif;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .lm {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.lm-spec {
  font-family: var(--text), sans-serif;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .lm-spec {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.lsm {
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .lsm {
    font-size: 16px;
    font-size: 1rem;
  }
}

.lu {
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: italic;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .lu {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.lm-sb {
  font-family: var(--text), sans-serif;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
}

.lmf {
  font-family: var(--text), sans-serif;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
}

.lsmf {
  font-family: var(--text), sans-serif;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
}

.ls {
  text-decoration: underline;
}
@-moz-document url-prefix() {
  .ls {
    text-decoration-thickness: 1.5px;
  }
}
@media (min-width: 768px) {
  @-moz-document url-prefix() {
    .ls {
      text-decoration-thickness: 2px;
    }
  }
}

.lf {
  font-family: var(--text), sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  text-decoration: none;
}

.lf-sm {
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  font-size: 0.875rem;
  text-decoration: none;
}

.field label, .field .label {
  font-family: var(--text), sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .field label, .field .label {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.field input, .field textarea, .field select {
  font-family: var(--text), sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}
.field select option {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  font-family: var(--text), sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}
.field.radio label, .field.checkbox label {
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .field.radio label, .field.checkbox label {
    font-size: 16px;
    font-size: 1rem;
  }
}

::-webkit-input-placeholder {
  /* Most modern browsers support this now. */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
}

::-moz-placeholder {
  /* Most modern browsers support this now. */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
}

:-ms-input-placeholder {
  /* Most modern browsers support this now. */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
}

::-ms-input-placeholder {
  /* Most modern browsers support this now. */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
}

::placeholder {
  /* Most modern browsers support this now. */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
}

/*
* Prevent site from scrolling left and right if there is some overflow items
*/
html {
  overflow-x: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  background-color: #FFFFFF;
}
html::first-letter {
  text-transform: capitalize;
}
html.hidden {
  overflow: hidden;
}

body {
  overflow-x: hidden;
}

[v-cloak] {
  display: none;
}

main {
  background-color: #FFFFFF;
}

header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}

/*
* By default align all image ay bottom. Prevent some weird bottom line in some browser.
*/
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/*
* Most component and dom elment will include padding
*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*
* Sync with a js fonction, this will prevent animation when page resizing. Better user expert less laggy
*/
.resize-animation-stopper * {
  -webkit-animation: none !important;
  animation: none !important;
  -webkit-transition: none !important;
  transition: none !important;
}

/*
* Removing default padding indentation to list.
*/
ul, ol, li {
  padding: 0;
  list-style: none;
}

/*
* Changing color of selected element
*/
::-moz-selection {
  background: #0985C9;
}

::selection {
  background: #0985C9;
}

/*
* Changing color of focus element
*/
/* Remove outline for non-keyboard :focus */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Optional: Customize .focus-visible */
:focus-visible {
  outline: 3px solid #0985C9;
  outline-offset: 3px;
}

/*
* Changing color of scrollbar
*/
/* For MacOS default scrollbar style */
/*body {
    scrollbar-width: thin;
    scrollbar-color: $black $white;
}
// Width
body::-webkit-scrollbar {
    width: 10px;
}

// Track
body::-webkit-scrollbar {
    background-color: $white;
}

// Handle
body::-webkit-scrollbar-thumb {
    background: $black; 
    border-radius: 0;
}

// Handle on hover
body::-webkit-scrollbar-thumb:hover {
    background: $secondary;
}

// Set button(top and bottom of the scrollbar)
body::-webkit-scrollbar-button {
    display:none;
}*/
.form {
  padding: 40px;
  background-color: #e1e4e6;
}
.form--callToAction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .form {
    padding: 40px 20px;
  }
}

.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .section {
    display: block;
  }
}

.field {
  margin: 0 0 20px 0;
}
.field--full {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.field--half {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.field--half:first-child {
  margin-right: 20px;
}
.field.radio > div:not(:last-child), .field.checkbox > div:not(:last-child) {
  margin-bottom: 20px;
}
.field.radio label, .field.checkbox label {
  cursor: pointer;
}
.field input.input-validation-error,
.field select.input-validation-error,
.field textarea.input-validation-error, .field.error input, .field.error select, .field.error textarea {
  border-color: #ff0505;
}
.field span.error,
.field span.field-validation-error {
  color: #ff0505;
  display: block;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .field--half {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .field--half:first-child {
    margin-right: 0;
  }
}

.validation-summary-errors {
  background-color: #ffcccc;
  color: #ff0505;
  padding: 20px;
  margin-bottom: 20px;
}

label {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: inline;
  position: relative;
  color: #464343;
  z-index: 1;
}
label.checkbox {
  display: inline;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  margin: 5px 0;
}
@media (max-width: 600px) {
  label.checkbox {
    width: auto;
  }
  label.checkbox input {
    width: auto;
  }
}

input,
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  -webkit-transition: all 300ms cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 300ms cubic-bezier(0.58, 0, 0.32, 1);
  border: solid 1px #1c2b39;
  border-radius: 10px;
  padding: 10px 20px 10px 20px;
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
  color: #272525;
  width: 100%;
  margin-top: 5px;
}
input[type=checkbox],
select[type=checkbox],
textarea[type=checkbox] {
  position: relative;
  min-width: auto;
  display: inline-block;
  border-radius: 4px;
  width: 16px;
  height: 16px;
}
input[type=checkbox]::after,
select[type=checkbox]::after,
textarea[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #0033A0;
  width: 11px;
  height: 11px;
  border-radius: 2px;
  opacity: 0;
  -webkit-transition: 0.1s cubic-bezier(0.35, 0, 0, 1);
  transition: 0.1s cubic-bezier(0.35, 0, 0, 1);
}
input[type=checkbox]:checked::after,
select[type=checkbox]:checked::after,
textarea[type=checkbox]:checked::after {
  opacity: 100%;
}
input[type=radio],
select[type=radio],
textarea[type=radio] {
  position: relative;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  vertical-align: text-bottom;
  margin-right: 10px;
  /* smartphones, touchscreens */
}
input[type=radio]::after,
select[type=radio]::after,
textarea[type=radio]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #0033A0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: 0.1s cubic-bezier(0.35, 0, 0, 1);
  transition: 0.1s cubic-bezier(0.35, 0, 0, 1);
}
@media (pointer: fine) {
  input[type=radio]:hover::after,
  select[type=radio]:hover::after,
  textarea[type=radio]:hover::after {
    opacity: 100%;
  }
}
input[type=radio]:checked::after,
select[type=radio]:checked::after,
textarea[type=radio]:checked::after {
  opacity: 100%;
}
@media (max-width: 768px) {
  input,
  select,
  textarea {
    padding: 10px;
  }
}

select {
  padding-right: 45px;
  background-image: url(/assets/icons/chevron-down.svg);
  background-repeat: no-repeat;
  background-position: center right 12px;
  background-size: 18px;
}

textarea {
  z-index: 0;
  min-height: 200px;
  max-width: 100%;
  padding: 20px;
  resize: vertical;
}
@media (max-width: 768px) {
  textarea {
    padding: 10px;
  }
}

::-webkit-input-placeholder {
  /* Most modern browsers support this now. */
  color: #464343;
}

::-moz-placeholder {
  /* Most modern browsers support this now. */
  color: #464343;
}

:-ms-input-placeholder {
  /* Most modern browsers support this now. */
  color: #464343;
}

::-ms-input-placeholder {
  /* Most modern browsers support this now. */
  color: #464343;
}

::placeholder {
  /* Most modern browsers support this now. */
  color: #464343;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #464343;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #464343;
  opacity: 1;
}

.btn,
button {
  padding: 10px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  background-color: #1c2b39;
  color: #FFFFFF;
  cursor: pointer;
  display: block;
  text-align: center;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .btn:hover,
  button:hover {
    background-color: #0033A0;
  }
}
.btn:active,
button:active {
  background-color: #0033A0;
}
.btn--secondary,
button--secondary {
  background-color: #0985C9;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .btn--secondary:hover,
  button--secondary:hover {
    background-color: #FFFFFF;
    color: #0033A0;
  }
}
.btn--secondary:active,
button--secondary:active {
  background-color: #FFFFFF;
  color: #0033A0;
}
.btn--popup,
button--popup {
  background-color: #153F96;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .btn--popup:hover,
  button--popup:hover {
    background-color: #1c2b39;
  }
}
.btn--popup:active,
button--popup:active {
  background-color: #1c2b39;
}

.btn-menu {
  padding: 6px 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  border-radius: 0;
  text-decoration: none;
  color: #FFFFFF;
  cursor: pointer;
  display: block;
  text-align: center;
  -webkit-transition: 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.btn-menu:active, .btn-menu.active {
  background-color: #1c2b39;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .btn-menu:active:hover, .btn-menu.active:hover {
    background-color: #1c2b39;
  }
}
.btn-menu--aluqc {
  background-color: #0033A0;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .btn-menu--aluqc:hover {
    background-color: #0985C9;
  }
}
.btn-menu--ceial {
  background-color: #f16423;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .btn-menu--ceial:hover {
    background-color: #f18655;
  }
}

.text-block a:not(.btn), .link {
  color: #0033A0;
  -webkit-transition: all 0.3s cubic-bezier(0.35, 0, 0, 1);
  transition: all 0.3s cubic-bezier(0.35, 0, 0, 1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .text-block a:not(.btn):hover, .link:hover {
    color: #0985C9;
  }
}

.text-block .btn a {
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .text-block .btn a:hover {
    color: #FFFFFF;
  }
}

.lm {
  color: #1c2b39;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  display: block;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .lm:hover {
    color: #0033A0;
  }
}

.lm-spec {
  color: #1c2b39;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .lm-spec:hover {
    color: #0033A0;
  }
}

.lsm {
  color: #1c2b39;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  display: block;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .lsm:hover {
    color: #1c2b39;
  }
}

.lm-sb {
  color: #1c2b39;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  display: block;
  /* smartphones, touchscreens */
}
.lm-sb.active {
  color: #0033A0;
}
@media (pointer: fine) {
  .lm-sb:hover {
    color: #0033A0;
  }
}
.lm-sb.ceial {
  /* smartphones, touchscreens */
}
.lm-sb.ceial.active {
  color: #0033A0;
}
@media (pointer: fine) {
  .lm-sb.ceial:hover {
    color: #f16423;
  }
}

.lu {
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .lu:hover {
    color: #0033A0;
  }
}
.lu.active {
  color: #0033A0;
}

.ls {
  -webkit-transition: 0.3s cubic-bezier(0.35, 0, 0, 1);
  transition: 0.3s cubic-bezier(0.35, 0, 0, 1);
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .ls:hover {
    color: #1c2b39;
  }
}
.ls:active {
  color: #1c2b39;
}

.lmf {
  color: #8a9297;
  -webkit-transition: 0.3s cubic-bezier(0.35, 0, 0, 1);
  transition: 0.3s cubic-bezier(0.35, 0, 0, 1);
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .lmf:hover {
    color: #0033A0;
  }
}
.lmf:active {
  color: #0033A0;
}

.lsmf {
  color: #8a9297;
  -webkit-transition: 0.3s cubic-bezier(0.35, 0, 0, 1);
  transition: 0.3s cubic-bezier(0.35, 0, 0, 1);
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .lsmf:hover {
    color: #0033A0;
  }
}
.lsmf:active {
  color: #0033A0;
}

header.open .lm {
  color: #FFFFFF;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  header.open .lm:hover {
    color: #0985C9;
  }
}
header.open .lm:active {
  color: #0985C9;
}
header.open .lsm {
  color: #FFFFFF;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  header.open .lsm:hover {
    color: #0985C9;
  }
}
header.open .lsm:active {
  color: #0985C9;
}
header.open .lu {
  color: #FFFFFF;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  header.open .lu:hover {
    color: #0985C9;
  }
}
header.open .lu:active {
  color: #0985C9;
}

.btn-plus {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  background: #0033A0;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s cubic-bezier(0.35, 0, 0, 1);
  transition: all 0.5s cubic-bezier(0.35, 0, 0, 1);
  /* smartphones, touchscreens */
}
.btn-plus span {
  display: block;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 25px;
  height: 3px;
  background: #FFFFFF;
  -webkit-transition: all 0.5s cubic-bezier(0.35, 0, 0, 1);
  transition: all 0.5s cubic-bezier(0.35, 0, 0, 1);
  -webkit-transform-origin: center;
  transform-origin: center;
  border-radius: 6px;
}
.btn-plus span:first-child {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
@media (pointer: fine) {
  .btn-plus:hover {
    background: #0985C9;
  }
  .btn-plus:hover span:first-child {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(270deg);
    transform: translateX(-50%) translateY(-50%) rotate(270deg);
  }
  .btn-plus:hover span:last-child {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
  }
}
.btn-plus--secondary {
  background: #f16423;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .btn-plus--secondary:hover {
    background: #f18655;
  }
}

html {
  color: #1c2b39;
  background-color: #FFFFFF;
}
html.is-animating {
  cursor: progress;
}

/*
* Text block format
*/
.text-block > * {
  margin: 20px 0;
}
@media (max-width: 768px) {
  .text-block > * {
    margin: 15px 0;
  }
}
.text-block--left {
  text-align: left;
}
.text-block--right {
  text-align: right;
}
.text-block--center {
  text-align: center;
}
.text-block > :first-child {
  margin-top: 0;
}
.text-block > :last-child {
  margin-bottom: 0;
}
.text-block h2,
.text-block h3 {
  margin: 40px 0 20px;
}
.text-block h4,
.text-block h5 {
  margin: 30px 0 20px;
}
.text-block p {
  margin: 20px 0;
}
.text-block a.btn--center {
  display: block;
  margin: 0 auto;
}
.text-block ol {
  list-style: decimal;
  margin-left: 20px;
  padding-left: 20px;
}
.text-block ol li {
  list-style: decimal;
  padding-left: 10px;
  margin: 10px 0;
  line-height: 1.5;
}
.text-block ol li::marker {
  font-weight: 700;
}
.text-block ul {
  margin-left: 20px;
}
.text-block ul li {
  padding-left: 20px;
  margin: 10px 0;
  position: relative;
  line-height: 1.5;
}
.text-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background-color: #1c2b39;
  border-radius: 50%;
}
.text-block ul li ul {
  margin-left: 10px;
}
.text-block ul li ul li {
  padding-left: 20px;
  margin: 10px 0;
  position: relative;
}
.text-block ul li ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background-color: #FFFFFF;
  border: 1px solid #1c2b39;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .text-block ul {
    margin-left: 10px;
  }
  .text-block ul li {
    padding-left: 20px;
  }
}
.text-block span.btn a {
  color: #FFFFFF;
  text-decoration: none;
  font-style: normal;
  font-weight: 700;
}
.text-block span.image-full img {
  width: 100%;
}
.text-block table {
  width: 100%;
  height: 100%;
  border: none;
}
.text-block table tbody {
  border: 1px solid #1c2b39;
}
.text-block table tbody tr:nth-child(odd) {
  background-color: #f18655;
}
.text-block table tbody tr:first-child {
  background-color: #f16423;
  border-bottom: 1px solid #a0451b;
}
.text-block table tbody tr td {
  border: none;
  padding: 15px;
}
.text-block table tbody tr td > * {
  margin: 0;
}
.text-block blockquote {
  background-color: #F8F8F8;
  padding: 40px 20px;
  border-left: solid 3px #0033A0;
}
.text-block hr {
  border-top: 1px solid #1c2b39;
  max-width: 200px;
}
@media (max-width: 768px) {
  .text-block iframe {
    width: 100%;
  }
}
.text-block .collapse--head > * {
  margin: 0;
}
.text-block .col2 {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}
@media (max-width: 600px) {
  .text-block .col2 {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}

/*
* Block Partenaires
*/
.bloc-partenaires {
  border-bottom: 1px solid #1c2b39;
}
.bloc-partenaires__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem 2rem;
  margin: 40px 0;
}
.bloc-partenaires__logos .bloc {
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: white;
}
.bloc-partenaires__logos .bloc img {
  max-width: 100%;
  max-height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .bloc-partenaires__logos {
    gap: 1rem;
  }
  .bloc-partenaires__logos .bloc {
    width: 200px;
  }
}

/*
* Collapse
*/
.collapse--head {
  padding: 20px;
  background-color: #1c2b39;
  color: #FFFFFF;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  /* smartphones, touchscreens */
}
.collapse--head .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.collapse--head .row h4 {
  margin: 0 60px 0 0;
}
.collapse--head .row svg {
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  width: 30px;
  min-width: 30px;
}
@media (pointer: fine) {
  .collapse--head:hover {
    background-color: #0033A0;
  }
}
.collapse--body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.collapse--body .texte {
  margin: 20px;
}
.collapse--body.text-block > * {
  margin: 20px;
}
@media (max-width: 768px) {
  .collapse--body.text-block > * {
    margin: 15px;
  }
}
.collapse--body.text-block ul {
  margin-left: 30px;
}
.collapse.ouvert > .collapse--head svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.collapse.ouvert > .collapse--body {
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
@media (max-width: 1024px) {
  .collapse--head .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .collapse--head {
    padding: 20px;
  }
  .collapse--head .row h4 {
    margin: 0 40px 0 0;
  }
  .collapse--head .row svg {
    width: 25px;
  }
  .collapse--body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .collapse--body .texte {
    margin: 20px;
  }
}

.push-top {
  margin-top: 217px;
}
@media (max-width: 950px) {
  .push-top {
    margin-top: 217px;
  }
}
@media (max-width: 950px) and (max-width: 600px) {
  .push-top {
    margin-top: 177px;
  }
}

.sm-wrapper {
  padding: 0 40px;
  max-width: 1080px;
  margin: auto;
}
@media (max-width: 600px) {
  .sm-wrapper {
    padding: 0 20px;
  }
}

.xs-wrapper {
  padding: 0 40px;
  max-width: 900px;
  margin: auto;
}
@media (max-width: 600px) {
  .xs-wrapper {
    padding: 0 20px;
  }
}

.wrapper {
  padding: 0 80px;
  margin: auto;
  max-width: 1440px;
}
@media (max-width: 1280px) {
  .wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 1280px) and (max-width: 768px) {
  .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 1280px) and (max-width: 768px) and (max-width: 600px) {
  .wrapper {
    padding: 0 20px;
  }
}

.lg-wrapper {
  margin: auto;
  max-width: 1920px;
  padding: 0 80px;
}
@media (max-width: 1280px) {
  .lg-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 1280px) and (max-width: 768px) {
  .lg-wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 1280px) and (max-width: 768px) and (max-width: 600px) {
  .lg-wrapper {
    padding: 0 20px;
  }
}

.grid {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
}
.grid--2 {
  grid-template-columns: 1fr 1fr;
}
.grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid--4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid--2, .grid--3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid--4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .grid--4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) and (max-width: 768px) and (max-width: 600px) {
  .grid {
    display: block;
  }
  .grid .grid-item:not(:last-child) {
    margin-bottom: 40px;
  }
  .grid--2, .grid--3, .grid--4 {
    display: block;
  }
  .grid--2 .grid-item:not(:last-child), .grid--3 .grid-item:not(:last-child), .grid--4 .grid-item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.row--direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.row--align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.row--align-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.row--justify-left {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.row--justify-right {
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}
.row--justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.row--equale .col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.row .col-lg-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
}
.row .col-lg-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
}
.row .col-lg-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.row .col-lg-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
}
.row .col-lg-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
}
.row .col-lg-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.row .col-lg-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
}
.row .col-lg-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
}
.row .col-lg-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
}
.row .col-lg-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
}
.row .col-lg-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
}
.row .col-lg-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.accueil {
  background-image: url(/assets/backgrounds/blue-left.png), url(/assets/images/blue-right.png);
  background-position: top 60px left, bottom 60px right;
  background-repeat: no-repeat, no-repeat;
  padding: 100px 0 0;
}
.accueil--secondary-banner {
  padding: 0 0 60px;
}
.accueil--secondary-banner .wrapper {
  width: 100%;
}
.accueil--secondary-banner .wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.accueil--services {
  padding: 0 0 100px;
}
.accueil--services .banniere {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.accueil--services .banniere img {
  width: 100%;
}
.accueil--services .conteneur {
  padding: 60px 0px 0px;
  border-top: 2px solid #1c2b39;
}
.accueil--services .conteneur--bloc .image {
  position: relative;
  margin-bottom: 20px;
}
.accueil--services .conteneur--bloc .image img {
  width: 100%;
}
.accueil--services .conteneur--bloc .image .btn-plus {
  position: absolute;
  bottom: -20px;
  right: -20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.accueil--services .conteneur--bloc .texte h3 {
  margin-bottom: 20px;
}
.accueil--services .vedette {
  margin: 60px 0 0 0;
}
.accueil--services .vedette h2 {
  margin-bottom: 40px;
  position: relative;
}
.accueil--services .vedette h2 span {
  background-color: #FFFFFF;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
.accueil--services .vedette h2::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #1c2b39;
}
.accueil--services .vedette__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.accueil--services .vedette__image {
  width: 100%;
  height: 100%;
  display: contents;
}
.accueil--alerte {
  padding: 40px 0;
  border-top: 4px solid #f16423;
  border-bottom: 4px solid #f16423;
  -webkit-box-shadow: 0 2px 8px #B2B2B2;
  box-shadow: 0 2px 8px #B2B2B2;
  margin-bottom: 100px;
}
.accueil--evenements {
  padding-bottom: 100px;
}
.accueil--evenements .evenements {
  -ms-flex-preferred-size: 55%;
  flex-basis: 55%;
  margin-right: 40px;
}
.accueil--evenements .evenements h2 {
  margin-bottom: 40px;
  position: relative;
}
.accueil--evenements .evenements h2 span {
  background-color: #FFFFFF;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
.accueil--evenements .evenements h2::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #1c2b39;
}
.accueil--evenements .evenements--bloc {
  min-height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.accueil--evenements .evenements--bloc:not(:last-child) {
  margin-bottom: 20px;
}
.accueil--evenements .evenements--bloc:nth-child(1n+1) {
  background-image: url(/assets/images/acivite-1-bleu.jpg);
}
.accueil--evenements .evenements--bloc:nth-child(2n+1) {
  background-image: url(/assets/images/acivite-2-bleu.jpg);
}
.accueil--evenements .evenements--bloc:nth-child(3n+1) {
  background-image: url(/assets/images/acivite-3-bleu.jpg);
}
.accueil--evenements .evenements--bloc .titre {
  position: absolute;
  left: 20px;
  bottom: 45px;
  color: #FFFFFF;
}
.accueil--evenements .evenements--bloc .date {
  position: absolute;
  padding-left: 20px;
  bottom: 0;
  height: 45px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.accueil--evenements .evenements--bloc .date h4 {
  margin-top: 10px;
}
.accueil--evenements .evenements--bloc .btn-plus {
  position: absolute;
  right: 10px;
  bottom: 15px;
}
.accueil--evenements .evenements .btn {
  margin: 40px auto 0;
}
.accueil--evenements .nouvelles {
  -ms-flex-preferred-size: 45%;
  flex-basis: 45%;
}
.accueil--evenements .nouvelles h2 {
  margin-bottom: 40px;
  position: relative;
}
.accueil--evenements .nouvelles h2 span {
  background-color: #FFFFFF;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
.accueil--evenements .nouvelles h2::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #1c2b39;
}
.accueil--evenements .nouvelles--bloc {
  padding: 20px;
  background-color: #1c2b39;
  color: #FFFFFF;
  display: block;
  text-decoration: none;
  -webkit-transition: 0.2s cubic-bezier(0.35, 0, 0, 1);
  transition: 0.2s cubic-bezier(0.35, 0, 0, 1);
  /* smartphones, touchscreens */
}
.accueil--evenements .nouvelles--bloc:not(:last-child) {
  margin-bottom: 20px;
}
.accueil--evenements .nouvelles--bloc h3 {
  margin-bottom: 10px;
}
@media (pointer: fine) {
  .accueil--evenements .nouvelles--bloc:hover {
    background-color: #0033A0;
  }
}
.accueil--evenements .nouvelles .btn {
  margin: 40px auto 0;
}
.accueil--force {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}
.accueil--force .image {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin-right: 40px;
}
.accueil--force .texte {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.accueil--force .texte .text-block {
  margin: 40px 0;
}
.accueil--repertoires {
  padding: 100px 0;
}
.accueil--repertoires h2 {
  margin-bottom: 40px;
  position: relative;
}
.accueil--repertoires h2 span {
  background-color: #FFFFFF;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
.accueil--repertoires h2::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #1c2b39;
}
.accueil--repertoires .conteneur {
  margin-bottom: 60px;
}
.accueil--repertoires .conteneur--bloc .image {
  margin-bottom: 20px;
}
.accueil--repertoires .conteneur--bloc .image img {
  width: 100%;
}
.accueil--repertoires .conteneur--bloc .texte .text-block {
  margin: 20px 0;
}
.accueil--repertoires .btn {
  margin: 0 auto;
}
.accueil--ecosysteme {
  padding: 100px 0;
  background-image: url(/assets/backgrounds/accueil-ecosysteme.jpg);
  background-repeat: no-repeat;
}
.accueil--ecosysteme h2 {
  margin-bottom: 40px;
  position: relative;
}
.accueil--ecosysteme h2 span {
  background-color: #e1e4e6;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
.accueil--ecosysteme h2::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #1c2b39;
}
.accueil--ecosysteme .bloc {
  padding: 40px;
  background-color: #e1e4e6;
}
.accueil--ecosysteme .bloc--liste .ecosysteme:not(:last-child) {
  margin-bottom: 40px;
}
.accueil--ecosysteme .bloc--liste .ecosysteme--image {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  margin-right: 40px;
}
.accueil--ecosysteme .bloc--liste .ecosysteme--image img {
  width: 100%;
}
.accueil--ecosysteme .bloc--liste .ecosysteme--texte {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
}
.accueil--ecosysteme .bloc--liste .ecosysteme--texte .text-block {
  margin: 10px 0;
}
.accueil--outils {
  padding-bottom: 100px;
}
.accueil--outils h2 {
  margin-bottom: 40px;
  position: relative;
}
.accueil--outils h2 span {
  background-color: #FFFFFF;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
.accueil--outils h2::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #1c2b39;
}
.accueil--outils .conteneur--bloc {
  background-color: #e1e4e6;
}
.accueil--outils .conteneur--bloc .image {
  position: relative;
}
.accueil--outils .conteneur--bloc .image img {
  width: 100%;
}
.accueil--outils .conteneur--bloc .image .btn-plus {
  position: absolute;
  bottom: -20px;
  right: -20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.accueil--outils .conteneur--bloc .texte {
  padding: 20px;
}
.accueil--outils .conteneur--bloc .texte .text-block {
  margin: 20px 0;
}
.accueil--partenaires {
  padding-bottom: 100px;
}
.accueil--partenaires h2 {
  margin-bottom: 40px;
  position: relative;
}
.accueil--partenaires h2 span {
  background-color: #FFFFFF;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
.accueil--partenaires h2::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #1c2b39;
}
.accueil--partenaires .conteneur--bloc img {
  max-width: 200px;
}
@media (max-width: 1280px) {
  .accueil {
    background-image: none;
  }
}
@media (max-width: 1024px) {
  .accueil--services .vedette__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }
  .accueil--evenements .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .accueil--evenements .evenements {
    margin-right: 0;
  }
  .accueil--evenements .nouvelles {
    margin-top: 80px;
  }
  .accueil--ecosysteme .bloc {
    padding: 40px;
    background-color: #e1e4e6;
  }
  .accueil--ecosysteme .bloc--liste .ecosysteme--image {
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .accueil {
    padding: 80px 0 0;
  }
  .accueil--alerte {
    margin-bottom: 80px;
  }
  .accueil--evenements {
    padding-bottom: 80px;
  }
  .accueil--force {
    padding: 80px 0;
  }
  .accueil--force .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .accueil--force .image {
    margin-right: 0;
    margin-top: 40px;
  }
  .accueil--force .texte .btn {
    margin: 0 auto;
  }
  .accueil--repertoires {
    padding: 80px 0;
  }
  .accueil--ecosysteme {
    padding: 80px 0;
  }
  .accueil--ecosysteme .bloc {
    padding: 40px 20px;
  }
  .accueil--ecosysteme .bloc--liste .ecosysteme {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .accueil--ecosysteme .bloc--liste .ecosysteme--image {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .accueil--outils {
    padding-bottom: 80px;
  }
  .accueil--partenaires {
    padding-bottom: 80px;
  }
}
@media (max-width: 600px) {
  .accueil--services .banniere {
    display: block;
  }
  .accueil--evenements .evenements h2 span,
  .accueil--evenements .nouvelles h2 span {
    padding-right: 10px;
  }
  .accueil--partenaires .conteneur--bloc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .accueil--partenaires .conteneur--bloc a {
    margin: 0 auto;
  }
}

/*******************************/
/***** Lazy Load Animation *****/
/*******************************/
.lazy-img {
  opacity: 0;
  -webkit-transition: opacity 1s 0.25s ease-out, -webkit-transform 0.5s 0.25s cubic-bezier(0.58, 0, 0.32, 1);
  transition: opacity 1s 0.25s ease-out, -webkit-transform 0.5s 0.25s cubic-bezier(0.58, 0, 0.32, 1);
  transition: transform 0.5s 0.25s cubic-bezier(0.58, 0, 0.32, 1), opacity 1s 0.25s ease-out;
  transition: transform 0.5s 0.25s cubic-bezier(0.58, 0, 0.32, 1), opacity 1s 0.25s ease-out, -webkit-transform 0.5s 0.25s cubic-bezier(0.58, 0, 0.32, 1);
  will-change: transform, opacity;
}

.from-bottom {
  -webkit-transform: translateY(50px) rotate(-5deg);
  transform: translateY(50px) rotate(-5deg);
}

.from-right {
  -webkit-transform: translateX(50px) rotate(-5deg);
  transform: translateX(50px) rotate(-5deg);
}

.lazy-load {
  opacity: 1;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.page-texte {
  padding: 60px 0 100px;
}
.page-texte.bg-gauche-bleu {
  background-image: url(/assets/backgrounds/blue-left.png);
  background-position: top 60px left;
  background-repeat: no-repeat;
}
.page-texte.bg-gauche-orange {
  background-image: url(/assets/backgrounds/orange-left.png);
  background-position: top 60px left;
  background-repeat: no-repeat;
}
.page-texte.bg-droite-bleu {
  background-image: url(/assets/images/blue-right.png);
  background-position: bottom 60px right;
  background-repeat: no-repeat;
}
.page-texte.bg-droite-orange {
  background-image: url(/assets/backgrounds/orange-right.png);
  background-position: bottom 60px right;
  background-repeat: no-repeat;
}
.page-texte.bg-gauche-bleu.bg-droite-bleu {
  background-image: url(/assets/backgrounds/blue-left.png), url(/assets/images/blue-right.png);
  background-position: top 60px left, bottom 60px right;
  background-repeat: no-repeat, no-repeat;
}
.page-texte.bg-gauche-orange.bg-droite-orange {
  background-image: url(/assets/backgrounds/orange-left.png), url(/assets/backgrounds/orange-right.png);
  background-position: top 60px left, bottom 60px right;
  background-repeat: no-repeat, no-repeat;
}
.page-texte.bg-gauche-orange.bg-droite-bleu {
  background-image: url(/assets/backgrounds/orange-left.png), url(/assets/images/blue-right.png);
  background-position: top 60px left, bottom 60px right;
  background-repeat: no-repeat, no-repeat;
}
.page-texte.bg-gauche-bleu.bg-droite-orange {
  background-image: url(/assets/backgrounds/blue-left.png), url(/assets/backgrounds/orange-right.png);
  background-position: top 60px left, bottom 60px right;
  background-repeat: no-repeat, no-repeat;
}
.page-texte .row {
  position: relative;
}
.page-texte--contenu .titre {
  margin-bottom: 40px;
}
.page-texte--contenu .intro {
  margin-bottom: 40px;
}
.page-texte--contenu .intro .text-block > * {
  font-weight: bold;
}
.page-texte--contenu .texte {
  margin-bottom: 40px;
}
.page-texte--contenu .texte h3 {
  color: #0033A0;
}
.page-texte--sidebar {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
}
.page-texte.ceial .texte h3 {
  color: #f16423;
}
@media (max-width: 1280px) {
  .page-texte.bg-gauche-bleu {
    background-image: none;
  }
  .page-texte.bg-gauche-orange {
    background-image: none;
  }
  .page-texte.bg-droite-bleu {
    background-image: none;
  }
  .page-texte.bg-droite-orange {
    background-image: none;
  }
  .page-texte.bg-gauche-bleu.bg-droite-bleu {
    background-image: none;
  }
  .page-texte.bg-gauche-orange.bg-droite-orange {
    background-image: none;
  }
  .page-texte.bg-gauche-orange.bg-droite-bleu {
    background-image: none;
  }
  .page-texte.bg-gauche-bleu.bg-droite-orange {
    background-image: none;
  }
}
@media (max-width: 1024px) {
  .page-texte .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .page-texte {
    padding: 40px 0 80px;
  }
}

.nous-joindre {
  padding: 60px 0 100px;
}
.nous-joindre .row {
  position: relative;
}
.nous-joindre--contenu .titre {
  margin-bottom: 40px;
}
.nous-joindre--contenu .intro {
  margin-bottom: 40px;
}
.nous-joindre--contenu .intro .text-block > * {
  font-weight: bold;
}
.nous-joindre--contenu .texte {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
}
.nous-joindre--contenu .texte h3 {
  color: #0033A0;
}
.nous-joindre--form {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .nous-joindre .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .nous-joindre {
    padding: 40px 0 80px;
  }
}

.connexion {
  background-color: #e1e4e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
}
.connexion--contenu {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 580px;
  margin-left: auto;
  padding: 60px 40px;
}
.connexion--contenu img {
  max-width: 250px;
  width: 100%;
  margin-bottom: 60px;
}
.connexion--contenu .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.connexion--contenu .nav button {
  width: 50%;
  padding: 10px 5px;
}
.connexion--contenu .nav button:first-child {
  border-radius: 10px 0 0 10px;
}
.connexion--contenu .nav button:last-child {
  border-radius: 0 10px 10px 0;
}
.connexion--contenu .nav button.active {
  background-color: #0033A0;
}
.connexion--contenu .form {
  padding: 0;
  margin: 20px 0 60px;
}
.connexion--contenu .form .mdpOublie {
  display: block;
  margin-top: 10px;
}
.connexion--contenu h1 {
  margin-bottom: 20px;
}
.connexion--contenu .problemes {
  padding: 20px;
  background-color: #FFFFFF;
}
.connexion--image {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .connexion {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .connexion--contenu {
    margin: 0 auto;
    width: 100%;
  }
  .connexion--image {
    display: none;
  }
}

.alu-competences {
  padding: 60px 0 0;
}
.alu-competences--contenu .titre {
  margin-bottom: 40px;
}
.alu-competences--contenu .intro {
  margin-bottom: 40px;
}
.alu-competences--contenu .intro .text-block > * {
  font-weight: bold;
}
.alu-competences--contenu .texte {
  margin-bottom: 40px;
}
.alu-competences--fiches {
  padding-bottom: 80px;
}
.alu-competences--fiches .texte {
  margin-bottom: 40px;
}
.alu-competences--fiches .texte h3 {
  color: #0033A0;
}
.alu-competences--fiches .conteneur {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.alu-competences--fiches .conteneur--filtres {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  margin-right: 20px;
}
.alu-competences--fiches .conteneur--filtres h3 {
  margin-bottom: 20px;
}
.alu-competences--fiches .conteneur--filtres .bloc {
  background-color: #1c2b39;
  padding: 20px 40px;
  margin-top: 10px;
}
.alu-competences--fiches .conteneur--filtres .bloc h4 {
  color: #FFFFFF;
  margin-bottom: 10px;
}
.alu-competences--fiches .conteneur--filtres .bloc label {
  color: #FFFFFF;
}
.alu-competences--fiches .conteneur--filtres .bloc .checkbox {
  margin-bottom: 10px;
}
.alu-competences--fiches .conteneur--contenu {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
}
.alu-competences--fiches .conteneur--contenu h3 {
  margin-bottom: 20px;
}
.alu-competences--fiches .conteneur--contenu .liste--bloc {
  padding: 20px;
  background-color: #e1e4e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.alu-competences--fiches .conteneur--contenu .liste--bloc:not(:last-child) {
  margin-bottom: 20px;
}
.alu-competences--fiches .conteneur--contenu .liste--bloc .image {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  margin-right: 20px;
}
.alu-competences--fiches .conteneur--contenu .liste--bloc .image img {
  border: 1px solid #1c2b39;
}
.alu-competences--fiches .conteneur--contenu .liste--bloc .infos {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
}
.alu-competences--fiches .conteneur--contenu .liste--bloc .infos--texte {
  margin: 20px 0;
}
.alu-competences--fiches .conteneur--contenu .liste--bloc .infos--fichiers {
  margin-bottom: 10px;
}
.alu-competences--fiches .conteneur--contenu .liste--bloc .infos--fichiers img {
  width: 25px;
}
.alu-competences--fiches .conteneur--contenu .liste--bloc .infos--tags {
  margin: 20px 0;
}
.alu-competences--fiches .conteneur--contenu .liste--bloc .infos--tags h5 {
  margin-bottom: 10px;
}
.alu-competences--fiches .conteneur--contenu .liste--bloc .infos--tags .tags {
  background-color: #0985C9;
  color: #FFFFFF;
  padding: 5px 20px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  margin: 0 10px 10px 0;
}
.alu-competences--parallaxe {
  height: 300px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.alu-competences--partenaires {
  background-color: #1c2b39;
  color: #FFFFFF;
}
.alu-competences--partenaires .text-block {
  padding: 40px 0;
}
.alu-competences--partenaires .fond {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}
.alu-competences--partenaires .fond .wrapper {
  margin: 0 0 0 auto;
}
.alu-competences--partenaires .fond--conteneur {
  max-width: 650px;
  padding: 60px 0;
}
.alu-competences--partenaires .fond--conteneur img {
  width: 100%;
  max-width: 125px;
  margin: 10px;
}
@media (max-width: 1024px) {
  .alu-competences--fiches .conteneur {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .alu-competences--fiches .conteneur--filtres {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .alu-competences {
    padding: 40px 0 0;
  }
  .alu-competences--parallaxe {
    background-attachment: scroll;
  }
  .alu-competences--partenaires .fond .wrapper {
    margin: 0 auto;
  }
  .alu-competences--partenaires .fond--conteneur {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .alu-competences--fiches .conteneur--filtres .bloc {
    padding: 20px;
  }
  .alu-competences--fiches .conteneur--contenu .liste--bloc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .alu-competences--fiches .conteneur--contenu .liste--bloc .image {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .alu-competences--partenaires .fond--conteneur {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.fiche-alu-competences {
  padding: 60px 0 100px;
}
.fiche-alu-competences--haut {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #e1e4e6;
  padding: 40px;
}
.fiche-alu-competences--haut .image {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  margin-right: 40px;
}
.fiche-alu-competences--haut .image img {
  border: 1px solid #1c2b39;
}
.fiche-alu-competences--haut .contenu {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
}
.fiche-alu-competences--haut .contenu h2 {
  margin-bottom: 20px;
}
.fiche-alu-competences--haut .contenu--documents {
  margin: 20px 0;
}
.fiche-alu-competences--haut .contenu--documents .bloc {
  margin-bottom: 10px;
}
.fiche-alu-competences--haut .contenu--documents img {
  width: 25px;
}
.fiche-alu-competences--haut .contenu h5 {
  margin: 20px 0 10px;
}
.fiche-alu-competences--haut .contenu--tags span {
  background-color: #0985C9;
  color: #FFFFFF;
  padding: 5px 20px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  margin: 0 10px 10px 0;
}
.fiche-alu-competences--bas h3 {
  margin-bottom: 20px;
}
.fiche-alu-competences--bas .table-matieres {
  border-bottom: 2px solid #1c2b39;
  padding: 20px 0;
}
.fiche-alu-competences--bas .mots-cles {
  padding-top: 20px;
}
.fiche-alu-competences--bas .mots-cles span {
  background-color: #1c2b39;
  color: #FFFFFF;
  padding: 5px 20px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  margin: 0 10px 10px 0;
  -webkit-transition: 0.2s cubic-bezier(0.35, 0, 0, 1);
  transition: 0.2s cubic-bezier(0.35, 0, 0, 1);
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .fiche-alu-competences--bas .mots-cles span:hover {
    background-color: #0033A0;
  }
}
@media (max-width: 1024px) {
  .fiche-alu-competences--haut {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .fiche-alu-competences--haut .image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .fiche-alu-competences {
    padding: 40px 0 80px;
  }
}
@media (max-width: 600px) {
  .fiche-alu-competences--haut {
    padding: 20px;
  }
}

.intranet {
  padding: 60px 0 100px;
}
.intranet--contenu .intro {
  margin-bottom: 40px;
}
.intranet--contenu .intro .text-block > * {
  font-weight: bold;
}
.intranet--contenu .texte {
  margin-bottom: 40px;
}
.intranet--contenu .texte h3 {
  color: #0033A0;
}
.intranet--fiches .texte {
  margin-bottom: 40px;
}
.intranet--fiches .texte h3 {
  color: #0033A0;
}
.intranet--fiches .conteneur .collapse {
  margin-bottom: 40px;
}
.intranet--fiches .conteneur .collapse:last-child {
  margin-bottom: 0;
}
.intranet--fiches .conteneur .collapse--body .collapse {
  margin: 2px 0;
}
.intranet--fiches .conteneur .collapse--body .collapse--head {
  background-color: #464343;
  padding: 10px 15px;
}
.intranet--fiches .conteneur .collapse--body .collapse .link {
  display: block;
  height: 30px;
  margin: 10px;
  padding: 0 0 0 30px;
  background-repeat: no-repeat;
  background-size: 25px 25px;
}
.intranet--fiches .conteneur .collapse--body .collapse .link.pdf {
  background-image: url(/assets/icons/pdf.png);
}
.intranet--fiches .conteneur .collapse--body .collapse .link.docx {
  background-image: url(/assets/icons/docx.png);
}
.intranet--fiches .conteneur .collapse--body .collapse .link.ppt {
  background-image: url(/assets/icons/ppt.png);
}
.intranet--fiches .conteneur .collapse--body .collapse .link.xlsx {
  background-image: url(/assets/icons/xlsx.png);
}
@media (max-width: 768px) {
  .intranet {
    padding: 40px 0 80px;
  }
}

.uikit-section {
  margin: 40px;
}
.uikit-section__title {
  padding: 40px;
  background-color: #ebebeb;
}
.uikit-section__content {
  background-color: #F8F8F8;
  padding: 40px;
}

.boilerplate {
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.landing-page--contenu .etapes {
  margin-top: 40px;
}
.landing-page--contenu .etapes--bloc .image {
  position: relative;
  margin-bottom: 20px;
}
.landing-page--contenu .etapes--bloc .image img {
  width: 100%;
}
.landing-page--contenu .etapes--bloc .image .btn-plus {
  position: absolute;
  bottom: -20px;
  right: -20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.landing-page--contenu .etapes--bloc .texte h3 {
  margin-bottom: 20px;
}

.repertoires--contenu .repertoires {
  margin-top: 80px;
}
.repertoires--contenu .repertoires--bloc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.repertoires--contenu .repertoires--bloc:not(:last-child) {
  margin-bottom: 40px;
}
.repertoires--contenu .repertoires--bloc .image {
  margin-right: 20px;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
}
.repertoires--contenu .repertoires--bloc .texte {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
}
.repertoires--contenu .repertoires--bloc .texte h3 {
  color: #1c2b39;
}
.repertoires--contenu .repertoires--bloc .texte .text-block {
  margin: 20px 0;
}
.repertoires--contenu .partenaires {
  margin-top: 80px;
}
.repertoires--contenu .partenaires h2 {
  margin-bottom: 40px;
  position: relative;
}
.repertoires--contenu .partenaires h2 span {
  background-color: #FFFFFF;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
.repertoires--contenu .partenaires h2::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #1c2b39;
}
.repertoires--contenu .partenaires .conteneur--bloc img {
  max-width: 200px;
}
@media (max-width: 600px) {
  .repertoires .repertoires {
    margin-top: 60px;
  }
  .repertoires .partenaires .conteneur--bloc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .repertoires .partenaires .conteneur--bloc a {
    margin: 0 auto;
  }
}

.equipe--contenu .equipe .personnes--bloc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.equipe--contenu .equipe .personnes--bloc .image {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  border-radius: 50%;
  margin-right: 20px;
}
.equipe--contenu .equipe .personnes--bloc .texte {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
}
.equipe--contenu .equipe .personnes--bloc .texte h4 {
  margin-bottom: 10px;
}
.equipe--contenu .equipe .personnes--bloc .texte .linkedin {
  margin-top: 10px;
  display: block;
}
.equipe--contenu .equipe .personnes--bloc .texte .linkedin img {
  width: 20px;
}
@media (max-width: 768px) {
  .equipe--contenu .equipe .personnes {
    grid-template-columns: 1fr;
  }
}

.partenaires--contenu .partenaires--bloc {
  border-bottom: 2px solid #1c2b39;
  padding-bottom: 60px;
}
.partenaires--contenu .partenaires--bloc .grid-item {
  -ms-flex-item-align: center;
  align-self: center;
}
.partenaires--contenu .partenaires--bloc:not(:last-child) {
  margin-bottom: 60px;
}
.partenaires--contenu .partenaires--bloc h2 {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .partenaires--contenu .partenaires--bloc .section--bloc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .partenaires--contenu .partenaires--bloc .section--bloc a {
    margin: 0 auto;
    max-width: 300px;
  }
}

.evenements--contenu .evenements__h3,
.evenements--contenu .formations__h3 {
  padding: 20px 0 20px 0;
  border-top: 2px solid #272525;
  margin-top: 45px;
}
.evenements--contenu .evenements--bloc,
.evenements--contenu .formations--bloc {
  position: relative;
  background-color: #e1e4e6;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.evenements--contenu .evenements--bloc img,
.evenements--contenu .formations--bloc img {
  width: 100%;
}
.evenements--contenu .evenements--bloc img.icone,
.evenements--contenu .formations--bloc img.icone {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 2px;
  right: 2px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.evenements--contenu .evenements--bloc .texte,
.evenements--contenu .formations--bloc .texte {
  padding: 20px;
  margin-bottom: 0;
}
.evenements--contenu .evenements--bloc .texte h4,
.evenements--contenu .formations--bloc .texte h4 {
  margin: 0 0 10px;
}
.evenements--contenu .evenements--bloc .texte h5,
.evenements--contenu .formations--bloc .texte h5 {
  margin: 0 0 20px;
}

.evenements-fiche--contenu .entete {
  background-color: #1c2b39;
  color: #FFFFFF;
  padding: 40px 20px 20px;
  margin-bottom: 40px;
}
.evenements-fiche--contenu .entete .date {
  margin-bottom: 20px;
  color: #0985C9;
}
.evenements-fiche--contenu .entete .parAluQc {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.evenements-fiche--contenu .entete .parAluQc img {
  max-width: 100px;
  margin-left: 10px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.evenements-fiche--contenu .entete .galerie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.evenements-fiche--contenu .entete .galerie--bloc {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.evenements-fiche--contenu .entete .galerie--bloc img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.evenements-fiche--contenu .conferenciers {
  padding: 40px 0 80px;
}
.evenements-fiche--contenu .conferenciers h2 {
  margin-bottom: 40px;
}
.evenements-fiche--contenu .conferenciers--bloc {
  background-color: #1c2b39;
  padding: 20px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.evenements-fiche--contenu .conferenciers--bloc .image {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  margin-right: 20px;
}
.evenements-fiche--contenu .conferenciers--bloc .image img {
  border-radius: 50%;
}
.evenements-fiche--contenu .conferenciers--bloc .infos p {
  margin-top: 10px;
}
.evenements-fiche--contenu .conferenciers--bloc .infos .link {
  color: #FFFFFF;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .evenements-fiche--contenu .conferenciers--bloc .infos .link:hover {
    color: #0985C9;
  }
}
.evenements-fiche--contenu .infos h2 {
  margin-bottom: 40px;
}
.evenements-fiche--contenu .infos--contenu {
  padding: 20px;
  background-color: #e1e4e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.evenements-fiche--contenu .infos--contenu .info {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin-right: 40px;
}
.evenements-fiche--contenu .infos--contenu .info h3 {
  margin-bottom: 20px;
}
.evenements-fiche--contenu .infos--contenu .info p {
  margin-bottom: 10px;
}
.evenements-fiche--contenu .infos--contenu .prix {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.evenements-fiche--contenu .infos--contenu .prix h3 {
  margin-bottom: 20px;
}
.evenements-fiche--contenu .infos--contenu .prix p {
  margin-bottom: 20px;
}
.evenements-fiche--contenu .infos--contenu .prix .field.disabled {
  opacity: 0.5;
}
.evenements-fiche--contenu .infos--contenu .prix .field.disabled input[type=radio],
.evenements-fiche--contenu .infos--contenu .prix .field.disabled label {
  cursor: inherit;
  pointer-events: none;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .evenements-fiche--contenu .infos--contenu .prix .field.disabled input[type=radio]:hover::after,
  .evenements-fiche--contenu .infos--contenu .prix .field.disabled label:hover::after {
    opacity: 0;
  }
}
.evenements-fiche--contenu .infos--contenu .prix .escompte {
  padding: 10px;
  background-color: #ffcccc;
  margin-bottom: 10px;
}
.evenements-fiche--contenu .infos--contenu .prix .escompte p {
  color: #ff0505;
}
.evenements-fiche--contenu .infos--attestation {
  width: 100%;
  text-align: center;
  background-color: #0033A0;
  padding: 10px;
  color: #FFFFFF;
}
.evenements-fiche--contenu .infos--map iframe {
  width: 100%;
  vertical-align: bottom;
}
.evenements-fiche--contenu .partage {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.evenements-fiche--contenu .partage div a {
  display: inline-block;
  vertical-align: top;
}
.evenements-fiche--contenu .partage div img {
  width: 23px;
  margin-left: 10px;
}
.evenements-fiche--contenu .partage div img.linkedin {
  width: 20px;
}
.evenements-fiche--contenu .liste-partenaires__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 40px 0;
}
.evenements-fiche--contenu .liste-partenaires__logos .logo {
  width: 180px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.evenements-fiche--contenu .liste-partenaires__logos .logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.evenements-fiche--form {
  display: none;
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-filter: blur(0.5);
  filter: blur(0.5);
}
.evenements-fiche--form .form {
  background-color: #fefefe;
  padding: 40px;
  border: 2px solid #1c2b39;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1080px;
  height: 90%;
  position: relative;
  top: 50%;
  left: 50%;
  overflow-y: auto;
}
.evenements-fiche--form .form--close {
  position: absolute;
  right: 9px;
  top: 0;
  color: #1c2b39;
  cursor: pointer;
}
.evenements-fiche--form .form__error {
  padding: 20px;
  color: #ff0505;
  background-color: #ffcccc;
  margin-bottom: 20px;
}
.evenements-fiche--form .form .etape--1 h3 {
  margin-bottom: 20px;
}
.evenements-fiche--form .form .etape--1 h4 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #1c2b39;
}
.evenements-fiche--form .form .etape--1 .single {
  margin-top: 20px;
}
.evenements-fiche--form .form .etape--1 .radio label:not(:last-child) {
  margin-right: 20px;
}
.evenements-fiche--form .form .etape--1 .participants h4 {
  border: none;
  padding-bottom: 0;
}
.evenements-fiche--form .form .etape--1 .participants--bloc {
  padding: 10px;
  background-color: #e1e4e6;
}
.evenements-fiche--form .form .etape--1 .participants--bloc:not(:last-child) {
  margin-bottom: 10px;
}
.evenements-fiche--form .form .etape--2 .retour {
  margin-bottom: 20px;
}
.evenements-fiche--form .form .etape--2 h3 {
  margin-bottom: 20px;
}
.evenements-fiche--form .form .etape--2 h4 {
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid #1c2b39;
}
.evenements-fiche--form .form .etape--2 .infos,
.evenements-fiche--form .form .etape--2 .participants {
  padding-bottom: 20px;
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}
.evenements-fiche--form .form .etape--2 .paiement--prix {
  margin-top: 20px;
  background-color: #e1e4e6;
  padding: 20px;
}
.evenements-fiche--form .form .etape--2 .paiement--prix .bloc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}
.evenements-fiche--form .form .etape--3 > h3 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #1c2b39;
}
.evenements-fiche--form .form .etape--3 .calendar {
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.evenements-fiche--form .form .etape--3 .calendar--add {
  padding: 20px 40px;
  background-color: #1c2b39;
  color: #FFFFFF;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .evenements-fiche--form .form .etape--3 .calendar--add:hover {
    background-color: #0033A0;
  }
}
.evenements-fiche--form .form .etape--3 .calendar .link:not(:last-child)::after {
  content: "|";
  margin: 0 5px;
}
.evenements-fiche--form .form .etape--3 .calendar .btn {
  margin: 0 auto;
}
.evenements-fiche--form .form--callToAction {
  margin-top: 40px;
}
.evenements-fiche--form .form--callToAction .btn:not(:last-child) {
  margin-right: 20px;
}
.evenements-fiche--form .form--callToAction #paypal-button {
  width: 100%;
  max-width: 400px;
}
@media (max-width: 768px) {
  .evenements-fiche--contenu .conferenciers {
    padding: 20px 0 60px;
  }
  .evenements-fiche--contenu .conferenciers h2 {
    margin-bottom: 20px;
  }
  .evenements-fiche--contenu .infos h2 {
    margin-bottom: 20px;
  }
  .evenements-fiche--contenu .infos--contenu {
    display: block;
  }
  .evenements-fiche--contenu .infos--contenu .info {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .evenements-fiche--contenu .liste-partenaires__logos {
    gap: 1rem;
    margin: 20px 0;
  }
}
@media (max-width: 600px) {
  .evenements-fiche--form .form {
    padding: 20px;
  }
  .evenements-fiche--form .form .etape--2 .infos,
  .evenements-fiche--form .form .etape--2 .participants {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
  .evenements-fiche--form .form--callToAction {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
  }
  .evenements-fiche--form .form--callToAction *:not(:last-child) {
    margin-bottom: 20px;
  }
}

.nouvelles--contenu .nouvelles .collapse:not(:last-child) {
  margin-bottom: 40px;
}
.nouvelles--contenu .nouvelles .collapse .bloc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nouvelles--contenu .nouvelles .collapse .bloc:not(:last-child) {
  margin-bottom: 40px;
}
.nouvelles--contenu .nouvelles .collapse .bloc:first-child {
  margin-top: 20px;
}
.nouvelles--contenu .nouvelles .collapse .bloc .texte {
  margin: 0;
  -ms-flex-preferred-size: inherit;
  flex-basis: inherit;
}
.nouvelles--contenu .nouvelles .collapse .bloc .texte h4, .nouvelles--contenu .nouvelles .collapse .bloc .texte h5 {
  margin-bottom: 10px;
}
.nouvelles--contenu .nouvelles .collapse .bloc .texte .text-block {
  margin: 20px 0;
}
.nouvelles--contenu .nouvelles .collapse .bloc img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 20px;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
}
@media (max-width: 768px) {
  .nouvelles--contenu .nouvelles .collapse .bloc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .nouvelles--contenu .nouvelles .collapse .bloc img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.nouvelle-fiche--contenu .titre {
  margin-bottom: 20px;
}
.nouvelle-fiche--contenu h3 {
  margin-bottom: 40px;
  color: #0033A0;
}

.vraiOuFaux--contenu .questions {
  margin-bottom: 40px;
}
.vraiOuFaux--contenu .questions--header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  border-bottom: 1px solid #1c2b39;
  padding-bottom: 20px;
}
.vraiOuFaux--contenu .questions--header h4:first-child {
  margin-right: 20px;
}
.vraiOuFaux--contenu .questions--liste {
  padding-left: 20px;
}
.vraiOuFaux--contenu .questions--liste .question {
  margin: 40px 0;
  list-style: decimal;
  display: list-item;
}
.vraiOuFaux--contenu .questions--liste .question::marker {
  font-weight: 700;
}
.vraiOuFaux--contenu .questions--liste .question .row {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.vraiOuFaux--contenu .questions--liste .question--texte {
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
}
.vraiOuFaux--contenu .questions--liste .question--texte .titre {
  margin-bottom: 10px;
}
.vraiOuFaux--contenu .questions--liste .question--texte .text-block {
  display: none;
}
.vraiOuFaux--contenu .questions--liste .question--boutons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.vraiOuFaux--contenu .questions--liste .question--boutons .btn-vraiOuFaux {
  padding: 20px;
  border-radius: 50%;
  border: none;
  background: #e1e4e6;
  -webkit-transition: 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.2s cubic-bezier(0.58, 0, 0.32, 1);
}
.vraiOuFaux--contenu .questions--liste .question--boutons .btn-vraiOuFaux:first-child {
  margin-right: 20px;
}
.vraiOuFaux--contenu .questions--liste .question--boutons .btn-vraiOuFaux.good {
  background-color: #099D09;
}
.vraiOuFaux--contenu .questions--liste .question--boutons .btn-vraiOuFaux.bad {
  background-color: #ff0505;
}
.vraiOuFaux--contenu .questions--liste .question.hidden::marker {
  font-weight: 700;
  color: #B2B2B2;
}
.vraiOuFaux--contenu .questions--liste .question.hidden .question--texte .titre {
  color: #B2B2B2;
}
.vraiOuFaux--contenu .questions--liste .question.hidden .question--boutons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.vraiOuFaux--contenu .questions--liste .question.hidden .question--boutons .btn-vraiOuFaux {
  pointer-events: none;
}
.vraiOuFaux--contenu .questions--liste .question.show .question--texte .text-block {
  display: block;
}
.vraiOuFaux--contenu .questions--liste .question.show .question--boutons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.vraiOuFaux--contenu .questions--liste .question.show .question--boutons .btn-vraiOuFaux {
  pointer-events: none;
}
@media (max-width: 1280px) {
  .vraiOuFaux--contenu .questions--liste .question .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 600px) {
  .vraiOuFaux--contenu .questions--liste .question .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .vraiOuFaux--contenu .questions--liste .question--boutons {
    margin-left: auto;
    margin-top: 10px;
  }
}

.documents--contenu .documents--bloc {
  /* smartphones, touchscreens */
}
.documents--contenu .documents--bloc a {
  text-decoration: none;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.documents--contenu .documents--bloc .image {
  margin-right: 20px;
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
}
.documents--contenu .documents--bloc .image img {
  max-width: 150px;
  min-width: 75px;
  width: 100%;
  border: 2px solid #1c2b39;
}
.documents--contenu .documents--bloc .texte {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
}
.documents--contenu .documents--bloc .texte h4 {
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  padding: 0 0 0 30px;
  background-repeat: no-repeat;
  background-size: 23px 25px;
}
.documents--contenu .documents--bloc .texte.pdf h4 {
  background-image: url(/assets/icons/pdf.png);
}
.documents--contenu .documents--bloc .texte.docx h4 {
  background-image: url(/assets/icons/docx.png);
}
.documents--contenu .documents--bloc .texte.ppt h4 {
  background-image: url(/assets/icons/ppt.png);
}
.documents--contenu .documents--bloc .texte.xlsx h4 {
  background-image: url(/assets/icons/xlsx.png);
}
@media (pointer: fine) {
  .documents--contenu .documents--bloc:hover h4 {
    color: #0033A0;
  }
}
@media (max-width: 1280px) {
  .documents--contenu .documents--bloc .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.webinaires--contenu .webinaires--bloc h4 {
  margin-bottom: 20px;
}
.webinaires--contenu .webinaires--bloc .code iframe {
  width: 100%;
}

.balados--contenu .balados--bloc .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
}
.balados--contenu .balados--bloc .header img {
  margin-right: 10px;
}

.communiques--contenu .communiques .collapse:not(:last-child) {
  margin-bottom: 40px;
}
.communiques--contenu .communiques .collapse .bloc:not(:last-child) {
  margin-bottom: 40px;
}
.communiques--contenu .communiques .collapse .bloc:first-child {
  margin-top: 20px;
}
.communiques--contenu .communiques .collapse .bloc h4, .communiques--contenu .communiques .collapse .bloc h5 {
  margin-bottom: 10px;
}
.communiques--contenu .communiques .collapse .bloc .text-block {
  margin: 20px 0;
}

.communique-fiche--contenu .titre {
  margin-bottom: 20px;
}
.communique-fiche--contenu h3 {
  margin-bottom: 40px;
  color: #0033A0;
}
.communique-fiche--contenu .sources {
  margin-bottom: 40px;
}
.communique-fiche--contenu .sources h4 {
  margin-bottom: 10px;
}
.communique-fiche--contenu .partage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.communique-fiche--contenu .partage .link {
  margin-left: 10px;
  /* smartphones, touchscreens */
}
.communique-fiche--contenu .partage .link svg {
  width: 20px;
  height: 20px;
}
.communique-fiche--contenu .partage .link svg path {
  -webkit-transition: 0.2s cubic-bezier(0.35, 0, 0, 1);
  transition: 0.2s cubic-bezier(0.35, 0, 0, 1);
}
.communique-fiche--contenu .partage .link.linkedin svg {
  width: 17px;
}
@media (pointer: fine) {
  .communique-fiche--contenu .partage .link:hover svg path {
    fill: #0033A0;
  }
}

.distributeurs--repertoires .filtres {
  background-color: #1c2b39;
  padding: 40px;
  color: #FFFFFF;
}
.distributeurs--repertoires .filtres h3 {
  margin-bottom: 20px;
}
.distributeurs--repertoires .filtres select:not(:last-child) {
  margin-right: 20px;
}
.distributeurs--repertoires .liste {
  margin-top: 40px;
}
.distributeurs--repertoires .liste h3 {
  margin-bottom: 20px;
}
.distributeurs--repertoires .liste--bloc {
  background-color: #e1e4e6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.distributeurs--repertoires .liste--bloc:not(:last-child) {
  margin-bottom: 20px;
}
.distributeurs--repertoires .liste--bloc .image {
  margin-right: 20px;
}
.distributeurs--repertoires .liste--bloc .image img {
  max-width: 200px;
  min-width: 150px;
}
.distributeurs--repertoires .liste--bloc .texte {
  margin-bottom: 0;
}
.distributeurs--repertoires .liste--bloc .texte h4 {
  margin-bottom: 20px;
}
.distributeurs--repertoires .liste--bloc .texte p:not(:last-child) {
  margin-bottom: 5px;
}
.distributeurs--repertoires .liste--bloc .texte .adresse {
  font-weight: 400;
}
.distributeurs--repertoires .liste--bloc .texte .adresse:not(:first-child) {
  display: block;
}
.distributeurs--repertoires .liste--bloc .texte .adresse:not(:last-child)::after {
  content: ",";
}
.distributeurs--repertoires .liste--bloc .texte .btn {
  margin-top: 20px;
}
.distributeurs--repertoires .liste--blocMembre {
  background-color: #e1e4e6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.distributeurs--repertoires .liste--blocMembre:not(:last-child) {
  margin-bottom: 20px;
}
.distributeurs--repertoires .liste--blocMembre .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.distributeurs--repertoires .liste--blocMembre .projetMembre {
  background-color: #0033A0;
  color: #FFFFFF;
  background-image: url("/assets/icons/icon-membre.png");
  background-repeat: no-repeat;
  background-position: left 10px center;
  border-radius: 19px;
  padding: 7px 10px 7px 37px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}
.distributeurs--repertoires .liste--blocMembre .projetMembre p {
  font-size: 14px;
  font-size: 0.875rem;
}
.distributeurs--repertoires .liste--blocMembre .image {
  margin-right: 20px;
}
.distributeurs--repertoires .liste--blocMembre .image img {
  max-width: 200px;
  min-width: 150px;
}
.distributeurs--repertoires .liste--blocMembre .texte {
  margin-bottom: 0;
}
.distributeurs--repertoires .liste--blocMembre .texte h4 {
  margin-bottom: 20px;
}
.distributeurs--repertoires .liste--blocMembre .texte p:not(:last-child) {
  margin-bottom: 5px;
}
.distributeurs--repertoires .liste--blocMembre .texte .adresse {
  font-weight: 400;
}
.distributeurs--repertoires .liste--blocMembre .texte .adresse:not(:first-child) {
  display: block;
}
.distributeurs--repertoires .liste--blocMembre .texte .adresse:not(:last-child)::after {
  content: ",";
}
.distributeurs--repertoires .liste--blocMembre .texte .btn {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .distributeurs--repertoires .filtres select:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .distributeurs--repertoires .filtres {
    padding: 20px;
  }
  .distributeurs--repertoires .liste--bloc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .distributeurs--repertoires .liste--bloc .image {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .distributeurs--repertoires .liste--bloc .image img {
    width: 100%;
    max-width: none;
  }
}

.equipementiers--repertoires .filtres {
  background-color: #1c2b39;
  padding: 40px;
  color: #FFFFFF;
}
.equipementiers--repertoires .filtres h3 {
  margin-bottom: 20px;
}
.equipementiers--repertoires .filtres select {
  max-width: 300px;
}
.equipementiers--repertoires .filtres label {
  color: #FFFFFF;
}
.equipementiers--repertoires .filtres--body {
  margin-top: 40px;
}
.equipementiers--repertoires .filtres--body > div {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}
.equipementiers--repertoires .filtres--body > div .checkbox {
  margin-bottom: 10px;
}
.equipementiers--repertoires .liste {
  margin-top: 40px;
}
.equipementiers--repertoires .liste h3 {
  margin-bottom: 20px;
}
.equipementiers--repertoires .liste--container {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.equipementiers--repertoires .liste--bloc {
  background-color: #e1e4e6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.equipementiers--repertoires .liste--bloc .texte {
  margin-bottom: 0;
}
.equipementiers--repertoires .liste--bloc .texte a {
  -webkit-transition: 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .equipementiers--repertoires .liste--bloc .texte a:hover {
    color: #0033A0;
  }
}
.equipementiers--repertoires .liste--bloc .projetMembre {
  background-color: #0033A0;
  color: #FFFFFF;
  background-image: url("/assets/icons/icon-membre.png");
  background-repeat: no-repeat;
  background-position: left 10px center;
  border-radius: 19px;
  padding: 7px 10px 7px 37px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 20px;
}
.equipementiers--repertoires .liste--bloc .projetMembre p {
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 600px) {
  .equipementiers--repertoires .filtres {
    padding: 20px;
  }
  .equipementiers--repertoires .filtres--body > div {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
  .equipementiers--repertoires .liste--container {
    grid-template-columns: 1fr;
  }
}

.innovations--repertoires .filtres {
  background-color: #1c2b39;
  padding: 40px;
  color: #FFFFFF;
}
.innovations--repertoires .filtres h3 {
  margin-bottom: 20px;
}
.innovations--repertoires .filtres select:not(:last-child) {
  margin-right: 20px;
}
.innovations--repertoires .liste {
  margin-top: 40px;
}
.innovations--repertoires .liste h3 {
  margin-bottom: 20px;
}
.innovations--repertoires .liste--bloc {
  background-color: #e1e4e6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.innovations--repertoires .liste--bloc:not(:last-child) {
  margin-bottom: 20px;
}
.innovations--repertoires .liste--bloc .image {
  margin-right: 20px;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
}
.innovations--repertoires .liste--bloc .image img {
  width: 100%;
}
.innovations--repertoires .liste--bloc .texte {
  margin-bottom: 0;
}
.innovations--repertoires .liste--bloc .texte h4 {
  margin-bottom: 20px;
}
.innovations--repertoires .liste--bloc .texte p:not(:last-child) {
  margin-bottom: 5px;
}
.innovations--repertoires .liste--bloc .texte .btn {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .innovations--repertoires .filtres select:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .innovations--repertoires .filtres {
    padding: 20px;
  }
  .innovations--repertoires .liste--bloc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .innovations--repertoires .liste--bloc .image {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .innovations--repertoires .liste--bloc .image img {
    width: 100%;
  }
}

.innovations-fiche {
  padding: 60px 0 100px;
}
.innovations-fiche--contenu {
  background-color: #1c2b39;
  color: #FFFFFF;
  padding: 40px 20px 20px;
}
.innovations-fiche--contenu .texte h3 {
  margin-bottom: 20px;
  text-align: center;
}
.innovations-fiche--contenu .texte .text-block {
  margin-bottom: 20px;
}
.innovations-fiche--contenu .texte--infos {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  margin-top: 40px;
}
.innovations-fiche--contenu .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 40px;
}
.innovations-fiche--contenu .images--bloc {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
  width: 100%;
  position: relative;
}
.innovations-fiche--contenu .images--bloc:not(:last-child) {
  margin-right: 20px;
}
.innovations-fiche--contenu .images--bloc p {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: right;
  background-color: rgba(28, 43, 57, 0.7);
  padding: 5px;
  width: 100%;
}
.innovations-fiche--informations .bloc {
  margin-top: 20px;
  background-color: #e1e4e6;
  padding: 20px;
}
.innovations-fiche--informations .bloc h3 {
  margin-bottom: 20px;
}
.innovations-fiche--informations .bloc h4 {
  margin-bottom: 10px;
}
.innovations-fiche--informations .bloc h5 {
  margin-top: 20px;
}
.innovations-fiche--informations .bloc p:not(:last-child) {
  margin-bottom: 10px;
}
.innovations-fiche--informations .bloc.references .link:not(:last-child) {
  display: block;
  margin-bottom: 20px;
}
.innovations-fiche--informations .bloc .produit .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}
.innovations-fiche--informations .bloc .produit .images--bloc {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 200px;
  width: 100%;
  position: relative;
}
.innovations-fiche--informations .bloc .produit .images--bloc:not(:last-child) {
  margin-right: 20px;
}
.innovations-fiche--informations .bloc .produit .images--bloc p {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(28, 43, 57, 0.8);
  padding: 5px;
  width: 100%;
  text-align: right;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .innovations-fiche {
    padding: 40px 0 80px;
  }
  .innovations-fiche--contenu .texte--infos {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
  .innovations-fiche--contenu .images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .innovations-fiche--contenu .images--bloc {
    height: 300px;
    width: 100%;
    position: relative;
  }
  .innovations-fiche--contenu .images--bloc:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .innovations-fiche--informations .bloc .produit .images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .innovations-fiche--informations .bloc .produit .images--bloc:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.passerelles--repertoires {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.passerelles--repertoires .filtres {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  margin-right: 20px;
}
.passerelles--repertoires .filtres h3 {
  margin-bottom: 20px;
}
.passerelles--repertoires .filtres--bloc {
  background-color: #1c2b39;
  padding: 20px 40px;
  color: #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
}
.passerelles--repertoires .filtres--bloc h4 {
  margin-bottom: 20px;
}
.passerelles--repertoires .filtres--bloc label {
  color: #FFFFFF;
}
.passerelles--repertoires .filtres--bloc .checkbox {
  margin: 10px 0;
}
.passerelles--repertoires .liste {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
}
.passerelles--repertoires .liste h3 {
  margin-bottom: 20px;
}
.passerelles--repertoires .liste--bloc {
  background-color: #e1e4e6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.passerelles--repertoires .liste--bloc:not(:last-child) {
  margin-bottom: 20px;
}
.passerelles--repertoires .liste--bloc .image {
  margin-right: 20px;
}
.passerelles--repertoires .liste--bloc .projetMembre {
  background-color: #0033A0;
  color: #FFFFFF;
  background-image: url("/assets/icons/icon-membre.png");
  background-repeat: no-repeat;
  background-position: left 10px center;
  border-radius: 19px;
  padding: 7px 10px 7px 37px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
.passerelles--repertoires .liste--bloc .projetMembre p {
  font-size: 14px;
  font-size: 0.875rem;
}
.passerelles--repertoires .liste--bloc .texte {
  margin-bottom: 0;
}
.passerelles--repertoires .liste--bloc .texte h4 {
  margin-bottom: 20px;
}
.passerelles--repertoires .liste--bloc .texte p:not(:last-child) {
  margin-bottom: 5px;
}
.passerelles--repertoires .liste--bloc .texte .usage:not(:last-child)::after {
  content: ", ";
}
.passerelles--repertoires .liste--bloc .texte .btn {
  margin-top: 20px;
}
.passerelles--repertoires .liste--blocMembre {
  background-color: #e1e4e6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.passerelles--repertoires .liste--blocMembre:not(:last-child) {
  margin-bottom: 20px;
}
.passerelles--repertoires .liste--blocMembre .image {
  margin-right: 20px;
}
.passerelles--repertoires .liste--blocMembre .image img {
  max-width: inherit;
}
.passerelles--repertoires .liste--blocMembre .texte {
  margin-bottom: 0;
}
.passerelles--repertoires .liste--blocMembre .texte h4 {
  margin-bottom: 20px;
}
.passerelles--repertoires .liste--blocMembre .texte p:not(:last-child) {
  margin-bottom: 5px;
}
.passerelles--repertoires .liste--blocMembre .texte .usage:not(:last-child)::after {
  content: ", ";
}
.passerelles--repertoires .liste--blocMembre .texte .btn {
  margin-top: 20px;
}
.passerelles--repertoires .liste--blocMembre .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.passerelles--repertoires .liste--blocMembre .projetMembre {
  background-color: #0033A0;
  color: #FFFFFF;
  background-image: url("/assets/icons/icon-membre.png");
  background-repeat: no-repeat;
  background-position: left 10px center;
  border-radius: 19px;
  padding: 7px 10px 7px 37px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
.passerelles--repertoires .liste--blocMembre .projetMembre p {
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  .passerelles--repertoires {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .passerelles--repertoires .filtres {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .passerelles--repertoires .filtres--bloc {
    padding: 20px;
  }
  .passerelles--repertoires .liste--bloc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .passerelles--repertoires .liste--bloc .image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .passerelles--repertoires .liste--bloc .image img {
    width: 100%;
  }
}

.passerelles-fiche {
  padding: 60px 0 100px;
}
.passerelles-fiche--contenu {
  background-color: #1c2b39;
  color: #FFFFFF;
  padding: 40px 20px 20px;
  margin-bottom: 40px;
}
.passerelles-fiche--contenu .texte h3 {
  margin-bottom: 20px;
  text-align: center;
}
.passerelles-fiche--contenu .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 40px;
}
.passerelles-fiche--contenu .images--bloc {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
  width: 100%;
  position: relative;
}
.passerelles-fiche--contenu .images--bloc:not(:last-child) {
  margin-right: 20px;
}
.passerelles-fiche--contenu .images--bloc p {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: right;
  background-color: rgba(28, 43, 57, 0.7);
  padding: 5px;
  width: 100%;
}
.passerelles-fiche--informations h3 {
  margin-bottom: 20px;
}
.passerelles-fiche--informations .infos {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}
.passerelles-fiche--informations .infos p {
  padding: 10px;
}
.passerelles-fiche--informations .infos p:nth-child(odd) {
  background-color: #e1e4e6;
}
.passerelles-fiche--informations .infos p .usage:not(:last-child)::after {
  content: ", ";
}
@media (max-width: 768px) {
  .passerelles-fiche {
    padding: 40px 0 80px;
  }
  .passerelles-fiche--contenu .images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .passerelles-fiche--contenu .images--bloc {
    height: 300px;
    width: 100%;
    position: relative;
  }
  .passerelles-fiche--contenu .images--bloc:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .passerelles-fiche--informations .infos {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}

.produits-services--repertoires .filtres {
  background-color: #1c2b39;
  padding: 40px;
  color: #FFFFFF;
}
.produits-services--repertoires .filtres h3 {
  margin-bottom: 20px;
}
.produits-services--repertoires .filtres select {
  max-width: 300px;
}
.produits-services--repertoires .filtres label {
  color: #FFFFFF;
}
.produits-services--repertoires .filtres--body {
  margin-top: 40px;
}
.produits-services--repertoires .filtres--body > div {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}
.produits-services--repertoires .filtres--body > div .checkbox {
  margin-bottom: 10px;
}
.produits-services--repertoires .filtres--search {
  margin-top: 40px;
}
.produits-services--repertoires .filtres--search .section {
  max-width: 300px;
  width: 100%;
}
.produits-services--repertoires .liste {
  margin-top: 40px;
}
.produits-services--repertoires .liste .highlighted-match {
  background-color: #0985C9;
}
.produits-services--repertoires .liste h3 {
  margin-bottom: 20px;
}
.produits-services--repertoires .liste--container {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: 1fr 1fr;
}
.produits-services--repertoires .liste--bloc {
  background-color: #e1e4e6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.produits-services--repertoires .liste--bloc .texte {
  margin-bottom: 0;
}
.produits-services--repertoires .liste--bloc .texte h4 {
  margin-bottom: 20px;
}
.produits-services--repertoires .liste--bloc .texte p:not(:last-child) {
  margin-bottom: 5px;
}
.produits-services--repertoires .liste--blocMembre {
  background-color: #e1e4e6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.produits-services--repertoires .liste--blocMembre .projetMembre {
  background-color: #0033A0;
  color: #FFFFFF;
  background-image: url("/assets/icons/icon-membre.png");
  background-repeat: no-repeat;
  background-position: left 10px center;
  border-radius: 19px;
  padding: 7px 10px 7px 37px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}
.produits-services--repertoires .liste--blocMembre .projetMembre p {
  font-size: 14px;
  font-size: 0.875rem;
}
.produits-services--repertoires .liste--blocMembre .texte {
  margin-bottom: 0;
}
.produits-services--repertoires .liste--blocMembre .texte h4 {
  margin-bottom: 20px;
}
.produits-services--repertoires .liste--blocMembre .texte p:not(:last-child) {
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .produits-services--repertoires .liste--container {
    display: block;
  }
  .produits-services--repertoires .liste--bloc:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .produits-services--repertoires .filtres {
    padding: 20px;
  }
  .produits-services--repertoires .filtres--body > div {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}

.batiments--repertoires {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.batiments--repertoires .filtres {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  margin-right: 20px;
}
.batiments--repertoires .filtres h3 {
  margin-bottom: 20px;
}
.batiments--repertoires .filtres--bloc {
  background-color: #1c2b39;
  padding: 20px 40px;
  color: #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
}
.batiments--repertoires .filtres--bloc h4 {
  margin-bottom: 20px;
}
.batiments--repertoires .filtres--bloc label {
  color: #FFFFFF;
}
.batiments--repertoires .filtres--bloc .checkbox {
  margin: 10px 0;
}
.batiments--repertoires .liste {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
}
.batiments--repertoires .liste h3 {
  margin-bottom: 20px;
}
.batiments--repertoires .liste--bloc {
  background-color: #e1e4e6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.batiments--repertoires .liste--bloc:not(:last-child) {
  margin-bottom: 20px;
}
.batiments--repertoires .liste--bloc .image {
  margin-right: 20px;
}
.batiments--repertoires .liste--bloc .image img {
  max-width: inherit;
}
.batiments--repertoires .liste--bloc .texte {
  margin-bottom: 0;
}
.batiments--repertoires .liste--bloc .texte h4 {
  margin-bottom: 20px;
}
.batiments--repertoires .liste--bloc .texte p:not(:last-child) {
  margin-bottom: 5px;
}
.batiments--repertoires .liste--bloc .texte .usage:not(:last-child)::after {
  content: ", ";
}
.batiments--repertoires .liste--bloc .texte .btn {
  margin-top: 20px;
}
.batiments--repertoires .liste--blocMembre {
  background-color: #e1e4e6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.batiments--repertoires .liste--blocMembre .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.batiments--repertoires .liste--blocMembre:not(:last-child) {
  margin-bottom: 20px;
}
.batiments--repertoires .liste--blocMembre .image {
  margin-right: 20px;
}
.batiments--repertoires .liste--blocMembre .image img {
  max-width: inherit;
}
.batiments--repertoires .liste--blocMembre .texte {
  margin-bottom: 0;
}
.batiments--repertoires .liste--blocMembre .texte h4 {
  margin-bottom: 20px;
}
.batiments--repertoires .liste--blocMembre .texte p:not(:last-child) {
  margin-bottom: 5px;
}
.batiments--repertoires .liste--blocMembre .texte .usage:not(:last-child)::after {
  content: ", ";
}
.batiments--repertoires .liste--blocMembre .texte .btn {
  margin-top: 20px;
}
.batiments--repertoires .liste--blocMembre .projetMembre {
  background-color: #0033A0;
  color: #FFFFFF;
  background-image: url("/assets/icons/icon-membre.png");
  background-repeat: no-repeat;
  background-position: left 10px center;
  border-radius: 19px;
  padding: 7px 10px 7px 37px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.batiments--repertoires .liste--blocMembre .projetMembre p {
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  .batiments--repertoires {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .batiments--repertoires .filtres {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .batiments--repertoires .filtres--bloc {
    padding: 20px;
  }
  .batiments--repertoires .liste--bloc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .batiments--repertoires .liste--bloc .image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .batiments--repertoires .liste--bloc .image img {
    width: 100%;
  }
  .batiments--repertoires .liste--bloc .projetMembre {
    position: relative;
    display: block;
    left: 0;
    top: 0;
    margin: 10px 0;
  }
}

/* Page Fiche */
.batiments-fiche {
  padding: 60px 0 100px;
}
.batiments-fiche--contenu {
  background-color: #1c2b39;
  color: #FFFFFF;
  padding: 40px 20px 20px;
  margin-bottom: 40px;
}
.batiments-fiche--contenu .texte h3 {
  margin-bottom: 20px;
  text-align: center;
}
.batiments-fiche--contenu .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 40px;
}
.batiments-fiche--contenu .images--bloc {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
  width: 100%;
  position: relative;
}
.batiments-fiche--contenu .images--bloc:not(:last-child) {
  margin-right: 20px;
}
.batiments-fiche--contenu .images--bloc p {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: right;
  background-color: rgba(28, 43, 57, 0.7);
  padding: 5px;
  width: 100%;
}
.batiments-fiche--informations h3 {
  margin-bottom: 20px;
}
.batiments-fiche--informations .projetMembre {
  background-color: #0033A0;
  color: #FFFFFF;
  background-image: url("/assets/icons/icon-membre.png");
  background-repeat: no-repeat;
  background-position: left 10px center;
  border-radius: 19px;
  padding: 7px 10px 7px 37px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 20px 0;
}
.batiments-fiche--informations .infos {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}
.batiments-fiche--informations .infos p {
  padding: 10px;
}
.batiments-fiche--informations .infos p:nth-child(odd) {
  background-color: #e1e4e6;
}
.batiments-fiche--informations .infos p .usage:not(:last-child)::after {
  content: ", ";
}
@media (max-width: 768px) {
  .batiments-fiche {
    padding: 40px 0 80px;
  }
  .batiments-fiche--contenu .images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .batiments-fiche--contenu .images--bloc {
    height: 300px;
    width: 100%;
    position: relative;
  }
  .batiments-fiche--contenu .images--bloc:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .batiments-fiche--informations .infos {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}

.alu-competences-recherche--contenu .recherche h3 {
  margin-bottom: 40px;
}
.alu-competences-recherche--contenu .recherche--liste .bloc:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #1c2b39;
}
.alu-competences-recherche--contenu .recherche--liste .bloc--texte {
  margin: 20px 0;
}

.espace-membres--contenu .intro .text-block > * {
  font-weight: revert;
}
.espace-membres--contenu .texte {
  padding-top: 40px;
  border-top: 1px solid #1c2b39;
}
.espace-membres--entreprises .entreprises--search {
  margin-top: 20px;
}
.espace-membres--entreprises .entreprises--search .input {
  margin-bottom: 20px;
}
.espace-membres--entreprises .entreprises--search .input input {
  background-image: url(/assets/icons/search.png);
  background-position: left 10px center;
  background-repeat: no-repeat;
  padding-left: 35px;
}
.espace-membres--entreprises .entreprises--search .liste--header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  background-color: #1c2b39;
  color: #FFFFFF;
}
.espace-membres--entreprises .entreprises--search .liste--header p {
  font-weight: bold;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.espace-membres--entreprises .entreprises--search .liste--header p:first-child {
  margin-right: 20px;
}
.espace-membres--entreprises .entreprises--search .liste--body {
  max-height: 500px;
  overflow-y: auto;
  display: block;
}
.espace-membres--entreprises .entreprises--search .liste--body .bloc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
}
.espace-membres--entreprises .entreprises--search .liste--body .bloc:nth-child(odd) {
  background-color: #e1e4e6;
}
.espace-membres--entreprises .entreprises--search .liste--body .bloc:nth-child(even) {
  background-color: #F8F8F8;
}
.espace-membres--entreprises .entreprises--search .liste--body .bloc p {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.espace-membres--entreprises .entreprises--search .liste--body .bloc p:first-child {
  margin-right: 20px;
}
.espace-membres--entreprises .demande-adhesion {
  padding-top: 60px;
}
.espace-membres--entreprises .demande-adhesion h3 {
  margin-bottom: 20px;
}
.espace-membres--entreprises .demande-adhesion p {
  margin-bottom: 20px;
}
.espace-membres--entreprises .demande-acces {
  padding-top: 60px;
}
.espace-membres--entreprises .demande-acces h3 {
  margin-bottom: 20px;
}
.espace-membres--entreprises .demande-acces p {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .espace-membres--contenu .entreprises--search .liste--header {
    padding: 20px 10px;
  }
  .espace-membres--contenu .entreprises--search .liste--header p:first-child {
    margin-right: 0;
  }
  .espace-membres--contenu .entreprises--search .liste--body {
    max-height: 400px;
  }
  .espace-membres--contenu .entreprises--search .liste--body .bloc {
    padding: 10px;
  }
}

.espace-membres-individu--contenu {
  width: 100%;
}
.espace-membres-individu--contenu .form .entreprises {
  margin-bottom: 40px;
}
.espace-membres-individu--contenu .form .entreprises--legende {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}
.espace-membres-individu--contenu .form .entreprises--legende div {
  width: 60px;
  height: 30px;
  background-color: #0985C9;
  border: 1px solid #1c2b39;
  margin-right: 10px;
}
.espace-membres-individu--contenu .form .entreprises--search {
  width: 100%;
}
.espace-membres-individu--contenu .form .entreprises--search .input input {
  margin-top: 20px;
  background-image: url(/assets/icons/search.png);
  background-position: left 10px center;
  background-repeat: no-repeat;
  padding-left: 35px;
}
.espace-membres-individu--contenu .form .entreprises--search .liste--header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  background-color: #1c2b39;
  color: #FFFFFF;
}
.espace-membres-individu--contenu .form .entreprises--search .liste--header p {
  font-weight: bold;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.espace-membres-individu--contenu .form .entreprises--search .liste--body {
  max-height: 500px;
  overflow-y: auto;
  display: block;
}
.espace-membres-individu--contenu .form .entreprises--search .liste--body .bloc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px;
  margin: 0;
}
.espace-membres-individu--contenu .form .entreprises--search .liste--body .bloc:nth-child(odd) {
  background-color: #FFFFFF;
}
.espace-membres-individu--contenu .form .entreprises--search .liste--body .bloc:nth-child(even) {
  background-color: #F8F8F8;
}
.espace-membres-individu--contenu .form .entreprises--search .liste--body .bloc--input {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin-right: 20px;
}
.espace-membres-individu--contenu .form .entreprises--search .liste--body .bloc--input input {
  margin-right: 5px;
}
.espace-membres-individu--contenu .form .entreprises--search .liste--body .bloc p {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.espace-membres-individu--contenu .form .entreprises--search .liste--body .bloc.membre {
  background-color: #0985C9;
}
.espace-membres-individu--contenu .form .entreprises--search p.non-membre {
  margin: 20px 0;
}
.espace-membres-individu--contenu .form .success {
  padding: 0;
  background-color: #e1e4e6;
}
@media (max-width: 768px) {
  .espace-membres-individu--contenu .form .entreprises--search .liste--header {
    padding: 20px 10px;
  }
  .espace-membres-individu--contenu .form .entreprises--search .liste--body {
    max-height: 400px;
  }
  .espace-membres-individu--contenu .form .entreprises--search .liste--body .bloc {
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .espace-membres-individu--contenu .form {
    padding: 40px 10px;
  }
}

.espace-membres-entreprise--contenu {
  width: 100%;
}
.espace-membres-entreprise--form, .espace-membres-entreprise--connexion {
  padding-top: 40px;
  border-top: 1px solid #1c2b39;
}
.espace-membres-entreprise--form .form h3 {
  margin-bottom: 20px;
}
.espace-membres-entreprise--form .form .section {
  margin-bottom: 40px;
}
.espace-membres-entreprise--form .form .entreprise {
  display: block;
}
.espace-membres-entreprise--form .form .entreprise p {
  margin-top: 5px;
}
.espace-membres-entreprise--form .form .etape-1 .section p:last-child {
  margin-top: 20px;
}
.espace-membres-entreprise--form .form .etape-1 .section .no-delegate input {
  visibility: hidden;
  width: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}
.espace-membres-entreprise--form .form .etape-1 .section .no-delegate input::after {
  content: none;
}
.espace-membres-entreprise--form .form .etape-1 .section .no-delegate label {
  cursor: default;
  margin: 0;
}
.espace-membres-entreprise--form .form .etape-2 .section {
  display: block;
}
.espace-membres-entreprise--form .form .etape-2 .section:not(:last-child) {
  margin-bottom: 40px;
}
.espace-membres-entreprise--form .form .etape-2 .delegue p {
  margin-top: 5px;
}
.espace-membres-entreprise--form .form .etape-2 .paiement--prix {
  background-color: #1c2b39;
  color: #FFFFFF;
  padding: 20px;
}
.espace-membres-entreprise--form .form .etape-2 .paiement--prix .bloc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.espace-membres-entreprise--form .form .etape-2 .paiement--prix .bloc:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #FFFFFF;
}
.espace-membres-entreprise--form .form .etape-2 .form--callToAction {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.espace-membres-entreprise--form .form .etape-2 .form--callToAction #paypal-button {
  width: 100%;
  max-width: 400px;
}
.espace-membres-entreprise--form .form .etape-2 .form--callToAction a.btn {
  margin-top: 20px;
}
.espace-membres-entreprise--connexion h2, .espace-membres-entreprise--connexion p {
  margin-bottom: 20px;
}
.espace-membres-entreprise--connexion .form .mdpOublie {
  display: block;
  margin-top: 10px;
}

.entreprises--contenu .entreprises {
  padding-top: 50px;
  border-top: 1px solid #192731;
}
.entreprises--contenu .entreprises .filtres {
  margin-bottom: 30px;
  position: relative;
}
.entreprises--contenu .entreprises .filtres .toggle-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.entreprises--contenu .entreprises .filtres .toggle-count .entreprise-type-toggle {
  max-width: 300px;
  width: 100%;
  cursor: pointer;
  position: relative;
}
.entreprises--contenu .entreprises .filtres .toggle-count .entreprise-type-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
  height: 100%;
  background: url(/assets/icons/chevron-down.svg) no-repeat center/18px;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.58, 0, 0.32, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.58, 0, 0.32, 1);
  transition: transform 0.5s cubic-bezier(0.58, 0, 0.32, 1);
  transition: transform 0.5s cubic-bezier(0.58, 0, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.58, 0, 0.32, 1);
  -webkit-transform-origin: center;
  transform-origin: center;
}
.entreprises--contenu .entreprises .filtres .toggle-count .entreprise-type-toggle.active::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.entreprises--contenu .entreprises .filtres--popup {
  max-width: 100%;
  background-color: #F8F8F8;
  padding: 0 20px;
  opacity: 0;
  max-height: 0;
  -webkit-transform: top;
  transform: top;
  -webkit-transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0;
  border: 1px solid #1c2b39;
}
.entreprises--contenu .entreprises .filtres--popup .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.entreprises--contenu .entreprises .filtres--popup .checkbox input {
  margin-top: 0;
  cursor: pointer;
}
.entreprises--contenu .entreprises .filtres--popup .checkbox label {
  padding-left: 8px;
  color: #1c2b39;
}
.entreprises--contenu .entreprises .filtres--popup.active {
  margin-top: 20px;
  padding: 25px 20px;
  opacity: 1;
  max-height: 1000px;
}
.entreprises--contenu .entreprises .entreprise {
  gap: 20px;
}
.entreprises--contenu .entreprises .entreprise--bloc {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  background-color: #e1e4e6;
  padding: 20px 20px;
}
.entreprises--contenu .entreprises .entreprise--bloc .logo {
  max-height: 120px;
  max-width: 120px;
}
.entreprises--contenu .entreprises .entreprise--bloc .logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.entreprises--contenu .entreprises .entreprise--bloc .details h4 {
  margin-bottom: 25px;
}
.entreprises--contenu .entreprises .entreprise--bloc .details--infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
.entreprises--contenu .entreprises .entreprise--bloc .details--infos .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.entreprises--contenu .entreprises .entreprise--bloc .details--infos .info img {
  width: 15px;
  height: 15px;
}
@media (max-width: 1125px) {
  .entreprises .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .entreprises .row .sidebar {
    margin-top: 0;
  }
}
@media (max-width: 875px) {
  .entreprises--contenu .entreprises .entreprise {
    grid-template-columns: 1fr;
    display: grid;
  }
}
@media (max-width: 415px) {
  .entreprises--contenu .entreprises .filtres--popup {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
  }
  .entreprises--contenu .entreprises .entreprise--bloc {
    padding: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

/**************** HEADER MENU *******************/
header .menu-utilitaire {
  text-align: right;
}
header .menu-utilitaire nav ul li {
  display: inline-block;
  margin-bottom: 10px;
}
header .menu-utilitaire nav ul li:not(:first-child) {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #1c2b39;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
header .menu-utilitaire nav ul li.user {
  /* smartphones, touchscreens */
}
header .menu-utilitaire nav ul li.user svg {
  margin-right: 5px;
  vertical-align: bottom;
}
header .menu-utilitaire nav ul li.user svg path {
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
@media (pointer: fine) {
  header .menu-utilitaire nav ul li.user:hover .lu:not(.entreprise) {
    color: initial;
  }
}
header .menu-principal--head-nav {
  margin-left: auto;
  margin-right: 40px;
}
header .menu-principal--nav .unlock nav ul li {
  display: inline-block;
  margin-bottom: 20px;
}
header .menu-principal--nav .unlock nav ul li:not(:last-child) {
  margin-right: 40px;
}
header .menu-principal--nav .main--section > a {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #FFFFFF;
}
header .menu-principal--nav .main--sub-section {
  margin-bottom: 20px;
}
header.open .menu-utilitaire nav ul li:not(:first-child) {
  border-left: 1px solid #FFFFFF;
}
header.open .menu-utilitaire nav ul li.user {
  /* smartphones, touchscreens */
}
header.open .menu-utilitaire nav ul li.user svg path {
  fill: #FFFFFF;
}
@media (pointer: fine) {
  header.open .menu-utilitaire nav ul li.user:hover .lu:not(.entreprise) {
    color: #FFFFFF;
  }
}
@media (max-width: 1024px) {
  header .menu-principal--nav .main--section > a {
    margin-bottom: 10px;
  }
  header .menu-principal--nav .main--sub-section {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  header .menu-utilitaire nav ul li:not(:first-child) {
    margin-left: 10px;
    padding-left: 10px;
  }
  header .menu-utilitaire nav ul li.user svg {
    margin-right: 2px;
  }
  header .menu-principal--head-nav {
    margin-right: 20px;
  }
}

/********* FOOTER ************/
footer {
  color: #FFFFFF;
}
footer .footer-top {
  background-image: url(/assets/backgrounds/footer.jpg);
  background-size: cover;
  padding: 60px 0;
}
footer .footer-top--row {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 40px;
}
footer .footer-top--row .logo {
  max-width: 250px;
  margin-right: 40px;
}
footer .footer-top--row .sociaux {
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
  border-bottom: 2px solid #1c2b39;
  padding-bottom: 10px;
}
footer .footer-top--row .sociaux .row {
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}
footer .footer-top--row .sociaux a:not(:last-child) {
  margin-right: 10px;
}
footer .footer-top--row .sociaux a.linkedin svg {
  width: 22px;
}
footer .footer-top--row .sociaux svg {
  width: 25px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  /* smartphones, touchscreens */
}
footer .footer-top--row .sociaux svg path {
  -webkit-transition: 0.2s cubic-bezier(0.35, 0, 0, 1);
  transition: 0.2s cubic-bezier(0.35, 0, 0, 1);
}
@media (pointer: fine) {
  footer .footer-top--row .sociaux svg:hover path {
    fill: #0033A0;
  }
}
footer .footer-top--utilitaire {
  margin-bottom: 60px;
}
footer .footer-top--utilitaire .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* smartphones, touchscreens */
}
footer .footer-top--utilitaire .user svg {
  margin-right: 5px;
}
footer .footer-top--utilitaire .user svg path {
  fill: #8a9297;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
@media (pointer: fine) {
  footer .footer-top--utilitaire .user:hover .lmf {
    color: #8a9297;
  }
}
footer .footer-top--utilitaire li:not(:last-child) {
  margin-right: 40px;
}
footer .footer-top--menu .main {
  display: grid;
  grid-template-columns: [col1] 1fr [col2] 1fr [col3] 1fr;
  grid-template-rows: [line1] auto [line2] auto [line3] auto;
  grid-gap: 40px;
}
footer .footer-top--menu .main > ul:nth-child(1) {
  grid-area: line1/col1;
}
footer .footer-top--menu .main > ul:nth-child(2) {
  grid-area: line2/col1;
}
footer .footer-top--menu .main > ul:nth-child(3) {
  grid-area: line3/col1;
}
footer .footer-top--menu .main > ul:nth-child(4) {
  grid-area: line1/col2;
}
footer .footer-top--menu .main > ul:nth-child(5) {
  grid-area: line2/col2;
}
footer .footer-top--menu .main > ul:nth-child(6) {
  grid-area: line3/col2;
}
footer .footer-top--menu .main > ul:nth-child(7) {
  grid-area: line1/col3;
}
footer .footer-top--menu .main--section > a {
  margin-bottom: 10px;
  display: block;
}
footer .footer-top--menu .main--sub-section {
  margin-bottom: 5px;
}
footer .footer-top--infolettre {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #1c2b39;
}
footer .footer-top--infolettre h4 {
  text-align: center;
  margin-bottom: 20px;
  color: #1c2b39;
}
footer .footer-top--infolettre form {
  max-width: 600px;
  margin: 0 auto;
}
footer .footer-bottom {
  background-color: #1c2b39;
}
footer .footer-bottom .copyright {
  padding: 20px 0;
}
footer .footer-bottom .copyright p {
  text-align: center;
}
footer .footer-bottom .copyright .link {
  color: #FFFFFF;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  footer .footer-bottom .copyright .link:hover {
    color: #0985C9;
  }
}
@media (max-width: 768px) {
  footer .footer-top {
    padding: 60px 0;
  }
  footer .footer-top--row .logo {
    max-width: 200px;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
  }
  footer .footer-top--row .sociaux svg {
    width: 20px;
  }
}
@media (max-width: 600px) {
  footer .footer-top--utilitaire {
    margin-bottom: 40px;
  }
  footer .footer-top--utilitaire ul {
    display: block;
  }
  footer .footer-top--utilitaire ul li {
    display: inline;
    margin-bottom: 20px;
  }
  footer .footer-top--menu .main {
    grid-template-columns: 1fr 1fr;
  }
  footer .footer-top--menu .main > ul:nth-child(1) {
    grid-area: inherit;
  }
  footer .footer-top--menu .main > ul:nth-child(2) {
    grid-area: inherit;
  }
  footer .footer-top--menu .main > ul:nth-child(3) {
    grid-area: inherit;
  }
  footer .footer-top--menu .main > ul:nth-child(4) {
    grid-area: inherit;
  }
  footer .footer-top--menu .main > ul:nth-child(5) {
    grid-area: inherit;
  }
  footer .footer-top--menu .main > ul:nth-child(6) {
    grid-area: inherit;
  }
  footer .footer-top--menu .main > ul:nth-child(7) {
    grid-area: inherit;
  }
}

/********* HEADER ************/
header {
  position: relative;
  -webkit-transition: 0.6s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.6s cubic-bezier(0.58, 0, 0.32, 1);
  background-image: url(/assets/backgrounds/header.jpg);
  background-size: cover;
  z-index: 20;
}
header .menu-utilitaire {
  padding: 40px 0 20px;
  position: relative;
  z-index: 5;
}
header .menu-principal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 40px;
}
header .menu-principal--logo {
  max-width: 200px;
  width: 100%;
  margin-right: 20px;
  z-index: 5;
}
header .menu-principal--logo img {
  -webkit-transition: 0.6s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.6s cubic-bezier(0.58, 0, 0.32, 1);
}
header .menu-principal--head-nav {
  z-index: 5;
}
header .menu-principal--btn {
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  /* smartphones, touchscreens */
}
header .menu-principal--btn a {
  margin-right: 5px;
}
header .menu-principal--btn span {
  display: block;
  background-color: #1c2b39;
  height: 2px;
  margin-top: 4px;
  border-radius: 8px;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
header .menu-principal--btn span:nth-child(1) {
  width: 18px;
  margin-top: 2px;
}
header .menu-principal--btn span:nth-child(2) {
  width: 24px;
}
header .menu-principal--btn span:nth-child(3) {
  width: 21px;
  margin-bottom: 0;
}
@media (pointer: fine) {
  header .menu-principal--btn:hover a {
    color: #0033A0;
  }
  header .menu-principal--btn:hover span {
    background-color: #0033A0;
  }
}
header .menu-principal--nav {
  background-color: #1c2b39;
  height: 100vh;
  padding-top: 217px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: all 0.6s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.6s cubic-bezier(0.58, 0, 0.32, 1);
  width: 100%;
  z-index: 4;
}
header .menu-principal--nav .unlock {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background-color: #e1e4e6;
}
header .menu-principal--nav .unlock.loggedIn::after {
  content: "";
  position: absolute;
  top: -40px;
  right: 30%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 200px;
  height: 200px;
  background-image: url(/assets/icons/lock_open.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  opacity: 0.3;
}
header .menu-principal--nav .main {
  position: relative;
}
header .menu-principal--nav .main--buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -30px;
  right: 80px;
}
header .menu-principal--nav .main .wrapper {
  position: relative;
}
header .menu-principal--nav .main nav {
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 217px - 121px);
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px 80px;
  opacity: 0;
  -webkit-transition: 0.7s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.7s cubic-bezier(0.58, 0, 0.32, 1);
}
header .menu-principal--nav .main nav#aluquebec {
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
}
header .menu-principal--nav .main nav#aluquebec.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
header .menu-principal--nav .main nav#ceial {
  -webkit-transform: translateX(100vw);
  transform: translateX(100vw);
}
header .menu-principal--nav .main nav#ceial.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
header .menu-principal--nav .main nav ul {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
header.open .menu-principal--logo img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
header.open .menu-principal--btn {
  /* smartphones, touchscreens */
}
header.open .menu-principal--btn span {
  background-color: #FFFFFF;
  margin: 0;
}
header.open .menu-principal--btn span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(3px) translateX(2px);
  transform: rotate(45deg) translateY(3px) translateX(2px);
  width: 19px;
}
header.open .menu-principal--btn span:nth-child(2) {
  width: 0;
  opacity: 0;
}
header.open .menu-principal--btn span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-1px) translateX(0);
  transform: rotate(-45deg) translateY(-1px) translateX(0);
  width: 19px;
}
@media (pointer: fine) {
  header.open .menu-principal--btn:hover a {
    color: #0985C9;
  }
  header.open .menu-principal--btn:hover span {
    background-color: #0985C9;
  }
}
header.open .menu-principal--nav {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
@media (max-width: 1280px) {
  header .menu-principal--nav .main--buttons {
    right: 60px;
  }
  header .menu-principal--nav .main nav {
    padding: 40px 60px;
  }
}
@media (max-width: 1024px) {
  header .menu-principal--nav .main nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  header .menu-principal--nav .unlock::after {
    right: 20px;
  }
  header .menu-principal--nav .main--buttons {
    right: 40px;
  }
  header .menu-principal--nav .main nav {
    padding: 40px;
  }
  header .menu-principal--btn span {
    margin-top: 4px;
  }
  header.open .menu-principal--btn span:nth-child(1) {
    -webkit-transform: rotate(45deg) translateY(3px) translateX(1px);
    transform: rotate(45deg) translateY(3px) translateX(1px);
    width: 18px;
  }
  header.open .menu-principal--btn span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(-2px) translateX(0);
    transform: rotate(-45deg) translateY(-2px) translateX(0);
    width: 18px;
  }
}
@media (max-width: 600px) {
  header .menu-utilitaire {
    padding: 20px 0;
  }
  header .menu-principal {
    padding-bottom: 20px;
  }
  header .menu-principal--nav {
    padding-top: 177px;
  }
  header .menu-principal--nav .main--buttons {
    right: 20px;
  }
  header .menu-principal--nav .main nav {
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: calc(100vh - 177px - 156px);
  }
}

.banner {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 120px 0 80px;
}
.banner .bloc--titre {
  text-transform: uppercase;
  margin: 0 0 20px;
  line-height: 1.2;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: url(/assets/backgrounds/fond-titreh1.jpg);
}
.banner.home {
  padding: 80px 0;
}
.banner.home .bloc {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
}
.banner.home .bloc-ceial {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  margin-left: 40px;
  background-color: rgba(241, 100, 35, 0.1);
  padding: 80px 70px 0;
  height: 460px;
  border-radius: 50%;
  min-width: 460px;
  max-width: 460px;
}
.banner.home .bloc-ceial--titre {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #f16423;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.banner.home .bloc-ceial--titre h3 {
  margin-right: 10px;
  -ms-flex-preferred-size: 85%;
  flex-basis: 85%;
}
@media (max-width: 1024px) {
  .banner.home {
    padding-bottom: 0;
  }
  .banner.home .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .banner.home .row .bloc-ceial {
    -ms-flex-preferred-size: inherit;
    flex-basis: inherit;
    min-width: 100vw;
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
    padding: 40px;
    border-radius: 0;
    margin-left: 0;
    margin-top: 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 768px) {
  .banner.home .row .bloc-ceial {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }
}
@media (max-width: 600px) {
  .banner.home .row .bloc-ceial {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    padding: 20px;
  }
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 150;
}
.loading-screen.hidden {
  display: none;
}
.loading-screen .row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.loading-screen h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 5px;
  font-size: 48px;
  font-size: 3rem;
}
.loading-screen .loading {
  width: 38px;
  height: 38px;
  position: relative;
}
.loading-screen .loading--dot {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}
.loading-screen .loading--dot::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.loading-screen .loading--dot1 {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-animation: loading-orbit1 5s infinite;
  animation: loading-orbit1 5s infinite;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}
.loading-screen .loading--dot1::after {
  background: #FFFFFF;
}
.loading-screen .loading--dot2 {
  -webkit-transform: rotate(215deg);
  transform: rotate(215deg);
  -webkit-animation: loading-orbit2 5s infinite;
  animation: loading-orbit2 5s infinite;
  -webkit-animation-delay: 125ms;
  animation-delay: 125ms;
}
.loading-screen .loading--dot2::after {
  background: #e1e4e6;
}
.loading-screen .loading--dot3 {
  -webkit-transform: rotate(205deg);
  transform: rotate(205deg);
  -webkit-animation: loading-orbit3 5s infinite;
  animation: loading-orbit3 5s infinite;
  -webkit-animation-delay: 250ms;
  animation-delay: 250ms;
}
.loading-screen .loading--dot3::after {
  background: #B2B2B2;
}
.loading-screen .loading--dot4 {
  -webkit-transform: rotate(195deg);
  transform: rotate(195deg);
  -webkit-animation: loading-orbit4 5s infinite;
  animation: loading-orbit4 5s infinite;
  -webkit-animation-delay: 375ms;
  animation-delay: 375ms;
}
.loading-screen .loading--dot4::after {
  background: #B2B2B2;
}
.loading-screen .loading--dot5 {
  -webkit-transform: rotate(185deg);
  transform: rotate(185deg);
  -webkit-animation: loading-orbit5 5s infinite;
  animation: loading-orbit5 5s infinite;
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
}
.loading-screen .loading--dot5::after {
  background: #8a9297;
}

.breadcrumb {
  padding-top: 20px;
}
.breadcrumb ul li {
  padding-right: 10px;
  display: inline;
}
.breadcrumb ul li:not(:last-child):after {
  content: "//";
  font-size: 18px;
  font-size: 1.125rem;
  margin-left: 10px;
}

.sidebar {
  min-width: 300px;
  max-width: 300px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 60px;
}
.sidebar h3 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #1c2b39;
}
.sidebar .btn {
  margin-top: 20px;
}
.sidebar--menu-section, .sidebar--evenements, .sidebar--nouvelles, .sidebar--communiques {
  background-color: #e1e4e6;
  padding: 40px 20px;
  margin-bottom: 20px;
}
.sidebar--menu-section li:not(:last-child), .sidebar--evenements li:not(:last-child), .sidebar--nouvelles li:not(:last-child), .sidebar--communiques li:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #1c2b39;
}
.sidebar--texte {
  background-color: #e1e4e6;
  padding: 40px 20px;
  margin-bottom: 20px;
  text-align: center;
}
.sidebar--texte h3 {
  border-bottom: none;
  color: #f16423;
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .sidebar {
    margin-left: 0;
    margin-top: 40px;
    max-width: 400px;
  }
}
@media (max-width: 600px) {
  .sidebar {
    width: 100%;
    max-width: inherit;
    min-width: inherit;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  background-color: #e1e4e6;
  color: #1c2b39;
  padding: 20px 0;
  width: 100%;
  z-index: 100;
}
.cookies.hidden {
  display: none;
}
.cookies .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cookies--options {
  margin-left: 40px;
}
@media (max-width: 600px) {
  .cookies .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cookies--options {
    margin-left: 0;
    margin-top: 20px;
  }
}

.popup-message-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.7);
}
.popup-message-container .popup-message {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 1000px;
  width: calc(100% - 20px);
}
.popup-message-container .popup-message .text-block {
  padding: 40px;
  max-height: 500px;
  background-color: #FFFFFF;
  overflow-y: scroll;
}
.popup-message-container .popup-message .text-block h2, .popup-message-container .popup-message .text-block h3 {
  margin-top: 10px;
}
.popup-message-container .popup-message .popup-image {
  position: relative;
}
.popup-message-container .popup-message .popup-image .btn--popup {
  position: absolute;
  bottom: 6%;
  left: 54%;
}
.popup-message-container .popup-message .close-popup {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 44px;
  height: 44px;
  margin: 0;
  cursor: pointer;
  background-color: #FFFFFF;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
  -webkit-transition: all 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  /* smartphones, touchscreens */
}
.popup-message-container .popup-message .close-popup span {
  -webkit-transition: all 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 30px;
  font-size: 1.875rem;
  color: #153F96;
}
@media (pointer: fine) {
  .popup-message-container .popup-message .close-popup:hover {
    background-color: #153F96;
  }
  .popup-message-container .popup-message .close-popup:hover span {
    color: #FFFFFF;
  }
}
@media (max-width: 1024px) {
  .popup-message-container .popup-message .text-block {
    padding: 40px 20px;
  }
  .popup-message-container .popup-message .popup-image .btn--popup {
    left: 0;
    bottom: auto;
    top: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .popup-message-container .popup-message .close-popup {
    width: 38px;
    height: 38px;
  }
  .popup-message-container .popup-message .close-popup span {
    font-size: 24px;
    font-size: 1.5rem;
  }
}