@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
|   |– _umbraco-block-grid.scss         # Umbraco Block Grid 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/
|   |– _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;
}

.center {
  text-align: center;
}

h1, .h1 {
  font-family: var(--title), sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 42px;
  font-size: 2.625rem;
}
@media (min-width: 600px) {
  h1, .h1 {
    font-size: 42px;
    font-size: 2.625rem;
  }
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 42px;
    font-size: 2.625rem;
  }
}

h2, .h2 {
  font-family: var(--title), sans-serif;
  font-weight: 400;
  font-size: 26px;
  font-size: 1.625rem;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

h3, .h3 {
  font-family: var(--title), sans-serif;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

h4, .h4 {
  font-family: var(--title), sans-serif;
  font-weight: 700;
  font-size: 17px;
  font-size: 1.0625rem;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}

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: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  p, .p {
    font-size: 16px;
    font-size: 1rem;
  }
}
p strong, .p strong {
  font-size: 17px;
  font-size: 1.0625rem;
}
p em, .p em {
  font-size: 17px;
  font-size: 1.0625rem;
}

li {
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  li {
    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: 13px;
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  small, .small {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

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: 400;
  font-style: normal;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .lm {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.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: 14px;
    font-size: 0.875rem;
  }
}

.lu {
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .lu {
    font-size: 16px;
    font-size: 1rem;
  }
}

.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 #app::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.grecaptcha-badge {
  z-index: 50;
}

body {
  overflow-x: hidden;
  position: relative;
}

#app::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(34, 35, 42)), to(rgba(34, 35, 42, 0.45)));
  background: linear-gradient(to bottom, rgb(34, 35, 42) 0%, rgba(34, 35, 42, 0.45) 100%);
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 20;
  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);
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

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: #f3f3f3;
}

::selection {
  background: #f3f3f3;
}

/*
* 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 #f3f3f3;
  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: #353742;
}
.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: #272930;
  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: #5c6166;
  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: #5c6166;
  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(/media/images/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: #272930;
}

::-moz-placeholder { /* Most modern browsers support this now. */
  color: #272930;
}

:-ms-input-placeholder { /* Most modern browsers support this now. */
  color: #272930;
}

::-ms-input-placeholder { /* Most modern browsers support this now. */
  color: #272930;
}

::placeholder { /* Most modern browsers support this now. */
  color: #272930;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #272930;
  opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #272930;
  opacity: 1;
}

.btn, button {
  padding: 15px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #FFFFFF;
  border-radius: 40px;
  text-decoration: none;
  background-color: transparent;
  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: #FFFFFF;
    color: #000000;
  }
}
.btn:active, button:active {
  background-color: #5c6166;
}
.btn.--secondary, button.--secondary {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .btn.--secondary:hover, button.--secondary:hover {
    background-color: #000000;
    color: #FFFFFF;
  }
}
.btn.--secondary:active, button.--secondary:active {
  background-color: #000000;
}
@media (max-width: 480px) {
  .btn, button {
    padding: 15px 20px;
  }
}

.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: #5c6166;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .btn-menu--aluqc:hover {
    background-color: #f3f3f3;
  }
}
.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: #5c6166;
  -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: #f3f3f3;
  }
}

.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: #5c6166;
  }
}

.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: #5c6166;
  }
}

.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: #5c6166;
}
@media (pointer: fine) {
  .lm-sb:hover {
    color: #5c6166;
  }
}
.lm-sb.ceial {
  /* smartphones, touchscreens */
}
.lm-sb.ceial.active {
  color: #5c6166;
}
@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: #5c6166;
  }
}
.lu.active {
  color: #5c6166;
}

.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: #393b47;
  -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: #5c6166;
  }
}
.lmf:active {
  color: #5c6166;
}

.lsmf {
  color: #393b47;
  -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: #5c6166;
  }
}
.lsmf:active {
  color: #5c6166;
}

header.open .lm {
  color: #FFFFFF;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  header.open .lm:hover {
    color: #f3f3f3;
  }
}
header.open .lm:active {
  color: #f3f3f3;
}
header.open .lsm {
  color: #FFFFFF;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  header.open .lsm:hover {
    color: #f3f3f3;
  }
}
header.open .lsm:active {
  color: #f3f3f3;
}
header.open .lu {
  color: #FFFFFF;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  header.open .lu:hover {
    color: #f3f3f3;
  }
}
header.open .lu:active {
  color: #f3f3f3;
}

.btn-plus {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  background: #5c6166;
  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: #f3f3f3;
  }
  .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;
}

.body {
  background-color: #eeeeee;
}

/*
* 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: #eeeeee;
  padding: 40px 20px;
  border-left: solid 3px #5c6166;
}
.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;
  }
}

/*
* Collapse
*/
.collapse--head {
  padding: 30px;
  background-color: #FFFFFF;
  color: #5c6166;
  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);
}
.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;
}
.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 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@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: 175px;
}
@media (max-width: 950px) {
  .push-top {
    margin-top: 175px;
  }
}
@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;
  }
}

.xs-wrapper {
  padding: 0 40px;
  max-width: 900px;
  margin: auto;
}
@media (max-width: 600px) {
  .xs-wrapper {
    padding: 0;
  }
}

.wrapper {
  padding: 0;
  margin: auto;
  max-width: 1440px;
}
@media (max-width: 1280px) {
  .wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 1280px) and (max-width: 768px) {
  .wrapper {
    padding: 0;
  }
}
@media (max-width: 1280px) and (max-width: 768px) and (max-width: 600px) {
  .wrapper {
    padding: 0;
  }
}

.md-wrapper {
  padding: 0;
  margin: auto;
  max-width: 1640px;
}
@media (max-width: 1280px) {
  .md-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 1280px) and (max-width: 768px) {
  .md-wrapper {
    padding: 0;
  }
}
@media (max-width: 1280px) and (max-width: 768px) and (max-width: 600px) {
  .md-wrapper {
    padding: 0;
  }
}

.lg-wrapper {
  margin: auto;
  max-width: 1920px;
  padding: 0;
}
@media (max-width: 1280px) {
  .lg-wrapper {
    padding: 0;
  }
}
@media (max-width: 1280px) and (max-width: 768px) {
  .lg-wrapper {
    padding: 0;
  }
}
@media (max-width: 1280px) and (max-width: 768px) and (max-width: 600px) {
  .lg-wrapper {
    padding: 0;
  }
}

.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%;
}

.umb-block-grid__layout-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--umb-block-grid--grid-columns, 1), minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: minmax(60px, -webkit-min-content);
  grid-auto-rows: minmax(60px, min-content);
  -moz-column-gap: var(--umb-block-grid--column-gap, 20px);
  -webkit-column-gap: var(--umb-block-grid--column-gap, 20px);
  column-gap: var(--umb-block-grid--column-gap, 20px);
  row-gap: var(--umb-block-grid--row-gap, 20px);
}
.umb-block-grid__layout-item {
  position: relative;
  /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
  grid-column-end: span min(var(--umb-block-grid--item-column-span, 1) * 3, var(--umb-block-grid--grid-columns));
  grid-row: span var(--umb-block-grid--item-row-span, 1);
}
.umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--umb-block-grid--area-grid-columns, var(--umb-block-grid--grid-columns, 1)), minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: minmax(60px, -webkit-min-content);
  grid-auto-rows: minmax(60px, min-content);
  -moz-column-gap: var(--umb-block-grid--areas-column-gap, 20px);
  -webkit-column-gap: var(--umb-block-grid--areas-column-gap, 20px);
  column-gap: var(--umb-block-grid--areas-column-gap, 20px);
  row-gap: var(--umb-block-grid--areas-row-gap, 20px);
}
.umb-block-grid__area {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
  grid-column-end: span min(var(--umb-block-grid--area-column-span, 1) * 3, var(--umb-block-grid--area-grid-columns));
  grid-row: span var(--umb-block-grid--area-row-span, 1);
}
@media (min-width: 768px) {
  .umb-block-grid__layout-container {
    grid-column-end: span min(var(--umb-block-grid--item-column-span, 1), var(--umb-block-grid--grid-columns));
    -moz-column-gap: var(--umb-block-grid--areas-column-gap, 20px);
    -webkit-column-gap: var(--umb-block-grid--areas-column-gap, 20px);
    column-gap: var(--umb-block-grid--areas-column-gap, 20px);
    row-gap: var(--umb-block-grid--areas-row-gap, 40px);
  }
  .umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
    grid-column-end: span min(var(--umb-block-grid--area-column-span, 1), var(--umb-block-grid--area-grid-columns));
    -moz-column-gap: var(--umb-block-grid--areas-column-gap, 20px);
    -webkit-column-gap: var(--umb-block-grid--areas-column-gap, 20px);
    column-gap: var(--umb-block-grid--areas-column-gap, 20px);
    row-gap: var(--umb-block-grid--areas-row-gap, 40px);
  }
}
@media (min-width: 1024px) {
  .umb-block-grid__layout-item {
    grid-column-end: span min(var(--umb-block-grid--item-column-span, 1), var(--umb-block-grid--grid-columns));
  }
  .umb-block-grid__area {
    grid-column-end: span min(var(--umb-block-grid--area-column-span, 1), var(--umb-block-grid--area-grid-columns));
  }
}

.Accueil {
  background: url("/media/3641/accueil14_869416154_bac.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}
.Accueil .strate-enjeux {
  background-color: #FFFFFF;
  padding: 40px 0 211px;
  color: #5c6166;
}
.Accueil .strate-enjeux .wrapper #scrollToEnjeux {
  margin: 0 auto 5px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.Accueil .strate-enjeux .wrapper #scrollToEnjeux svg {
  width: 25px;
  height: 40px;
}
.Accueil .strate-enjeux .wrapper > h2 {
  max-width: 250px;
  margin: auto;
  line-height: normal;
}
.Accueil .strate-enjeux .wrapper .--container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 40px 15px;
  margin: 40px 0 0;
}
.Accueil .strate-enjeux .wrapper .--container .bloc-enjeu .--image {
  margin: 0 0 15px;
  position: relative;
}
.Accueil .strate-enjeux .wrapper .--container .bloc-enjeu .--image img {
  width: 100%;
}
.Accueil .strate-enjeux .wrapper .--container .bloc-enjeu .--image ::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/media/4472/i_plus_pale.png) no-repeat center center, -webkit-gradient(linear, left top, left bottom, from(rgba(34, 35, 42, 0)), to(rgb(34, 35, 42)));
  background: url(/media/4472/i_plus_pale.png) no-repeat center center, linear-gradient(to bottom, rgba(34, 35, 42, 0) 0%, rgb(34, 35, 42) 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  opacity: 0;
}
.Accueil .strate-enjeux .wrapper .--container .bloc-enjeu .--image:hover ::before {
  opacity: 1;
}
.Accueil .strate-enjeux .wrapper .--container .bloc-enjeu .--text a {
  text-decoration: none;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  /* smartphones, touchscreens */
}
@media (max-width: 1024px) {
  .Accueil .strate-enjeux .wrapper .--container .bloc-enjeu .--text a h2 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media (pointer: fine) {
  .Accueil .strate-enjeux .wrapper .--container .bloc-enjeu .--text a:hover {
    color: #882345;
    text-decoration: underline;
  }
}
@media (max-width: 768px) {
  .Accueil .strate-enjeux .wrapper .--container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .Accueil .strate-enjeux .wrapper .--container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1440px) {
  .Accueil .strate-enjeux .wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .Accueil .strate-enjeux {
    padding: 40px 0 80px;
  }
}
.Accueil .strate-parallax-1 {
  height: 390px;
}
@media (max-width: 1024px) {
  .Accueil .strate-parallax-1 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 600px) {
  .Accueil .strate-parallax-1 {
    display: none;
  }
}
.Accueil .strate-parallax-1 .lg-wrapper {
  background: url(/media/4494/contreforme_parallax_2.png) no-repeat left top;
}
@media (max-width: 1024px) {
  .Accueil .strate-parallax-1 .lg-wrapper {
    background-size: 100% 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background-position: -300px 100%;
  }
}
.Accueil .strate-parallax-1 .lg-wrapper img {
  margin: -171px 0 0;
}
@media (max-width: 1024px) {
  .Accueil .strate-parallax-1 .lg-wrapper img {
    max-width: 50%;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .Accueil .strate-parallax-1 .lg-wrapper img {
    margin: 0;
  }
}
.Accueil .strate-enjeux-intervenants {
  background-color: #393b47;
  padding: 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .Accueil .strate-enjeux-intervenants {
    padding: 60px 0;
  }
}
@media (max-width: 600px) {
  .Accueil .strate-enjeux-intervenants {
    padding: 20px 0 0;
  }
}
.Accueil .strate-enjeux-intervenants .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.Accueil .strate-enjeux-intervenants .wrapper .contentBloc {
  -ms-flex-preferred-size: calc(50% - 140px);
  flex-basis: calc(50% - 140px);
  color: #FFFFFF;
  padding: 40px 0 0 0;
  position: relative;
}
@media (max-width: 1440px) {
  .Accueil .strate-enjeux-intervenants .wrapper .contentBloc {
    -ms-flex-preferred-size: calc(50% - 30px);
    flex-basis: calc(50% - 30px);
  }
}
@media (max-width: 768px) {
  .Accueil .strate-enjeux-intervenants .wrapper .contentBloc {
    padding: 80px 0 0 0;
  }
}
@media (max-width: 600px) {
  .Accueil .strate-enjeux-intervenants .wrapper .contentBloc {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 120px 30px 40px;
    background-color: #393b47;
  }
}
.Accueil .strate-enjeux-intervenants .wrapper .contentBloc:last-child {
  padding: 40px 0 0 0;
}
@media (max-width: 768px) {
  .Accueil .strate-enjeux-intervenants .wrapper .contentBloc:last-child {
    padding: 80px 0 0 0;
  }
}
@media (max-width: 600px) {
  .Accueil .strate-enjeux-intervenants .wrapper .contentBloc:last-child {
    background-color: #272930;
    padding: 120px 30px 40px;
  }
}
.Accueil .strate-enjeux-intervenants .wrapper .contentBloc:last-child ul li {
  border-bottom-color: #393b47;
}
.Accueil .strate-enjeux-intervenants .wrapper .contentBloc:last-child ul li a {
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .Accueil .strate-enjeux-intervenants .wrapper .contentBloc:last-child ul li a:hover {
    background: -webkit-gradient(linear, left top, right top, from(rgb(184, 167, 44)), to(rgba(184, 167, 44, 0)));
    background: linear-gradient(to right, rgb(184, 167, 44) 0%, rgba(184, 167, 44, 0) 100%);
  }
}
.Accueil .strate-enjeux-intervenants .wrapper .contentBloc h2 {
  margin: 0 0 30px;
}
@media (max-width: 1440px) {
  .Accueil .strate-enjeux-intervenants .wrapper .contentBloc h2 {
    max-width: 65%;
  }
}
.Accueil .strate-enjeux-intervenants .wrapper .contentBloc .--text {
  margin: 0 0 30px;
}
.Accueil .strate-enjeux-intervenants .wrapper .contentBloc ul li {
  border-bottom: 1px solid #272930;
}
.Accueil .strate-enjeux-intervenants .wrapper .contentBloc ul li a {
  text-decoration: none;
  padding: 20px 20px 20px 40px;
  display: block;
  width: 100%;
  position: relative;
  -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) {
  .Accueil .strate-enjeux-intervenants .wrapper .contentBloc ul li a:hover {
    background: -webkit-gradient(linear, left top, right top, from(rgb(123, 156, 176)), to(rgba(123, 156, 176, 0)));
    background: linear-gradient(to right, rgb(123, 156, 176) 0%, rgba(123, 156, 176, 0) 100%);
    padding-left: 60px;
  }
  .Accueil .strate-enjeux-intervenants .wrapper .contentBloc ul li a:hover:before {
    left: 20px;
  }
}
.Accueil .strate-enjeux-intervenants .wrapper .contentBloc ul li a:before {
  content: "";
  background-color: #FFFFFF;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 26px;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
.Accueil .strate-enjeux-intervenants .wrapper .contentBloc .btn {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 768px) {
  .Accueil .strate-enjeux-intervenants .wrapper .contentBloc .btn {
    left: 0;
    right: unset;
  }
}
@media (max-width: 600px) {
  .Accueil .strate-enjeux-intervenants .wrapper .contentBloc .btn {
    left: 30px;
    right: unset;
    top: 30px;
  }
}
@media (max-width: 1440px) {
  .Accueil .strate-enjeux-intervenants .wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 600px) {
  .Accueil .strate-enjeux-intervenants .wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
  }
}
.Accueil .strate-enjeux-intervenants:before {
  background-color: #272930;
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .Accueil .strate-enjeux-intervenants:before {
    display: none;
  }
}
.Accueil .strate-parallax-2 {
  height: 390px;
  z-index: 4;
  position: relative;
}
@media (max-width: 1024px) {
  .Accueil .strate-parallax-2 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 600px) {
  .Accueil .strate-parallax-2 {
    display: none;
  }
}
.Accueil .strate-parallax-2 .lg-wrapper {
  background: url(/media/4493/contreforme_parallax_1.png) no-repeat right top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .Accueil .strate-parallax-2 .lg-wrapper {
    padding: 80px 0 0;
    background-size: 100% 100%;
    background-position: 288px bottom;
  }
}
.Accueil .strate-parallax-2 .lg-wrapper img {
  margin: -107px 0 0;
}
@media (max-width: 1024px) {
  .Accueil .strate-parallax-2 .lg-wrapper img {
    margin: 0;
    max-width: 50%;
  }
}
.Accueil .strate-propos {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgb(243, 243, 243)));
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(243, 243, 243) 100%);
  padding: 150px 0;
}
@media (max-width: 1024px) {
  .Accueil .strate-propos {
    padding: 40px 0 100px;
  }
}
@media (max-width: 480px) {
  .Accueil .strate-propos {
    padding: 40px 0;
  }
}
.Accueil .strate-propos .--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  padding: 0 0 20px;
}
.Accueil .strate-propos .--container .--image {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .Accueil .strate-propos .--container .--image {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
  }
}
@media (max-width: 768px) {
  .Accueil .strate-propos .--container .--image {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.Accueil .strate-propos .--container .--text {
  padding: 60px 80px;
  margin: 0 0 0 -10%;
  background-color: #FFFFFF;
  color: #5c6166;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.Accueil .strate-propos .--container .--text h2 {
  margin: 0 0 30px;
  line-height: 1.5;
}
@media (max-width: 1440px) {
  .Accueil .strate-propos .--container .--text {
    margin: 0 0 0 -30%;
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
  }
}
@media (max-width: 1024px) {
  .Accueil .strate-propos .--container .--text {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    margin: 0 0 0 -45%;
  }
}
@media (max-width: 768px) {
  .Accueil .strate-propos .--container .--text {
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    margin: -50% auto 0;
  }
}
@media (max-width: 480px) {
  .Accueil .strate-propos .--container .--text {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin: 0;
    padding: 40px;
  }
}
.Accueil .strate-propos .--container a.btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .Accueil .strate-propos .--container a.btn:hover figure.iconeSVG {
    border-left-color: #FFFFFF;
  }
  .Accueil .strate-propos .--container a.btn:hover figure.iconeSVG svg {
    color: #FFFFFF;
    fill: #FFFFFF;
    stroke: #FFFFFF;
  }
}
.Accueil .strate-propos .--container a.btn figure.iconeSVG {
  margin: 0 0 0 20px;
  padding: 0 0 0 20px;
  border-left: 1px solid #000000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
.Accueil .strate-propos .--container a.btn figure.iconeSVG svg {
  width: 22px;
  height: 22px;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
@media (max-width: 1024px) {
  .Accueil .strate-propos .--container a.btn {
    right: 20px;
    bottom: -60px;
  }
}
@media (max-width: 480px) {
  .Accueil .strate-propos .--container a.btn {
    position: relative;
    right: unset;
    bottom: unset;
    margin: 0 40px;
  }
}
@media (max-width: 1440px) {
  .Accueil .strate-propos .wrapper {
    padding: 0 30px 0 0;
  }
}
@media (max-width: 1024px) {
  .Accueil .strate-propos .wrapper {
    padding: 0;
  }
}

/*******************************/
/***** 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);
}

.pageTexte .sm-wrapper {
  padding: 0;
}
@media (max-width: 1280px) {
  .pageTexte .sm-wrapper {
    padding: 0 20px;
  }
}
.pageTexte .sm-wrapper .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pageTexte .sm-wrapper .main .--intro {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: 0 0 40px;
}
.pageTexte .sm-wrapper .main .--intro p {
  color: #5c6166;
  margin: 0 0 20px;
}
.pageTexte .sm-wrapper .main .--intro p:first-child {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 60px;
}
.pageTexte .sm-wrapper .main .--intro p:first-child a {
  font-size: 20px;
  font-size: 1.25rem;
  color: #882345;
  text-decoration: none;
}
.pageTexte .sm-wrapper .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
}
.pageTexte .sm-wrapper .main .--content .--text h1 {
  color: #7fa1b6;
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 20px;
}
.pageTexte .sm-wrapper .main .--content .--text h2 {
  color: #7fa1b6;
  margin: 0 0 20px;
  line-height: 1.5;
}
.pageTexte .sm-wrapper .main .--content .--text h3 {
  color: #5c6166;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 30px;
}
.pageTexte .sm-wrapper .main .--content .--text h4 {
  color: #5c6166;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 30px;
}
.pageTexte .sm-wrapper .main .--content .--text p {
  color: #5c6166;
  margin: 0 0 35px;
}
.pageTexte .sm-wrapper .main .--content .--text sup a {
  font-size: 8px;
  font-size: 0.5rem;
  padding: 1px 3px;
  background-color: #7fa1b6;
}
.pageTexte .sm-wrapper .main .--content .--text a {
  color: #882345;
  text-decoration: underline;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .pageTexte .sm-wrapper .main .--content .--text a:hover {
    text-decoration: none;
  }
}
.pageTexte .sm-wrapper .main .--content .--text ul {
  margin: 0 0 35px;
  padding: 0 0 0 20px;
}
.pageTexte .sm-wrapper .main .--content .--text ul li {
  color: #5c6166;
  margin: 0 0 10px;
  padding: 0 0 0 40px;
  list-style: disc;
}
.pageTexte .sm-wrapper .main .--content .--text ul li::marker {
  color: #882345;
  font-size: 18px;
  font-size: 1.125rem;
}
.pageTexte .sm-wrapper .main .--content .--text ul ul {
  margin: 20px 0 35px;
}
.pageTexte .sm-wrapper .main .--content .--text ul ul li {
  list-style: circle;
}
.pageTexte .sm-wrapper .main .--content .--text ul ol {
  margin: 20px 0 35px;
}
.pageTexte .sm-wrapper .main .--content .--text ul ol li {
  padding: 0 0 0 10px;
}
.pageTexte .sm-wrapper .main .--content .--text img {
  width: 100%;
}
.pageTexte .sm-wrapper .main .--content .--text ol {
  margin: 0 0 35px;
  padding: 0 0 0 20px;
}
.pageTexte .sm-wrapper .main .--content .--text ol li {
  color: #5c6166;
  margin: 0 0 10px;
  list-style: decimal;
}
.pageTexte .sm-wrapper .main .--content .--text .embeditem {
  margin: 0 0 35px;
}
.pageTexte .sm-wrapper .main .--content .--text .embeditem iframe {
  width: 100%;
  min-height: 400px;
}
@media (max-width: 600px) {
  .pageTexte .sm-wrapper .main .--content .--text .embeditem iframe {
    min-height: 300px;
  }
}
.pageTexte .sm-wrapper .main .--content .--notes {
  border-top: 1px solid #FFFFFF;
  padding: 25px 0;
}
.pageTexte .sm-wrapper .main .--content .--notes ol li {
  color: #7fa1b6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 0 10px;
}
.pageTexte .sm-wrapper .main .--content .--notes ol li span.super {
  font-size: 8px;
  font-size: 0.5rem;
  background-color: #7fa1b6;
  padding: 1px 3px;
  color: #FFFFFF;
  margin: 5px 60px 0 0;
}
.pageTexte .sm-wrapper .main .--content .--notes ol li p {
  color: #7fa1b6;
  font-size: 16px;
  font-size: 1rem;
}
.pageTexte .sm-wrapper .main .--content .--notes ol li p a {
  color: #882345;
}
@media (max-width: 860px) {
  .pageTexte .sm-wrapper .main .--content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.pageTexte .sm-wrapper .main .--sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
}
@media (max-width: 860px) {
  .pageTexte .sm-wrapper .main .--sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 40px 0 0;
  }
}
.pageTexteMedias .sm-wrapper, .pageTexteEquipe .sm-wrapper, .pageTexteMemoire .sm-wrapper, .pageTexteNouvelles .sm-wrapper, .pageTexteNouvelle .sm-wrapper {
  padding: 0;
}
@media (max-width: 1280px) {
  .pageTexteMedias .sm-wrapper, .pageTexteEquipe .sm-wrapper, .pageTexteMemoire .sm-wrapper, .pageTexteNouvelles .sm-wrapper, .pageTexteNouvelle .sm-wrapper {
    padding: 0 20px;
  }
}
.pageTexteMedias .sm-wrapper .main, .pageTexteEquipe .sm-wrapper .main, .pageTexteMemoire .sm-wrapper .main, .pageTexteNouvelles .sm-wrapper .main, .pageTexteNouvelle .sm-wrapper .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pageTexteMedias .sm-wrapper .main .--intro, .pageTexteEquipe .sm-wrapper .main .--intro, .pageTexteMemoire .sm-wrapper .main .--intro, .pageTexteNouvelles .sm-wrapper .main .--intro, .pageTexteNouvelle .sm-wrapper .main .--intro {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: 0 0 40px;
}
.pageTexteMedias .sm-wrapper .main .--intro p, .pageTexteEquipe .sm-wrapper .main .--intro p, .pageTexteMemoire .sm-wrapper .main .--intro p, .pageTexteNouvelles .sm-wrapper .main .--intro p, .pageTexteNouvelle .sm-wrapper .main .--intro p {
  color: #5c6166;
  margin: 0 0 20px;
}
.pageTexteMedias .sm-wrapper .main .--intro p:first-child, .pageTexteEquipe .sm-wrapper .main .--intro p:first-child, .pageTexteMemoire .sm-wrapper .main .--intro p:first-child, .pageTexteNouvelles .sm-wrapper .main .--intro p:first-child, .pageTexteNouvelle .sm-wrapper .main .--intro p:first-child {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 60px;
}
.pageTexteMedias .sm-wrapper .main .--intro p:first-child a, .pageTexteEquipe .sm-wrapper .main .--intro p:first-child a, .pageTexteMemoire .sm-wrapper .main .--intro p:first-child a, .pageTexteNouvelles .sm-wrapper .main .--intro p:first-child a, .pageTexteNouvelle .sm-wrapper .main .--intro p:first-child a {
  font-size: 20px;
  font-size: 1.25rem;
  color: #882345;
  text-decoration: none;
}
.pageTexteMedias .sm-wrapper .main .--content, .pageTexteEquipe .sm-wrapper .main .--content, .pageTexteMemoire .sm-wrapper .main .--content, .pageTexteNouvelles .sm-wrapper .main .--content, .pageTexteNouvelle .sm-wrapper .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
}
.pageTexteMedias .sm-wrapper .main .--content .--text h1, .pageTexteEquipe .sm-wrapper .main .--content .--text h1, .pageTexteMemoire .sm-wrapper .main .--content .--text h1, .pageTexteNouvelles .sm-wrapper .main .--content .--text h1, .pageTexteNouvelle .sm-wrapper .main .--content .--text h1 {
  color: #7fa1b6;
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 20px;
}
.pageTexteMedias .sm-wrapper .main .--content .--text h2, .pageTexteEquipe .sm-wrapper .main .--content .--text h2, .pageTexteMemoire .sm-wrapper .main .--content .--text h2, .pageTexteNouvelles .sm-wrapper .main .--content .--text h2, .pageTexteNouvelle .sm-wrapper .main .--content .--text h2 {
  color: #7fa1b6;
  margin: 0 0 20px;
}
.pageTexteMedias .sm-wrapper .main .--content .--text h3, .pageTexteEquipe .sm-wrapper .main .--content .--text h3, .pageTexteMemoire .sm-wrapper .main .--content .--text h3, .pageTexteNouvelles .sm-wrapper .main .--content .--text h3, .pageTexteNouvelle .sm-wrapper .main .--content .--text h3 {
  color: #5c6166;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 30px;
}
.pageTexteMedias .sm-wrapper .main .--content .--text h4, .pageTexteEquipe .sm-wrapper .main .--content .--text h4, .pageTexteMemoire .sm-wrapper .main .--content .--text h4, .pageTexteNouvelles .sm-wrapper .main .--content .--text h4, .pageTexteNouvelle .sm-wrapper .main .--content .--text h4 {
  color: #5c6166;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 30px;
}
.pageTexteMedias .sm-wrapper .main .--content .--text p, .pageTexteEquipe .sm-wrapper .main .--content .--text p, .pageTexteMemoire .sm-wrapper .main .--content .--text p, .pageTexteNouvelles .sm-wrapper .main .--content .--text p, .pageTexteNouvelle .sm-wrapper .main .--content .--text p {
  color: #5c6166;
  margin: 0 0 35px;
}
.pageTexteMedias .sm-wrapper .main .--content .--text a, .pageTexteEquipe .sm-wrapper .main .--content .--text a, .pageTexteMemoire .sm-wrapper .main .--content .--text a, .pageTexteNouvelles .sm-wrapper .main .--content .--text a, .pageTexteNouvelle .sm-wrapper .main .--content .--text a {
  color: #882345;
  text-decoration: underline;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .pageTexteMedias .sm-wrapper .main .--content .--text a:hover, .pageTexteEquipe .sm-wrapper .main .--content .--text a:hover, .pageTexteMemoire .sm-wrapper .main .--content .--text a:hover, .pageTexteNouvelles .sm-wrapper .main .--content .--text a:hover, .pageTexteNouvelle .sm-wrapper .main .--content .--text a:hover {
    text-decoration: none;
  }
}
.pageTexteMedias .sm-wrapper .main .--content .--text ul, .pageTexteEquipe .sm-wrapper .main .--content .--text ul, .pageTexteMemoire .sm-wrapper .main .--content .--text ul, .pageTexteNouvelles .sm-wrapper .main .--content .--text ul, .pageTexteNouvelle .sm-wrapper .main .--content .--text ul {
  margin: 0 0 35px;
  padding: 0 0 0 20px;
}
.pageTexteMedias .sm-wrapper .main .--content .--text ul li, .pageTexteEquipe .sm-wrapper .main .--content .--text ul li, .pageTexteMemoire .sm-wrapper .main .--content .--text ul li, .pageTexteNouvelles .sm-wrapper .main .--content .--text ul li, .pageTexteNouvelle .sm-wrapper .main .--content .--text ul li {
  color: #5c6166;
  margin: 0 0 10px;
  padding: 0 0 0 40px;
  list-style: disc;
}
.pageTexteMedias .sm-wrapper .main .--content .--text ul li::marker, .pageTexteEquipe .sm-wrapper .main .--content .--text ul li::marker, .pageTexteMemoire .sm-wrapper .main .--content .--text ul li::marker, .pageTexteNouvelles .sm-wrapper .main .--content .--text ul li::marker, .pageTexteNouvelle .sm-wrapper .main .--content .--text ul li::marker {
  color: #882345;
  font-size: 18px;
  font-size: 1.125rem;
}
.pageTexteMedias .sm-wrapper .main .--content .--text img, .pageTexteEquipe .sm-wrapper .main .--content .--text img, .pageTexteMemoire .sm-wrapper .main .--content .--text img, .pageTexteNouvelles .sm-wrapper .main .--content .--text img, .pageTexteNouvelle .sm-wrapper .main .--content .--text img {
  width: 100%;
}
.pageTexteMedias .sm-wrapper .main .--content .--text ol, .pageTexteEquipe .sm-wrapper .main .--content .--text ol, .pageTexteMemoire .sm-wrapper .main .--content .--text ol, .pageTexteNouvelles .sm-wrapper .main .--content .--text ol, .pageTexteNouvelle .sm-wrapper .main .--content .--text ol {
  margin: 0 0 35px;
  padding: 0 0 0 20px;
}
.pageTexteMedias .sm-wrapper .main .--content .--text ol li, .pageTexteEquipe .sm-wrapper .main .--content .--text ol li, .pageTexteMemoire .sm-wrapper .main .--content .--text ol li, .pageTexteNouvelles .sm-wrapper .main .--content .--text ol li, .pageTexteNouvelle .sm-wrapper .main .--content .--text ol li {
  color: #5c6166;
  margin: 0 0 10px;
  list-style: decimal;
}
.pageTexteMedias .sm-wrapper .main .--content .--text .embeditem, .pageTexteEquipe .sm-wrapper .main .--content .--text .embeditem, .pageTexteMemoire .sm-wrapper .main .--content .--text .embeditem, .pageTexteNouvelles .sm-wrapper .main .--content .--text .embeditem, .pageTexteNouvelle .sm-wrapper .main .--content .--text .embeditem {
  margin: 0 0 35px;
}
.pageTexteMedias .sm-wrapper .main .--content .--text .embeditem iframe, .pageTexteEquipe .sm-wrapper .main .--content .--text .embeditem iframe, .pageTexteMemoire .sm-wrapper .main .--content .--text .embeditem iframe, .pageTexteNouvelles .sm-wrapper .main .--content .--text .embeditem iframe, .pageTexteNouvelle .sm-wrapper .main .--content .--text .embeditem iframe {
  width: 100%;
}
.pageTexteMedias .sm-wrapper .main .--content .--text .collapse, .pageTexteEquipe .sm-wrapper .main .--content .--text .collapse, .pageTexteMemoire .sm-wrapper .main .--content .--text .collapse, .pageTexteNouvelles .sm-wrapper .main .--content .--text .collapse, .pageTexteNouvelle .sm-wrapper .main .--content .--text .collapse {
  /* smartphones, touchscreens */
}
.pageTexteMedias .sm-wrapper .main .--content .--text .collapse:nth-child(odd), .pageTexteEquipe .sm-wrapper .main .--content .--text .collapse:nth-child(odd), .pageTexteMemoire .sm-wrapper .main .--content .--text .collapse:nth-child(odd), .pageTexteNouvelles .sm-wrapper .main .--content .--text .collapse:nth-child(odd), .pageTexteNouvelle .sm-wrapper .main .--content .--text .collapse:nth-child(odd) {
  background: -webkit-gradient(linear, left top, right top, from(rgba(227, 227, 227, 0)), color-stop(50%, rgb(227, 227, 227)), to(rgba(227, 227, 227, 0)));
  background: linear-gradient(to right, rgba(227, 227, 227, 0) 0%, rgb(227, 227, 227) 50%, rgba(227, 227, 227, 0) 100%);
}
.pageTexteMedias .sm-wrapper .main .--content .--text .collapse--head, .pageTexteEquipe .sm-wrapper .main .--content .--text .collapse--head, .pageTexteMemoire .sm-wrapper .main .--content .--text .collapse--head, .pageTexteNouvelles .sm-wrapper .main .--content .--text .collapse--head, .pageTexteNouvelle .sm-wrapper .main .--content .--text .collapse--head {
  background-color: transparent;
  padding: 40px 30px 40px 0;
}
.pageTexteMedias .sm-wrapper .main .--content .--text .collapse--head h2, .pageTexteEquipe .sm-wrapper .main .--content .--text .collapse--head h2, .pageTexteMemoire .sm-wrapper .main .--content .--text .collapse--head h2, .pageTexteNouvelles .sm-wrapper .main .--content .--text .collapse--head h2, .pageTexteNouvelle .sm-wrapper .main .--content .--text .collapse--head h2 {
  color: #5c6166;
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.pageTexteMedias .sm-wrapper .main .--content .--text .collapse--head h2:after, .pageTexteEquipe .sm-wrapper .main .--content .--text .collapse--head h2:after, .pageTexteMemoire .sm-wrapper .main .--content .--text .collapse--head h2:after, .pageTexteNouvelles .sm-wrapper .main .--content .--text .collapse--head h2:after, .pageTexteNouvelle .sm-wrapper .main .--content .--text .collapse--head h2:after {
  background-image: url("/media/4479/i_plus-collapse.png");
  content: "";
  height: 30px;
  width: 30px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 0 0 20px;
  -webkit-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pageTexteMedias .sm-wrapper .main .--content .--text .collapse--body .content, .pageTexteEquipe .sm-wrapper .main .--content .--text .collapse--body .content, .pageTexteMemoire .sm-wrapper .main .--content .--text .collapse--body .content, .pageTexteNouvelles .sm-wrapper .main .--content .--text .collapse--body .content, .pageTexteNouvelle .sm-wrapper .main .--content .--text .collapse--body .content {
  padding: 0 30px 0 0;
}
.pageTexteMedias .sm-wrapper .main .--content .--text .collapse.ouvert .collapse--head h2:after, .pageTexteEquipe .sm-wrapper .main .--content .--text .collapse.ouvert .collapse--head h2:after, .pageTexteMemoire .sm-wrapper .main .--content .--text .collapse.ouvert .collapse--head h2:after, .pageTexteNouvelles .sm-wrapper .main .--content .--text .collapse.ouvert .collapse--head h2:after, .pageTexteNouvelle .sm-wrapper .main .--content .--text .collapse.ouvert .collapse--head h2:after {
  -webkit-transform: rotateZ(135deg);
  transform: rotateZ(135deg);
}
@media (pointer: fine) {
  .pageTexteMedias .sm-wrapper .main .--content .--text .collapse:hover, .pageTexteEquipe .sm-wrapper .main .--content .--text .collapse:hover, .pageTexteMemoire .sm-wrapper .main .--content .--text .collapse:hover, .pageTexteNouvelles .sm-wrapper .main .--content .--text .collapse:hover, .pageTexteNouvelle .sm-wrapper .main .--content .--text .collapse:hover {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(75%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 75%, rgb(255, 255, 255) 100%);
  }
}
.pageTexteMedias .sm-wrapper .main .--content .--notes, .pageTexteEquipe .sm-wrapper .main .--content .--notes, .pageTexteMemoire .sm-wrapper .main .--content .--notes, .pageTexteNouvelles .sm-wrapper .main .--content .--notes, .pageTexteNouvelle .sm-wrapper .main .--content .--notes {
  border-top: 1px solid #7fa1b6;
}
.pageTexteMedias .sm-wrapper .main .--content .--notes ul li, .pageTexteEquipe .sm-wrapper .main .--content .--notes ul li, .pageTexteMemoire .sm-wrapper .main .--content .--notes ul li, .pageTexteNouvelles .sm-wrapper .main .--content .--notes ul li, .pageTexteNouvelle .sm-wrapper .main .--content .--notes ul li {
  color: #5c6166;
}
.pageTexteMedias .sm-wrapper .main .--content .--notes ul li p, .pageTexteEquipe .sm-wrapper .main .--content .--notes ul li p, .pageTexteMemoire .sm-wrapper .main .--content .--notes ul li p, .pageTexteNouvelles .sm-wrapper .main .--content .--notes ul li p, .pageTexteNouvelle .sm-wrapper .main .--content .--notes ul li p {
  color: #5c6166;
}
.pageTexteMedias .sm-wrapper .main .--content .--notes ul li p a, .pageTexteEquipe .sm-wrapper .main .--content .--notes ul li p a, .pageTexteMemoire .sm-wrapper .main .--content .--notes ul li p a, .pageTexteNouvelles .sm-wrapper .main .--content .--notes ul li p a, .pageTexteNouvelle .sm-wrapper .main .--content .--notes ul li p a {
  color: #882345;
}
@media (max-width: 860px) {
  .pageTexteMedias .sm-wrapper .main .--content, .pageTexteEquipe .sm-wrapper .main .--content, .pageTexteMemoire .sm-wrapper .main .--content, .pageTexteNouvelles .sm-wrapper .main .--content, .pageTexteNouvelle .sm-wrapper .main .--content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.pageTexteMedias .sm-wrapper .main .--sidebar, .pageTexteEquipe .sm-wrapper .main .--sidebar, .pageTexteMemoire .sm-wrapper .main .--sidebar, .pageTexteNouvelles .sm-wrapper .main .--sidebar, .pageTexteNouvelle .sm-wrapper .main .--sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
}
@media (max-width: 860px) {
  .pageTexteMedias .sm-wrapper .main .--sidebar, .pageTexteEquipe .sm-wrapper .main .--sidebar, .pageTexteMemoire .sm-wrapper .main .--sidebar, .pageTexteNouvelles .sm-wrapper .main .--sidebar, .pageTexteNouvelle .sm-wrapper .main .--sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 40px 0 0;
  }
}
.pageTextePolicesConventions .sm-wrapper {
  padding: 0;
}
@media (max-width: 1280px) {
  .pageTextePolicesConventions .sm-wrapper {
    padding: 0 20px;
  }
}
.pageTextePolicesConventions .sm-wrapper .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pageTextePolicesConventions .sm-wrapper .main .--intro {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: 0 0 40px;
}
.pageTextePolicesConventions .sm-wrapper .main .--intro p {
  color: #5c6166;
  margin: 0 0 20px;
}
.pageTextePolicesConventions .sm-wrapper .main .--intro p:first-child {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 60px;
}
.pageTextePolicesConventions .sm-wrapper .main .--intro p:first-child a {
  font-size: 20px;
  font-size: 1.25rem;
  color: #882345;
  text-decoration: none;
}
.pageTextePolicesConventions .sm-wrapper .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text h1 {
  color: #7fa1b6;
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 20px;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text h2 {
  color: #7fa1b6;
  margin: 0 0 20px;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text h3 {
  color: #5c6166;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 30px;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text h4 {
  color: #5c6166;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 30px;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text p {
  color: #5c6166;
  margin: 0 0 35px;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text a {
  color: #882345;
  text-decoration: underline;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .pageTextePolicesConventions .sm-wrapper .main .--content .--text a:hover {
    text-decoration: none;
  }
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text ul {
  margin: 0 0 35px;
  padding: 0 0 0 20px;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text ul li {
  color: #5c6166;
  margin: 0 0 10px;
  padding: 0 0 0 40px;
  list-style: disc;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text ul li::marker {
  color: #882345;
  font-size: 18px;
  font-size: 1.125rem;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text img {
  width: 100%;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text ol {
  margin: 0 0 35px;
  padding: 0 0 0 20px;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text ol li {
  color: #5c6166;
  margin: 0 0 10px;
  list-style: decimal;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .embeditem {
  margin: 0 0 35px;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .embeditem iframe {
  width: 100%;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse {
  background-color: #FFFFFF;
  margin: 0 0 10px;
  border: 1px solid #FFFFFF;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse--head {
  background-color: transparent;
  padding: 40px 35px;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse--head h2 {
  color: #5c6166;
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 80px 0 0;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse--head .iconeFolder {
  background-image: url("/media/40uks1sm/ico-dossier-ferme.png");
  background-position: calc(50% + 10px) center;
  background-size: 31px 25px;
  background-repeat: no-repeat;
  width: 106px;
  height: 100%;
  border-left: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse--head .iconeFolder span {
  border-top: 0px solid transparent;
  border-bottom: 5px solid #882345;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  width: 10px;
  height: 5px;
  display: block;
  margin: 0 0 0 25px;
  -webkit-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse.ouvert {
  border: 1px solid #bcbdbf;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse.ouvert .collapse--head {
  border-bottom: 1px solid #bcbdbf;
  -webkit-transition: none;
  transition: none;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse.ouvert .collapse--head .iconeFolder {
  background-image: url("/media/knujc04k/ico-dossier-ouvert.png");
  border-left: 1px solid #bcbdbf;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse.ouvert .collapse--head .iconeFolder span {
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse .content .collapse {
  margin: 0;
  border: none;
  border-bottom: 1px solid #5c6166;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse .content .collapse:last-child {
  border-bottom: 1px solid #5c6166;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse .content .collapse--head {
  background-color: #353742;
  padding: 30px;
  border: none;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse .content .collapse--head h3 {
  color: #FFFFFF;
  margin: 0;
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse .content .collapse--head h3:after {
  background-image: url("/media/4024/i_plus.png");
  content: "";
  height: 30px;
  width: 30px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 0 0 20px;
  -webkit-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse .content .collapse.ouvert .collapse--head {
  background-color: #FFFFFF;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse .content .collapse.ouvert .collapse--head h3 {
  color: #353742;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse .content .collapse.ouvert .collapse--head h3:after {
  background-image: url("/media/4023/i_close.png");
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse .content .collapse.ouvert:last-child {
  border-bottom: none;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .collapse .content .collapse .content {
  padding: 0 30px;
  margin: 0 0 30px;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--notes {
  border-top: 1px solid #7fa1b6;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--notes ul li {
  color: #5c6166;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--notes ul li p {
  color: #5c6166;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--notes ul li p a {
  color: #882345;
}
@media (max-width: 860px) {
  .pageTextePolicesConventions .sm-wrapper .main .--content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.pageTextePolicesConventions .sm-wrapper .main .--sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
}
@media (max-width: 860px) {
  .pageTextePolicesConventions .sm-wrapper .main .--sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 40px 0 0;
  }
}

@media (max-width: 1280px) {
  .pageTexteNouvelles .sm-wrapper {
    padding: 0 20px;
  }
}
.pageTexteNouvelles .sm-wrapper .main .--content h2 {
  color: #7fa1b6;
  margin: 0 0 50px;
}
.pageTexteNouvelles .sm-wrapper .main .--content .listeNouvellesRec .itemNouvelle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #FFFFFF;
  margin: 0 0 20px;
}
.pageTexteNouvelles .sm-wrapper .main .--content .listeNouvellesRec .itemNouvelle .--image {
  -ms-flex-preferred-size: 285px;
  flex-basis: 285px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}
.pageTexteNouvelles .sm-wrapper .main .--content .listeNouvellesRec .itemNouvelle .--image img {
  width: 100%;
}
.pageTexteNouvelles .sm-wrapper .main .--content .listeNouvellesRec .itemNouvelle .--image ::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/media/4472/i_plus_pale.png) no-repeat center center, -webkit-gradient(linear, left top, left bottom, from(rgba(34, 35, 42, 0)), to(rgb(34, 35, 42)));
  background: url(/media/4472/i_plus_pale.png) no-repeat center center, linear-gradient(to bottom, rgba(34, 35, 42, 0) 0%, rgb(34, 35, 42) 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  opacity: 0;
}
.pageTexteNouvelles .sm-wrapper .main .--content .listeNouvellesRec .itemNouvelle .--image:hover ::before {
  opacity: 1;
}
.pageTexteNouvelles .sm-wrapper .main .--content .listeNouvellesRec .itemNouvelle .--text {
  padding: 30px;
}
.pageTexteNouvelles .sm-wrapper .main .--content .listeNouvellesRec .itemNouvelle .--text h3 {
  color: #393b47;
  margin: 0 0 10px;
}
.pageTexteNouvelles .sm-wrapper .main .--content .listeNouvellesRec .itemNouvelle .--text h3 a {
  color: #393b47;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .pageTexteNouvelles .sm-wrapper .main .--content .listeNouvellesRec .itemNouvelle .--text h3 a:hover {
    color: #882345;
  }
}
.pageTexteNouvelles .sm-wrapper .main .--content .listeNouvellesRec .itemNouvelle .--text p {
  color: #882345;
  font-weight: 700;
}
@media (max-width: 860px) {
  .pageTexteNouvelles .sm-wrapper .main .--content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.pageTexteNouvelles .sm-wrapper .main .--sidebar h2 {
  color: #7fa1b6;
  margin: 0 0 50px;
}
.pageTexteNouvelles .sm-wrapper .main .--sidebar .collapse--body .content ul {
  padding: 0 0 0 15px;
}
.pageTexteNouvelles .sm-wrapper .main .--sidebar .collapse--body .content ul li {
  list-style: disc;
  padding: 0 0 0 15px;
}
@media (max-width: 860px) {
  .pageTexteNouvelles .sm-wrapper .main .--sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 40px 0 0;
  }
}

@media (max-width: 1280px) {
  .pageTexteNouvelle .sm-wrapper {
    padding: 0 20px;
  }
}
.pageTexteNouvelle .sm-wrapper .main .--content .entete {
  position: relative;
}
.pageTexteNouvelle .sm-wrapper .main .--content .entete h2 {
  font-size: 30px;
  font-size: 1.875rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 15px;
  max-width: 75%;
}
@media (max-width: 600px) {
  .pageTexteNouvelle .sm-wrapper .main .--content .entete h2 {
    max-width: 100%;
  }
}
.pageTexteNouvelle .sm-wrapper .main .--content .entete .btn {
  position: absolute;
  top: 0;
  right: 0;
  color: #000000;
  text-decoration: none;
  border-color: #000000;
  padding: 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pageTexteNouvelle .sm-wrapper .main .--content .entete .btn img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
  margin: 0 0 0 20px;
  padding: 5px 0 5px 20px;
  border-left: 1px solid #bbbabd;
}
@media (max-width: 600px) {
  .pageTexteNouvelle .sm-wrapper .main .--content .entete .btn {
    padding: 15px 20px;
    top: -75px;
  }
}
.pageTexteNouvelle .sm-wrapper .main .--content .entete .date {
  font-size: 20px;
  font-size: 1.25rem;
  color: #000000;
  font-weight: 700;
}
@media (max-width: 860px) {
  .pageTexteNouvelle .sm-wrapper .main .--content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.pageTexteNouvelle .sm-wrapper .main .--sidebar h2 {
  color: #7fa1b6;
  margin: 0 0 50px;
}
.pageTexteNouvelle .sm-wrapper .main .--sidebar .listeCurrentNews {
  background-color: #FFFFFF;
}
.pageTexteNouvelle .sm-wrapper .main .--sidebar .listeCurrentNews ul li {
  padding: 20px 40px;
  border-bottom: 1px solid #dedede;
}
.pageTexteNouvelle .sm-wrapper .main .--sidebar .listeCurrentNews ul li:last-child {
  border: none;
}
.pageTexteNouvelle .sm-wrapper .main .--sidebar .listeCurrentNews ul li a {
  text-decoration: none;
  color: #5c6166;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .pageTexteNouvelle .sm-wrapper .main .--sidebar .listeCurrentNews ul li a:hover {
    color: #882345;
    text-decoration: underline;
  }
}
.pageTexteNouvelle .sm-wrapper .main .--sidebar .listeCurrentNews ul li.actif {
  background-color: #373a46;
}
.pageTexteNouvelle .sm-wrapper .main .--sidebar .listeCurrentNews ul li.actif a {
  color: #FFFFFF;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .pageTexteNouvelle .sm-wrapper .main .--sidebar .listeCurrentNews ul li.actif a:hover {
    text-decoration: none;
  }
}
@media (max-width: 860px) {
  .pageTexteNouvelle .sm-wrapper .main .--sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 40px 0 0;
  }
}

.pageTexteComite .sm-wrapper {
  padding: 0;
}
@media (max-width: 1280px) {
  .pageTexteComite .sm-wrapper {
    padding: 0 20px;
  }
}
.pageTexteComite .sm-wrapper .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pageTexteComite .sm-wrapper .main .--intro {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: 0 0 40px;
}
.pageTexteComite .sm-wrapper .main .--intro p {
  color: #5c6166;
  margin: 0 0 20px;
}
.pageTexteComite .sm-wrapper .main .--intro p:first-child {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 60px;
}
.pageTexteComite .sm-wrapper .main .--intro p:first-child a {
  font-size: 20px;
  font-size: 1.25rem;
  color: #882345;
  text-decoration: none;
}
.pageTexteComite .sm-wrapper .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
}
.pageTexteComite .sm-wrapper .main .--content .--text {
  position: relative;
}
.pageTexteComite .sm-wrapper .main .--content .--text h1 {
  color: #7fa1b6;
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 20px;
}
.pageTexteComite .sm-wrapper .main .--content .--text h2 {
  color: #7fa1b6;
  margin: 0 0 50px;
}
.pageTexteComite .sm-wrapper .main .--content .--text h3 {
  color: #5c6166;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 30px;
}
.pageTexteComite .sm-wrapper .main .--content .--text h4 {
  color: #5c6166;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 30px;
}
.pageTexteComite .sm-wrapper .main .--content .--text p {
  color: #5c6166;
  margin: 0 0 35px;
}
.pageTexteComite .sm-wrapper .main .--content .--text a {
  color: #882345;
  text-decoration: underline;
}
.pageTexteComite .sm-wrapper .main .--content .--text ul {
  margin: 0 0 35px;
  padding: 0 0 0 15px;
}
.pageTexteComite .sm-wrapper .main .--content .--text ul li {
  color: #5c6166;
  margin: 0 0 10px;
  padding: 0 0 0 40px;
  list-style: disc;
}
.pageTexteComite .sm-wrapper .main .--content .--text ul li::marker {
  color: #882345;
  font-size: 18px;
  font-size: 1.125rem;
}
.pageTexteComite .sm-wrapper .main .--content .--text img {
  width: 100%;
}
.pageTexteComite .sm-wrapper .main .--content .--text ol {
  margin: 0 0 35px;
  padding: 0 0 0 15px;
}
.pageTexteComite .sm-wrapper .main .--content .--text ol li {
  color: #5c6166;
  margin: 0 0 10px;
  list-style: decimal;
}
.pageTexteComite .sm-wrapper .main .--content .--text .embeditem {
  margin: 0 0 35px;
}
.pageTexteComite .sm-wrapper .main .--content .--text .embeditem iframe {
  width: 100%;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse {
  background-color: #FFFFFF;
  margin: 0 0 10px;
  border: 1px solid #FFFFFF;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse--head {
  background-color: transparent;
  padding: 40px 35px;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse--head h2 {
  color: #5c6166;
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 80px 0 0;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse--head .iconeFolder {
  background-image: url("/media/40uks1sm/ico-dossier-ferme.png");
  background-position: calc(50% + 10px) center;
  background-size: 31px 25px;
  background-repeat: no-repeat;
  width: 106px;
  height: 100%;
  border-left: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse--head .iconeFolder span {
  border-top: 0px solid transparent;
  border-bottom: 5px solid #882345;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  width: 10px;
  height: 5px;
  display: block;
  margin: 0 0 0 25px;
  -webkit-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse--body {
  background-color: #eeeeee;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse.ouvert {
  border: 1px solid #bcbdbf;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse.ouvert .collapse--head {
  border-bottom: 1px solid #bcbdbf;
  -webkit-transition: none;
  transition: none;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse.ouvert .collapse--head .iconeFolder {
  background-image: url("/media/knujc04k/ico-dossier-ouvert.png");
  border-left: 1px solid #bcbdbf;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse.ouvert .collapse--head .iconeFolder span {
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content > .liste-Documents {
  padding: 0 30px 0 45px;
  margin: 30px 0 35px;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content .collapse {
  margin: 0;
  border: none;
  border-bottom: 1px solid #5c6166;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content .collapse:last-child {
  border-bottom: 1px solid #5c6166;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content .collapse--head {
  background-color: #353742;
  padding: 30px;
  border: none;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content .collapse--head h3 {
  color: #FFFFFF;
  margin: 0;
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content .collapse--head h3:after {
  background-image: url("/media/4024/i_plus.png");
  content: "";
  height: 30px;
  width: 30px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 0 0 20px;
  -webkit-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content .collapse--body {
  background-color: #FFFFFF;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content .collapse.ouvert {
  border-top: 1px solid #bcbdbf;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content .collapse.ouvert .collapse--head {
  background-color: #FFFFFF;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content .collapse.ouvert .collapse--head h3 {
  color: #353742;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content .collapse.ouvert .collapse--head h3:after {
  background-image: url("/media/4023/i_close.png");
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content .collapse.ouvert:last-child {
  border-bottom: none;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content .collapse .content {
  padding: 0 30px;
  margin: 0 0 30px;
}
.pageTexteComite .sm-wrapper .main .--content .--text .collapse .content .collapse .content > .liste-Documents {
  padding: 0 0 0 15px;
  margin: 0 0 35px;
}
.pageTexteComite .sm-wrapper .main .--content .--text .btn.selectionDate {
  border-color: #000000;
  color: #000000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 25px;
  position: absolute;
  top: -25px;
  right: 0;
}
.pageTexteComite .sm-wrapper .main .--content .--text .btn.selectionDate img {
  max-height: 25px;
  padding: 0 0 0 20px;
  border-left: 1px solid #000000;
  width: auto;
  margin: 0 0 0 20px;
}
@media (max-width: 600px) {
  .pageTexteComite .sm-wrapper .main .--content .--text .btn.selectionDate {
    top: -75px;
  }
}
.pageTexteComite .sm-wrapper .main .--content .blockSelectionDate {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(34, 35, 42)), to(rgba(34, 35, 42, 0.45)));
  background: linear-gradient(to bottom, rgb(34, 35, 42) 0%, rgba(34, 35, 42, 0.45) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
.pageTexteComite .sm-wrapper .main .--content .blockSelectionDate.hidden {
  opacity: 0;
  z-index: -999;
}
.pageTexteComite .sm-wrapper .main .--content .blockSelectionDate.hidden .content {
  margin: 45% auto 0;
  opacity: 0;
}
.pageTexteComite .sm-wrapper .main .--content .blockSelectionDate .content {
  background-color: #FFFFFF;
  padding: 20px;
  width: 100%;
  margin: 35% auto 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  opacity: 1;
  -webkit-transition: 0.5s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.5s cubic-bezier(0.58, 0, 0.32, 1);
}
.pageTexteComite .sm-wrapper .main .--content .blockSelectionDate .content h3 {
  color: #5c6166;
  font-weight: 700;
  margin: 0 0 30px;
}
.pageTexteComite .sm-wrapper .main .--content .blockSelectionDate .content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 0 40px;
  margin: 0 0 20px;
  border-bottom: 1px solid #dedede;
}
.pageTexteComite .sm-wrapper .main .--content .blockSelectionDate .content ul li {
  margin: 0 40px 10px 0;
  font-size: 14px;
  font-size: 0.875rem;
  color: #5c6166;
}
.pageTexteComite .sm-wrapper .main .--content .blockSelectionDate .content ul li a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #000000;
  text-decoration: none;
  border-color: #000000;
  background-color: #eeeeee;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .pageTexteComite .sm-wrapper .main .--content .blockSelectionDate .content ul li a:hover {
    background-color: #FFFFFF;
  }
}
.pageTexteComite .sm-wrapper .main .--content .blockSelectionDate .content ul li.actif {
  background-color: #000000;
  color: #FFFFFF;
  cursor: default;
}
.pageTexteComite .sm-wrapper .main .--content .blockSelectionDate .content .btnFermer {
  position: absolute;
  top: -100px;
  right: 0;
  border: 2px solid #FFFFFF;
  padding: 15px;
  border-radius: 40px;
  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 */
}
.pageTexteComite .sm-wrapper .main .--content .blockSelectionDate .content .btnFermer img {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-filter: brightness(100);
  filter: brightness(100);
  -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) {
  .pageTexteComite .sm-wrapper .main .--content .blockSelectionDate .content .btnFermer:hover {
    background-color: #FFFFFF;
  }
  .pageTexteComite .sm-wrapper .main .--content .blockSelectionDate .content .btnFermer:hover img {
    -webkit-filter: brightness(0);
    filter: brightness(0);
  }
}
@media (max-width: 1280px) {
  .pageTexteComite .sm-wrapper .main .--content .blockSelectionDate .content {
    margin: 60% auto 0;
  }
}
@media (max-width: 600px) {
  .pageTexteComite .sm-wrapper .main .--content .blockSelectionDate .content {
    margin: 66vh auto 0;
  }
}
@media (max-width: 1280px) {
  .pageTexteComite .sm-wrapper .main .--content .blockSelectionDate {
    padding: 0 20px;
  }
}
@media (max-width: 860px) {
  .pageTexteComite .sm-wrapper .main .--content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.pageTexteComite .sm-wrapper .main .--sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
}
.pageTexteComite .sm-wrapper .main .--sidebar h2 {
  color: #7fa1b6;
  margin: 0 0 50px;
}
.pageTexteComite .sm-wrapper .main .--sidebar .calendrier {
  background-color: #FFFFFF;
  padding: 30px;
  margin: 0 0 40px;
}
.pageTexteComite .sm-wrapper .main .--sidebar .calendrier ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pageTexteComite .sm-wrapper .main .--sidebar .calendrier ul li {
  color: #5c6166;
  text-align: center;
  padding: 5px;
  border-right: 1px solid #eeeeee;
  -ms-flex-preferred-size: 33.3333333333%;
  flex-basis: 33.3333333333%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.pageTexteComite .sm-wrapper .main .--sidebar .calendrier ul li span {
  color: #1c2b39;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  display: block;
}
.pageTexteComite .sm-wrapper .main .--sidebar .calendrier ul li :nth-child(3n) {
  border: none;
}
@media (max-width: 860px) {
  .pageTexteComite .sm-wrapper .main .--sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 40px 0 0;
  }
}

.pageTexteBulletins .sm-wrapper {
  padding: 0;
}
@media (max-width: 1280px) {
  .pageTexteBulletins .sm-wrapper {
    padding: 0 20px;
  }
}
.pageTexteBulletins .sm-wrapper .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pageTexteBulletins .sm-wrapper .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
}
.pageTexteBulletins .sm-wrapper .main .--content .--text {
  position: relative;
}
.pageTexteBulletins .sm-wrapper .main .--content .--text h1 {
  color: #7fa1b6;
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 20px;
}
.pageTexteBulletins .sm-wrapper .main .--content .--text h2 {
  color: #7fa1b6;
  margin: 0 0 50px;
}
.pageTexteBulletins .sm-wrapper .main .--content .--text a {
  text-decoration: none;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .pageTexteBulletins .sm-wrapper .main .--content .--text a:hover .blocCategorie::after {
    background-image: -webkit-gradient(linear, left top, right top, from(rgb(34, 35, 42)), color-stop(0%, rgb(34, 35, 42)), to(rgba(34, 35, 42, 0.6)));
    background-image: linear-gradient(90deg, rgb(34, 35, 42) 0%, rgb(34, 35, 42) 0%, rgba(34, 35, 42, 0.6) 100%);
    -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
    transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  }
}
.pageTexteBulletins .sm-wrapper .main .--content .--text a .blocCategorie {
  padding: 90px 60px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin: 0 0 20px;
  position: relative;
}
.pageTexteBulletins .sm-wrapper .main .--content .--text a .blocCategorie::after {
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(34, 35, 42)), color-stop(0%, rgb(34, 35, 42)), to(rgba(34, 35, 42, 0.4)));
  background-image: linear-gradient(90deg, rgb(34, 35, 42) 0%, rgb(34, 35, 42) 0%, rgba(34, 35, 42, 0.4) 100%);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
.pageTexteBulletins .sm-wrapper .main .--content .--text a .blocCategorie .--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 5;
}
.pageTexteBulletins .sm-wrapper .main .--content .--text a .blocCategorie .--text .btn {
  padding: 10px;
  margin: 0 20px 0 0;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .pageTexteBulletins .sm-wrapper .main .--content .--text a .blocCategorie .--text .btn:hover {
    background-color: transparent;
  }
}
.pageTexteBulletins .sm-wrapper .main .--content .--text a .blocCategorie .--text h3 {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 400;
  max-width: 35%;
}
@media (max-width: 480px) {
  .pageTexteBulletins .sm-wrapper .main .--content .--text a .blocCategorie .--text h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media (max-width: 1024px) {
  .pageTexteBulletins .sm-wrapper .main .--content .--text a .blocCategorie {
    background-size: cover;
  }
}
@media (max-width: 480px) {
  .pageTexteBulletins .sm-wrapper .main .--content .--text a .blocCategorie {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 60px 20px;
  }
}
.pageTexteBulletins .sm-wrapper .main .--content .--text .btn.selectionFiltres {
  border-color: #000000;
  color: #000000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 25px;
  position: absolute;
  top: -25px;
  right: 0;
}
.pageTexteBulletins .sm-wrapper .main .--content .--text .btn.selectionFiltres img {
  max-height: 25px;
  padding: 0 0 0 20px;
  border-left: 1px solid #000000;
  width: auto;
  margin: 0 0 0 20px;
}
@media (max-width: 600px) {
  .pageTexteBulletins .sm-wrapper .main .--content .--text .btn.selectionFiltres {
    top: -75px;
  }
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(34, 35, 42)), to(rgba(34, 35, 42, 0.45)));
  background: linear-gradient(to bottom, rgb(34, 35, 42) 0%, rgba(34, 35, 42, 0.45) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate.hidden {
  opacity: 0;
  z-index: -999;
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate.hidden .content {
  margin: 45% auto 0;
  opacity: 0;
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content {
  background-color: #FFFFFF;
  padding: 20px 20px 40px;
  width: 100%;
  margin: 35% auto 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  opacity: 1;
  -webkit-transition: 0.5s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.5s cubic-bezier(0.58, 0, 0.32, 1);
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #dedede;
  margin: 0 0 35px;
  padding: 0 0 70px;
  position: relative;
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section h3 {
  color: #000000;
  font-weight: 700;
  margin: 0 0 30px;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section .selectionTous {
  position: absolute;
  right: 0;
  top: 0;
  color: #5c6166;
  text-decoration: none;
  cursor: pointer;
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section ul li {
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section ul li .inputGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 15px;
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section ul li .inputGroup input {
  border: none;
  background-color: #eeeeee;
  border-radius: 0;
  height: 20px;
  width: 20px;
  margin: 0 10px 0 0;
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section ul li .inputGroup input:checked::after {
  background-color: #000000;
  height: 20px;
  width: 20px;
  background-image: url(/media/4459/i_check.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section ul li .inputGroup label {
  color: #5c6166;
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section ul li ul.listeSousCat {
  margin: 0;
  padding: 0 0 0 20px;
  display: block;
  max-height: 500px;
  overflow: hidden;
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section ul li ul.listeSousCat.hidden {
  max-height: 0;
}
@media (max-width: 768px) {
  .pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section ul#filtreCategories li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 480px) {
  .pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section ul#filtreCategories li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 480px) {
  .pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .section ul#filtreAnnees li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .topControls {
  position: absolute;
  top: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  right: 0;
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .topControls .btnFermer {
  border: 2px solid #FFFFFF;
  padding: 15px;
  border-radius: 40px;
  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 */
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .topControls .btnFermer img {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-filter: brightness(100);
  filter: brightness(100);
  -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) {
  .pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .topControls .btnFermer:hover {
    background-color: #FFFFFF;
  }
  .pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .topControls .btnFermer:hover img {
    -webkit-filter: brightness(0);
    filter: brightness(0);
  }
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .topControls .btn.Effacer {
  margin: 0 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .topControls .btn.Effacer:hover {
    background-color: #FFFFFF;
  }
}
.pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content .btn.Resultats {
  border-color: #000000;
  color: #000000;
  margin: auto;
  padding: 20px 40px;
}
@media (max-width: 1280px) {
  .pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content {
    margin: 60% auto 0;
  }
}
@media (max-width: 600px) {
  .pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate .content {
    margin: 66vh auto 0;
  }
}
@media (max-width: 1280px) {
  .pageTexteBulletins .sm-wrapper .main .--content .blockSelectionDate {
    padding: 0 20px;
  }
}
@media (max-width: 860px) {
  .pageTexteBulletins .sm-wrapper .main .--content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.pageTexteBulletins .sm-wrapper .main .--sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
}
.pageTexteBulletins .sm-wrapper .main .--sidebar h2 {
  color: #7fa1b6;
  margin: 0 0 50px;
}
.pageTexteBulletins .sm-wrapper .main .--sidebar .listeLatest {
  background-color: #FFFFFF;
  padding: 30px;
  margin: 0 0 40px;
}
.pageTexteBulletins .sm-wrapper .main .--sidebar .listeLatest ul li {
  margin: 0 0 50px;
}
.pageTexteBulletins .sm-wrapper .main .--sidebar .listeLatest ul li a {
  color: #5c6166;
  text-decoration: none;
}
.pageTexteBulletins .sm-wrapper .main .--sidebar .listeLatest ul li .type {
  color: #5c6166;
}
.pageTexteBulletins .sm-wrapper .main .--sidebar .listeLatest ul li span.date {
  clear: both;
  color: #882345;
  font-weight: 700;
  font-size: 17px;
  font-size: 1.0625rem;
  display: block;
}
@media (max-width: 860px) {
  .pageTexteBulletins .sm-wrapper .main .--sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 40px 0 0;
  }
}

.pageTexteCategorieBulletins .sm-wrapper {
  padding: 0;
}
@media (max-width: 1280px) {
  .pageTexteCategorieBulletins .sm-wrapper {
    padding: 0 20px;
  }
}
.pageTexteCategorieBulletins .sm-wrapper .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text {
  position: relative;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text h1 {
  color: #7fa1b6;
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 20px;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text h2 {
  color: #7fa1b6;
  margin: 0 0 50px;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin {
  padding: 45px 100px 45px;
  /* smartphones, touchscreens */
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin h3 {
  font-weight: 400;
  margin: 0 0 30px;
  line-height: 1.5;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin h3 a {
  font-size: 26px;
  font-size: 1.625rem;
  text-decoration: none;
  color: #212329;
  /* smartphones, touchscreens */
}
@media (max-width: 600px) {
  .pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin h3 a {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media (pointer: fine) {
  .pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin h3 a:hover {
    color: #882345;
  }
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin p {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #5c6166;
  margin: 0 0 35px;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin p.tags span::after {
  content: ", ";
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin p.tags span:last-child::after {
  content: "";
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin p span {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #5c6166;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin p:last-child {
  margin: 0;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin:nth-child(odd) {
  background: -webkit-gradient(linear, left top, right top, from(rgba(228, 228, 229, 0)), color-stop(53%, rgb(227, 227, 227)), to(rgba(228, 228, 229, 0)));
  background: linear-gradient(to right, rgba(228, 228, 229, 0) 0%, rgb(227, 227, 227) 53%, rgba(228, 228, 229, 0) 100%);
}
@media (pointer: fine) {
  .pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin:hover {
    background: url(/media/4460/i_bulletin.png), -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(75%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
    background: url(/media/4460/i_bulletin.png), linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 75%, rgb(255, 255, 255) 100%);
    background-repeat: no-repeat;
    background-position: 95% 50%, center center;
  }
}
@media (pointer: fine) and (max-width: 480px) {
  .pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin:hover {
    background-size: 40px 40px, 100% auto;
  }
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin.hidden {
  display: none;
}
@media (max-width: 1024px) {
  .pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin {
    padding: 20px;
  }
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .btn.selectionFiltres {
  border-color: #000000;
  color: #000000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 25px;
  position: absolute;
  top: -25px;
  right: 0;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .btn.selectionFiltres span {
  padding: 0 20px 0 0;
  border-right: 1px solid #000000;
  margin: 0 20px 0 0;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .btn.selectionFiltres svg {
  width: 15px;
  height: 20px;
  fill: #000000;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  stroke: #000000;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .btn.selectionFiltres svg path {
  fill: #000000;
}
@media (max-width: 600px) {
  .pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .btn.selectionFiltres {
    top: -75px;
  }
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .pagination-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 30px 0 0;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .pagination-container button {
  border-color: #000000;
  color: #000000;
  text-decoration: underline;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .pagination-container button.disabled {
  text-decoration: none;
}
@media (max-width: 600px) {
  .pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .pagination-container button {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .pagination-container button {
    margin: 0 0 20px;
  }
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .pagination-container #pagination-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .pagination-container #pagination-numbers button {
  border: none;
  padding: 0;
  background: none;
  padding: 0 15px;
  margin: 0;
  font-weight: normal;
}
@media (max-width: 600px) {
  .pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .pagination-container #pagination-numbers button {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .pagination-container #pagination-numbers button {
    margin: 0 0 20px;
  }
}
.pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .pagination-container #pagination-numbers button.active {
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  text-decoration: none;
}
@media (max-width: 600px) {
  .pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .pagination-container #pagination-numbers button.active {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .pageTexteCategorieBulletins .sm-wrapper .main .--content .--text .pagination-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.pageTexteResultatBulletin .sm-wrapper {
  padding: 0;
}
@media (max-width: 1280px) {
  .pageTexteResultatBulletin .sm-wrapper {
    padding: 0 20px;
  }
}
.pageTexteResultatBulletin .sm-wrapper .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text {
  position: relative;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text h1 {
  color: #7fa1b6;
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 20px;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text h2 {
  color: #7fa1b6;
  margin: 0 0 20px;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text p.searchResults {
  margin: 0 0 40px;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin {
  padding: 45px 100px 45px;
  /* smartphones, touchscreens */
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin h3 {
  font-weight: 400;
  margin: 0 0 30px;
  line-height: 1.5;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin h3 a {
  font-size: 26px;
  font-size: 1.625rem;
  text-decoration: none;
  color: #212329;
  /* smartphones, touchscreens */
}
@media (max-width: 600px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin h3 a {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media (pointer: fine) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin h3 a:hover {
    color: #882345;
  }
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin p {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #5c6166;
  margin: 0 0 35px;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin p.tags span::after {
  content: ", ";
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin p.tags span:last-child::after {
  content: "";
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin p span {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #5c6166;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin p:last-child {
  margin: 0;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin:nth-child(odd) {
  background: -webkit-gradient(linear, left top, right top, from(rgba(228, 228, 229, 0)), color-stop(53%, rgb(227, 227, 227)), to(rgba(228, 228, 229, 0)));
  background: linear-gradient(to right, rgba(228, 228, 229, 0) 0%, rgb(227, 227, 227) 53%, rgba(228, 228, 229, 0) 100%);
}
@media (pointer: fine) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin:hover {
    background: url(/media/4460/i_bulletin.png), -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(75%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
    background: url(/media/4460/i_bulletin.png), linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 75%, rgb(255, 255, 255) 100%);
    background-repeat: no-repeat;
    background-position: 95% 50%, center center;
  }
}
@media (pointer: fine) and (max-width: 480px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin:hover {
    background-size: 40px 40px, 100% auto;
  }
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin.hidden {
  display: none;
}
@media (max-width: 1024px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .--text .listeBulletins .bloc-bulletin {
    padding: 20px;
  }
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .btn.selectionFiltres {
  border-color: #000000;
  color: #000000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 25px;
  position: absolute;
  top: -25px;
  right: 0;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .btn.selectionFiltres img {
  max-height: 25px;
  padding: 0 0 0 20px;
  border-left: 1px solid #000000;
  width: auto;
  margin: 0 0 0 20px;
}
@media (max-width: 600px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .--text .btn.selectionFiltres {
    top: -75px;
  }
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .pagination-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 30px 0 0;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .pagination-container button {
  border-color: #000000;
  color: #000000;
  text-decoration: underline;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .pagination-container button.disabled {
  text-decoration: none;
}
@media (max-width: 600px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .--text .pagination-container button {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .--text .pagination-container button {
    margin: 0 0 20px;
  }
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .pagination-container #pagination-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .pagination-container #pagination-numbers button {
  border: none;
  padding: 0;
  background: none;
  padding: 0 15px;
  margin: 0;
  font-weight: normal;
}
@media (max-width: 600px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .--text .pagination-container #pagination-numbers button {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .--text .pagination-container #pagination-numbers button {
    margin: 0 0 20px;
  }
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .--text .pagination-container #pagination-numbers button.active {
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  text-decoration: none;
}
@media (max-width: 600px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .--text .pagination-container #pagination-numbers button.active {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .--text .pagination-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(34, 35, 42)), to(rgba(34, 35, 42, 0.45)));
  background: linear-gradient(to bottom, rgb(34, 35, 42) 0%, rgba(34, 35, 42, 0.45) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate.hidden {
  opacity: 0;
  z-index: -999;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate.hidden .content {
  margin: 45% auto 0;
  opacity: 0;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content {
  background-color: #FFFFFF;
  padding: 20px 20px 40px;
  width: 100%;
  margin: 35% auto 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  opacity: 1;
  -webkit-transition: 0.5s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.5s cubic-bezier(0.58, 0, 0.32, 1);
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #dedede;
  margin: 0 0 35px;
  padding: 0 0 70px;
  position: relative;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section h3 {
  color: #000000;
  font-weight: 700;
  margin: 0 0 30px;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section .selectionTous {
  position: absolute;
  right: 0;
  top: 0;
  color: #5c6166;
  text-decoration: none;
  cursor: pointer;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section ul li {
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section ul li .inputGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 15px;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section ul li .inputGroup input {
  border: none;
  background-color: #eeeeee;
  border-radius: 0;
  height: 20px;
  width: 20px;
  margin: 0 10px 0 0;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section ul li .inputGroup input:checked::after {
  background-color: #000000;
  height: 20px;
  width: 20px;
  background-image: url(/media/4459/i_check.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section ul li .inputGroup label {
  color: #5c6166;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section ul li ul.listeSousCat {
  margin: 0;
  padding: 0 0 0 20px;
  display: block;
  max-height: 500px;
  overflow: hidden;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section ul li ul.listeSousCat.hidden {
  max-height: 0;
}
@media (max-width: 768px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section ul#filtreCategories li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 480px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section ul#filtreCategories li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 480px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .section ul#filtreAnnees li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .topControls {
  position: absolute;
  top: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  right: 0;
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .topControls .btnFermer {
  border: 2px solid #FFFFFF;
  padding: 15px;
  border-radius: 40px;
  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 */
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .topControls .btnFermer img {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-filter: brightness(100);
  filter: brightness(100);
  -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) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .topControls .btnFermer:hover {
    background-color: #FFFFFF;
  }
  .pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .topControls .btnFermer:hover img {
    -webkit-filter: brightness(0);
    filter: brightness(0);
  }
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .topControls .btn.Effacer {
  margin: 0 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .topControls .btn.Effacer:hover {
    background-color: #FFFFFF;
  }
}
.pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content .btn.Resultats {
  border-color: #000000;
  color: #000000;
  margin: auto;
  padding: 20px 40px;
}
@media (max-width: 1280px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content {
    margin: 60% auto 0;
  }
}
@media (max-width: 600px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate .content {
    margin: 66vh auto 0;
  }
}
@media (max-width: 1280px) {
  .pageTexteResultatBulletin .sm-wrapper .main .--content .blockSelectionDate {
    padding: 0 20px;
  }
}

main.Connexion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main.Connexion .connexion {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  background-color: #2d2f37;
  background-image: url(/media/3620/bg-feuille-bac.png);
  background-repeat: no-repeat;
  background-position: -350px 50%;
}
main.Connexion .connexion--contenu {
  padding: 300px 120px 0 24%;
}
main.Connexion .connexion--contenu h1 {
  color: #FFFFFF;
  margin: 0 0 20px;
}
main.Connexion .connexion--contenu p {
  color: #FFFFFF;
  margin: 0 0 20px;
}
main.Connexion .connexion--contenu p.msgEncadre {
  padding: 20px;
  margin: 0 0 30px;
  font-weight: bold;
  color: #000000;
  background-color: #FFFFFF;
}
main.Connexion .connexion--contenu .validation-summary-errors ul {
  margin: 0;
  padding: 0;
}
main.Connexion .connexion--contenu .validation-summary-errors ul li {
  color: #ff0505;
  list-style: none;
}
main.Connexion .connexion--contenu .validation-summary-errors ul li:last-child {
  margin: 0;
}
main.Connexion .connexion--contenu ul {
  margin: 0 0 40px;
  padding: 0 0 0 30px;
}
main.Connexion .connexion--contenu ul li {
  color: #FFFFFF;
  margin: 0 0 10px;
  list-style: disc;
}
main.Connexion .connexion--contenu .form {
  background: none;
  padding: 0 0 40px 0;
}
main.Connexion .connexion--contenu .form section.hidden {
  display: none;
}
main.Connexion .connexion--contenu .form .text-block a {
  color: #FFFFFF;
}
main.Connexion .connexion--contenu .form .field input {
  padding: 15px 20px;
  border-radius: 0;
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0;
}
main.Connexion .connexion--contenu .form .field input#Username {
  background-image: url("/media/SVG/icon-user-input.svg");
  background-repeat: no-repeat;
  background-position: 97% 50%;
  background-size: 30px 30px;
  padding: 15px 60px 15px 20px;
}
main.Connexion .connexion--contenu .form .field input#Password, main.Connexion .connexion--contenu .form .field input#twofaInput {
  background-image: url("/media/SVG/icon-cle.svg");
  background-repeat: no-repeat;
  background-position: 97% 50%;
  background-size: 30px 30px;
  padding: 15px 60px 15px 20px;
}
main.Connexion .connexion--contenu .form .field input::-webkit-input-placeholder {
  font-size: 22px;
  font-size: 1.375rem;
}
main.Connexion .connexion--contenu .form .field input::-moz-placeholder {
  font-size: 22px;
  font-size: 1.375rem;
}
main.Connexion .connexion--contenu .form .field input:-ms-input-placeholder {
  font-size: 22px;
  font-size: 1.375rem;
}
main.Connexion .connexion--contenu .form .field input::-ms-input-placeholder {
  font-size: 22px;
  font-size: 1.375rem;
}
main.Connexion .connexion--contenu .form .field input::placeholder {
  font-size: 22px;
  font-size: 1.375rem;
}
@media (max-width: 600px) {
  main.Connexion .connexion--contenu .form .field input::-webkit-input-placeholder {
    font-size: 18px;
    font-size: 1.125rem;
  }
  main.Connexion .connexion--contenu .form .field input::-moz-placeholder {
    font-size: 18px;
    font-size: 1.125rem;
  }
  main.Connexion .connexion--contenu .form .field input:-ms-input-placeholder {
    font-size: 18px;
    font-size: 1.125rem;
  }
  main.Connexion .connexion--contenu .form .field input::-ms-input-placeholder {
    font-size: 18px;
    font-size: 1.125rem;
  }
  main.Connexion .connexion--contenu .form .field input::placeholder {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
main.Connexion .connexion--contenu .form .field input[type=checkbox] {
  padding: 0;
  border-radius: unset;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  margin: 0 5px 0 0;
}
main.Connexion .connexion--contenu .form .field input[type=checkbox]::after {
  display: none;
}
main.Connexion .connexion--contenu .form .field input[type=checkbox] + label {
  color: #FFFFFF;
  line-height: 1.5;
}
main.Connexion .connexion--contenu .form .field input[type=checkbox] + label.error {
  color: red;
}
@media (max-width: 600px) {
  main.Connexion .connexion--contenu .form .field input {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
main.Connexion .connexion--contenu .form .field select {
  border-radius: 0;
  padding: 15px 20px;
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
@media (max-width: 600px) {
  main.Connexion .connexion--contenu .form .field select {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
main.Connexion .connexion--contenu .form--callToAction {
  margin: 40px 0 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
main.Connexion .connexion--contenu .form--callToAction .sous-menu a {
  font-weight: 600;
  cursor: pointer;
}
main.Connexion .connexion--contenu .form--callToAction .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  /* smartphones, touchscreens */
}
main.Connexion .connexion--contenu .form--callToAction .btn span {
  margin: 0 20px 0 0;
  padding: 0 20px 0 0;
  border-right: 1px solid #bbbabd;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
main.Connexion .connexion--contenu .form--callToAction .btn svg {
  width: 20px;
  height: 20px;
  display: block;
}
main.Connexion .connexion--contenu .form--callToAction .btn 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) {
  main.Connexion .connexion--contenu .form--callToAction .btn:hover span {
    border-color: #000000;
  }
  main.Connexion .connexion--contenu .form--callToAction .btn:hover svg path {
    fill: #000000;
    color: #000000;
  }
}
main.Connexion .connexion--contenu .form .infoNav {
  margin: 10px 0 40px;
}
main.Connexion .connexion--contenu .form .infoNav p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 700;
  font-size: 17px;
  font-size: 1.0625rem;
}
main.Connexion .connexion--contenu .form .infoNav p .etapeText {
  opacity: 0.5;
  margin: 0 20px;
}
main.Connexion .connexion--contenu .form .infoNav p .etapeText.active {
  opacity: 1;
}
main.Connexion .connexion--contenu .form .infoNav p .flecheEtape {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0.5;
}
main.Connexion .connexion--contenu .form .infoNav p .flecheEtape::before, main.Connexion .connexion--contenu .form .infoNav p .flecheEtape::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: #FFFFFF;
}
main.Connexion .connexion--contenu .form .infoNav p .flecheEtape svg {
  width: 7px;
  height: 12px;
  margin: 0 20px;
}
main.Connexion .connexion--contenu .form .infoNav p .flecheEtape.active {
  opacity: 1;
}
@media (max-width: 600px) {
  main.Connexion .connexion--contenu .form .infoNav p .flecheEtape {
    display: none;
  }
}
@media (max-width: 1440px) {
  main.Connexion .connexion--contenu {
    padding: 300px 30px 0;
  }
}
@media (max-width: 860px) {
  main.Connexion .connexion--contenu {
    padding: 250px 30px 0;
  }
}
@media (max-width: 860px) {
  main.Connexion .connexion {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
main.Connexion footer {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
@media (max-width: 860px) {
  main.Connexion footer {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 860px) {
  main.Connexion {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.Recherche .sm-wrapper {
  padding: 0;
}
@media (max-width: 1280px) {
  .Recherche .sm-wrapper {
    padding: 0 20px;
  }
}
.Recherche .sm-wrapper .resultats-recherche {
  padding: 100px 0;
  background: none;
}
.Recherche .sm-wrapper .resultats-recherche h2 {
  color: #7fa1b6;
  margin: 0 0 20px;
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .bloc-recherche {
  margin: 0 0 20px;
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .bloc-recherche .field input {
  border-radius: 0;
  border: 2px solid #bbbabd;
  margin: 0;
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .bloc-recherche .btn {
  border-color: #bbbabd;
  margin: 0 0 0 20px;
  padding: 10px 30px;
  max-height: 48px;
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .bloc-recherche .btn svg {
  width: 20px;
  height: 20px;
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .bloc-recherche .btn svg path {
  fill: #bbbabd;
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat {
  padding: 45px 0;
  /* smartphones, touchscreens */
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat .contenu {
  max-width: 80%;
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat h3 {
  font-weight: 400;
  margin: 0 0 30px;
  line-height: 1.5;
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat h3 a {
  font-size: 26px;
  font-size: 1.625rem;
  text-decoration: none;
  color: #212329;
  /* smartphones, touchscreens */
}
@media (max-width: 600px) {
  .Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat h3 a {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media (pointer: fine) {
  .Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat h3 a:hover {
    color: #882345;
  }
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat p {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #5c6166;
  margin: 0 0 35px;
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat p.tags span::after {
  content: ", ";
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat p.tags span:last-child::after {
  content: "";
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat p span {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #5c6166;
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat p:last-child {
  margin: 0;
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat:nth-child(odd) {
  background: -webkit-gradient(linear, left top, right top, from(rgba(228, 228, 229, 0)), color-stop(53%, rgb(227, 227, 227)), to(rgba(228, 228, 229, 0)));
  background: linear-gradient(to right, rgba(228, 228, 229, 0) 0%, rgb(227, 227, 227) 53%, rgba(228, 228, 229, 0) 100%);
}
@media (pointer: fine) {
  .Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat:hover {
    background: url(/media/4460/i_bulletin.png), -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(75%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
    background: url(/media/4460/i_bulletin.png), linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 75%, rgb(255, 255, 255) 100%);
    background-repeat: no-repeat;
    background-position: 95% 50%, center center;
  }
}
@media (pointer: fine) and (max-width: 480px) {
  .Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat:hover {
    background-size: 40px 40px, 100% auto;
  }
}
.Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat.hidden {
  display: none;
}
@media (max-width: 1024px) {
  .Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .Recherche .sm-wrapper .resultats-recherche #ctnResultatRecherche .blocResultat {
    padding: 20px;
  }
}
.Recherche .sm-wrapper .resultats-recherche .bloc-resultat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 60px;
}
@media (max-width: 480px) {
  .Recherche .sm-wrapper .resultats-recherche .bloc-resultat {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.Recherche .sm-wrapper .resultats-recherche .bloc-resultat p {
  color: #5c6166;
}
.Recherche .sm-wrapper .resultats-recherche .bloc-resultat .bloc-selection-texte {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
}
@media (max-width: 768px) {
  .Recherche .sm-wrapper .resultats-recherche .bloc-resultat .bloc-selection-texte {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 480px) {
  .Recherche .sm-wrapper .resultats-recherche .bloc-resultat .bloc-selection-texte {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.liste-emplois {
  padding-top: 40px;
  padding-bottom: 40px;
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions .titre-section {
  color: #2c3e50;
  margin-bottom: 20px;
  color: #7493a6;
  text-align: center;
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions .chargement {
  text-align: center;
  padding: 20px;
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions .chargement .spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid #7fa1b6;
  border-radius: 50%;
  border-top-color: transparent;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions .message-erreur {
  color: #ff0505;
  text-align: center;
  font-weight: bold;
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions .liste-postes {
  list-style-type: none;
  padding: 0;
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions .liste-postes .poste-item {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions .liste-postes .poste-item:hover {
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions .liste-postes .poste-item .nom-poste {
  color: #882345;
  display: block;
  font-weight: bold;
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions .bouton-retour {
  display: inline-block;
  margin-bottom: 20px;
  color: #882345;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-decoration: none;
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions .bouton-retour:hover {
  color: #a1536e;
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions .details-poste .titre-poste {
  color: #7fa1b6;
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions .details-poste .description-poste {
  line-height: 1.6;
  color: #272525;
}
.liste-emplois .sm-wrapper .main #glow-in-the-cloud-positions .total-postes {
  text-align: center;
  font-weight: bold;
  color: #2c3e50;
  margin-top: 20px;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.uikit-section {
  margin: 40px;
}
.uikit-section__title {
  padding: 40px;
  background-color: #e1e1e1;
}
.uikit-section__content {
  background-color: #eeeeee;
  padding: 40px;
}

.boilerplate {
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

/**************** HEADER MENU *******************/
header {
  background-color: transparent;
}
header .menu-utilitaire {
  text-align: left;
}
header .menu-utilitaire nav ul li {
  color: #FFFFFF;
  display: inline-block;
  margin-bottom: 10px;
}
header .menu-utilitaire nav ul li:not(:first-child) {
  margin-left: 20px;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
@media (max-width: 600px) {
  header .menu-utilitaire nav ul li {
    display: none;
  }
}
header .menu-utilitaire nav ul li.hidden {
  display: none;
}
header .menu-principal--nav .main nav > ul {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
header .menu-principal--nav .main nav > ul > li {
  background-color: #353742;
  border-left: 1px solid #272930;
  border-right: 1px solid #272930;
  /* smartphones, touchscreens */
}
header .menu-principal--nav .main nav > ul > li.unlocked {
  background-image: url(/media/3632/i_lock.png);
  background-repeat: no-repeat;
  background-position: 95% 23px;
}
header .menu-principal--nav .main nav > ul > li.unlocked ul li.unlocked {
  background-image: none;
}
header .menu-principal--nav .main nav > ul > li.section-header {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  min-height: 80px;
  padding: 20px 40px 20px 20px;
}
@media (max-width: 1024px) {
  header .menu-principal--nav .main nav > ul > li.section-header {
    min-height: 0;
  }
}
header .menu-principal--nav .main nav > ul > li:first-child {
  background-color: transparent;
}
@media (max-width: 1024px) {
  header .menu-principal--nav .main nav > ul > li:first-child {
    background-color: transparent;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
header .menu-principal--nav .main nav > ul > li:nth-child(odd) {
  background-color: transparent;
  border-left: 1px solid #353742;
  border-right: 1px solid #353742;
}
@media (max-width: 1024px) {
  header .menu-principal--nav .main nav > ul > li:nth-child(odd):not(:first-child) {
    background-color: #353742;
  }
}
@media (max-width: 600px) {
  header .menu-principal--nav .main nav > ul > li:nth-child(odd):not(:first-child) {
    background-color: transparent;
  }
}
header .menu-principal--nav .main nav > ul > li a {
  padding: 20px 40px 20px 20px;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1) background-color;
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1) background-color;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  header .menu-principal--nav .main nav > ul > li a:hover {
    font-weight: 700;
    color: #FFFFFF;
  }
}
header .menu-principal--nav .main nav > ul > li ul li.unlocked {
  background-image: url(/media/3632/i_lock.png);
  background-repeat: no-repeat;
  background-position: 95% 4px;
}
@media (pointer: fine) {
  header .menu-principal--nav .main nav > ul > li:hover {
    background-color: #212329;
  }
  header .menu-principal--nav .main nav > ul > li:hover.section-header {
    background-color: transparent;
  }
}
@media (pointer: fine) and (max-width: 1024px) {
  header .menu-principal--nav .main nav > ul > li:hover.section-header {
    background-color: transparent;
  }
}
@media (max-width: 1024px) {
  header .menu-principal--nav .main nav > ul > li {
    background-color: #353742;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 600px) {
  header .menu-principal--nav .main nav > ul > li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
header .menu-principal--nav .main nav > ul > li.hidden {
  display: none;
}
header .menu-principal--nav .main nav ul:first-child > li {
  border-left: 2px solid #272930;
}
header .menu-principal--nav .main nav ul:first-child > li:nth-child(odd) {
  border-left: 2px solid #353742;
}
header .menu-principal--nav .main nav ul:last-child > li {
  border-right: 2px solid #272930;
}
header .menu-principal--nav .main nav ul:last-child > li:nth-child(odd) {
  border-right: 2px solid #353742;
}
/********* FOOTER ************/
footer .lg-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .lg-wrapper .footer-left {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  background-image: url("/media/3645/accueil17_894421636_bac.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
footer .lg-wrapper .footer-left img {
  width: 100%;
}
@media (max-width: 1024px) {
  footer .lg-wrapper .footer-left {
    display: none;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }
}
footer .lg-wrapper .footer-right {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
footer .lg-wrapper .footer-right .footer-top {
  background-image: url("/media/3647/footer_182744365_bac.jpg");
  padding: 0 40px 60px;
  background-repeat: no-repeat;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .lg-wrapper .footer-right .footer-top .bloc-sociaux {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: auto 0 0 0;
}
footer .lg-wrapper .footer-right .footer-top .bloc-sociaux a {
  margin: 0 20px 0 0;
  border: 2px solid #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  border-radius: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
  /* smartphones, touchscreens */
}
@media (max-width: 480px) {
  footer .lg-wrapper .footer-right .footer-top .bloc-sociaux a {
    padding: 10px;
  }
}
footer .lg-wrapper .footer-right .footer-top .bloc-sociaux a svg {
  max-width: 20px;
  max-height: 20px;
  width: 100%;
  fill: #FFFFFF;
}
@media (pointer: fine) {
  footer .lg-wrapper .footer-right .footer-top .bloc-sociaux a:hover:after {
    max-width: 200px;
    padding: 0 20px;
    visibility: visible;
    opacity: 1;
  }
}
@media (pointer: fine) and (max-width: 480px) {
  footer .lg-wrapper .footer-right .footer-top .bloc-sociaux a:hover:after {
    display: none;
  }
}
footer .lg-wrapper .footer-right .footer-top .bloc-sociaux a:after {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #FFFFFF;
  padding: 0;
  text-decoration: none;
  max-width: 0px;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  visibility: hidden;
  opacity: 0;
  line-height: 0;
}
footer .lg-wrapper .footer-right .footer-top .bloc-sociaux a.twitter:after {
  content: "Twitter";
}
footer .lg-wrapper .footer-right .footer-top .bloc-sociaux a.linkedin:after {
  content: "Linked In";
}
footer .lg-wrapper .footer-right .footer-top .bloc-sociaux a.facebook:after {
  content: "Facebook";
}
footer .lg-wrapper .footer-right .footer-top .bloc-sociaux a.youtube:after {
  content: "Youtube";
}
@media (max-width: 1024px) {
  footer .lg-wrapper .footer-right .footer-top {
    background-size: cover;
  }
}
@media (max-width: 768px) {
  footer .lg-wrapper .footer-right .footer-top {
    height: 200px;
  }
}
@media (max-width: 480px) {
  footer .lg-wrapper .footer-right .footer-top {
    padding: 0 20px 60px;
  }
}
footer .lg-wrapper .footer-right .footer-bottom {
  background-color: #272930;
  padding: 60px 40px 20px;
}
footer .lg-wrapper .footer-right .footer-bottom .bloc-bureaux {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 60px;
}
footer .lg-wrapper .footer-right .footer-bottom .bloc-bureaux .bureau {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  color: #FFFFFF;
}
footer .lg-wrapper .footer-right .footer-bottom .bloc-bureaux .bureau h2 {
  margin: 0 0 5px;
}
footer .lg-wrapper .footer-right .footer-bottom .bloc-bureaux .bureau p {
  line-height: 1.3;
}
footer .lg-wrapper .footer-right .footer-bottom .bloc-bureaux .bureau p a {
  text-decoration: none;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (max-width: 480px) {
  footer .lg-wrapper .footer-right .footer-bottom .bloc-bureaux .bureau {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin: 0 0 40px;
  }
}
@media (max-width: 480px) {
  footer .lg-wrapper .footer-right .footer-bottom .bloc-bureaux {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
footer .lg-wrapper .footer-right .footer-bottom .bloc-utilitaire {
  margin: 0 0 60px;
}
footer .lg-wrapper .footer-right .footer-bottom .bloc-utilitaire li {
  margin: 0 0 5px;
}
footer .lg-wrapper .footer-right .footer-bottom .bloc-utilitaire li a {
  text-decoration: underline;
  color: #FFFFFF;
  text-transform: none;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  footer .lg-wrapper .footer-right .footer-bottom .bloc-utilitaire li a:hover {
    text-decoration: none;
  }
}
footer .lg-wrapper .footer-right .footer-bottom .copyright {
  color: #FFFFFF;
}
footer .lg-wrapper .footer-right .footer-bottom .copyright p {
  line-height: 1.1;
}
@media (max-width: 1024px) {
  footer .lg-wrapper .footer-right {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.Connexion footer .lg-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100%;
}
.Connexion footer .lg-wrapper .footer-top {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url(/media/5095/login_01-922565308_bac.jpg);
  min-height: 820px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 860px) {
  .Connexion footer .lg-wrapper .footer-top {
    display: none;
  }
}
.Connexion footer .lg-wrapper .footer-bottom {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: #272930;
  padding: 60px 40px 20px;
}
.Connexion footer .lg-wrapper .footer-bottom .bloc-bureaux {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 60px;
}
.Connexion footer .lg-wrapper .footer-bottom .bloc-bureaux .bureau {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  color: #FFFFFF;
}
.Connexion footer .lg-wrapper .footer-bottom .bloc-bureaux .bureau h2 {
  margin: 0 0 5px;
}
.Connexion footer .lg-wrapper .footer-bottom .bloc-bureaux .bureau p {
  line-height: 1.3;
}
.Connexion footer .lg-wrapper .footer-bottom .bloc-bureaux .bureau p a {
  text-decoration: none;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (max-width: 480px) {
  .Connexion footer .lg-wrapper .footer-bottom .bloc-bureaux .bureau {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin: 0 0 40px;
  }
}
@media (max-width: 480px) {
  .Connexion footer .lg-wrapper .footer-bottom .bloc-bureaux {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.Connexion footer .lg-wrapper .footer-bottom .copyright {
  color: #FFFFFF;
}
.Connexion footer .lg-wrapper .footer-bottom .copyright p {
  line-height: 1.1;
}

/********* 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);
  z-index: 20;
}
header .header--container {
  position: absolute;
  width: 100%;
  z-index: 5;
  padding: 45px 0 0;
}
@media (max-width: 1024px) {
  header .header--container {
    padding: 20px 0 0;
  }
}
header .header--container .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
header .header--container .wrapper .--logo {
  z-index: 12;
}
@media (max-width: 1024px) {
  header .header--container .wrapper .--logo {
    position: absolute;
    top: 60px;
    left: 30px;
  }
}
@media (max-width: 600px) {
  header .header--container .wrapper .--logo {
    position: relative;
    top: unset;
    left: unset;
  }
}
@media (max-width: 480px) {
  header .header--container .wrapper .--logo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
header .header--container .wrapper .--menus {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
header .header--container .wrapper .--menus .menu-utilitaire {
  padding: 0;
  position: relative;
  z-index: 5;
  margin: 0 0 20px;
}
header .header--container .wrapper .--menus .menu-principal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 25px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.25);
}
header .header--container .wrapper .--menus .menu-principal .recherche {
  margin: 0 20px 0 0;
  padding: 0 20px 0 0;
  border-right: 1px solid #bbbabd;
}
header .header--container .wrapper .--menus .menu-principal .recherche form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header--container .wrapper .--menus .menu-principal .recherche form input {
  margin: 0 10px 0 0;
  padding: 3px 10px;
  border-radius: 0;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: 0.6s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.6s cubic-bezier(0.58, 0, 0.32, 1);
  max-width: 200px;
}
header .header--container .wrapper .--menus .menu-principal .recherche form input.hidden {
  opacity: 0;
  max-width: 0;
  visibility: hidden;
  margin: 0;
  padding: 3px 0;
  -webkit-transition: 0.6s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.6s cubic-bezier(0.58, 0, 0.32, 1);
}
header .header--container .wrapper .--menus .menu-principal .recherche form input::-webkit-input-placeholder {
  font-size: 14px;
  font-size: 0.875rem;
}
header .header--container .wrapper .--menus .menu-principal .recherche form input::-moz-placeholder {
  font-size: 14px;
  font-size: 0.875rem;
}
header .header--container .wrapper .--menus .menu-principal .recherche form input:-ms-input-placeholder {
  font-size: 14px;
  font-size: 0.875rem;
}
header .header--container .wrapper .--menus .menu-principal .recherche form input::-ms-input-placeholder {
  font-size: 14px;
  font-size: 0.875rem;
}
header .header--container .wrapper .--menus .menu-principal .recherche form input::placeholder {
  font-size: 14px;
  font-size: 0.875rem;
}
header .header--container .wrapper .--menus .menu-principal .recherche form button {
  border: none;
  padding: 0;
  /* smartphones, touchscreens */
}
header .header--container .wrapper .--menus .menu-principal .recherche form button svg {
  width: 20px;
  height: 20px;
}
@media (pointer: fine) {
  header .header--container .wrapper .--menus .menu-principal .recherche form button:hover {
    background: none;
  }
}
header .header--container .wrapper .--menus .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 .header--container .wrapper .--menus .menu-principal--btn a {
  margin-right: 5px;
}
header .header--container .wrapper .--menus .menu-principal--btn span {
  display: block;
  background-color: #FFFFFF;
  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);
  width: 25px;
}
header .header--container .wrapper .--menus .menu-principal--btn span:nth-child(1) {
  margin-top: 2px;
}
header .header--container .wrapper .--menus .menu-principal--btn span:nth-child(3) {
  margin-bottom: 0;
}
@media (pointer: fine) {
  header .header--container .wrapper .--menus .menu-principal--btn:hover a {
    color: #5c6166;
  }
}
header .header--container .wrapper .--menus .menu-principal--nav {
  background-color: #272930;
  min-height: 100vh;
  padding-top: 175px;
  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 .header--container .wrapper .--menus .menu-principal--nav .main {
  position: relative;
}
header .header--container .wrapper .--menus .menu-principal--nav .main .wrapper {
  position: relative;
}
header .header--container .wrapper .--menus .menu-principal--nav .main nav {
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 175px - 121px);
  padding: 40px;
  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 .header--container .wrapper .--menus .menu-principal--nav .main nav#bac {
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
}
header .header--container .wrapper .--menus .menu-principal--nav .main nav#bac.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
header .header--container .wrapper .--menus .menu-principal--nav .main nav ul {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
header .header--container .wrapper .--menus .menu-principal--nav .main nav ul li {
  /* smartphones, touchscreens */
}
header .header--container .wrapper .--menus .menu-principal--nav .main nav ul li a.lm {
  color: #FFFFFF;
}
@media (pointer: fine) {
  header .header--container .wrapper .--menus .menu-principal--nav .main nav ul li:hover .main--sub-section {
    display: block;
  }
  header .header--container .wrapper .--menus .menu-principal--nav .main nav ul li:hover .main--sub-section li {
    border: none;
  }
  header .header--container .wrapper .--menus .menu-principal--nav .main nav ul li:hover .main--sub-section li a {
    padding-top: 0;
    padding-bottom: 5px;
  }
  header .header--container .wrapper .--menus .menu-principal--nav .main nav ul li:hover .main--sub-section li:last-child a {
    padding-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  header .header--container .wrapper .--menus .menu-principal--nav .main nav ul li {
    border-left: 1px solid #272930;
    border-bottom: 1px solid #272930;
    border-right: none;
  }
  header .header--container .wrapper .--menus .menu-principal--nav .main nav ul li .main--sub-section {
    display: none;
  }
}
@media (max-width: 1024px) {
  header .header--container .wrapper .--menus .menu-principal--nav .main nav ul {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-left: 3px solid #882345;
    border-right: 1px solid #353742;
  }
}
@media (max-width: 1024px) {
  header .header--container .wrapper .--menus .menu-principal--nav .main nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 30px;
  }
}
header .header--container .wrapper .--menus .menu-principal--nav .main nav ul.menu-utilitaire {
  display: none;
}
@media (max-width: 600px) {
  header .header--container .wrapper .--menus .menu-principal--nav .main nav ul.menu-utilitaire {
    display: block;
  }
}
@media (max-width: 1024px) {
  header .header--container .wrapper .--menus .menu-principal--nav .main nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  header .header--container .wrapper .--menus .menu-principal--nav .main nav {
    padding: 20px;
  }
}
header .header--container .wrapper .--menus .menu-principal--nav .main--sub-section {
  display: none;
}
@media (max-width: 1024px) {
  header .header--container .wrapper .--menus {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 480px) {
  header .header--container .wrapper .--menus {
    margin: 0 0 0 auto;
  }
}
@media (max-width: 1440px) {
  header .header--container .wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 1024px) {
  header .header--container .wrapper {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 600px) {
  header .header--container .wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 480px) {
  header .header--container .wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
header .header--login {
  background-color: #353742;
}
header .header--login .md-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
header .header--login .md-wrapper a {
  padding: 15px 25px;
  display: block;
  color: #FFFFFF;
  font-size: 14px;
  font-size: 0.875rem;
  text-decoration: none;
}
header .header--login .md-wrapper a:first-child {
  text-decoration: underline;
}
header .header--login .md-wrapper span {
  padding: 15px 25px;
  color: #FFFFFF;
  background-color: #272930;
}
header.open .header--container .wrapper .--menus .menu-principal--btn {
  /* smartphones, touchscreens */
}
header.open .header--container .wrapper .--menus .menu-principal--btn span {
  background-color: #FFFFFF;
  margin: 0;
}
header.open .header--container .wrapper .--menus .menu-principal--btn span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(3px) translateX(2px);
  transform: rotate(45deg) translateY(3px) translateX(2px);
  width: 25px;
}
header.open .header--container .wrapper .--menus .menu-principal--btn span:nth-child(2) {
  width: 0;
  opacity: 0;
}
header.open .header--container .wrapper .--menus .menu-principal--btn span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-1px) translateX(0px);
  transform: rotate(-45deg) translateY(-1px) translateX(0px);
  width: 25px;
}
@media (pointer: fine) {
  header.open .header--container .wrapper .--menus .menu-principal--btn:hover a {
    color: #f3f3f3;
  }
  header.open .header--container .wrapper .--menus .menu-principal--btn:hover span {
    background-color: #f3f3f3;
  }
}
header.open .header--container .wrapper .--menus .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: 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) {
  .Connexion header .header--container .wrapper .menu-principal {
    padding: 15px;
  }
}
.Connexion header .menu-principal--btn {
  color: #FFFFFF;
  text-decoration: none;
}
.Connexion header .menu-principal--btn strong {
  padding: 0 20px 0 0;
  border-right: 1px solid #bbbabd;
  margin: 0 20px 0 0;
}
@media (max-width: 600px) {
  .Connexion header .menu-principal--btn strong {
    padding: 0 10px 0 0;
    margin: 0 10px 0 0;
  }
}
.Connexion header .menu-principal--btn svg {
  width: 20px;
  height: 20px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.Connexion header .menu-utilitaire a {
  font-weight: 700;
}

.banner.home .slides {
  height: 100%;
}
.banner.home .slides .slick-slide {
  position: relative;
  background-position: center;
}
.banner.home .slides .slick-slide[data-color="7fa0b4"] .md-wrapper:before {
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, -webkit-gradient(linear, left top, left bottom, from(rgb(127, 160, 180)), to(rgba(127, 160, 180, 0.5)));
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, linear-gradient(to bottom, rgb(127, 160, 180) 0%, rgba(127, 160, 180, 0.5) 100%);
}
.banner.home .slides .slick-slide[data-color="699953"] .md-wrapper:before {
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(105, 153, 83, 0.95)), color-stop(60%, rgba(105, 153, 83, 0.95)), to(rgba(105, 153, 83, 0.65)));
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, linear-gradient(to bottom, rgba(105, 153, 83, 0.95) 50%, rgba(105, 153, 83, 0.95) 60%, rgba(105, 153, 83, 0.65) 100%);
}
.banner.home .slides .slick-slide[data-color=bead31] .md-wrapper:before {
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, -webkit-gradient(linear, left top, left bottom, from(rgb(190, 173, 49)), color-stop(52%, rgb(190, 173, 49)), to(rgba(190, 173, 49, 0.5)));
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, linear-gradient(to bottom, rgb(190, 173, 49) 0%, rgb(190, 173, 49) 52%, rgba(190, 173, 49, 0.5) 100%);
}
.banner.home .slides .slick-slide[data-color="882345"] .md-wrapper:before {
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, -webkit-gradient(linear, left top, left bottom, from(rgb(136, 35, 69)), color-stop(32%, rgb(136, 35, 69)), to(rgba(136, 35, 69, 0.7)));
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, linear-gradient(to bottom, rgb(136, 35, 69) 0%, rgb(136, 35, 69) 32%, rgba(136, 35, 69, 0.7) 100%);
}
.banner.home .slides .slick-slide .md-wrapper {
  z-index: 3;
  position: relative;
  min-height: 500px;
  padding: 0 100px 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: end;
  align-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .banner.home .slides .slick-slide .md-wrapper {
    min-height: 525px;
  }
}
@media (max-width: 380px) {
  .banner.home .slides .slick-slide .md-wrapper {
    min-height: 560px;
  }
}
.banner.home .slides .slick-slide .md-wrapper:before {
  content: "";
  width: 600px;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  z-index: 2;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .banner.home .slides .slick-slide .md-wrapper:before {
    width: 45%;
  }
}
@media (max-width: 480px) {
  .banner.home .slides .slick-slide .md-wrapper:before {
    width: 100%;
  }
}
.banner.home .slides .slick-slide .md-wrapper .--text {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  z-index: 3;
}
.banner.home .slides .slick-slide .md-wrapper .--text h1 {
  color: #FFFFFF;
  margin: 0 0 30px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .banner.home .slides .slick-slide .md-wrapper .--text h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media (max-width: 480px) {
  .banner.home .slides .slick-slide .md-wrapper .--text h1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.banner.home .slides .slick-slide .md-wrapper .--text p {
  color: #FFFFFF;
}
.banner.home .slides .slick-slide .md-wrapper .navigationArrows {
  margin: 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  z-index: 3;
}
.banner.home .slides .slick-slide .md-wrapper .navigationArrows .btn {
  margin: 0 20px 0 0;
  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;
}
@media (max-width: 380px) {
  .banner.home .slides .slick-slide .md-wrapper .navigationArrows .btn {
    padding: 10px 20px;
    margin: 0 10px 0 0;
  }
}
.banner.home .slides .slick-slide .md-wrapper .navigationArrows .btn.slick-arrow {
  width: 60px;
  height: 60px;
  padding: 15px;
  /* smartphones, touchscreens */
}
@media (max-width: 380px) {
  .banner.home .slides .slick-slide .md-wrapper .navigationArrows .btn.slick-arrow {
    width: 40px;
    height: 40px;
  }
}
@media (pointer: fine) {
  .banner.home .slides .slick-slide .md-wrapper .navigationArrows .btn.slick-arrow:hover svg path {
    fill: #000000;
    stroke: #000000;
  }
}
.banner.home .slides .slick-slide .md-wrapper .navigationArrows .btn.slick-arrow.prev svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.banner.home .slides .slick-slide .md-wrapper .navigationArrows .btn.slick-arrow svg {
  width: 15px;
  height: 20px;
  fill: #FFFFFF;
}
.banner.home .slides .slick-slide .md-wrapper .navigationArrows .btn.slick-arrow 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 (max-width: 1440px) {
  .banner.home .slides .slick-slide .md-wrapper {
    padding: 0 30px 120px;
  }
}
@media (max-width: 1024px) {
  .banner.home .slides .slick-slide .md-wrapper {
    padding: 0 30px 60px;
  }
}
@media (max-width: 480px) {
  .banner.home .slides .slick-slide .md-wrapper {
    padding: 0 30px 40px;
  }
}
.banner .container {
  position: relative;
  background-position: center;
}
.banner .container[data-color="7fa0b4"] .md-wrapper:before {
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, -webkit-gradient(linear, left top, left bottom, from(rgb(127, 160, 180)), to(rgba(127, 160, 180, 0.5)));
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, linear-gradient(to bottom, rgb(127, 160, 180) 0%, rgba(127, 160, 180, 0.5) 100%);
}
.banner .container[data-color="699953"] .md-wrapper:before {
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(105, 153, 83, 0.95)), color-stop(60%, rgba(105, 153, 83, 0.95)), to(rgba(105, 153, 83, 0.65)));
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, linear-gradient(to bottom, rgba(105, 153, 83, 0.95) 50%, rgba(105, 153, 83, 0.95) 60%, rgba(105, 153, 83, 0.65) 100%);
}
.banner .container[data-color=bead31] .md-wrapper:before {
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, -webkit-gradient(linear, left top, left bottom, from(rgb(190, 173, 49)), color-stop(52%, rgb(190, 173, 49)), to(rgba(190, 173, 49, 0.5)));
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, linear-gradient(to bottom, rgb(190, 173, 49) 0%, rgb(190, 173, 49) 52%, rgba(190, 173, 49, 0.5) 100%);
}
.banner .container[data-color="882345"] .md-wrapper:before {
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, -webkit-gradient(linear, left top, left bottom, from(rgb(136, 35, 69)), color-stop(32%, rgb(136, 35, 69)), to(rgba(136, 35, 69, 0.7)));
  background: url("/media/5164/feuille-banner.png") no-repeat bottom left, linear-gradient(to bottom, rgb(136, 35, 69) 0%, rgb(136, 35, 69) 32%, rgba(136, 35, 69, 0.7) 100%);
}
.banner .container .md-wrapper {
  z-index: 3;
  position: relative;
  min-height: 500px;
  padding: 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.banner .container .md-wrapper:before {
  content: "";
  width: 600px;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  z-index: 2;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .banner .container .md-wrapper:before {
    width: 45%;
  }
}
@media (max-width: 480px) {
  .banner .container .md-wrapper:before {
    width: 100%;
  }
}
.banner .container .md-wrapper .--text {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  z-index: 3;
}
.banner .container .md-wrapper .--text h1 {
  color: #FFFFFF;
  margin: 0 0 30px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .banner .container .md-wrapper .--text h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media (max-width: 480px) {
  .banner .container .md-wrapper .--text h1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.banner .container .md-wrapper .--text p {
  color: #FFFFFF;
}
@media (max-width: 1440px) {
  .banner .container .md-wrapper {
    padding: 0 30px;
  }
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 50;
}
.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: #353742;
}
.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: #393b47;
}

.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 .bloc-promo {
  background-color: #353742;
  padding: 30px 45px;
  border-radius: 0 30px 0 30px;
  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;
  margin: 0 0 40px;
}
.--sidebar .bloc-promo .--image img {
  border-radius: 60px;
  border: 2px solid #FFFFFF;
  margin: 0 0 20px;
}
.--sidebar .bloc-promo .--text {
  color: #FFFFFF;
  text-align: center;
}
.--sidebar .bloc-promo .--text h3 {
  font-weight: 700;
  margin: 0 0 30px;
}
@media (max-width: 1024px) {
  .--sidebar .bloc-promo .--text h3 {
    word-break: break-word;
  }
}
@media (max-width: 860px) {
  .--sidebar .bloc-promo .--text h3 {
    word-break: normal;
  }
}
.--sidebar .bloc-promo .--text p {
  margin: 0 0 20px;
}
.--sidebar .bloc-promo .--text p a {
  font-weight: 700;
}
.--sidebar .bloc-promo .--text .btn {
  margin: auto;
}
.--sidebar .bloc-contenu-additionnel .collapse {
  border-bottom: 1px solid #f3f3f3;
}
.--sidebar .bloc-contenu-additionnel .collapse--head h3 {
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.--sidebar .bloc-contenu-additionnel .collapse--head h3:after {
  background-image: url("/media/4304/i_plus_fonce.png");
  content: "";
  height: 30px;
  width: 30px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 0 0 20px;
  -webkit-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.--sidebar .bloc-contenu-additionnel .collapse--body {
  background-color: #353742;
}
.--sidebar .bloc-contenu-additionnel .collapse--body .content {
  padding: 30px;
}
.--sidebar .bloc-contenu-additionnel .collapse--body .content li {
  color: #FFFFFF;
  margin: 0 0 20px;
}
.--sidebar .bloc-contenu-additionnel .collapse--body .content li.item-memoire strong {
  font-size: 17px;
  font-size: 1.0625rem;
  text-transform: capitalize;
}
.--sidebar .bloc-contenu-additionnel .collapse--body .content li a {
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .--sidebar .bloc-contenu-additionnel .collapse--body .content li a:hover {
    background: -webkit-gradient(linear, left top, right top, from(rgba(44, 46, 55, 0)), color-stop(50%, rgb(44, 46, 55)), to(rgba(44, 46, 55, 0)));
    background: linear-gradient(to right, rgba(44, 46, 55, 0) 0%, rgb(44, 46, 55) 50%, rgba(44, 46, 55, 0) 100%);
  }
}
.--sidebar .bloc-contenu-additionnel .collapse--body .content li:last-child {
  margin: 0;
}
.--sidebar .bloc-contenu-additionnel .collapse:last-child {
  border: none;
}
.--sidebar .bloc-contenu-additionnel .collapse.ouvert .collapse--head {
  background-color: #353742;
}
.--sidebar .bloc-contenu-additionnel .collapse.ouvert .collapse--head h3 {
  color: #FFFFFF;
}
.--sidebar .bloc-contenu-additionnel .collapse.ouvert .collapse--head h3:after {
  background-image: url("/media/4303/i_close_pale.png");
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.--sidebar .bloc-contenu-additionnel.isMembre {
  margin: 50px 0 0;
}
.--sidebar .bloc-contenu-additionnel.isMembre > h3 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #272930;
  padding: 10px 30px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(228, 228, 228)), to(rgba(228, 228, 228, 0)));
  background: linear-gradient(to right, rgb(228, 228, 228) 0%, rgba(228, 228, 228, 0) 100%);
}
.--sidebar .bloc-contenu-additionnel.isMembre > h3::after {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url(/media/4478/i_lock_noir.png);
  display: inline-block;
  margin: 0 0 0 5px;
}
.--sidebar .bloc-menu {
  background-color: #FFFFFF;
  padding: 0 0 40px;
}
.--sidebar .bloc-menu h2 {
  text-align: center;
  padding: 40px 0;
  color: #7fa1b6;
}
.--sidebar .bloc-menu ul {
  text-align: center;
}
.--sidebar .bloc-menu ul li {
  margin: 0 0 3px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(228, 228, 228, 0)), color-stop(50%, rgb(228, 228, 228)), to(rgba(228, 228, 228, 0)));
  background: linear-gradient(to right, rgba(228, 228, 228, 0) 0%, rgb(228, 228, 228) 50%, rgba(228, 228, 228, 0) 100%);
}
.--sidebar .bloc-menu ul li:hover {
  background: #2e3038;
}
.--sidebar .bloc-menu ul li:hover a {
  color: #FFFFFF;
}
.--sidebar .bloc-menu ul li a {
  text-decoration: none;
  font-weight: 700;
  padding: 20px;
  display: block;
}
.--sidebar .bloc-menu ul li.actif {
  background: #2e3038;
}
.--sidebar .bloc-menu ul li.actif a {
  color: #FFFFFF;
}

.cookies {
  position: fixed;
  bottom: 0;
  background-color: #353742;
  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;
  }
}

.pageTexte .sm-wrapper .main .--content .--text .exergue {
  margin: 0 0 35px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.pageTexte .sm-wrapper .main .--content .--text .exergue:before {
  content: "";
  width: 125px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #7493a6 url(/media/5134/feuille_exergue.png) no-repeat center center;
}
@media (max-width: 480px) {
  .pageTexte .sm-wrapper .main .--content .--text .exergue:before {
    height: 125px;
    width: 100%;
    position: relative;
  }
}
.pageTexte .sm-wrapper .main .--content .--text .exergue .content {
  padding: 20px;
  background-color: #7fa1b6;
  -ms-flex-preferred-size: calc(100% - 125px);
  flex-basis: calc(100% - 125px);
}
.pageTexte .sm-wrapper .main .--content .--text .exergue .content h3 {
  color: #FFFFFF;
}
.pageTexte .sm-wrapper .main .--content .--text .exergue .content *:last-child {
  margin: 0;
}
.pageTexte .sm-wrapper .main .--content .--text .exergue .content p {
  color: #FFFFFF;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 20px;
}
.pageTexte .sm-wrapper .main .--content .--text .exergue .content p:last-child {
  margin: 0;
}
.pageTexte .sm-wrapper .main .--content .--text .exergue .content p strong {
  font-size: 18px;
  font-size: 1.125rem;
}
.pageTexte .sm-wrapper .main .--content .--text .exergue .content a {
  color: #FFFFFF;
}
.pageTexte .sm-wrapper .main .--content .--text .exergue .content sup a {
  color: #882345;
  font-weight: 600;
}
.pageTexte .sm-wrapper .main .--content .--text .exergue .content ul {
  padding: 0;
}
.pageTexte .sm-wrapper .main .--content .--text .exergue .content ul li {
  color: #FFFFFF;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 20px;
  list-style: none;
  padding: 0;
}
.pageTexte .sm-wrapper .main .--content .--text .exergue .content ul li:before {
  content: "-";
  margin: 0 5px 0 0;
}
.pageTexte .sm-wrapper .main .--content .--text .exergue .content ul li:last-child {
  margin: 0;
}
@media (max-width: 480px) {
  .pageTexte .sm-wrapper .main .--content .--text .exergue .content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 480px) {
  .pageTexte .sm-wrapper .main .--content .--text .exergue {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.pageTexte .sm-wrapper .main .--content .--text .bloc-important {
  margin: 0 0 30px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(228, 228, 228)), to(rgba(228, 228, 228, 0)));
  background: linear-gradient(to right, rgb(228, 228, 228) 0%, rgba(228, 228, 228, 0) 100%);
}
.pageTexte .sm-wrapper .main .--content .--text .bloc-important .header {
  background-color: #882345;
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pageTexte .sm-wrapper .main .--content .--text .bloc-important .header:before {
  content: "!";
  color: #FFFFFF;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 20px 0 0;
  padding: 0 25px 0 0;
  border-right: 2px solid #a1536e;
}
.pageTexte .sm-wrapper .main .--content .--text .bloc-important .header h4 {
  color: #FFFFFF;
  margin: 0;
}
.pageTexte .sm-wrapper .main .--content .--text .bloc-important .content {
  padding: 15px 30px;
}
.pageTexte .sm-wrapper .main .--content .--text .bloc-important .content p {
  margin: 0 0 35px;
}
.pageTexte .sm-wrapper .main .--content .--text .bloc-important .content p:last-child {
  margin: 0;
}
.pageTexte .sm-wrapper .main .--content .--text .bloc-important .content img {
  width: auto;
}

.pageTexte .sm-wrapper .main .--content .--text .liste-Documents li {
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid #dedede;
}
.pageTexte .sm-wrapper .main .--content .--text .liste-Documents li a {
  font-weight: 700;
  text-decoration: none;
}
.pageTexte .sm-wrapper .main .--content .--text .liste-Documents li a span {
  font-weight: normal;
  font-size: 17px;
  font-size: 1.0625rem;
}
.pageTexte .sm-wrapper .main .--content .--text .liste-Documents li a span:before {
  content: "- ";
}
.pageTexte .sm-wrapper .main .--content .--text .liste-Documents li a span.type {
  color: #5c6166;
}
.pageTexteMemoire .sm-wrapper .main .--content .--text .liste-Documents li {
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid #dedede;
}
.pageTexteMemoire .sm-wrapper .main .--content .--text .liste-Documents li a {
  font-weight: 700;
  text-decoration: none;
}
.pageTexteMemoire .sm-wrapper .main .--content .--text .liste-Documents li a span {
  font-weight: normal;
  font-size: 17px;
  font-size: 1.0625rem;
}
.pageTexteMemoire .sm-wrapper .main .--content .--text .liste-Documents li a span:before {
  content: "- ";
}
.pageTexteMemoire .sm-wrapper .main .--content .--text .liste-Documents li a span.type {
  color: #5c6166;
}
.pageTexteMedias .sm-wrapper .main .--content .--text .liste-Documents li {
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid #dedede;
}
.pageTexteMedias .sm-wrapper .main .--content .--text .liste-Documents li a {
  font-weight: 700;
  text-decoration: none;
}
.pageTexteMedias .sm-wrapper .main .--content .--text .liste-Documents li a span {
  font-weight: normal;
  font-size: 17px;
  font-size: 1.0625rem;
}
.pageTexteMedias .sm-wrapper .main .--content .--text .liste-Documents li a span:before {
  content: "- ";
}
.pageTexteMedias .sm-wrapper .main .--content .--text .liste-Documents li a span.type {
  color: #5c6166;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .liste-Documents li {
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid #dedede;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .liste-Documents li a {
  font-weight: 700;
  text-decoration: none;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .liste-Documents li a span {
  font-weight: normal;
  font-size: 17px;
  font-size: 1.0625rem;
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .liste-Documents li a span:before {
  content: "- ";
}
.pageTextePolicesConventions .sm-wrapper .main .--content .--text .liste-Documents li a span.type {
  color: #5c6166;
}
.pageTexteComite .sm-wrapper .main .--content .--text .liste-Documents li {
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid #dedede;
}
.pageTexteComite .sm-wrapper .main .--content .--text .liste-Documents li a {
  font-weight: 700;
  text-decoration: none;
}
.pageTexteComite .sm-wrapper .main .--content .--text .liste-Documents li a span {
  font-weight: normal;
  font-size: 17px;
  font-size: 1.0625rem;
}
.pageTexteComite .sm-wrapper .main .--content .--text .liste-Documents li a span:before {
  content: "- ";
}
.pageTexteComite .sm-wrapper .main .--content .--text .liste-Documents li a span.type {
  color: #5c6166;
}

.--share {
  margin: 20px 0 0;
}
.--share .bloc-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.--share .bloc-share > div, .--share .bloc-share > iframe, .--share .bloc-share > span {
  margin: 0 20px 0 0;
}