@charset "UTF-8";
/*
sass/
|
|– abstracts/
|   |– _variables.scss                  # Sass Variables
|   |– _mixins.scss                     # Sass Mixins
|   |– _keyframes.scss                  # Sass Keyframes animations
|
|– vendor/
|   |– _tinyMce.scss                    # Tiny MCE SDK styles
|   |– _slick.scss                      # Slick Slider SDK styles
|
|– 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
|   |– _error-404.scss                  # 404 error page styles
|
|– page/
|   |– _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;
  }
}
/* TinyMC Plugin override styles */
body .tox-tinymce {
  border-radius: 0;
  border-color: #333333;
  border-width: 1px;
}
body .tox:not(.tox-tinymce-inline) .tox-editor-header {
  border-bottom: 1px solid #333333;
}
body .tox .tox-statusbar {
  border-color: #333333;
}

/* Slick Slider styles */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*! 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: var(--text), BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.bold, strong {
  font-weight: 700;
}

.semibold {
  font-weight: 500 !important;
}

.light {
  font-weight: 100 !important;
}

.underline {
  text-decoration: underline;
}

h1, .h1 {
  font-family: var(--title), sans-serif;
  font-weight: 600;
  font-size: 38px;
  font-size: 2.375rem;
}

h2, .h2 {
  font-family: var(--title), sans-serif;
  font-weight: 600;
  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: 22px;
  font-size: 1.375rem;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

h4, .h4 {
  font-family: var(--title), sans-serif;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

h5, .h5 {
  font-family: var(--title), sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h5, .h5 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.btn, button {
  font-family: var(--text), sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  font-size: 1.125rem;
}
.btn *, button * {
  font-family: var(--title), sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}

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;
  }
}

small, .small {
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  small, .small {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

a, .link {
  font-family: var(--text), sans-serif;
  text-decoration: underline;
}

.lm {
  font-family: var(--text), sans-serif;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: normal;
}

.lu {
  font-family: var(--text), sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .lu {
    font-size: 16px;
    font-size: 1rem;
  }
}

.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: 400;
  font-style: normal;
  font-size: 18px;
  font-size: 1.125rem;
  text-decoration: none;
}
@media (min-width: 768px) {
  .lf {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.field label, .field .label {
  font-family: var(--text), sans-serif;
  font-weight: 600;
  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;
}
@media (min-width: 768px) {
  .field input, .field textarea, .field select {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.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;
}
@media (min-width: 768px) {
  .field select option {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.field.radio label, .field.checkbox label {
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .field.radio label, .field.checkbox label {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

::-webkit-input-placeholder {
  /* Most modern browsers support this now. */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
}

::-moz-placeholder {
  /* Most modern browsers support this now. */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
}

:-ms-input-placeholder {
  /* Most modern browsers support this now. */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
}

::-ms-input-placeholder {
  /* Most modern browsers support this now. */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
}

::placeholder {
  /* Most modern browsers support this now. */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
}

/*
* 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;
  scroll-behavior: smooth;
}
html::first-letter {
  text-transform: capitalize;
}
body {
  overflow-x: hidden;
}

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: #b3d4fc;
}

::selection {
  background: #b3d4fc;
}

/*
* 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 #fe7c1a;
  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: #e5e5e5;
  margin: 40px 0;
}
.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: 10px;
}
.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: #C30000;
}
.field span.error, .field span.field-validation-error {
  color: #C30000;
  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: #C30000;
  padding: 20px;
  margin-bottom: 20px;
}

label {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: inline;
  position: relative;
  color: #212729;
  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 #B2B2B2;
  border-radius: 5px;
  padding: 10px 20px;
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
  color: #212729;
  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: #21262e;
  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: #21262e;
  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%;
}
input[type=file], select[type=file], textarea[type=file] {
  background-color: transparent;
  padding: 0;
  border: 0;
}
@media (max-width: 768px) {
  input, select, textarea {
    padding: 10px;
  }
}

.radio-container p {
  font-weight: 700;
}
.radio-container .radio label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

select {
  padding-right: 45px;
  background-image: url(/media/icones/arrow-dropdown.png);
  background-repeat: no-repeat;
  background-position: center right 12px;
  background-size: 18px;
}

textarea {
  z-index: 0;
  min-height: 200px;
  max-width: 100%;
  padding: 20px;
  resize: vertical;
}
@media (max-width: 768px) {
  textarea {
    padding: 10px;
  }
}

::-webkit-input-placeholder { /* Most modern browsers support this now. */
  color: #464343;
}

::-moz-placeholder { /* Most modern browsers support this now. */
  color: #464343;
}

:-ms-input-placeholder { /* Most modern browsers support this now. */
  color: #464343;
}

::-ms-input-placeholder { /* Most modern browsers support this now. */
  color: #464343;
}

::placeholder { /* Most modern browsers support this now. */
  color: #464343;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #464343;
  opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #464343;
  opacity: 1;
}

@media (max-width: 1024px) {
  .formulaire-acces-container .main {
    display: block;
  }
  .formulaire-acces-container .main .--content {
    margin-right: 0;
  }
}

.btn, button {
  padding: 10px 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  text-decoration: none;
  background-color: #178e89;
  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;
  clear: both;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .btn:hover, button:hover {
    background-color: #178e89;
  }
}
.btn--secondary, button--secondary {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(43, 157, 194)), to(rgb(43, 194, 189)));
  background: linear-gradient(to bottom, rgb(43, 157, 194) 0%, rgb(43, 194, 189) 100%);
  color: #FFFFFF;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .btn--secondary:hover, button--secondary:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(85, 86, 90)), to(rgb(167, 168, 170)));
    background: linear-gradient(to bottom, rgb(85, 86, 90) 0%, rgb(167, 168, 170) 100%);
    color: #FFFFFF;
  }
}
.btn--gris, button--gris {
  border: 3px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 15px;
  padding: 7px 20px;
  background-color: #666666;
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
.btn--gris.-left, button--gris.-left {
  float: left;
}
.btn--gris.-right, button--gris.-right {
  float: right;
}
.btn:active, button:active {
  background-color: #2bc2bd;
}
.btn:active.btn--secondary, button:active.btn--secondary {
  background-color: #21262e;
}
.text-block a:not(.btn), .link {
  color: #fe7c1a;
  -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: #f89720;
  }
}
.text-block a:not(.btn):active, .text-block a:not(.btn).active, .link:active, .link.active {
  color: #f89720;
}

.lm {
  color: #FFFFFF;
  -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: #FFFFFF;
  }
}
.lm:active, .lm.active {
  color: #fe7c1a;
}

.lsm {
  color: #FFFFFF;
  -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;
  text-decoration: none;
  line-height: normal;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .lsm:hover {
    color: #fe7c1a;
  }
}
.lsm:active, .lsm.active {
  color: #fe7c1a;
}

.lu {
  color: #21262e;
  -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: #fe7c1a;
  }
}
.lu:active, .lu.active {
  color: #fe7c1a;
}

.lf {
  color: #fe7c1a;
  -webkit-transition: 0.3s cubic-bezier(0.35, 0, 0, 1);
  transition: 0.3s cubic-bezier(0.35, 0, 0, 1);
  font-size: 14px;
  font-size: 0.875rem;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .lf:hover {
    color: #fe7c1a;
  }
}
.lf:active, .lf.active {
  color: #fe7c1a;
}

html {
  color: #000000;
  background-color: #FFFFFF;
}
html.is-animating {
  cursor: progress;
}

/*
* Text block format
*/
.text-block > * {
  margin: 20px 0;
}
@media (max-width: 768px) {
  .text-block > * {
    margin: 15px 0;
  }
}
.text-block--left {
  text-align: left;
}
.text-block--right {
  text-align: right;
}
.text-block--center {
  text-align: center;
}
.text-block > :first-child {
  margin-top: 0;
}
.text-block > :last-child {
  margin-bottom: 0;
}
.text-block h2, .text-block h3 {
  margin: 40px 0 20px;
}
.text-block h4, .text-block h5 {
  margin: 30px 0 20px;
}
.text-block p {
  margin: 20px 0;
}
.text-block 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: #fe7c1a;
  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 #666666;
  border-radius: 50%;
}
.text-block ul ol {
  list-style: decimal;
  margin-left: 20px;
  padding-left: 20px;
}
.text-block ul ol li {
  list-style: decimal;
  padding-left: 10px;
  margin: 10px 0;
  line-height: 1.5;
}
.text-block ul ol li::marker {
  font-weight: 700;
}
.text-block ul ol li::before {
  content: none;
  position: relative;
  width: 0;
  height: 0;
}
@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 #666666;
}
.text-block table tbody tr:nth-child(odd) {
  background-color: #f89720;
}
.text-block table tbody tr:first-child {
  background-color: #fe7c1a;
  border-bottom: 1px solid #a58326;
}
.text-block table tbody tr td {
  border: none;
  padding: 15px;
}
.text-block table tbody tr td > * {
  margin: 0;
}
.text-block blockquote {
  background-color: #F8F8F8;
  padding: 40px 20px;
  border-left: solid 3px #21262e;
}
.text-block hr {
  border-top: 1px solid #666666;
  max-width: 200px;
}
@media (max-width: 768px) {
  .text-block iframe {
    width: 100%;
  }
}
.text-block .collapse--head > * {
  margin: 0;
}
.text-block .fLeft {
  float: left;
  margin-right: 10px;
}
@media (max-width: 600px) {
  .text-block .fLeft {
    float: none;
    margin-right: 0;
  }
  .text-block .fLeft img {
    display: block;
  }
}
.text-block .fRight {
  float: right;
  margin-left: 10px;
}

span.btnOrange a {
  color: #FFFFFF !important;
  background-color: #f89720;
  padding: 10px 15px;
}

/*
* Collapse
*/
.collapse {
  background-color: #eeeeee;
  border-left: 4px solid #178e89;
  margin: 0 0 5px;
  position: relative;
}
.collapse--head {
  padding: 5px 40px 5px 10px;
  color: #FFFFFF;
  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 .btn-plus {
  position: absolute;
  width: 40px;
  right: 0;
  height: 100%;
  background-color: #666666;
  top: 0;
  display: block;
}
.collapse--head .btn-plus span {
  width: 20px;
  height: 4px;
  display: block;
  background-color: #FFFFFF;
  position: absolute;
  opacity: 100%;
  -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 .btn-plus span:first-child {
  top: 50%;
  right: calc(50% - 10px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.collapse--head .btn-plus span:last-child {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  right: calc(50% - 10px);
  top: 50%;
}
.collapse--body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: max-height 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.collapse--body .content {
  padding: 15px 50px 20px 10px;
}
.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 .btn-plus span {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.collapse.ouvert > .collapse--head .btn-plus span:last-child {
  opacity: 0;
  width: 0;
}
.collapse.ouvert > .collapse--body {
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
@media (max-width: 1024px) {
  .collapse--head .row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
}
@media (max-width: 768px) {
  .collapse--head {
    padding: 20px;
  }
  .collapse--head .row .p1 {
    margin: 0 40px 0 0;
  }
  .collapse--head .row .btn-plus span {
    width: 20px;
  }
  .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: 150px;
}
@media (max-width: 950px) {
  .push-top {
    margin-top: 217px;
  }
}
@media (max-width: 950px) and (max-width: 600px) {
  .push-top {
    margin-top: 220px;
  }
}

.md-wrapper {
  max-width: 1280px;
  margin: auto;
  padding: 0;
}
@media (max-width: 1280px) {
  .md-wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 600px) {
  .md-wrapper {
    padding: 0 20px;
  }
}

.sm-wrapper {
  padding: 0 40px;
  max-width: 1080px;
  margin: auto;
}
@media (max-width: 600px) {
  .sm-wrapper {
    padding: 0 20px;
  }
}

.xs-wrapper {
  padding: 0 40px;
  max-width: 900px;
  margin: auto;
}
@media (max-width: 600px) {
  .xs-wrapper {
    padding: 0 20px;
  }
}

.wrapper {
  padding: 0;
  margin: auto;
  max-width: 1600px;
}
@media (max-width: 1600px) {
  .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 1280px) {
  .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 1280px) and (max-width: 768px) {
  .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 1280px) and (max-width: 768px) and (max-width: 600px) {
  .wrapper {
    padding: 0 20px;
  }
}

.lg-wrapper {
  margin: auto;
  max-width: 1920px;
  padding: 0;
}
.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 .strate-section-pulic, .Accueil .strate-section-pro {
  margin: 50px 0;
  display: none;
}
.Accueil .strate-section-pulic.actif, .Accueil .strate-section-pro.actif {
  display: block;
}
.Accueil .strate-section-pulic .container, .Accueil .strate-section-pro .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 50px;
}
.Accueil .strate-section-pulic .container .bloc-categorie, .Accueil .strate-section-pro .container .bloc-categorie {
  border: 1px solid #e5e5e5;
  border-radius: 0 30px;
  padding: 50px 30px;
  text-align: center;
  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;
}
.Accueil .strate-section-pulic .container .bloc-categorie:nth-child(4n), .Accueil .strate-section-pro .container .bloc-categorie:nth-child(4n) {
  margin: 0;
}
.Accueil .strate-section-pulic .container .bloc-categorie a, .Accueil .strate-section-pro .container .bloc-categorie a {
  text-decoration-color: #178e89;
}
.Accueil .strate-section-pulic .container .bloc-categorie a img, .Accueil .strate-section-pro .container .bloc-categorie a img {
  margin: 0 0 20px;
}
.Accueil .strate-section-pulic .container .bloc-categorie a h4, .Accueil .strate-section-pro .container .bloc-categorie a h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: normal;
  color: #21262e;
}
.Accueil .strate-call-action {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.Accueil .strate-call-action .container {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.Accueil .strate-call-action .container .bloc-cta {
  background-color: #21262e;
  padding: 80px 40px;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  position: relative;
  border-radius: 5px;
}
.Accueil .strate-call-action .container .bloc-cta::before {
  content: "";
  background-image: url("/media/120627/quote_o.png");
  background-repeat: no-repeat;
  background-position: left center;
  width: 126px;
  height: 111px;
  position: absolute;
  top: 80px;
  right: 20px;
  -webkit-filter: drop-shadow(#000000 1rem 1rem 10px);
  filter: drop-shadow(#000000 1rem 1rem 10px);
  -webkit-transform: translateX(20%);
  transform: translateX(20%);
}
.Accueil .strate-call-action .container .bloc-cta:not(:last-child) {
  margin: 0 20px 0 0;
  text-align: right;
}
.Accueil .strate-call-action .container .bloc-cta:not(:last-child)::before {
  content: "";
  background-image: url("/media/120628/quote_v.png");
  background-repeat: no-repeat;
  background-position: left center;
  width: 126px;
  height: 111px;
  position: absolute;
  top: 80px;
  left: 20px;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.Accueil .strate-call-action .container .bloc-cta:not(:last-child) .--texte h3 {
  color: #2bc2bd;
}
.Accueil .strate-call-action .container .bloc-cta:not(:last-child) .--texte .btn {
  border: 1px solid #2bc2bd;
}
.Accueil .strate-call-action .container .bloc-cta .--texte {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.Accueil .strate-call-action .container .bloc-cta .--texte h3 {
  font-size: 16px;
  font-size: 1rem;
  color: #fe7c1a;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 40px;
  padding: 5px 0 30px;
}
.Accueil .strate-call-action .container .bloc-cta .--texte h3 strong {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 900;
  font-size: 25px;
  font-size: 1.5625rem;
}
.Accueil .strate-call-action .container .bloc-cta .--texte p {
  color: #FFFFFF;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  margin: 0 0 40px;
}
.Accueil .strate-call-action .container .bloc-cta .--texte .btn {
  text-transform: uppercase;
  border: 1px solid #fe7c1a;
  border-radius: 0;
  padding: 20px;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: auto;
  background-color: transparent;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .Accueil .strate-call-action .container .bloc-cta .--texte .btn:hover {
    background-color: #21262e;
  }
}
@media (max-width: 1600px) {
  .Accueil .strate-call-action .container .bloc-cta {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    max-width: 380px;
    width: auto;
  }
}
@media (max-width: 600px) {
  .Accueil .strate-call-action .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .Accueil .strate-section-pulic .container, .Accueil .strate-section-pro .container {
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
  }
  .Accueil .strate-call-action .container .bloc-cta {
    background-color: #21262e;
    padding: 120px 40px 80px;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
  .Accueil .strate-call-action .container .bloc-cta::before {
    top: 40px;
    -webkit-filter: drop-shadow(#000000 1rem 1rem 10px);
    filter: drop-shadow(#000000 1rem 1rem 10px);
  }
  .Accueil .strate-call-action .container .bloc-cta:not(:last-child)::before {
    top: 40px;
  }
  .Accueil .strate-call-action .container .bloc-cta .--texte h3 {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .Accueil .strate-section-pulic .container, .Accueil .strate-section-pro .container {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
}
@media (max-width: 600px) {
  .Accueil .strate-section-pulic .container, .Accueil .strate-section-pro .container {
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
  .Accueil .strate-call-action .container .bloc-cta {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 80px 40px;
  }
  .Accueil .strate-call-action .container .bloc-cta:not(:last-child) {
    margin: 0;
  }
  .Accueil .strate-call-action .container .bloc-cta:not(:last-child)::before {
    top: 80px;
    left: 0;
  }
  .Accueil .strate-call-action .container .bloc-cta::before {
    top: 80px;
    right: 0;
  }
}
@media (max-width: 450px) {
  .Accueil .strate-call-action .container .bloc-cta {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 120px 20px 80px;
  }
  .Accueil .strate-call-action .container .bloc-cta:not(:last-child) {
    margin: 0;
  }
  .Accueil .strate-call-action .container .bloc-cta:not(:last-child)::before {
    top: 20px;
    left: 20px;
  }
  .Accueil .strate-call-action .container .bloc-cta::before {
    top: 20px;
    right: 20px;
  }
}

/*******************************/
/***** 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, .PageTexteChronique, .PageTexteAvecCID, .PageTexteSolutionAccesDirect {
  padding: 35px 0;
}
.PageTexte .main, .PageTexteChronique .main, .PageTexteAvecCID .main, .PageTexteSolutionAccesDirect .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.PageTexte .main .--content, .PageTexteChronique .main .--content, .PageTexteAvecCID .main .--content, .PageTexteSolutionAccesDirect .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(70% - 20px);
  flex: 0 0 calc(70% - 20px);
  margin: 0 40px 0 0;
}
.PageTexte .main .--content .--text p, .PageTexteChronique .main .--content .--text p, .PageTexteAvecCID .main .--content .--text p, .PageTexteSolutionAccesDirect .main .--content .--text p {
  color: #666666;
  margin: 0 0 20px;
}
.PageTexte .main .--content .--text p:first-of-type, .PageTexteChronique .main .--content .--text p:first-of-type, .PageTexteAvecCID .main .--content .--text p:first-of-type, .PageTexteSolutionAccesDirect .main .--content .--text p:first-of-type {
  font-weight: 700;
}
.PageTexte .main .--content .--text p.redBox, .PageTexteChronique .main .--content .--text p.redBox, .PageTexteAvecCID .main .--content .--text p.redBox, .PageTexteSolutionAccesDirect .main .--content .--text p.redBox {
  color: #FFFFFF;
  background-color: #ff0000;
  padding: 5px;
}
.PageTexte .main .--content .--text p.redBox a, .PageTexteChronique .main .--content .--text p.redBox a, .PageTexteAvecCID .main .--content .--text p.redBox a, .PageTexteSolutionAccesDirect .main .--content .--text p.redBox a {
  color: #FFFF00;
  text-decoration: underline;
}
.PageTexte .main .--content .--text a, .PageTexteChronique .main .--content .--text a, .PageTexteAvecCID .main .--content .--text a, .PageTexteSolutionAccesDirect .main .--content .--text a {
  color: #fe7c1a;
  text-decoration: none;
}
.PageTexte .main .--content .--text h1, .PageTexteChronique .main .--content .--text h1, .PageTexteAvecCID .main .--content .--text h1, .PageTexteSolutionAccesDirect .main .--content .--text h1 {
  color: #178e89;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: normal;
  text-transform: uppercase;
  font-size: 30px;
  font-size: 1.875rem;
}
.PageTexte .main .--content .--text h2, .PageTexteChronique .main .--content .--text h2, .PageTexteAvecCID .main .--content .--text h2, .PageTexteSolutionAccesDirect .main .--content .--text h2 {
  color: #fe7c1a;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: normal;
}
.PageTexte .main .--content .--text h3, .PageTexteChronique .main .--content .--text h3, .PageTexteAvecCID .main .--content .--text h3, .PageTexteSolutionAccesDirect .main .--content .--text h3 {
  color: #fe7c1a;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: normal;
}
.PageTexte .main .--content .--text h4, .PageTexteChronique .main .--content .--text h4, .PageTexteAvecCID .main .--content .--text h4, .PageTexteSolutionAccesDirect .main .--content .--text h4 {
  color: #178e89;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: normal;
}
.PageTexte .main .--content .--text ul, .PageTexteChronique .main .--content .--text ul, .PageTexteAvecCID .main .--content .--text ul, .PageTexteSolutionAccesDirect .main .--content .--text ul {
  margin: 0 0 20px;
  padding: 0 0 0 40px;
}
.PageTexte .main .--content .--text ul li, .PageTexteChronique .main .--content .--text ul li, .PageTexteAvecCID .main .--content .--text ul li, .PageTexteSolutionAccesDirect .main .--content .--text ul li {
  margin: 0 0 15px;
  color: #666666;
  list-style: square;
  line-height: normal;
}
.PageTexte .main .--content .--text ul li::marker, .PageTexteChronique .main .--content .--text ul li::marker, .PageTexteAvecCID .main .--content .--text ul li::marker, .PageTexteSolutionAccesDirect .main .--content .--text ul li::marker {
  color: #fe7c1a;
}
.PageTexte .main .--content .--text ul li ol, .PageTexteChronique .main .--content .--text ul li ol, .PageTexteAvecCID .main .--content .--text ul li ol, .PageTexteSolutionAccesDirect .main .--content .--text ul li ol {
  margin: 10px 0 0;
  padding: 0 0 0 40px;
  list-style: lower-latin;
}
.PageTexte .main .--content .--text ul li ol li, .PageTexteChronique .main .--content .--text ul li ol li, .PageTexteAvecCID .main .--content .--text ul li ol li, .PageTexteSolutionAccesDirect .main .--content .--text ul li ol li {
  list-style: lower-latin;
  padding: 0 0 0 20px;
}
.PageTexte .main .--content .--text ul li ol li::marker, .PageTexteChronique .main .--content .--text ul li ol li::marker, .PageTexteAvecCID .main .--content .--text ul li ol li::marker, .PageTexteSolutionAccesDirect .main .--content .--text ul li ol li::marker {
  color: #666666;
}
.PageTexte .main .--content .--text ul.listeLien li, .PageTexteChronique .main .--content .--text ul.listeLien li, .PageTexteAvecCID .main .--content .--text ul.listeLien li, .PageTexteSolutionAccesDirect .main .--content .--text ul.listeLien li {
  color: #666666;
  line-height: normal;
}
.PageTexte .main .--content .--text ul.listeLien li a, .PageTexteChronique .main .--content .--text ul.listeLien li a, .PageTexteAvecCID .main .--content .--text ul.listeLien li a, .PageTexteSolutionAccesDirect .main .--content .--text ul.listeLien li a {
  color: #333333;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .PageTexte .main .--content .--text ul.listeLien li a:hover, .PageTexteChronique .main .--content .--text ul.listeLien li a:hover, .PageTexteAvecCID .main .--content .--text ul.listeLien li a:hover, .PageTexteSolutionAccesDirect .main .--content .--text ul.listeLien li a:hover {
    color: #178e89;
  }
}
.PageTexte .main .--content .--text ol, .PageTexteChronique .main .--content .--text ol, .PageTexteAvecCID .main .--content .--text ol, .PageTexteSolutionAccesDirect .main .--content .--text ol {
  margin: 0 0 20px;
  padding: 0 0 0 40px;
}
.PageTexte .main .--content .--text ol li, .PageTexteChronique .main .--content .--text ol li, .PageTexteAvecCID .main .--content .--text ol li, .PageTexteSolutionAccesDirect .main .--content .--text ol li {
  margin: 0 0 15px;
  color: #666666;
  list-style: decimal;
  line-height: normal;
}
.PageTexte .main .--content .--text ol li ol, .PageTexteChronique .main .--content .--text ol li ol, .PageTexteAvecCID .main .--content .--text ol li ol, .PageTexteSolutionAccesDirect .main .--content .--text ol li ol {
  margin: 15px 0 0;
  padding: 0 0 0 40px;
}
.PageTexte .main .--content .--text ol li ol li, .PageTexteChronique .main .--content .--text ol li ol li, .PageTexteAvecCID .main .--content .--text ol li ol li, .PageTexteSolutionAccesDirect .main .--content .--text ol li ol li {
  line-height: normal;
}
.PageTexte .main .--content .--text ol.listeAlpha li, .PageTexteChronique .main .--content .--text ol.listeAlpha li, .PageTexteAvecCID .main .--content .--text ol.listeAlpha li, .PageTexteSolutionAccesDirect .main .--content .--text ol.listeAlpha li {
  list-style: lower-alpha;
  line-height: normal;
}
.PageTexte .main .--content .--text ol.listeAlphaMaj li, .PageTexteChronique .main .--content .--text ol.listeAlphaMaj li, .PageTexteAvecCID .main .--content .--text ol.listeAlphaMaj li, .PageTexteSolutionAccesDirect .main .--content .--text ol.listeAlphaMaj li {
  list-style: upper-alpha;
  line-height: normal;
}
.PageTexte .main .--content .--text hr, .PageTexteChronique .main .--content .--text hr, .PageTexteAvecCID .main .--content .--text hr, .PageTexteSolutionAccesDirect .main .--content .--text hr {
  height: 1px;
  border-top: 1px solid #DAD8D4;
  border-bottom: none;
  border-right: none;
  border-left: none;
  margin: 0 0 20px;
}
.PageTexte .main .--content .--text a.btn, .PageTexteChronique .main .--content .--text a.btn, .PageTexteAvecCID .main .--content .--text a.btn, .PageTexteSolutionAccesDirect .main .--content .--text a.btn {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #FFFFFF;
}
.PageTexte .main .--content .--text a.btn--secondary, .PageTexteChronique .main .--content .--text a.btn--secondary, .PageTexteAvecCID .main .--content .--text a.btn--secondary, .PageTexteSolutionAccesDirect .main .--content .--text a.btn--secondary {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 10px 5px;
  display: inline-block;
  margin: 0 0 5px;
}
.PageTexte .main .--content .--text .center, .PageTexteChronique .main .--content .--text .center, .PageTexteAvecCID .main .--content .--text .center, .PageTexteSolutionAccesDirect .main .--content .--text .center {
  text-align: center;
}
.PageTexte .main .--content .--text .form-acces, .PageTexteChronique .main .--content .--text .form-acces, .PageTexteAvecCID .main .--content .--text .form-acces, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces {
  border-bottom: 3px solid #1a8d8a;
  padding: 20px 20px 30px;
  margin: 0;
}
.PageTexte .main .--content .--text .form-acces .form-section, .PageTexteChronique .main .--content .--text .form-acces .form-section, .PageTexteAvecCID .main .--content .--text .form-acces .form-section, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section {
  margin: 70px 0;
}
.PageTexte .main .--content .--text .form-acces .form-section:first-child, .PageTexteChronique .main .--content .--text .form-acces .form-section:first-child, .PageTexteAvecCID .main .--content .--text .form-acces .form-section:first-child, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section:first-child {
  margin-top: 0;
}
.PageTexte .main .--content .--text .form-acces .form-section:last-of-type, .PageTexteChronique .main .--content .--text .form-acces .form-section:last-of-type, .PageTexteAvecCID .main .--content .--text .form-acces .form-section:last-of-type, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section:last-of-type {
  margin-bottom: 0;
}
.PageTexte .main .--content .--text .form-acces .form-section h2, .PageTexteChronique .main .--content .--text .form-acces .form-section h2, .PageTexteAvecCID .main .--content .--text .form-acces .form-section h2, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section h2 {
  color: #464343;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 20px;
  border-bottom: 2px solid #1a8d8a;
}
.PageTexte .main .--content .--text .form-acces .form-section .radio-container, .PageTexteChronique .main .--content .--text .form-acces .form-section .radio-container, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .radio-container, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .radio-container {
  margin: 0 0 25px;
  padding: 0;
}
.PageTexte .main .--content .--text .form-acces .form-section .radio-container p, .PageTexteChronique .main .--content .--text .form-acces .form-section .radio-container p, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .radio-container p, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .radio-container p {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 5px;
  color: #464343;
}
.PageTexte .main .--content .--text .form-acces .form-section .radio-container .blocRadio, .PageTexteChronique .main .--content .--text .form-acces .form-section .radio-container .blocRadio, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .radio-container .blocRadio, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .radio-container .blocRadio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.PageTexte .main .--content .--text .form-acces .form-section .radio-container .blocRadio input, .PageTexteChronique .main .--content .--text .form-acces .form-section .radio-container .blocRadio input, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .radio-container .blocRadio input, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .radio-container .blocRadio input {
  margin: 0 10px 0 0;
}
.PageTexte .main .--content .--text .form-acces .form-section .radio-container .blocRadio label, .PageTexteChronique .main .--content .--text .form-acces .form-section .radio-container .blocRadio label, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .radio-container .blocRadio label, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .radio-container .blocRadio label {
  color: #464343;
}
.PageTexte .main .--content .--text .form-acces .form-section .section, .PageTexteChronique .main .--content .--text .form-acces .form-section .section, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section {
  padding: 0;
  margin: 0 0 25px;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field {
  margin: 0;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field label, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field label, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field label, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #464343;
  font-weight: bold;
  margin: 0 0 10px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field .checkbox-group, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field .checkbox-group, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field .checkbox-group, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field .checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field .checkbox-group label, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field .checkbox-group label, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field .checkbox-group label, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field .checkbox-group label {
  margin: 0;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field .checkbox-group input, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field .checkbox-group input, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field .checkbox-group input, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field .checkbox-group input {
  margin: 0 8px 0 0;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field .checkbox-group.top, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field .checkbox-group.top, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field .checkbox-group.top, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field .checkbox-group.top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field input, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field input, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field input, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field input {
  margin: 0;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field input:focus-visible, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field input:focus-visible, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field input:focus-visible, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field input:focus-visible {
  outline: none;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field textarea, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field textarea, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field textarea, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field textarea {
  border-radius: 0;
  border-collapse: #DAD8D4;
  margin: 0;
  padding: 5px;
  min-height: 100px;
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field textarea:focus-visible, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field textarea:focus-visible, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field textarea:focus-visible, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field textarea:focus-visible {
  outline: none;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field select, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field select, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field select, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field select {
  border-radius: 0;
  border-collapse: #DAD8D4;
  margin: 0;
  padding: 5px;
  background-size: 9px;
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field select option, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field select option, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field select option, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field select option {
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field input[type=text], .PageTexte .main .--content .--text .form-acces .form-section .section .field input[type=email], .PageTexte .main .--content .--text .form-acces .form-section .section .field input[type=date], .PageTexte .main .--content .--text .form-acces .form-section .section .field input[type=tel], .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field input[type=text], .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field input[type=email], .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field input[type=date], .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field input[type=tel], .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field input[type=text], .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field input[type=email], .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field input[type=date], .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field input[type=tel], .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field input[type=text], .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field input[type=email], .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field input[type=date], .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field input[type=tel] {
  border-radius: 0;
  padding: 5px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  border-collapse: #DAD8D4;
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field input[type=file], .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field input[type=file], .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field input[type=file], .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field input[type=file] {
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .PageTexte .main .--content .--text .form-acces .form-section .section .field.field--half, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field.field--half, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field.field--half, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field.field--half {
    margin: 0 0 20px;
  }
}
.PageTexte .main .--content .--text .form-acces .form-section .section .field.field--half:first-child, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field.field--half:first-child, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field.field--half:first-child, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field.field--half:first-child {
  margin: 0 50px 0 0;
}
@media (max-width: 768px) {
  .PageTexte .main .--content .--text .form-acces .form-section .section .field.field--half:first-child, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field.field--half:first-child, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field.field--half:first-child, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field.field--half:first-child {
    margin: 0 0 20px;
  }
}
@media (max-width: 768px) {
  .PageTexte .main .--content .--text .form-acces .form-section .section .field, .PageTexteChronique .main .--content .--text .form-acces .form-section .section .field, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .section .field, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .section .field {
    margin: 0 0 20px;
  }
}
.PageTexte .main .--content .--text .form-acces .form-section .assureur, .PageTexteChronique .main .--content .--text .form-acces .form-section .assureur, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .assureur, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .assureur {
  padding: 30px 0;
  border-bottom: 1px solid #1a8d8a;
}
.PageTexte .main .--content .--text .form-acces .form-section .assureur:first-of-type, .PageTexteChronique .main .--content .--text .form-acces .form-section .assureur:first-of-type, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .assureur:first-of-type, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .assureur:first-of-type {
  padding: 0 0 30px;
}
.PageTexte .main .--content .--text .form-acces .form-section .assureur:last-of-type, .PageTexteChronique .main .--content .--text .form-acces .form-section .assureur:last-of-type, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .assureur:last-of-type, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .assureur:last-of-type {
  border: none;
  padding: 30px 0 0;
}
.PageTexte .main .--content .--text .form-acces .form-section .assureur .section, .PageTexteChronique .main .--content .--text .form-acces .form-section .assureur .section, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .assureur .section, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .assureur .section {
  margin: 0 0 20px;
}
.PageTexte .main .--content .--text .form-acces .form-section .assureur .section:last-child, .PageTexteChronique .main .--content .--text .form-acces .form-section .assureur .section:last-child, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .assureur .section:last-child, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .assureur .section:last-child {
  margin: 0;
}
.PageTexte .main .--content .--text .form-acces .form-section .type-assurance, .PageTexteChronique .main .--content .--text .form-acces .form-section .type-assurance, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .type-assurance, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .type-assurance {
  padding: 30px 0;
  border-bottom: 1px solid #1a8d8a;
}
.PageTexte .main .--content .--text .form-acces .form-section .type-assurance:first-of-type, .PageTexteChronique .main .--content .--text .form-acces .form-section .type-assurance:first-of-type, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .type-assurance:first-of-type, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .type-assurance:first-of-type {
  padding: 0 0 30px;
}
.PageTexte .main .--content .--text .form-acces .form-section .type-assurance:last-of-type, .PageTexteChronique .main .--content .--text .form-acces .form-section .type-assurance:last-of-type, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .type-assurance:last-of-type, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .type-assurance:last-of-type {
  border: none;
  padding: 30px 0 0;
}
.PageTexte .main .--content .--text .form-acces .form-section .type-assurance .section, .PageTexteChronique .main .--content .--text .form-acces .form-section .type-assurance .section, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .type-assurance .section, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .type-assurance .section {
  margin: 0 0 20px;
}
.PageTexte .main .--content .--text .form-acces .form-section .type-assurance .section:last-child, .PageTexteChronique .main .--content .--text .form-acces .form-section .type-assurance .section:last-child, .PageTexteAvecCID .main .--content .--text .form-acces .form-section .type-assurance .section:last-child, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-section .type-assurance .section:last-child {
  margin: 0;
}
.PageTexte .main .--content .--text .form-acces .form-avezVousAssurances, .PageTexteChronique .main .--content .--text .form-acces .form-avezVousAssurances, .PageTexteAvecCID .main .--content .--text .form-acces .form-avezVousAssurances, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-avezVousAssurances {
  margin: 0 0 30px;
}
.PageTexte .main .--content .--text .form-acces .form-autorisation, .PageTexteChronique .main .--content .--text .form-acces .form-autorisation, .PageTexteAvecCID .main .--content .--text .form-acces .form-autorisation, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-autorisation {
  margin: 0;
}
.PageTexte .main .--content .--text .form-acces .form-autorisation .text-block ul, .PageTexteChronique .main .--content .--text .form-acces .form-autorisation .text-block ul, .PageTexteAvecCID .main .--content .--text .form-acces .form-autorisation .text-block ul, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-autorisation .text-block ul {
  list-style: none;
  padding: 0 0 0 20px;
}
.PageTexte .main .--content .--text .form-acces .form-autorisation .text-block ul li, .PageTexteChronique .main .--content .--text .form-acces .form-autorisation .text-block ul li, .PageTexteAvecCID .main .--content .--text .form-acces .form-autorisation .text-block ul li, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-autorisation .text-block ul li {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 0 0 5px;
  margin: 0 0 20px;
  color: #464343;
}
.PageTexte .main .--content .--text .form-acces .form-autorisation .text-block ul li:before, .PageTexteChronique .main .--content .--text .form-acces .form-autorisation .text-block ul li:before, .PageTexteAvecCID .main .--content .--text .form-acces .form-autorisation .text-block ul li:before, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-autorisation .text-block ul li:before {
  content: none;
  display: none;
}
.PageTexte .main .--content .--text .form-acces .form-autorisation .text-block ul li::marker, .PageTexteChronique .main .--content .--text .form-acces .form-autorisation .text-block ul li::marker, .PageTexteAvecCID .main .--content .--text .form-acces .form-autorisation .text-block ul li::marker, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .form-autorisation .text-block ul li::marker {
  color: #1a8d8a;
}
.PageTexte .main .--content .--text .form-acces .btnSend, .PageTexteChronique .main .--content .--text .form-acces .btnSend, .PageTexteAvecCID .main .--content .--text .form-acces .btnSend, .PageTexteSolutionAccesDirect .main .--content .--text .form-acces .btnSend {
  margin: 40px 0 0 auto;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 20px;
}
@media (max-width: 1024px) {
  .PageTexte .main .--content, .PageTexteChronique .main .--content, .PageTexteAvecCID .main .--content, .PageTexteSolutionAccesDirect .main .--content {
    margin: 0 0 40px;
  }
}
@media (max-width: 1024px) {
  .PageTexte .main, .PageTexteChronique .main, .PageTexteAvecCID .main, .PageTexteSolutionAccesDirect .main {
    display: block;
  }
  .PageTexte .main .--content, .PageTexteChronique .main .--content, .PageTexteAvecCID .main .--content, .PageTexteSolutionAccesDirect .main .--content {
    margin-right: 0;
  }
}

.PageNouvelles {
  padding: 35px 0;
}
.PageNouvelles .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.PageNouvelles .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(70% - 20px);
  flex: 0 0 calc(70% - 20px);
  margin: 0 40px 0 0;
}
.PageNouvelles .main .--content .navigation {
  border-bottom: 1px solid #DAD8D4;
  margin: 0 0 30px;
}
.PageNouvelles .main .--content .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 15px;
}
.PageNouvelles .main .--content .navigation ul li {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.PageNouvelles .main .--content .navigation ul li a {
  border-radius: 40px;
  padding: 10px;
  border: 1px solid #DAD8D4;
  font-size: 20px;
  font-size: 1.25rem;
  color: #666666;
  background-color: #eeeeee;
  text-decoration: none;
  font-weight: bold;
  width: 100%;
  display: block;
  text-align: center;
}
.PageNouvelles .main .--content .navigation ul li.actif a {
  color: #FFFFFF;
  background-color: #fe7c1a;
}
.PageNouvelles .main .--content .list-articles .article {
  border-bottom: 1px solid #DAD8D4;
  margin: 0 0 35px;
  padding: 0 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.PageNouvelles .main .--content .list-articles .article .image {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.PageNouvelles .main .--content .list-articles .article .image img {
  border: 1px solid #DAD8D4;
  border-radius: 10px;
}
.PageNouvelles .main .--content .list-articles .article .text h3 {
  margin: 0 0 15px;
}
.PageNouvelles .main .--content .list-articles .article .text h3 a {
  color: #fe7c1a;
  text-decoration: none;
  font-weight: bold;
}
.PageNouvelles .main .--content .list-articles .article .text p {
  color: #666666;
  margin: 0 0 15px;
}
.PageNouvelles .main .--content .list-articles .article .text p a {
  text-decoration: none;
  color: #178e89;
  font-weight: 700;
}
.PageNouvelles .main .--content .list-articles .article .text p:last-child {
  margin: 0;
}
@media (max-width: 1024px) {
  .PageNouvelles .main .--content {
    margin: 0 0 40px;
  }
}
@media (max-width: 1024px) {
  .PageNouvelles .main {
    display: block;
  }
  .PageNouvelles .main .--content {
    margin-right: 0;
  }
  .PageNouvelles .main .--content .list-articles .article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.Recherche {
  padding: 35px 0;
}
.Recherche .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.Recherche .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(70% - 20px);
  flex: 0 0 calc(70% - 20px);
  margin: 0 40px 0 0;
}
.Recherche .main .--content .--text .page-recherche--contenu {
  margin: 0 0 40px;
  padding: 0 0 20px;
  border-bottom: 1px solid #e5e5e5;
}
.Recherche .main .--content .--text .page-recherche--contenu h2 {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  color: #fe7c1a;
  margin: 0 0 20px;
}
.Recherche .main .--content .--text .page-recherche--resultats {
  margin: 0 0 20px;
}
.Recherche .main .--content .--text .page-recherche--resultats p {
  color: #666666;
  margin: 0 0 15px;
}
.Recherche .main .--content .--text .page-recherche--resultats p:last-child {
  margin: 0;
}
.Recherche .main .--content .--text .page-recherche--resultats .bloc {
  padding: 0 20px 20px 20px;
  border-bottom: 1px solid #e5e5e5;
  margin: 0 0 20px;
  opacity: 1;
  -webkit-transition: opacity 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: opacity 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
.Recherche .main .--content .--text .page-recherche--resultats .bloc.hidden {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  margin: 0;
  padding: 0;
  -webkit-transition: none;
  transition: none;
}
.Recherche .main .--content .--text .page-recherche--resultats .bloc h3 {
  color: #1a8d8a;
  font-weight: bold;
  margin: 0 0 20px;
  font-size: 22px;
  font-size: 1.375rem;
}
.Recherche .main .--content .--text .page-recherche--resultats .bloc p {
  color: #666666;
  margin: 0 0 15px;
}
.Recherche .main .--content .--text .page-recherche--resultats .bloc p:last-child {
  margin: 0;
}
.Recherche .main .--content .--text .page-recherche--resultats .bloc p a {
  color: #fe7c1a;
  text-decoration: none;
}
.Recherche .main .--content .--text .pagination-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 60px;
}
.Recherche .main .--content .--text .pagination-container button {
  background-color: #ececec;
  color: #666666;
  padding: 5px 10px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .Recherche .main .--content .--text .pagination-container button:hover {
    background-color: #1a8d8a;
    color: #FFFFFF;
  }
}
.Recherche .main .--content .--text .pagination-container button.active {
  color: #fe7c1a;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .Recherche .main .--content .--text .pagination-container button.active:hover {
    background-color: #ececec;
    color: #fe7c1a;
    cursor: default;
  }
}
.Recherche .main .--content .--text .pagination-container button.disabled {
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .Recherche .main .--content .--text .pagination-container button.disabled:hover {
    background-color: #ececec;
    color: #666666;
    cursor: default;
  }
}
.Recherche .main .--content .--text .pagination-container #pagination-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
@media (max-width: 1024px) {
  .Recherche .main .--content {
    margin: 0 0 40px;
  }
}
@media (max-width: 1024px) {
  .Recherche .main {
    display: block;
  }
  .Recherche .main .--content {
    margin-right: 0;
  }
}

.PageTexteNouvelle {
  padding: 35px 0;
}
.PageTexteNouvelle .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.PageTexteNouvelle .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(70% - 20px);
  flex: 0 0 calc(70% - 20px);
  margin: 0 40px 0 0;
}
.PageTexteNouvelle .main .--content h2 {
  color: #fe7c1a;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: normal;
}
.PageTexteNouvelle .main .--content p {
  color: #666666;
  margin: 0 0 20px;
}
.PageTexteNouvelle .main .--content .--text img.mainImg {
  float: left;
  margin: 0 20px 20px 0;
}
.PageTexteNouvelle .main .--content .--text p {
  color: #666666;
  margin: 0 0 20px;
}
.PageTexteNouvelle .main .--content .--text a {
  color: #fe7c1a;
  text-decoration: none;
}
.PageTexteNouvelle .main .--content .--text h1 {
  color: #178e89;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: normal;
  text-transform: uppercase;
  font-size: 30px;
  font-size: 1.875rem;
}
.PageTexteNouvelle .main .--content .--text h3 {
  color: #fe7c1a;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: normal;
}
.PageTexteNouvelle .main .--content .--text h4 {
  color: #178e89;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: normal;
}
.PageTexteNouvelle .main .--content .--text ul {
  margin: 0 0 20px;
  padding: 0 0 0 40px;
}
.PageTexteNouvelle .main .--content .--text ul li {
  margin: 0 0 15px;
  color: #666666;
  list-style: square;
  line-height: normal;
}
.PageTexteNouvelle .main .--content .--text ul li::marker {
  color: #fe7c1a;
}
.PageTexteNouvelle .main .--content .--text ul li ol {
  margin: 10px 0 0;
  padding: 0 0 0 40px;
  list-style: lower-latin;
}
.PageTexteNouvelle .main .--content .--text ul li ol li {
  list-style: lower-latin;
  padding: 0 0 0 20px;
}
.PageTexteNouvelle .main .--content .--text ul li ol li::marker {
  color: #666666;
}
.PageTexteNouvelle .main .--content .--text ol {
  margin: 0 0 20px;
  padding: 0 0 0 40px;
}
.PageTexteNouvelle .main .--content .--text ol li {
  margin: 0 0 15px;
  color: #666666;
  list-style: decimal;
  line-height: normal;
}
.PageTexteNouvelle .main .--content .--text ol li ol {
  margin: 15px 0 0;
  padding: 0 0 0 40px;
}
.PageTexteNouvelle .main .--content .--text ol li ol li {
  line-height: normal;
}
.PageTexteNouvelle .main .--content .--text ol.listeAlpha li {
  list-style: lower-alpha;
  line-height: normal;
}
.PageTexteNouvelle .main .--content .--text ol.listeAlphaMaj li {
  list-style: upper-alpha;
  line-height: normal;
}
.PageTexteNouvelle .main .--content .--text hr {
  height: 1px;
  border-top: 1px solid #DAD8D4;
  border-bottom: none;
  border-right: none;
  border-left: none;
  margin: 0 0 20px;
}
.PageTexteNouvelle .main .--content .--text a.btn {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #FFFFFF;
}
.PageTexteNouvelle .main .--content .--text a.btn--secondary {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 10px 5px;
  display: inline-block;
  margin: 0 0 5px;
}
.PageTexteNouvelle .main .--content .--text .center {
  text-align: center;
}
@media (max-width: 1024px) {
  .PageTexteNouvelle .main .--content {
    margin: 0 0 40px;
  }
}
@media (max-width: 1024px) {
  .PageTexteNouvelle .main {
    display: block;
  }
}

.PageTexte .main .--content .--text .form.nous-joindre {
  padding: 50px 0 30px;
  border-bottom: 3px solid #1a8d8a;
}
.PageTexte .main .--content .--text .form.nous-joindre h2 {
  background-color: #1a8d8a;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 32px;
  font-size: 2rem;
  margin: 0 0 30px;
}
.PageTexte .main .--content .--text .form.nous-joindre .form--success {
  padding-left: 20px;
}
.PageTexte .main .--content .--text .form.nous-joindre .section {
  padding: 0 20px;
  margin: 0 0 25px;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field {
  margin: 0;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #464343;
  font-weight: bold;
  margin: 0 0 10px;
  display: inline-block;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field input {
  margin: 0;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field input:focus-visible {
  outline: none;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field textarea {
  border-radius: 0;
  border-collapse: #DAD8D4;
  margin: 0;
  padding: 5px;
  min-height: 100px;
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field textarea:focus-visible {
  outline: none;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field select {
  border-radius: 0;
  border-collapse: #DAD8D4;
  margin: 0;
  padding: 5px;
  background-size: 9px;
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field select option {
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=text], .PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=email], .PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=tel] {
  border-radius: 0;
  padding: 5px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  border-collapse: #DAD8D4;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=text]::-webkit-input-placeholder, .PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=email]::-webkit-input-placeholder, .PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=tel]::-webkit-input-placeholder {
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=text]::-moz-placeholder, .PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=email]::-moz-placeholder, .PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=tel]::-moz-placeholder {
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=text]:-ms-input-placeholder, .PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=email]:-ms-input-placeholder, .PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=tel]:-ms-input-placeholder {
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=text]::-ms-input-placeholder, .PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=email]::-ms-input-placeholder, .PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=tel]::-ms-input-placeholder {
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=text]::placeholder, .PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=email]::placeholder, .PageTexte .main .--content .--text .form.nous-joindre .section .field input[type=tel]::placeholder {
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .--text .form.nous-joindre .section .field.field--half:first-child {
  margin: 0 50px 0 0;
}
@media (max-width: 768px) {
  .PageTexte .main .--content .--text .form.nous-joindre .section .field.field--half:first-child {
    margin: 0 0 20px;
  }
}
@media (max-width: 768px) {
  .PageTexte .main .--content .--text .form.nous-joindre .section .field {
    margin: 0 0 20px;
  }
}
.PageTexte .main .--content .--text .form.nous-joindre .radio-container {
  margin: 0 0 25px;
  padding: 0 20px;
}
.PageTexte .main .--content .--text .form.nous-joindre .radio-container p {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 5px;
  color: #464343;
}
.PageTexte .main .--content .--text .form.nous-joindre .radio-container .blocRadio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.PageTexte .main .--content .--text .form.nous-joindre .radio-container .blocRadio input {
  margin: 0 10px 0 0;
}
.PageTexte .main .--content .--text .form.nous-joindre .radio-container .blocRadio label {
  color: #464343;
}
.PageTexte .main .--content .--text .form.nous-joindre .form--callToAction {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0 20px;
  margin: 70px 0 0;
}
.PageTexte .main .--content .--text .form.nous-joindre .form--callToAction .btn {
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 20px;
}

.AssuranceAutoEnBref {
  padding: 35px 0;
}
.AssuranceAutoEnBref .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.AssuranceAutoEnBref .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: 0;
}
.AssuranceAutoEnBref .main .--content .intro {
  margin: 0 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.AssuranceAutoEnBref .main .--content .intro h1 {
  font-size: 38px;
  font-size: 2.375rem;
  color: #f89720;
  font-weight: bold;
  margin: 0 0 5px;
}
.AssuranceAutoEnBref .main .--content .intro h3 {
  font-size: 22px;
  font-size: 1.375rem;
  color: #666666;
  font-weight: bold;
  line-height: normal;
}
.AssuranceAutoEnBref .main .--content .intro .text {
  margin: 0 40px 0 0;
}
@media (max-width: 600px) {
  .AssuranceAutoEnBref .main .--content .intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .AssuranceAutoEnBref .main .--content .intro .text {
    margin: 0;
  }
}
.AssuranceAutoEnBref .main .--content .--text p {
  color: #666666;
  margin: 0 0 20px;
}
.AssuranceAutoEnBref .main .--content .--text a {
  color: #fe7c1a;
  text-decoration: none;
}
.AssuranceAutoEnBref .main .--content .--text h2 {
  color: #fe7c1a;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: normal;
  font-size: 34px;
  font-size: 2.125rem;
  text-transform: uppercase;
  color: #666666;
  clear: both;
}
.AssuranceAutoEnBref .main .--content .--text h2 + .encadreBref.Liste {
  counter-reset: section;
}
.AssuranceAutoEnBref .main .--content .--text ul {
  margin: 0 0 20px;
  padding: 0 0 0 40px;
}
.AssuranceAutoEnBref .main .--content .--text ul li {
  margin: 0 0 15px;
  color: #666666;
  list-style: square;
  line-height: normal;
}
.AssuranceAutoEnBref .main .--content .--text ul li::marker {
  color: #fe7c1a;
}
.AssuranceAutoEnBref .main .--content .--text ul li ol {
  margin: 10px 0 0;
  padding: 0 0 0 40px;
  list-style: lower-latin;
}
.AssuranceAutoEnBref .main .--content .--text ul li ol li {
  list-style: lower-latin;
  padding: 0 0 0 20px;
}
.AssuranceAutoEnBref .main .--content .--text ul li ol li::marker {
  color: #666666;
}
.AssuranceAutoEnBref .main .--content .--text ol {
  margin: 0 0 20px;
  padding: 0 0 0 40px;
}
.AssuranceAutoEnBref .main .--content .--text ol li {
  margin: 0 0 15px;
  color: #666666;
  list-style: decimal;
  line-height: normal;
}
.AssuranceAutoEnBref .main .--content .--text ol li ol {
  margin: 15px 0 0;
  padding: 0 0 0 40px;
}
.AssuranceAutoEnBref .main .--content .--text ol li ol li {
  line-height: normal;
}
.AssuranceAutoEnBref .main .--content .--text ol.listeAlpha li {
  list-style: lower-alpha;
  line-height: normal;
}
.AssuranceAutoEnBref .main .--content .--text ol.listeAlphaMaj li {
  list-style: upper-alpha;
  line-height: normal;
}
.AssuranceAutoEnBref .main .--content .--text a.btn {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #FFFFFF;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--secondary {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 10px 5px;
  display: inline-block;
  margin: 0 0 5px;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris {
  color: #FFFFFF;
  display: inline-block;
  position: relative;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip {
  position: absolute;
  width: 500px;
  z-index: 10;
  left: 0;
  top: 100%;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  -webkit-transition: max-height 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: max-height 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  overflow: hidden;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip .content {
  padding: 30px 20px;
  border: 1px solid #666666;
  background-color: #FFFFFF;
  border-radius: 10px;
  display: block;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip .content p {
  color: #666666;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip .content p:last-child {
  margin: 0;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip .content ul {
  padding: 0 0 0 20px;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip .content ul li {
  color: #666666;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 5px;
  list-style: disc;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip .content ul li::marker {
  color: #1a8d8a;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip .content ul li:last-child {
  margin: 0;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip .content ul li ul {
  margin: 10px 0 0;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip .content ul li ul:last-child {
  margin: 10px 0 0;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip .content ul:last-child {
  margin: 0;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip.hidden {
  max-height: 0;
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip .btnClose {
  position: absolute;
  color: #666666;
  top: 3px;
  right: 12px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
@media (max-width: 768px) {
  .AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip {
    right: 0;
    left: auto;
  }
}
@media (max-width: 600px) {
  .AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip {
    width: 360px;
  }
}
@media (max-width: 420px) {
  .AssuranceAutoEnBref .main .--content .--text a.btn--gris .tooltip {
    width: 270px;
  }
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris.-left .tooltip {
  position: absolute;
  width: 500px;
  z-index: 10;
  left: 0;
  top: 100%;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  -webkit-transition: max-height 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: max-height 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  overflow: hidden;
}
@media (max-width: 768px) {
  .AssuranceAutoEnBref .main .--content .--text a.btn--gris.-left .tooltip {
    left: 0;
    width: 400px;
  }
}
@media (max-width: 600px) {
  .AssuranceAutoEnBref .main .--content .--text a.btn--gris.-left .tooltip {
    width: 360px;
  }
}
@media (max-width: 420px) {
  .AssuranceAutoEnBref .main .--content .--text a.btn--gris.-left .tooltip {
    width: 270px;
  }
}
.AssuranceAutoEnBref .main .--content .--text a.btn--gris.-left .tooltip.hidden {
  max-height: 0;
}
.AssuranceAutoEnBref .main .--content .--text .encadreBref {
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.AssuranceAutoEnBref .main .--content .--text .encadreBref.Liste .content .iconesLeft::before {
  counter-increment: section;
  content: counter(section);
  color: #FFFFFF;
  font-size: 45px;
  font-size: 2.8125rem;
  width: 90px;
  height: 90px;
  border: 2px solid #FFFFFF;
  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;
  border-radius: 60px;
}
@media (max-width: 768px) {
  .AssuranceAutoEnBref .main .--content .--text .encadreBref.Liste .content .iconesLeft::before {
    font-size: 35px;
    font-size: 2.1875rem;
    width: 60px;
    height: 60px;
  }
}
.AssuranceAutoEnBref .main .--content .--text .encadreBref.hGray {
  background-color: #a7a8aa;
}
.AssuranceAutoEnBref .main .--content .--text .encadreBref.hOrange {
  background-color: #f89720;
}
.AssuranceAutoEnBref .main .--content .--text .encadreBref.hCyan {
  background-color: #1a8d8a;
}
.AssuranceAutoEnBref .main .--content .--text .encadreBref .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.AssuranceAutoEnBref .main .--content .--text .encadreBref .content .iconesLeft {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.AssuranceAutoEnBref .main .--content .--text .encadreBref .content .iconesLeft img {
  max-height: 70px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.AssuranceAutoEnBref .main .--content .--text .encadreBref .content .texte h4 {
  color: #FFFFFF;
  margin: 0 0 15px;
  font-weight: 700;
}
.AssuranceAutoEnBref .main .--content .--text .encadreBref .content .texte p {
  color: #FFFFFF;
  margin: 0 0 15px;
}
.AssuranceAutoEnBref .main .--content .--text .encadreBref .content .texte a.btn--gris .tooltip p {
  color: #666666;
}
.AssuranceAutoEnBref .main .--content .--text .encadreBref .content .iconeRight {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.AssuranceAutoEnBref .main .--content .--text .encadreBref .content .iconeRight img {
  max-height: 70px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (max-width: 768px) {
  .AssuranceAutoEnBref .main .--content .--text .encadreBref .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.Page404, .Page500 {
  padding: 35px 0;
}
.Page404 .main, .Page500 .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 0;
}
.Page404 .main .--content, .Page500 .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(70% - 20px);
  flex: 0 0 calc(70% - 20px);
  margin: 0 40px 0 0;
}
.Page404 .main .--content .--text h2, .Page500 .main .--content .--text h2 {
  color: #fe7c1a;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: normal;
}
.Page404 .main .--content .--text p, .Page500 .main .--content .--text p {
  color: #666666;
  margin: 0 0 20px;
}
.Page404 .main .--content .--text p a, .Page500 .main .--content .--text p a {
  color: #fe7c1a;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .Page404 .main .--content, .Page500 .main .--content {
    margin: 0 0 40px;
  }
}
@media (max-width: 1024px) {
  .Page404 .main, .Page500 .main {
    display: block;
  }
  .Page404 .main .--content, .Page500 .main .--content {
    margin-right: 0;
  }
}

.page-quiz .main {
  display: block;
}
.page-quiz .main .--content {
  margin: 80px 0;
}
.page-quiz .main .--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 75px;
  margin: 0 0 100px;
}
.page-quiz .main .--text .questions {
  width: 63%;
}
.page-quiz .main .--text .questions h2 {
  font-weight: bold;
  color: #666666;
  margin: 0 0 25px;
}
.page-quiz .main .--text .questions .true-false {
  text-align: right;
  padding: 0;
  margin: 0 0 15px;
  font-size: 24px;
  font-size: 1.5rem;
  color: #aaaaaa;
  font-weight: bold;
}
.page-quiz .main .--text .questions .true-false span:last-child {
  margin-left: 30px;
}
.page-quiz .main .--text .questions .question {
  padding: 40px 0;
  border-top: 1px solid #DAD8D4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
.page-quiz .main .--text .questions .question .reponse {
  display: none;
}
.page-quiz .main .--text .questions .question.disabledQuestion {
  pointer-events: none;
}
.page-quiz .main .--text .questions .question.disabledQuestion .question-text p {
  color: #DAD8D4;
}
.page-quiz .main .--text .questions .question-text {
  width: 80%;
}
.page-quiz .main .--text .questions .question-text p {
  font-size: 24px;
  font-size: 1.5rem;
  color: #1a8d8a;
  font-weight: 600;
}
.page-quiz .main .--text .questions .question:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.page-quiz .main .--text .questions .question .answer .radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  height: 49px;
}
.page-quiz .main .--text .questions .question .answer .radio.clicked {
  pointer-events: none;
}
.page-quiz .main .--text .questions .question .answer .radio .blocRadio {
  margin: 0;
}
.page-quiz .main .--text .questions .question .answer .radio input {
  display: none;
}
.page-quiz .main .--text .questions .question .answer .radio label {
  display: block;
  background-image: url("/media/icones/quiz-disabled.png");
  background-size: 49px;
  background-repeat: no-repeat;
  width: 49px;
  height: 49px;
}
.page-quiz .main .--text .questions .question .answer .radio label.vrai {
  background-image: url("/media/icones/quiz-bonne-reponse.png");
}
.page-quiz .main .--text .questions .question .answer .radio label.faux {
  background-image: url("/media/icones/quiz-mauvaise-reponse.png");
}
.page-quiz .main .--text .explications {
  width: 37%;
}
.page-quiz .main .--text .explications h2 {
  font-weight: bold;
  color: #666666;
  margin: 0 0 35px;
}
.page-quiz .main .--text .explications .explication {
  display: none;
  margin: 0 0 25px;
}
.page-quiz .main .--text .explications .explication iframe {
  width: 100%;
}
.page-quiz .main .--text .explications .answer-container {
  display: none;
  color: #FFFFFF;
  background-color: #1a8d8a;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 15px 0;
}
.page-quiz .main .endMessage .conclusion {
  margin: 0 0 50px;
}
.page-quiz .main .endMessage .conclusion h2 {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  color: #1a8d8a;
  margin: 0 0 25px;
}
.page-quiz .main .endMessage .conclusion p {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #666666;
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.3;
}
.page-quiz .main .endMessage .conclusion p a {
  color: #1a8d8a;
}
.page-quiz .main .endMessage .conclusion p:last-child {
  margin: 0;
}
.page-quiz .main .endMessage .restart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 45px;
}
.page-quiz .main .endMessage .restart .btn {
  display: block;
  margin: 5px 0;
  background-image: url("/media/icones/quiz-recommencer.png");
  background-size: 37px 24px;
  background-repeat: no-repeat;
  background-position: right 30px center;
  background-color: #fe7c1a;
  border-radius: 40px;
  padding: 18px 100px 18px 40px;
  overflow: hidden;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
.page-quiz .main .endMessage .share {
  margin: 20px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-quiz .main .endMessage .share h3 {
  color: #fe7c1a;
  font-weight: bold;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  text-align: center;
  margin: 0 0 20px;
}
.page-quiz .main .endMessage .share-arrow {
  display: block;
  margin: 0 auto 20px;
}
.page-quiz .main .endMessage .share .reseaux {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
}
.page-quiz .main .endMessage .share .reseaux a {
  display: block;
}
@media (max-width: 1024px) {
  .page-quiz .main .--content {
    margin-bottom: 60px;
  }
  .page-quiz .main .--text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .page-quiz .main .--text .questions {
    width: 100%;
    margin-bottom: 40px;
  }
  .page-quiz .main .--text .questions .true-false {
    padding: 30px 0;
  }
  .page-quiz .main .--text .questions .question {
    padding: 30px 0;
  }
  .page-quiz .main .--text .explications {
    width: 100%;
    margin-bottom: 40px;
  }
  .page-quiz .main .--text .explications .explication iframe {
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 600px) {
  .page-quiz .main .--content {
    margin-bottom: 40px;
  }
  .page-quiz .main .--text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .page-quiz .main .--text .questions .question {
    gap: 20px;
  }
  .page-quiz .main .--text .questions .question-text p {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .page-quiz .main .--text .questions .question .answer .radio {
    height: 32px;
  }
  .page-quiz .main .--text .questions .question .answer .radio.clicked {
    pointer-events: none;
  }
  .page-quiz .main .--text .questions .question .answer .radio input {
    display: none;
  }
  .page-quiz .main .--text .questions .question .answer .radio label {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
  .page-quiz .main .--text .explications .explication iframe {
    height: 300px;
  }
  .page-quiz .main .--text .explications .answer-container {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.reglements {
  margin: 60px 0;
}
.reglements .main .--content {
  -webkit-box-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
  width: 100%;
}
.reglements .reglements--list .reglement {
  height: 320px;
  background-repeat: no-repeat;
  background-position: left 30% bottom 20%;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
  padding-bottom: 20px;
}
.reglements .reglements--list .reglement::before {
  content: "";
  background-image: url("/media/icones/fleche-reglement.png");
  position: absolute;
  width: 75px;
  height: 38px;
  bottom: -38px;
  right: 20%;
  background-repeat: no-repeat;
}
.reglements .reglements--list .reglement-titre {
  width: 50%;
  margin: 40px 0;
}
.reglements .reglements--list .reglement-titre h2 {
  font-size: 34px;
  font-size: 2.125rem;
  color: #1a8d8a;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.reglements .reglements--list .reglement-titre h2 strong {
  font-size: 48px;
  font-size: 3rem;
}
.reglements .reglements--list .reglement-nav {
  width: 50%;
}
.reglements .reglements--list .reglement-nav li {
  text-align: right;
  margin-bottom: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: relative;
}
.reglements .reglements--list .reglement-nav li .hoverEffect {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fe7c1a;
  border-radius: 50vh;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(1.1);
  transform: scaleX(1.1);
}
.reglements .reglements--list .reglement-nav li .hoverEffect::before {
  content: "";
  position: absolute;
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
  -webkit-transform-origin: left;
  transform-origin: left;
}
.reglements .reglements--list .reglement-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  text-decoration: none;
  position: relative;
  z-index: 2;
  /* smartphones, touchscreens */
}
.reglements .reglements--list .reglement-nav li a img {
  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;
  padding: 10px;
  background-color: #e5e5e5;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  -webkit-transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
}
.reglements .reglements--list .reglement-nav li a p {
  color: #fe7c1a;
  width: 160px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  -webkit-transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
}
@media (pointer: fine) {
  .reglements .reglements--list .reglement-nav li a:hover p {
    color: #FFFFFF;
  }
  .reglements .reglements--list .reglement-nav li a:hover img {
    background-color: transparent;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .reglements .reglements--list .reglement-nav li a:hover + .hoverEffect::before {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
.reglements .reglements--list .reglement:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  background-position: center center;
}
.reglements .reglements--list .reglement:nth-child(even)::before {
  right: auto;
  left: 20%;
}
.reglements .reglements--list .reglement:nth-child(even) .reglement-nav li {
  margin-left: 0;
  text-align: left;
}
.reglements .reglements--list .reglement:nth-child(even) .reglement-nav li a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.reglements .reglements--list .reglement:nth-child(even) .reglement-nav li .hoverEffect {
  -webkit-transform-origin: left;
  transform-origin: left;
}
.reglements .reglements--list .reglement:nth-child(even) .reglement-nav li .hoverEffect::before {
  -webkit-transform-origin: right;
  transform-origin: right;
}
.reglements .reglements--list .reglement:nth-child(4n-3) .reglement-titre {
  margin: 0 0 100px 0;
}
.reglements .reglements--list .reglement:nth-child(4n-2) .reglement-titre {
  margin-bottom: 80px;
}
.reglements .reglements--list .reglement:nth-child(4n-2) .reglement-titre h2 {
  margin-left: 60px;
}
.reglements .reglements--list .reglement:nth-child(4n-1) .reglement-titre {
  margin-bottom: auto;
}
.reglements .reglements--list .reglement:nth-child(4n) .reglement-titre {
  margin-top: auto;
}
.reglements .reglements--list .reglement:nth-child(4n) .reglement-titre h2 {
  margin-left: 50px;
}
.reglements .reglements--list .reglement:last-child::before {
  content: none;
}
@media (max-width: 1024px) {
  .reglements .reglements--list .reglement {
    background-position: left 10% bottom 10px;
  }
  .reglements .reglements--list .reglement-titre h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .reglements .reglements--list .reglement-titre h2 strong {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .reglements .reglements--list .reglement:nth-child(even) {
    background-position: right 40% bottom 10px;
  }
  .reglements .reglements--list .reglement-nav {
    width: 50%;
  }
  .reglements .reglements--list .reglement-nav li .hoverEffect {
    background-color: transparent;
  }
  .reglements .reglements--list .reglement-nav li .hoverEffect::before {
    content: none;
  }
  .reglements .reglements--list .reglement-nav li a {
    /* smartphones, touchscreens */
  }
}
@media (max-width: 1024px) and (pointer: fine) {
  .reglements .reglements--list .reglement-nav li a:hover p {
    color: #fe7c1a;
  }
  .reglements .reglements--list .reglement-nav li a:hover img {
    background-color: #F8F8F8;
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  .reglements .reglements--list .reglement {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: auto;
    background-position: left 0 bottom 70%;
    gap: 60px;
  }
  .reglements .reglements--list .reglement-titre {
    width: 100%;
  }
  .reglements .reglements--list .reglement:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .reglements .reglements--list .reglement:nth-child(4n-3) {
    background-size: 100%;
  }
  .reglements .reglements--list .reglement:nth-child(4n-2) {
    background-position: left 0 top 0;
  }
  .reglements .reglements--list .reglement:nth-child(4n-2) .reglement-titre h2 {
    margin-left: auto;
    margin-top: 40px;
  }
  .reglements .reglements--list .reglement:nth-child(4n-1) {
    gap: 200px;
    background-position: left 50% top 35%;
  }
  .reglements .reglements--list .reglement:nth-child(4) {
    background-position: left 0 top 0;
    background-size: 300px;
  }
  .reglements .reglements--list .reglement:nth-child(4) .reglement-titre h2 {
    margin-left: auto;
    margin-top: 160px;
  }
  .reglements .reglements--list .reglement-nav {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 450px) {
  .reglements .reglements--list .reglement:nth-child(4n-3) {
    gap: 20px;
    background-position: left 0 top 40%;
  }
  .reglements .reglements--list .reglement:nth-child(4n-2) {
    background-size: 120px;
    background-position: left 0 top 25%;
  }
  .reglements .reglements--list .reglement:nth-child(4n-2) .reglement-titre {
    margin-bottom: 120px;
  }
  .reglements .reglements--list .reglement:nth-child(4n-2) .reglement-titre h2 {
    margin-left: 0;
    margin-top: 0;
  }
  .reglements .reglements--list .reglement:nth-child(4n) {
    background-size: 180px;
    background-position: left 0 top 27%;
  }
  .reglements .reglements--list .reglement:nth-child(4n) .reglement-titre {
    margin-bottom: 100px;
  }
  .reglements .reglements--list .reglement:nth-child(4n) .reglement-titre h2 {
    margin-left: 0;
    margin-top: 0;
  }
}

.reglements-enfants .main .--content {
  -webkit-box-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
  width: 100%;
}
.reglements-enfants .tableau-multi-contenus .tableau-nav {
  padding: 40px 0;
}
.reglements-enfants .tableau-multi-contenus .nav-title h1 {
  font-size: 34px;
  font-size: 2.125rem;
  color: #1a8d8a;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
.reglements-enfants .tableau-multi-contenus .nav-title h1 strong {
  font-size: 48px;
  font-size: 3rem;
}
.reglements-enfants .tableau-multi-contenus .nav-title img {
  display: block;
  max-height: 220px;
}
.reglements-enfants .tableau-multi-contenus .nav-title .retour {
  background-color: transparent;
  color: #000000;
  border: 2px solid #fe7c1a;
  border-radius: 20px;
  font-weight: 500;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  /* smartphones, touchscreens */
}
.reglements-enfants .tableau-multi-contenus .nav-title .retour::before {
  content: "«";
  font-size: 24px;
  font-size: 1.5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: 12px;
  position: absolute;
  top: 50% !important;
  color: #1a8d8a;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
  -webkit-transition: all 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
@media (pointer: fine) {
  .reglements-enfants .tableau-multi-contenus .nav-title .retour:hover {
    color: #FFFFFF;
    background-color: #fe7c1a;
  }
  .reglements-enfants .tableau-multi-contenus .nav-title .retour:hover::before {
    color: #FFFFFF;
  }
}
.reglements-enfants .tableau-multi-contenus .tableau-nav {
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
  padding-bottom: 20px;
}
.reglements-enfants .tableau-multi-contenus .tableau-nav .section-title {
  text-align: right;
  margin-bottom: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: relative;
  cursor: pointer;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-title:hover .title-tab p {
    color: #FFFFFF;
  }
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-title:hover .title-tab img {
    background-color: transparent;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-title:hover .title-tab + .hoverEffect::before {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
.reglements-enfants .tableau-multi-contenus .tableau-nav .section-title .hoverEffect {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fe7c1a;
  border-radius: 50vh;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(1.1);
  transform: scaleX(1.1);
}
.reglements-enfants .tableau-multi-contenus .tableau-nav .section-title .hoverEffect::before {
  content: "";
  position: absolute;
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
  -webkit-transform-origin: left;
  transform-origin: left;
}
.reglements-enfants .tableau-multi-contenus .tableau-nav .section-title .title-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-decoration: none;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.reglements-enfants .tableau-multi-contenus .tableau-nav .section-title .title-tab img {
  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;
  padding: 10px;
  background-color: #e5e5e5;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  -webkit-transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
  pointer-events: none;
}
.reglements-enfants .tableau-multi-contenus .tableau-nav .section-title .title-tab p {
  color: #fe7c1a;
  width: 160px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  -webkit-transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.58, 0, 0.32, 1);
  pointer-events: none;
}
.reglements-enfants .tableau-multi-contenus .tableau-nav .section-title.selected .title-tab p {
  color: #FFFFFF;
}
.reglements-enfants .tableau-multi-contenus .tableau-nav .section-title.selected .title-tab img {
  background-color: transparent;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.reglements-enfants .tableau-multi-contenus .tableau-nav .section-title.selected .title-tab + .hoverEffect::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.reglements-enfants .tableau-multi-contenus .section-tableau {
  margin: 20px 0 60px 0;
}
.reglements-enfants .tableau-multi-contenus .section-tableau .contenu {
  opacity: 0;
  max-height: 0;
  height: 100%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition: all 0.8s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.8s cubic-bezier(0.58, 0, 0.32, 1);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
.reglements-enfants .tableau-multi-contenus .section-tableau .contenu.active {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  max-height: 2000px;
}
@media (max-width: 1024px) {
  .reglements-enfants .tableau-multi-contenus .nav-title h1 {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .reglements-enfants .tableau-multi-contenus .nav-title h1 strong {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-title {
    background-color: transparent;
    /* smartphones, touchscreens */
  }
}
@media (max-width: 1024px) and (pointer: fine) {
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-title:hover .title-tab p {
    color: #fe7c1a;
  }
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-title:hover .title-tab img {
    background-color: #e5e5e5;
    -webkit-filter: none;
    filter: none;
  }
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-title:hover .title-tab + .hoverEffect::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@media (max-width: 1024px) {
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-title .title-tab p {
    width: 140px;
  }
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-title .hoverEffect {
    background-color: transparent;
  }
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-title .hoverEffect::before {
    content: none;
  }
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-title.selected .title-tab p {
    color: #FFFFFF;
  }
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-title.selected .title-tab img {
    background-color: transparent;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-title.selected .title-tab + .hoverEffect {
    background-color: #fe7c1a;
  }
}
@media (max-width: 768px) {
  .reglements-enfants .tableau-multi-contenus .tableau-nav {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
  }
  .reglements-enfants .tableau-multi-contenus .tableau-nav .nav-title h1 {
    margin-top: 30px;
  }
  .reglements-enfants .tableau-multi-contenus .tableau-nav .section-titles {
    margin-left: auto;
  }
  .reglements-enfants .tableau-multi-contenus .section-tableau .contenu.active {
    max-height: 5000px;
  }
}

.section-grille {
  border-radius: 15px;
  position: relative;
}
.section-grille p {
  color: #666666;
}
.section-grille:has(> .image-superposee) {
  margin: 10px 0;
}
.section-grille.border, .section-grille.background {
  padding: 20px;
}
.section-grille.border {
  border: 2px solid #178e89;
}
.section-grille.lightGrayBorder {
  border-color: #2bc2bd;
}
.section-grille.background {
  background-color: #e7f3f3;
}
.section-grille.border.background, .section-grille.background.border {
  padding: 20px;
}
.section-grille.extraPadding {
  padding-top: 30px;
  padding-bottom: 30px;
}
.section-grille.extraPadding h2 {
  margin: 10px 0;
}
.section-grille.littleCentre {
  max-width: 640px;
  margin: 0 auto;
}
.section-grille.extraPaddingGD .text-block {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  .section-grille.extraPaddingGD .text-block {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.section-grille .text-block ul li::before {
  width: 5px;
  height: 5px;
  border-radius: 0;
}
.section-grille.extraBoldTitles h2, .section-grille.extraBoldTitles h3, .section-grille.extraBoldTitles h4, .section-grille.extraBoldTitles h5 {
  font-weight: 900;
}
.section-grille p, .section-grille li {
  color: #666666;
}
.section-grille h2 {
  font-weight: 700;
  color: #0f8d89;
}
.section-grille a {
  color: #666666 !important;
}
.section-grille .image-superposee {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(-40%, -40%);
  transform: translate(-40%, -40%);
  max-width: 100px;
  max-height: 100px;
  z-index: 5;
}
.section-grille .image-superposee img {
  display: block;
  height: 100%;
  width: auto;
}
.section-grille .image-superposee.centerRight {
  left: auto;
  right: 0;
  top: 50%;
  -webkit-transform: translate(60%, -50%);
  transform: translate(60%, -50%);
}
.section-grille .image-superposee.centerLeft {
  left: 0;
  top: 50%;
  -webkit-transform: translate(-40%, -50%);
  transform: translate(-40%, -50%);
}
.section-grille .image-superposee.topRight {
  left: auto;
  right: 0;
  top: 0;
  -webkit-transform: translate(40%, -40%);
  transform: translate(40%, -40%);
}
.section-grille .image-superposee.bottomLeft {
  left: 0;
  top: auto;
  bottom: 0;
  -webkit-transform: translate(-40%, 40%);
  transform: translate(-40%, 40%);
}
.section-grille .image-superposee.bottomRight {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  -webkit-transform: translate(40%, 40%);
  transform: translate(40%, 40%);
}
.section-grille .image-superposee.centerBottom {
  left: 50%;
  top: auto;
  bottom: 0;
  -webkit-transform: translate(-50%, 80%);
  transform: translate(-50%, 80%);
}
.section-grille .image-superposee.centerBottom + .text-block {
  padding-bottom: 30px;
}
.section-grille .image-superposee.centerRight + .text-block h2, .section-grille .image-superposee.centerRight + .text-block h3, .section-grille .image-superposee.centerRight + .text-block h4, .section-grille .image-superposee.centerRight + .text-block h5, .section-grille .image-superposee.centerRight + .text-block p, .section-grille .image-superposee.topRight + .text-block h2, .section-grille .image-superposee.topRight + .text-block h3, .section-grille .image-superposee.topRight + .text-block h4, .section-grille .image-superposee.topRight + .text-block h5, .section-grille .image-superposee.topRight + .text-block p, .section-grille .image-superposee.bottomRight + .text-block h2, .section-grille .image-superposee.bottomRight + .text-block h3, .section-grille .image-superposee.bottomRight + .text-block h4, .section-grille .image-superposee.bottomRight + .text-block h5, .section-grille .image-superposee.bottomRight + .text-block p {
  margin-right: 20px;
}
.section-grille .image-superposee.centerLeft + .text-block h2, .section-grille .image-superposee.centerLeft + .text-block h3, .section-grille .image-superposee.centerLeft + .text-block h4, .section-grille .image-superposee.centerLeft + .text-block h5, .section-grille .image-superposee.centerLeft + .text-block p, .section-grille .image-superposee.topLeft + .text-block h2, .section-grille .image-superposee.topLeft + .text-block h3, .section-grille .image-superposee.topLeft + .text-block h4, .section-grille .image-superposee.topLeft + .text-block h5, .section-grille .image-superposee.topLeft + .text-block p, .section-grille .image-superposee.bottomLeft + .text-block h2, .section-grille .image-superposee.bottomLeft + .text-block h3, .section-grille .image-superposee.bottomLeft + .text-block h4, .section-grille .image-superposee.bottomLeft + .text-block h5, .section-grille .image-superposee.bottomLeft + .text-block p {
  margin-left: 40px;
}
@media (max-width: 1024px) {
  .section-grille .image-superposee {
    max-width: 70px;
    max-height: 70px;
  }
  .section-grille .image-superposee.no-mobile {
    display: none;
  }
  .section-grille .image-superposee.no-mobile.centerLeft + .text-block h2, .section-grille .image-superposee.no-mobile.centerLeft + .text-block h3, .section-grille .image-superposee.no-mobile.centerLeft + .text-block h4, .section-grille .image-superposee.no-mobile.centerLeft + .text-block h5, .section-grille .image-superposee.no-mobile.centerLeft + .text-block p {
    margin-left: 0;
  }
  .section-grille .image-superposee.no-mobile.centerRight + .text-block h2, .section-grille .image-superposee.no-mobile.centerRight + .text-block h3, .section-grille .image-superposee.no-mobile.centerRight + .text-block h4, .section-grille .image-superposee.no-mobile.centerRight + .text-block h5, .section-grille .image-superposee.no-mobile.centerRight + .text-block p, .section-grille .image-superposee.no-mobile.topRight + .text-block h2, .section-grille .image-superposee.no-mobile.topRight + .text-block h3, .section-grille .image-superposee.no-mobile.topRight + .text-block h4, .section-grille .image-superposee.no-mobile.topRight + .text-block h5, .section-grille .image-superposee.no-mobile.topRight + .text-block p, .section-grille .image-superposee.no-mobile.bottomRight + .text-block h2, .section-grille .image-superposee.no-mobile.bottomRight + .text-block h3, .section-grille .image-superposee.no-mobile.bottomRight + .text-block h4, .section-grille .image-superposee.no-mobile.bottomRight + .text-block h5, .section-grille .image-superposee.no-mobile.bottomRight + .text-block p {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .section-grille h2 {
    font-weight: 700;
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.PageCID, .PageGroupeDeCas {
  padding: 35px 0;
}
.PageCID .main .--content .block-Cid .etape-header, .PageGroupeDeCas .main .--content .block-Cid .etape-header {
  margin: 0 0 40px;
}
.PageCID .main .--content .block-Cid .bloc-etape .bloc-navigation, .PageGroupeDeCas .main .--content .block-Cid .bloc-etape .bloc-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.PageCID .main .--content .block-Cid .bloc-etape .bloc-navigation .btn, .PageGroupeDeCas .main .--content .block-Cid .bloc-etape .bloc-navigation .btn {
  clear: both;
  background-color: #eeeeee;
  font-weight: bold;
  padding: 5px 10px;
}
.PageCID .main .--content .block-Cid .bloc-etape .bloc-navigation .btn.active, .PageGroupeDeCas .main .--content .block-Cid .bloc-etape .bloc-navigation .btn.active {
  background-color: #fe7c1a;
}

.PageCas {
  padding: 35px 0;
}
.PageCas .main .--content .block-Cid .etape-header {
  margin: 0 0 20px;
}

.PageCategorieDeCas {
  padding: 35px 0;
}
.PageCategorieDeCas .main .--content .block-Cid .etape-header {
  padding: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.PageCategorieDeCas .main .--content .block-Cid .bloc-etape .bloc-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.PageCategorieDeCas .main .--content .block-Cid .bloc-etape .bloc-navigation .btn {
  clear: both;
  background-color: #eeeeee;
  font-weight: bold;
  padding: 5px 10px;
}
.PageCategorieDeCas .main .--content .block-Cid .bloc-etape .bloc-navigation .btn.active {
  background-color: #fe7c1a;
}

.PageTexteAvecCID .main .--content .block-Cid .bloc-etape .bloc-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.PageTexteAvecCID .main .--content .block-Cid .bloc-etape .bloc-navigation .btn {
  clear: both;
  background-color: #eeeeee;
  font-weight: bold;
  padding: 5px 10px;
}
.PageTexteAvecCID .main .--content .block-Cid .bloc-etape .bloc-navigation .btn.active {
  background-color: #fe7c1a;
}

.PageCIDNegative {
  padding: 35px 0;
}
.PageCIDNegative .main .--content .block-Cid .etape-header {
  margin: 0 0 40px;
}
.PageCIDNegative .main .--content .block-Cid .etape-header h3 span {
  color: #fe7c1a;
}

.banner-sinistre {
  background-color: #f7971b;
  padding: 60px 0 160px;
}
.banner-sinistre .wrapper {
  padding: 0 60px;
}
.banner-sinistre h1 {
  color: #FFFFFF;
  margin: 0 auto;
  text-align: center;
  max-width: 450px;
  font-weight: bold;
}
.banner-sinistre .image-menu {
  margin: 55px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.banner-sinistre .image-menu .menu {
  max-width: 450px;
}
.banner-sinistre .image-menu .menu nav ul {
  background-color: #21262e;
  padding: 50px;
  border-radius: 10px;
}
.banner-sinistre .image-menu .menu nav ul li {
  margin-bottom: 30px;
  padding: 10px 70px 10px 50px;
  border-radius: 50px;
  min-height: 60px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #178e89 url("/media/icones/fleche_bouton.png") no-repeat right 30px center;
  -webkit-transition: all 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  /* smartphones, touchscreens */
}
.banner-sinistre .image-menu .menu nav ul li:last-child {
  margin-bottom: 0;
}
.banner-sinistre .image-menu .menu nav ul li a {
  width: 100%;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (pointer: fine) {
  .banner-sinistre .image-menu .menu nav ul li:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
  }
}
@media (max-width: 1024px) {
  .banner-sinistre .wrapper {
    padding: 0 30px;
  }
  .banner-sinistre h1 {
    margin-bottom: 40px;
  }
  .banner-sinistre .image-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .banner-sinistre .image-menu .menu nav ul li a {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .banner-sinistre h1 {
    margin-bottom: 20px;
  }
  .banner-sinistre .image-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .banner-sinistre .image-menu .menu nav ul {
    padding: 30px;
  }
  .banner-sinistre .image-menu .menu nav ul li {
    padding: 10px 50px 10px 30px;
    max-width: 100%;
    width: 100%;
  }
  .banner-sinistre .image-menu .menu nav ul li a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.fichier-sinistre .wrapper {
  padding: 0;
}
@media (max-width: 1600px) {
  .fichier-sinistre .wrapper {
    padding: 0 20px;
  }
}
.fichier-sinistre .infos {
  background-color: #3b3b3b;
  background-repeat: no-repeat;
  background-position: right bottom -40px;
  padding: 90px 0 200px;
}
.fichier-sinistre .infos .infos--nav ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 80px;
  gap: 25px;
}
.fichier-sinistre .infos .infos--nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-size: 0.9375rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  padding: 5px 20px;
  border-radius: 50px;
  width: 100%;
  min-height: 56px;
  text-align: center;
  font-weight: 700;
  border: 3px solid #178e89;
  background-color: #178e89;
  -webkit-transition: all 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .fichier-sinistre .infos .infos--nav ul li:hover {
    background-color: transparent;
    cursor: pointer;
  }
}
.fichier-sinistre .infos .infos--nav ul li.selected {
  background-color: transparent;
}
.fichier-sinistre .infos .infos--slider-texte {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 100px;
  width: 100%;
}
.fichier-sinistre .infos .infos--slider-texte .slider-container {
  width: 50%;
  position: relative;
  margin-left: 30px;
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .arrow-slider {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  opacity: 0.7;
  cursor: pointer;
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .arrow-slider--prev {
  border-bottom: 4px solid #FFFFFF;
  border-left: 4px solid #FFFFFF;
  left: -30px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .arrow-slider--next {
  border-bottom: 4px solid #FFFFFF;
  border-right: 4px solid #FFFFFF;
  right: -30px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .slider {
  width: 100%;
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos {
  position: relative;
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos img {
  display: block;
  vertical-align: center;
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos .loupe {
  position: absolute;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  /* smartphones, touchscreens */
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos .loupe img {
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  transition: transform 0.2s cubic-bezier(0.58, 0, 0.32, 1);
  transition: transform 0.2s cubic-bezier(0.58, 0, 0.32, 1), -webkit-transform 0.2s cubic-bezier(0.58, 0, 0.32, 1);
}
@media (pointer: fine) {
  .fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos .loupe:hover {
    background-color: rgba(0, 255, 245, 0.58);
  }
  .fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos .loupe:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos .loupe.selected {
  background-color: rgba(0, 255, 245, 0.58);
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos .loupe.selected img {
  display: none;
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos .loupe-1:first-of-type {
  top: 0;
  height: 56.5%;
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos .loupe-1:nth-of-type(2) {
  bottom: 0;
  height: 43.5%;
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos .loupe-2:first-of-type {
  top: 0;
  height: 58%;
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos .loupe-2:nth-of-type(2) {
  top: 58%;
  height: 15.5%;
}
.fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos .loupe-2:nth-of-type(3) {
  bottom: 0;
  height: 26.5%;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte {
  width: 50%;
  color: #FFFFFF;
  padding: 40px 0 0;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc {
  display: none;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc h2 {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 35px;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc p {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 45px;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .text-block {
  margin: 0 0 25px;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .text-block h2 {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 35px;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .text-block p {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 20px;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .text-block p a {
  color: #0FE5DE;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .text-block ul {
  padding: 0 0 0 40px;
  margin: 0 0 20px;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .text-block ul li {
  font-size: 18px;
  font-size: 1.125rem;
  list-style: disc;
  padding: 0;
  margin: 0 0 10px;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .text-block ul li:before {
  content: none;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .text-block ul li::marker {
  color: #FFFFFF;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .text-block h4 {
  color: #fe7c1a;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 900;
  margin: 0 0 25px;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc:first-child {
  display: block;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc button.suivant {
  padding: 20px 70px;
  border-radius: 50px;
  background-image: url("/media/icones/fleche_bouton.png");
  background-repeat: no-repeat;
  background-position: right 20px center;
  text-decoration: underline;
  font-weight: bold;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc button.suivant:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
  }
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .tableau-interactif {
  position: relative;
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #fe7c1a;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .tableau-interactif-nav {
  margin: 0 0 20px;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .tableau-interactif-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .tableau-interactif-nav ul li {
  border: 4px solid #404473;
  cursor: pointer;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .tableau-interactif-nav ul li img {
  pointer-events: none;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .tableau-interactif-nav ul li:hover, .fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .tableau-interactif-nav ul li.selected {
  border-color: #fe7c1a;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .tableau-interactif-content .tableau-slide {
  display: none;
  margin: 0;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .lexiques {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .lexiques p {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: 0 0 10px;
}
.fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .lexiques a {
  display: block;
  text-decoration: none;
  padding: 5px 30px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 5px;
  cursor: pointer;
  border: 1px solid #fe7c1a;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .lexiques a:hover {
    background-color: #fe7c1a;
  }
}
.fichier-sinistre .faq {
  background: #21262e url("/media/img/skyline-2x.png") no-repeat bottom;
  padding: 90px 0 300px;
  position: relative;
  background-size: 105%;
}
.fichier-sinistre .faq-icon {
  display: block;
  margin: 0 auto 20px;
}
.fichier-sinistre .faq-title {
  color: #FFFFFF;
  text-align: center;
  margin: 0;
  font-weight: bold;
}
.fichier-sinistre .faq .questions {
  margin: 70px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.fichier-sinistre .faq .questions .questions-group {
  width: 50%;
}
.fichier-sinistre .faq .questions .question {
  background-color: transparent;
  border-left: 0;
  position: relative;
  border-bottom: 2px solid #fe7c1a;
  margin: 0;
}
.fichier-sinistre .faq .questions .question .collapse--head {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.fichier-sinistre .faq .questions .question .collapse--head p {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90%;
  flex: 0 0 90%;
}
.fichier-sinistre .faq .questions .question .collapse--head .btn-collapse {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
}
.fichier-sinistre .faq .questions .question .collapse--head .btn-collapse img {
  width: 12px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  display: block;
  margin: 0 10px 0 auto;
  -webkit-transition: all 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
.fichier-sinistre .faq .questions .question .collapse--body {
  color: #FFFFFF;
}
.fichier-sinistre .faq .questions .question .collapse--body .content {
  padding: 0 0 20px;
}
.fichier-sinistre .faq .questions .question .collapse--body .content p {
  margin: 0 0 20px;
}
.fichier-sinistre .faq .questions .question .collapse--body .content p a {
  color: #0FE5DE;
}
.fichier-sinistre .faq .questions .question .collapse--body .content p:last-child {
  margin: 0;
}
.fichier-sinistre .faq .questions .question .collapse--body .content ul {
  padding: 0 0 0 20px;
  margin: 0 0 20px;
}
.fichier-sinistre .faq .questions .question .collapse--body .content ul li {
  font-size: 16px;
  font-size: 1rem;
  list-style: disc;
  padding: 0;
  margin: 0 0 10px;
}
.fichier-sinistre .faq .questions .question .collapse--body .content ul li:before {
  content: none;
}
.fichier-sinistre .faq .questions .question .collapse--body .content ul li::marker {
  color: #FFFFFF;
}
.fichier-sinistre .faq .questions .question .collapse--body .content ol {
  padding: 0 0 0 40px;
  margin: 0 0 20px;
}
.fichier-sinistre .faq .questions .question .collapse--body .content ol li {
  font-size: 16px;
  font-size: 1rem;
  list-style: decimal;
  padding: 0;
  margin: 0 0 10px;
}
.fichier-sinistre .faq .questions .question .collapse--body .content ol li:before {
  content: none;
}
.fichier-sinistre .faq .questions .question .collapse--body .content ol li::marker {
  color: #FFFFFF;
}
.fichier-sinistre .faq .questions .question .collapse--body a {
  color: #a7a8aa;
}
.fichier-sinistre .faq .questions .question.ouvert .collapse--head {
  color: #fe7c1a;
}
.fichier-sinistre .faq .questions .question.ouvert .collapse--head .btn-collapse img {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.fichier-sinistre .faq .bottomImage {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.fichier-sinistre .section-lexique {
  background-color: #3b3b3b;
  padding: 90px 0;
  margin: -1px 0 0;
}
.fichier-sinistre .section-lexique-icon {
  display: block;
  margin: 0 auto 20px;
}
.fichier-sinistre .section-lexique-title {
  color: #FFFFFF;
  text-align: center;
  margin: 0;
  font-weight: bold;
}
.fichier-sinistre .section-lexique .lexiques {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  max-height: 1080px;
  margin: 100px 0 70px;
}
.fichier-sinistre .section-lexique .lexiques .lexique {
  color: #FFFFFF;
  position: relative;
  width: calc(33.3333333333% - 53.3333333333px);
  margin: 0 0 30px;
}
.fichier-sinistre .section-lexique .lexiques .lexique:nth-child(1) {
  border-bottom: 1px solid #fe7c1a;
}
.fichier-sinistre .section-lexique .lexiques .lexique:nth-child(4) {
  border-bottom: 1px solid #fe7c1a;
}
.fichier-sinistre .section-lexique .lexiques .lexique h3 {
  margin: 0 0 30px;
  font-weight: bold;
}
.fichier-sinistre .section-lexique .lexiques .lexique p {
  margin: 0 0 15px;
}
.fichier-sinistre .section-lexique .lexiques .lexique .lexique-title {
  margin: 0;
  color: #fe7c1a;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.fichier-sinistre .section-lexique .lexiques .lexique .lexique-title.selected {
  padding: 5px;
  margin-left: -5px;
  color: #FFFFFF;
  background-color: #fe7c1a;
}
.fichier-sinistre .section-lexique .lexiques .lexique a {
  color: #0FE5DE;
}
@media (max-width: 1280px) {
  .fichier-sinistre .section-lexique .lexiques .lexique {
    width: calc(50% - 40px);
    border-bottom: 1px solid #fe7c1a;
  }
}
@media (max-width: 1024px) {
  .fichier-sinistre .section-lexique .lexiques .lexique {
    width: calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .fichier-sinistre .section-lexique .lexiques .lexique {
    width: 100%;
  }
}
@media (max-width: 1280px) {
  .fichier-sinistre .section-lexique .lexiques {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
@media (max-width: 1024px) {
  .fichier-sinistre .section-lexique .lexiques {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .fichier-sinistre .section-lexique .lexiques {
    gap: 0;
  }
}
.fichier-sinistre .section-lexique .demande-joindre {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 160px;
  padding: 50px 70px;
  border: 5px solid #fe7c1a;
  color: #FFFFFF;
}
.fichier-sinistre .section-lexique .demande-joindre h4 {
  color: #fe7c1a;
  margin-bottom: 10px;
}
.fichier-sinistre .section-lexique .demande-joindre .demande {
  width: 65%;
}
.fichier-sinistre .section-lexique .demande-joindre .demande p {
  margin: 0 0 15px;
}
.fichier-sinistre .section-lexique .demande-joindre .demande .btn {
  padding: 15px 40px;
  border-radius: 50px;
  background-image: url("/media/icones/fleche_bouton.png");
  background-repeat: no-repeat;
  background-position: right 20px center;
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .fichier-sinistre .section-lexique .demande-joindre .demande .btn:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.fichier-sinistre .section-lexique .demande-joindre .joindre {
  width: 35%;
}
.fichier-sinistre .section-lexique .demande-joindre .joindre h4 {
  margin: 0;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
}
.fichier-sinistre .section-lexique .demande-joindre .joindre p {
  margin: 0 0 20px;
}
.fichier-sinistre .section-lexique .demande-joindre .joindre p a {
  color: #0FE5DE;
}
@media (max-width: 768px) {
  .fichier-sinistre .section-lexique .demande-joindre {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 1280px) {
  .fichier-sinistre .infos .infos--nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }
  .fichier-sinistre .infos .infos--nav ul li {
    min-height: auto;
  }
  .fichier-sinistre .section-lexique .demande-joindre {
    gap: 60px;
    padding: 40px 50px;
  }
}
@media (max-width: 1024px) {
  .fichier-sinistre .wrapper {
    padding: 0 30px;
  }
  .fichier-sinistre .infos {
    background-size: 300px;
    padding: 70px 0;
  }
  .fichier-sinistre .infos .infos--slider-texte {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
  .fichier-sinistre .infos .infos--slider-texte .slider-container {
    width: 70%;
  }
  .fichier-sinistre .infos .infos--slider-texte .infos-texte {
    width: 100%;
  }
  .fichier-sinistre .faq {
    padding: 70px 0 200px;
  }
  .fichier-sinistre .faq-title {
    margin: 20px 0 30px;
  }
  .fichier-sinistre .faq .questions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .fichier-sinistre .faq .questions .questions-group {
    width: 100%;
  }
  .fichier-sinistre .faq .questions .question {
    margin-bottom: 20px;
  }
  .fichier-sinistre .section-lexique .demande-joindre {
    gap: 40px;
  }
  .fichier-sinistre .section-lexique .demande-joindre .joindre {
    width: 100%;
  }
  .fichier-sinistre .section-lexique .demande-joindre .demande {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .fichier-sinistre .section-lexique .lexiques {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 450px) {
  .fichier-sinistre .infos {
    background-size: 150px;
    background-position: right 10% bottom 0;
    padding: 50px 0;
  }
  .fichier-sinistre .infos .infos--nav {
    display: none;
  }
  .fichier-sinistre .infos .infos--nav ul {
    margin-bottom: 40px;
  }
  .fichier-sinistre .infos .infos--slider-texte {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .fichier-sinistre .infos .infos--slider-texte .slider-container {
    width: 80%;
  }
  .fichier-sinistre .infos .infos--slider-texte .slider-container .arrow-slider {
    width: 24px;
    height: 24px;
  }
  .fichier-sinistre .infos .infos--slider-texte .slider-container .arrow-slider--prev {
    border-bottom: 3px solid #FFFFFF;
    border-left: 3px solid #FFFFFF;
    left: -24px;
  }
  .fichier-sinistre .infos .infos--slider-texte .slider-container .arrow-slider--next {
    border-bottom: 3px solid #FFFFFF;
    border-right: 3px solid #FFFFFF;
    right: -24px;
  }
  .fichier-sinistre .infos .infos--slider-texte .slider-container .slider {
    width: 100%;
  }
  .fichier-sinistre .infos .infos--slider-texte .slider-container .slider .slide-infos .loupe img {
    width: 45px;
  }
  .fichier-sinistre .infos .infos--slider-texte .infos-texte {
    width: 100%;
  }
  .fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc {
    margin-top: 0;
  }
  .fichier-sinistre .infos .infos--slider-texte .infos-texte .bloc .tableau-interactif-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .fichier-sinistre .faq {
    padding: 50px 0 150px;
  }
  .fichier-sinistre .faq .questions .question {
    margin-bottom: 10px;
  }
  .fichier-sinistre .faq .questions .question .collapse--head h4 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .fichier-sinistre .faq .questions .question .collapse--head .btn-collapse img {
    width: 10px;
  }
  .fichier-sinistre .faq .bottomImage {
    width: 70%;
  }
  .fichier-sinistre .section-lexique .demande-joindre {
    gap: 30px;
    padding: 30px;
  }
  .fichier-sinistre .section-lexique .demande-joindre .demande .btn {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.LandingPageStats {
  padding: 35px 0;
}
.LandingPageStats .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.LandingPageStats .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(70% - 20px);
  flex: 0 0 calc(70% - 20px);
  margin: 0 40px 0 0;
}
.LandingPageStats .main .--content .bloc-categorie {
  margin: 0 0 70px;
}
.LandingPageStats .main .--content .bloc-categorie h2 {
  color: #178e89;
  font-weight: 700;
  margin: 0 0 15px;
  line-height: normal;
  font-size: 36px;
  font-size: 2.25rem;
}
.LandingPageStats .main .--content .bloc-categorie .description-cat {
  padding: 25px;
  border-radius: 25px;
  background-color: #eeeeee;
  margin: 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.LandingPageStats .main .--content .bloc-categorie .description-cat img {
  margin: 0 30px 0 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.LandingPageStats .main .--content .bloc-categorie .liens {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.LandingPageStats .main .--content .bloc-categorie .liens a.btn {
  margin: 0 0 5px;
  -ms-flex-preferred-size: calc(50% - 2.5px);
  flex-basis: calc(50% - 2.5px);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 20px;
  padding: 15px;
  background-color: #f89720;
}
@media (max-width: 1024px) {
  .LandingPageStats .main {
    display: block;
  }
  .LandingPageStats .main .--content {
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .LandingPageStats .main .--content .bloc-categorie .description-cat {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .LandingPageStats .main .--content .bloc-categorie .description-cat img {
    margin: 0;
  }
  .LandingPageStats .main .--content .bloc-categorie .liens {
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .LandingPageStats .main .--content .bloc-categorie .liens a.btn {
    width: 100%;
  }
}

.PageStatistiques {
  padding: 35px 0;
}
.PageStatistiques .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.PageStatistiques .main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(70% - 20px);
  flex: 0 0 calc(70% - 20px);
  margin: 0 40px 0 0;
}
.PageStatistiques .main .--content .--text p {
  color: #666666;
  margin: 0 0 20px;
}
.PageStatistiques .main .--content .--text p.redBox {
  color: #FFFFFF;
  background-color: #ff0000;
  padding: 5px;
}
.PageStatistiques .main .--content .--text p.redBox a {
  color: #FFFF00;
  text-decoration: underline;
}
.PageStatistiques .main .--content .--text a {
  color: #fe7c1a;
  text-decoration: none;
}
.PageStatistiques .main .--content .--text h1 {
  color: #178e89;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: normal;
  text-transform: uppercase;
  font-size: 30px;
  font-size: 1.875rem;
}
.PageStatistiques .main .--content .--text h2 {
  color: #fe7c1a;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: normal;
}
.PageStatistiques .main .--content .--text h3 {
  color: #fe7c1a;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: normal;
}
.PageStatistiques .main .--content .--text h4 {
  color: #5d5d5d;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: normal;
}
.PageStatistiques .main .--content .--text ul {
  margin: 0 0 20px;
  padding: 0 0 0 40px;
}
.PageStatistiques .main .--content .--text ul li {
  margin: 0 0 15px;
  color: #666666;
  list-style: square;
  line-height: normal;
}
.PageStatistiques .main .--content .--text ul li::marker {
  color: #fe7c1a;
}
.PageStatistiques .main .--content .--text ul li ol {
  margin: 10px 0 0;
  padding: 0 0 0 40px;
  list-style: lower-latin;
}
.PageStatistiques .main .--content .--text ul li ol li {
  list-style: lower-latin;
  padding: 0 0 0 20px;
}
.PageStatistiques .main .--content .--text ul li ol li::marker {
  color: #666666;
}
.PageStatistiques .main .--content .--text ul.listeLien li {
  color: #666666;
  line-height: normal;
}
.PageStatistiques .main .--content .--text ul.listeLien li a {
  color: #333333;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .PageStatistiques .main .--content .--text ul.listeLien li a:hover {
    color: #178e89;
  }
}
.PageStatistiques .main .--content .--text ol {
  margin: 0 0 20px;
  padding: 0 0 0 40px;
}
.PageStatistiques .main .--content .--text ol li {
  margin: 0 0 15px;
  color: #666666;
  list-style: decimal;
  line-height: normal;
}
.PageStatistiques .main .--content .--text ol li ol {
  margin: 15px 0 0;
  padding: 0 0 0 40px;
}
.PageStatistiques .main .--content .--text ol li ol li {
  line-height: normal;
}
.PageStatistiques .main .--content .--text ol.listeAlpha li {
  list-style: lower-alpha;
  line-height: normal;
}
.PageStatistiques .main .--content .--text ol.listeAlphaMaj li {
  list-style: upper-alpha;
  line-height: normal;
}
.PageStatistiques .main .--content .--text hr {
  height: 1px;
  border-top: 1px solid #DAD8D4;
  border-bottom: none;
  border-right: none;
  border-left: none;
  margin: 0 0 20px;
}
.PageStatistiques .main .--content .--text a.btn {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #FFFFFF;
}
.PageStatistiques .main .--content .--text a.btn--secondary {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 10px 5px;
  display: inline-block;
  margin: 0 0 5px;
}
.PageStatistiques .main .--content .--text .center {
  text-align: center;
}
.PageStatistiques .main .--content .--text .container-stats {
  margin: 0 0 40px;
}
.PageStatistiques .main .--content .--text .container-stats.wRows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.PageStatistiques .main .--content .--text .container-stats.wRows .tableauStats {
  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.PageStatistiques .main .--content .--text .container-stats.wCols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.PageStatistiques .main .--content .--text .container-stats.wCols .tableauStats {
  -ms-flex-preferred-size: 22%;
  flex-basis: 22%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.PageStatistiques .main .--content .--text .container-stats.wCols .tableauStats:first-child {
  -ms-flex-preferred-size: 56%;
  flex-basis: 56%;
}
@media (max-width: 768px) {
  .PageStatistiques .main .--content .--text .container-stats.wCols .tableauStats:first-child {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .PageStatistiques .main .--content .--text .container-stats.wCols .tableauStats {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .PageStatistiques .main .--content .--text .container-stats.wRows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .PageStatistiques .main .--content .--text .container-stats.wRows {
    grid-template-columns: 1fr;
  }
}
.PageStatistiques .main .--content .--text .encadreStats {
  background-color: #eeeeee;
  border: 1px solid #666666;
  padding: 20px;
  margin: 0 0 20px;
}
.PageStatistiques .main .--content .--text .encadreStats p {
  margin: 0 0 15px;
}
.PageStatistiques .main .--content .--text .encadreStats p strong {
  color: #000000;
  font-weight: 600;
}
.PageStatistiques .main .--content .--text .encadreStats h4 {
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  color: #666666;
  margin: 0 0 15px;
}
@media (max-width: 1024px) {
  .PageStatistiques .main {
    display: block;
  }
  .PageStatistiques .main .--content {
    margin-right: 0;
  }
}

.PageTexte .main .--content .form.form-plainte {
  padding: 50px 0 30px;
  border-bottom: 3px solid #1a8d8a;
}
.PageTexte .main .--content .form.form-plainte h2 {
  background-color: #1a8d8a;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 32px;
  font-size: 2rem;
  margin: 0 0 30px;
  font-weight: 700;
}
.PageTexte .main .--content .form.form-plainte .form-text {
  padding: 0 20px;
  margin: 15px 0;
}
.PageTexte .main .--content .form.form-plainte .form--success {
  padding-left: 20px;
}
.PageTexte .main .--content .form.form-plainte .section {
  padding: 0 20px;
  margin: 0 0 25px;
}
.PageTexte .main .--content .form.form-plainte .section .field {
  margin: 0;
}
.PageTexte .main .--content .form.form-plainte .section .field label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #464343;
  font-weight: bold;
  margin: 0 0 10px;
  display: inline-block;
}
.PageTexte .main .--content .form.form-plainte .section .field input {
  margin: 0;
}
.PageTexte .main .--content .form.form-plainte .section .field input:focus-visible {
  outline: none;
}
.PageTexte .main .--content .form.form-plainte .section .field textarea {
  border-radius: 0;
  border-collapse: #DAD8D4;
  margin: 0;
  padding: 5px;
  min-height: 100px;
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .form.form-plainte .section .field textarea:focus-visible {
  outline: none;
}
.PageTexte .main .--content .form.form-plainte .section .field select {
  border-radius: 0;
  border-collapse: #DAD8D4;
  margin: 0;
  padding: 5px;
  background-size: 9px;
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .form.form-plainte .section .field select option {
  font-size: 16px;
  font-size: 1rem;
}
.PageTexte .main .--content .form.form-plainte .section .field input[type=text], .PageTexte .main .--content .form.form-plainte .section .field input[type=email] {
  border-radius: 0;
  padding: 5px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  border-collapse: #DAD8D4;
}
.PageTexte .main .--content .form.form-plainte .section .field.field--half:first-child {
  margin: 0 50px 0 0;
}
.PageTexte .main .--content .form.form-plainte .radio-container {
  margin: 0 0 25px;
  padding: 0 20px;
}
.PageTexte .main .--content .form.form-plainte .radio-container p {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 5px;
  color: #464343;
}
.PageTexte .main .--content .form.form-plainte .radio-container .blocRadio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.PageTexte .main .--content .form.form-plainte .radio-container .blocRadio input {
  margin: 0 10px 0 0;
}
.PageTexte .main .--content .form.form-plainte .radio-container .blocRadio label {
  color: #464343;
}
.PageTexte .main .--content .form.form-plainte .form--callToAction {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0 20px;
  margin: 70px 0 0;
}
.PageTexte .main .--content .form.form-plainte .form--callToAction .btn {
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 20px;
}

.liste-emplois {
  padding-top: 40px;
  padding-bottom: 40px;
}
.liste-emplois .md-wrapper .main #glow-in-the-cloud-requests {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}
.liste-emplois .md-wrapper .main #glow-in-the-cloud-requests .titre-section {
  color: #2c3e50;
  margin-bottom: 20px;
  color: #2bc2bd;
  text-align: center;
}
.liste-emplois .md-wrapper .main #glow-in-the-cloud-requests .chargement {
  text-align: center;
  padding: 20px;
}
.liste-emplois .md-wrapper .main #glow-in-the-cloud-requests .chargement .spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid #0FE5DE;
  border-radius: 50%;
  border-top-color: transparent;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
}
.liste-emplois .md-wrapper .main #glow-in-the-cloud-requests .message-erreur {
  color: #C30000;
  text-align: center;
  font-weight: bold;
}
.liste-emplois .md-wrapper .main #glow-in-the-cloud-requests .liste-postes {
  list-style-type: none;
  padding: 0;
}
.liste-emplois .md-wrapper .main #glow-in-the-cloud-requests .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 .md-wrapper .main #glow-in-the-cloud-requests .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 .md-wrapper .main #glow-in-the-cloud-requests .liste-postes .poste-item .nom-poste {
  color: #1a8d8a;
  display: block;
  font-weight: bold;
}
.liste-emplois .md-wrapper .main #glow-in-the-cloud-requests .bouton-retour {
  display: inline-block;
  margin-bottom: 20px;
  color: #1a8d8a;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-decoration: none;
}
.liste-emplois .md-wrapper .main #glow-in-the-cloud-requests .bouton-retour:hover {
  color: #aaa891;
}
.liste-emplois .md-wrapper .main #glow-in-the-cloud-requests .details-poste .titre-poste {
  color: #0FE5DE;
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
}
.liste-emplois .md-wrapper .main #glow-in-the-cloud-requests .details-poste .description-poste {
  line-height: 1.6;
  color: #212729;
}
.liste-emplois .md-wrapper .main #glow-in-the-cloud-requests .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);
  }
}
.PageTexteSolutionAccesDirect .main .--content .solution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}
.PageTexteSolutionAccesDirect .main .--content .solution-image {
  width: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.PageTexteSolutionAccesDirect .main .--content .solution-image img {
  display: block;
  max-width: 90px;
}
.PageTexteSolutionAccesDirect .main .--content .solution-content h4 {
  color: #FD7C1A;
  margin-bottom: 15px;
  font-weight: 700;
}
.PageTexteSolutionAccesDirect .main .--content .solution.first-solution {
  margin-top: 40px;
}
.PageTexteSolutionAccesDirect .main .--content .--text-sous-solutions {
  padding-top: 20px;
  border-top: 1px solid #DAD8D4;
}
.PageTexteSolutionAccesDirect .main .--content .--text-sous-solutions p:first-of-type {
  font-weight: 400;
}

.uikit-section {
  margin: 40px;
}
.uikit-section__title {
  padding: 40px;
  background-color: #ebebeb;
}
.uikit-section__content {
  background-color: #F8F8F8;
  padding: 40px;
}

.boilerplate {
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

/**************** HEADER MENU *******************/
header .menu-utilitaire {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
header .menu-utilitaire nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
header .menu-utilitaire nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
header .menu-utilitaire nav ul li {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 25px;
}
header .menu-utilitaire nav ul li:not(:last-child) {
  border-right: 1px solid #e5e5e5;
}
header .menu-utilitaire nav ul li a {
  color: #1c3251;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}
header .menu-utilitaire nav ul li a.langue {
  text-transform: capitalize;
}
@media (max-width: 600px) {
  header .menu-utilitaire nav ul li {
    padding: 2px 10px;
  }
}
header .menu-principal--nav {
  visibility: hidden;
}
header .menu-principal--nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  z-index: 21;
  background-color: #21262e;
  position: absolute;
  max-width: 400px;
  width: 100%;
  padding: 40px 60px 20px;
  top: 0;
  right: 0;
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
header .menu-principal--nav .container nav {
  margin: 20px 0;
  width: 100%;
  height: 100%;
}
header .menu-principal--nav .container nav #btnFermer {
  cursor: pointer;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  top: 15px;
  right: 40px;
  position: absolute;
  /* smartphones, touchscreens */
}
header .menu-principal--nav .container nav #btnFermer img {
  margin: 0 0 0 5px;
}
@media (pointer: fine) {
  header .menu-principal--nav .container nav #btnFermer:hover {
    color: #fe7c1a;
  }
}
header .menu-principal--nav .container nav ul {
  height: 100%;
}
header .menu-principal--nav .container nav ul li {
  border-bottom: 1px solid #32373e;
  padding: 0 0 20px 0;
  margin: 0 0 20px;
}
header .menu-principal--nav .container nav ul li.parent .lm {
  position: relative;
  padding: 0 40px 0 0;
  /* smartphones, touchscreens */
}
header .menu-principal--nav .container nav ul li.parent .lm::after {
  content: "";
  width: 20px;
  height: 15px;
  background: url(/Media/img/fleche_o.png) no-repeat center center;
  background-size: 15px auto;
  position: absolute;
  right: 10px;
  top: 3px;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@media (pointer: fine) {
  header .menu-principal--nav .container nav ul li.parent .lm:hover::after {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
}
header .menu-principal--nav .container nav ul li .lm {
  width: 100%;
  display: block;
  cursor: pointer;
}
header .menu-principal--nav .container nav ul li.open.parent .lm {
  color: #FFFFFF;
}
header .menu-principal--nav .container nav ul li.open.parent .lm::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}
header .menu-principal--nav .container nav ul li.open.parent .sous-menu {
  display: block;
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  visibility: visible;
  max-height: 600px;
  margin: 10px 0 0 15px;
  padding-left: 20px;
}
header .menu-principal--nav .container nav ul .sous-menu {
  max-height: 0;
  padding: 0 0 0 10px;
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
  visibility: hidden;
}
header .menu-principal--nav .container nav ul .sous-menu li {
  border: none;
  padding: 0;
  margin: 0 0 5px;
}
header.open .menu-principal--nav {
  visibility: visible;
}
header.open .menu-principal--nav .container {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

/********* FOOTER ************/
footer {
  color: #FFFFFF;
  background-color: #212729;
}
footer .footer-top {
  background-color: #FFFFFF;
  padding: 60px 0;
}
footer .footer-top--logo {
  -ms-flex-preferred-size: 66.6666666667%;
  flex-basis: 66.6666666667%;
}
footer .footer-top--logo .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .footer-top--logo .container a {
  margin: 0 100px 0 0;
}
footer .footer-top--logo .container a:last-child {
  margin: 0;
}
footer .footer-top--logo .container a img {
  max-height: 60px;
}
footer .footer-top--sociaux .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footer-top--sociaux .container p {
  font-size: 22px;
  font-size: 1.375rem;
  color: #21262e;
  font-weight: 900;
  margin: 0 20px 0 0;
}
footer .footer-top--sociaux a:not(:last-child) {
  margin-right: 15px;
}
footer .footer-top--sociaux svg {
  width: 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  /* smartphones, touchscreens */
}
footer .footer-top--sociaux svg path {
  -webkit-transition: 0.2s cubic-bezier(0.35, 0, 0, 1);
  transition: 0.2s cubic-bezier(0.35, 0, 0, 1);
}
@media (pointer: fine) {
  footer .footer-top--sociaux svg:hover path {
    fill: #21262e;
  }
}
footer .footer-top--utilitaire {
  margin: 55px auto 0;
}
footer .footer-top--utilitaire ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer .footer-top--utilitaire ul li {
  padding: 4px 10px 4px 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
footer .footer-top--utilitaire ul li a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
footer .footer-top--utilitaire ul li a.langue {
  text-transform: capitalize;
}
footer .footer-top--utilitaire ul li:not(:last-child) {
  margin-right: 10px;
  border-right: 1px solid #e5e5e5;
}
@media (max-width: 420px) {
  footer .footer-top--utilitaire ul li:not(:last-child) {
    border: none;
    margin: 0 0 15px;
  }
}
@media (max-width: 420px) {
  footer .footer-top--utilitaire ul li {
    text-align: center;
    border: none;
    margin: 0 0 15px;
    padding: 10px;
  }
}
@media (max-width: 420px) {
  footer .footer-top--utilitaire ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-right: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
  }
}
@media (max-width: 420px) {
  footer .footer-top--utilitaire {
    width: 90%;
  }
}
footer .footer-top--buttons {
  margin: 25px 0;
}
footer .footer-top--buttons .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 240px;
}
footer .footer-top--buttons .container .btn {
  padding: 15px 30px;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  font-weight: 900;
  background-color: #FFFFFF;
  color: #21262e;
  border: 1px solid #e5e5e5;
  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;
  border-radius: 10px;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  footer .footer-top--buttons .container .btn:hover {
    background-color: inherit;
    text-decoration: underline;
    text-decoration-color: #f89720;
  }
}
footer .footer-top--buttons .container .btn.actif {
  background-color: #21262e;
  color: #FFFFFF;
  border: 1px solid #21262e;
}
footer .footer-top--buttons .container .btn:not(:last-child) {
  margin-right: 10px;
}
footer .footer-bottom {
  background-color: #21262e;
  padding: 40px 0;
}
footer .footer-bottom .copyright {
  padding: 0;
}
footer .footer-bottom .copyright p {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
footer .footer-bottom .--menu {
  text-align: center;
}
@media (max-width: 1024px) {
  footer .footer-top {
    padding: 40px 0;
  }
  footer .footer-top .row {
    -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;
    gap: 60px;
  }
  footer .footer-top--buttons .container {
    padding: 0 120px;
  }
}
@media (max-width: 768px) {
  footer .footer-top--row .logo {
    max-width: 200px;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
  }
  footer .footer-top--row .sociaux svg {
    width: 20px;
  }
  footer .footer-top--logo .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  footer .footer-top--logo .container a {
    margin: 0;
  }
  footer .footer-top .row {
    gap: 40px;
  }
  footer .footer-top--buttons .container {
    padding: 0 40px;
  }
  footer .footer-top--utilitaire {
    margin: 40px auto 0;
  }
}
@media (max-width: 600px) {
  footer .footer-top--utilitaire {
    margin-bottom: 40px;
  }
  footer .footer-top--buttons .container {
    padding: 0;
  }
}
@media (max-width: 450px) {
  footer .footer-top--buttons .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  footer .footer-top--buttons .container a {
    width: 100%;
  }
  footer .footer-top--sociaux .container {
    -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;
    gap: 10px;
  }
}

/********* 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 .menu-bar {
  background-color: #FFFFFF;
  padding: 20px 0 0;
}
header .menu-utilitaire {
  margin-bottom: 20px;
  position: relative;
  z-index: 20;
}
header .menu-utilitaire nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
header .menu-utilitaire nav ul li {
  display: block;
}
header .menu-utilitaire nav ul li.recherche form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #eeeeee;
  border-radius: 45px;
  padding: 5px 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .menu-utilitaire nav ul li.recherche form button {
  background: none;
  padding: 0;
  height: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
header .menu-utilitaire nav ul li.recherche form button img {
  margin: 0;
  vertical-align: text-top;
}
header .menu-utilitaire nav ul li.recherche form input {
  font-size: 12px;
  font-size: 0.75rem;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font-weight: bold;
}
header .menu-utilitaire nav ul li.recherche form input:focus-visible {
  outline: none;
}
header .menu-utilitaire nav ul li.recherche form input::-webkit-input-placeholder {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}
header .menu-utilitaire nav ul li.recherche form input::-moz-placeholder {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}
header .menu-utilitaire nav ul li.recherche form input:-ms-input-placeholder {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}
header .menu-utilitaire nav ul li.recherche form input::-ms-input-placeholder {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}
header .menu-utilitaire nav ul li.recherche form input::placeholder {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}
header .menu-principal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  margin: 0 0 60px;
}
header .menu-principal.accueil {
  margin: 0;
}
header .menu-principal--logo {
  max-width: 375px;
  width: 100%;
  margin-right: auto;
  position: relative;
  z-index: 20;
}
header .menu-principal--logo img {
  -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);
}
@media (max-width: 420px) {
  header .menu-principal--logo {
    width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 0 20px;
  }
}
header .menu-principal--btn {
  z-index: 5;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* smartphones, touchscreens */
}
header .menu-principal--btn a {
  margin-right: 20px;
  color: #21262e;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
header .menu-principal--btn span {
  display: block;
  background-color: #f89720;
  height: 3px;
  width: 25px;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
header .menu-principal--btn span:not(:last-child) {
  margin-bottom: 6px;
}
@media (pointer: fine) {
  header .menu-principal--btn:hover a {
    color: #21262e;
  }
  header .menu-principal--btn:hover span {
    background-color: #f89720;
  }
  header .menu-principal--btn:hover span:not(:last-child) {
    margin-bottom: 3px;
  }
}
@media (max-width: 600px) {
  header .menu-principal--btn {
    margin: 0 0 0 40px;
  }
}
@media (max-width: 420px) {
  header .menu-principal--btn {
    margin: 0 0 10px;
  }
}
@media (max-width: 420px) {
  header .menu-principal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
header.open .menu-principal--btn {
  /* smartphones, touchscreens */
}
header.open .menu-principal--btn a {
  color: #FFFFFF;
}
header.open .menu-principal--btn span {
  background-color: #FFFFFF;
  margin: 0;
}
header.open .menu-principal--btn span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(3px) translateX(1px);
  transform: rotate(45deg) translateY(3px) translateX(1px);
  width: 27px;
}
header.open .menu-principal--btn span:nth-child(2) {
  width: 0;
  opacity: 0;
}
header.open .menu-principal--btn span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-3px) translateX(1px);
  transform: rotate(-45deg) translateY(-3px) translateX(1px);
  width: 27px;
}
@media (pointer: fine) {
  header.open .menu-principal--btn:hover a {
    color: #1c3251;
  }
  header.open .menu-principal--btn:hover span {
    background-color: #1c3251;
  }
}

.navigation-section .md-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.navigation-section .md-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 65%;
  width: 100%;
}
.navigation-section .md-wrapper ul li {
  cursor: pointer;
  padding: 18px 20px;
  color: #21262e;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-radius: 20px 20px 0 0;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  text-align: center;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .navigation-section .md-wrapper ul li:hover {
    text-decoration: underline;
    text-decoration-color: #fe7c1a;
  }
}
.navigation-section .md-wrapper ul li.actif {
  color: #FFFFFF;
  background-color: #21262e;
  border: none;
  position: relative;
  z-index: -1;
}
.navigation-section .md-wrapper ul li.actif::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-bottom: 9px solid #FFFFFF;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 1px solid transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.navigation-section .md-wrapper ul li:not(:last-child) {
  margin: 0 40px 0 0;
}
@media (max-width: 1280px) {
  .navigation-section .md-wrapper ul li {
    padding: 15px 40px;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media (max-width: 420px) {
  .navigation-section .md-wrapper ul li {
    padding: 15px 20px;
  }
}
@media (max-width: 1280px) {
  .navigation-section .md-wrapper ul {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    max-width: 100%;
  }
}
@media (max-width: 1280px) {
  .navigation-section .md-wrapper {
    padding: 0 140px;
  }
}
@media (max-width: 960px) {
  .navigation-section .md-wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 1280px) {
  .navigation-section {
    margin: 15px 0 0;
  }
}
@media (max-width: 600px) {
  .navigation-section .md-wrapper ul li {
    font-size: 16px;
    font-size: 1rem;
  }
  .navigation-section .md-wrapper ul li:not(:last-child) {
    margin: 0 10px 0 0;
  }
}

.banner {
  position: relative;
  z-index: -1;
}
.banner.quiz .wrapper .bloc {
  min-height: 300px;
}
.banner.hidden {
  display: none;
}
.banner.accueil {
  margin: 0 0 120px;
  padding: 60px 0 0;
}
.banner.accueil::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(50% + 30px);
  background: #21262e;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.banner.accueil .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.banner.accueil .wrapper .bloc {
  -ms-flex-preferred-size: 66.6666666667%;
  flex-basis: 66.6666666667%;
  min-height: 465px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.banner.accueil .wrapper .bloc .texte {
  margin: 0 0 75px;
}
.banner.accueil .wrapper .bloc .texte p {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 3px;
  line-height: 2.8;
}
.banner.accueil .wrapper .bloc .texte p span.blocCyan {
  padding: 10px 30px;
  background-color: #2bc2bd;
}
@media (max-width: 960px) {
  .banner.accueil .wrapper .bloc .texte p span.blocCyan {
    padding: 10px;
  }
}
.banner.accueil .wrapper .bloc .texte p span.blocCyan:last-child {
  padding: 10px 30px 10px 15px;
}
@media (max-width: 960px) {
  .banner.accueil .wrapper .bloc .texte p span.blocCyan:last-child {
    padding: 10px;
  }
}
.banner.accueil .wrapper .bloc .texte p span.blocCyanDark {
  background-color: #178e89;
  padding: 10px 15px;
  margin: 0 0 0 15px;
}
@media (max-width: 1280px) {
  .banner.accueil .wrapper .bloc .texte p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media (max-width: 960px) {
  .banner.accueil .wrapper .bloc .texte p {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.banner.accueil .wrapper .call-to-action {
  -ms-flex-preferred-size: 33.3333333333%;
  flex-basis: 33.3333333333%;
  background: url("/media/120622/bg_vedette.png"), -webkit-gradient(linear, left top, left bottom, from(#f89800), to(#e57200));
  background: url("/media/120622/bg_vedette.png"), linear-gradient(to bottom, #f89800 0%, #e57200 100%);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px;
  z-index: 5;
}
.banner.accueil .wrapper .call-to-action .texte img {
  margin: 0 0 20px;
}
.banner.accueil .wrapper .call-to-action .texte h2 {
  font-size: 30px;
  font-size: 1.875rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0 0 10px;
}
.banner.accueil .wrapper .call-to-action .texte p {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
  color: #FFFFFF;
  font-weight: 700;
}
.banner.accueil .wrapper .call-to-action .texte p:last-child {
  margin: 0;
}
.banner.accueil .wrapper .call-to-action .texte p .btn {
  margin: 20px 0 0;
  color: #f89720;
  border-radius: 0;
  background-color: #FFFFFF;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 1600px) {
  .banner.accueil .wrapper {
    padding: 0 40px;
  }
}
.banner .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.banner .wrapper .bloc {
  width: 100%;
  min-height: 375px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  background-position: center bottom;
}
.banner .wrapper .bloc .md-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0;
}
.banner .wrapper .bloc .md-wrapper .texte {
  max-width: 45%;
  width: 100%;
}
.banner .wrapper .bloc .md-wrapper .texte h1 {
  color: #178e89;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
}
.banner .wrapper .bloc .md-wrapper .texte h1.w-Blanc {
  color: #FFFFFF;
}
.banner .wrapper .bloc .md-wrapper .texte h2 {
  color: #212729;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 400;
  margin: 0 0 25px;
}
@media (max-width: 1024px) {
  .banner .wrapper .bloc {
    min-height: 300px;
  }
}
@media (max-width: 768px) {
  .banner .wrapper .bloc {
    min-height: 250px;
  }
}
@media (max-width: 1280px) {
  .banner .wrapper {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .banner.accueil .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .banner.accueil .wrapper .bloc {
    min-height: 240px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .banner.accueil .wrapper .bloc .texte {
    margin: 0;
  }
  .banner.accueil .wrapper .bloc .texte p {
    font-size: 16px;
    font-size: 1rem;
  }
  .banner.accueil .wrapper .bloc .texte p span.blocCyanDark {
    margin: 0;
  }
  .banner.accueil .wrapper .call-to-action {
    padding: 20px;
  }
  .banner.accueil .wrapper .call-to-action .texte h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .banner.accueil .wrapper .call-to-action .texte p {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .banner .wrapper {
    padding: 0;
  }
  .banner .wrapper .bloc .md-wrapper {
    padding: 10px 40px;
    background-color: rgba(255, 255, 255, 0.5333333333);
  }
  .banner .wrapper .bloc .md-wrapper .texte {
    max-width: 100%;
  }
  .banner .wrapper .bloc .md-wrapper .texte h1 {
    color: #178e89;
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 700;
  }
  .banner .wrapper .bloc .md-wrapper .texte h2 {
    color: #212729;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 25px;
  }
}
@media (max-width: 600px) {
  .banner.accueil .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 20px;
  }
  .banner.accueil .wrapper .bloc {
    min-height: 280px;
  }
  .banner.accueil .wrapper .bloc .texte p {
    background-color: #2bc2bd;
  }
  .banner.accueil .wrapper .bloc .texte p span {
    display: inline-block;
    line-height: 1.5;
  }
  .banner.accueil .wrapper .bloc .texte p span.blocCyan {
    padding: 10px;
  }
  .banner.accueil .wrapper .bloc .texte p span.blocCyanDark {
    margin: 0;
    padding: 10px;
    display: inline;
  }
  .banner.accueil .wrapper .call-to-action {
    padding: 20px;
  }
  .banner.accueil .wrapper .call-to-action .texte h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .banner.accueil .wrapper .call-to-action .texte p {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .banner .wrapper {
    padding: 0;
  }
  .banner .wrapper .bloc .md-wrapper {
    padding: 10px 20px;
  }
}

.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: #e5e5e5;
}
.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: #333333;
}

.breadcrumb {
  background-color: #eeeeee;
  padding: 30px;
  -webkit-box-shadow: inset 0 13px 5px -12px #DAD8D4;
  box-shadow: inset 0 13px 5px -12px #DAD8D4;
  border-top: 1px solid #DAD8D4;
}
.breadcrumb .md-wrapper ul li {
  padding-right: 25px;
  display: inline;
  font-size: 14px;
  font-size: 0.875rem;
  color: #666666;
}
.breadcrumb .md-wrapper ul li a {
  color: #666666;
  text-decoration: none;
  color: #666666;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .breadcrumb .md-wrapper ul li a:hover {
    color: #178e89;
  }
}
.breadcrumb .md-wrapper ul li:not(:last-child) {
  content: "";
  margin: 0 10px 0 0;
  background-image: url("/Media/img/fleche_v.png");
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: right 55%;
}
@media (max-width: 1280px) {
  .breadcrumb .md-wrapper {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .breadcrumb {
    padding: 20px;
  }
}

.--sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(30% - 20px);
  flex: 0 0 calc(30% - 20px);
}
.--sidebar .bloc-sidebar {
  margin: 0 0 10px;
}
.--sidebar .bloc-sidebar.wImage img {
  width: 100%;
}
@media (max-width: 1024px) {
  .--sidebar .bloc-sidebar.wImage img {
    width: auto;
  }
}
.--sidebar .bloc-sidebar.wColor {
  padding: 20px;
}
.--sidebar .bloc-sidebar.wColor h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0 0 15px;
}
.--sidebar .bloc-sidebar.wColor p {
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 15px;
}
.--sidebar .bloc-sidebar.wColor p:last-child {
  margin: 0;
}
.--sidebar .bloc-sidebar.wColor p a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.--sidebar .bloc-sidebar.wColor ul {
  padding: 0 0 0 20px;
}
.--sidebar .bloc-sidebar.wColor ul li {
  list-style: disc;
  margin: 0 0 15px;
}
.--sidebar .bloc-sidebar.wColor ul li a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.--sidebar .bloc-sidebar.wColor ul.listeDocuments {
  padding: 0 0 0 20px;
}
.--sidebar .bloc-sidebar.wColor ul.listeDocuments li {
  list-style-image: url(/Media/img/bullet_g.png);
  margin: 0 0 10px;
  /* smartphones, touchscreens */
}
.--sidebar .bloc-sidebar.wColor ul.listeDocuments li a {
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333333;
}
@media (pointer: fine) {
  .--sidebar .bloc-sidebar.wColor ul.listeDocuments li:hover {
    list-style-image: url(/Media/img/bullet_o.png);
  }
  .--sidebar .bloc-sidebar.wColor ul.listeDocuments li:hover a {
    color: #fe7c1a;
  }
}
.--sidebar .bloc-sidebar.wColor span.txtOrange {
  color: #fe7c1a;
}
.--sidebar .bloc-sidebar.wColor.hCyan {
  background-color: #1a8d8a;
  color: #FFFFFF;
}
.--sidebar .bloc-sidebar.wColor.hSage {
  background-color: #aaa891;
  color: #FFFFFF;
}
.--sidebar .bloc-sidebar.wColor.hGray {
  background-color: #eeeeee;
}
.--sidebar .bloc-sidebar.wCTA a {
  text-decoration: none;
}
.--sidebar .bloc-sidebar.wCTA.Sinistreauto {
  padding: 45px 20px;
  background-color: #eeeeee;
  background-repeat: no-repeat;
  background-position: 95% 80%;
  background-image: url(/Media/img/img_char_vert.png);
  background-size: 140px auto;
}
.--sidebar .bloc-sidebar.wCTA.Sinistreauto p {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  color: #178e89;
  text-transform: uppercase;
  line-height: 1;
}
.--sidebar .bloc-sidebar.wCTA.Sinistreauto p strong {
  clear: both;
  display: block;
}
.--sidebar .bloc-sidebar.wCTA.Sinistreauto p span.txtOrange {
  color: #fe7c1a;
  font-weight: 800;
  text-transform: none;
}
@media (max-width: 1280px) {
  .--sidebar .bloc-sidebar.wCTA.Sinistreauto {
    background-size: 100px auto;
  }
}
@media (max-width: 1024px) {
  .--sidebar .bloc-sidebar.wCTA.Sinistreauto {
    background-size: 140px auto;
  }
}
@media (max-width: 420px) {
  .--sidebar .bloc-sidebar.wCTA.Sinistreauto {
    background-size: 100px auto;
  }
}
.--sidebar .bloc-sidebar.wCTA.Dossiersinistres {
  background-color: #eeeeee;
  padding: 40px 20px;
  background-repeat: no-repeat;
  background-position: 95% center;
  background-image: url(/Media/img/img_dossier.png);
  background-size: 170px auto;
}
.--sidebar .bloc-sidebar.wCTA.Dossiersinistres p {
  color: #178e89;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 17px;
  font-size: 1.0625rem;
  max-width: 40%;
  line-height: 1;
}
.--sidebar .bloc-sidebar.wCTA.Dossiersinistres p strong {
  text-transform: none;
  font-size: 33px;
  font-size: 2.0625rem;
}
@media (max-width: 1280px) {
  .--sidebar .bloc-sidebar.wCTA.Dossiersinistres {
    background-size: 130px auto;
  }
}
@media (max-width: 1024px) {
  .--sidebar .bloc-sidebar.wCTA.Dossiersinistres {
    background-size: 170px auto;
  }
}
@media (max-width: 420px) {
  .--sidebar .bloc-sidebar.wCTA.Dossiersinistres {
    background-size: 130px auto;
  }
}
.--sidebar .bloc-sidebar.wCTA.clicSequr {
  background-color: #fe7c1a;
  background-image: url(/Media/img/img_clicsequr.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  padding: 40px 20px 90px 20px;
}
.--sidebar .bloc-sidebar.wCTA.clicSequr p {
  color: #FFFFFF;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  margin: 0 0 20px;
}
.--sidebar .bloc-sidebar.bloc-lien {
  padding: 40px 20px;
  background-color: #fe7c1a;
  color: #FFFFFF;
}
.--sidebar .bloc-sidebar.bloc-lien a {
  font-size: 20px;
  font-size: 1.25rem;
  text-decoration: none;
}
.--sidebar .bloc-sidebar.menu {
  border: 2px solid #178e89;
}
.--sidebar .bloc-sidebar.menu ul li {
  margin: 0 0 5px;
  /* smartphones, touchscreens */
}
.--sidebar .bloc-sidebar.menu ul li a {
  color: #178e89;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
.--sidebar .bloc-sidebar.menu ul li:last-child {
  margin: 0;
}
@media (pointer: fine) {
  .--sidebar .bloc-sidebar.menu ul li:hover a {
    background-color: #e5e5e5;
  }
}
.--sidebar .bloc-sidebar.menu ul li.actif a {
  color: #FFFFFF;
  background-color: #178e89;
}
.--sidebar .bloc-sidebar.menu ul li.actif ul li a {
  color: #178e89;
  background: none;
  font-weight: normal;
}
.--sidebar .bloc-sidebar.menu ul li ul {
  padding: 5px 0 5px 30px;
  border-bottom: 2px solid #eeeeee;
}
.--sidebar .bloc-sidebar.menu ul li ul li {
  padding: 5px 0;
  list-style-type: ">";
  /* smartphones, touchscreens */
}
.--sidebar .bloc-sidebar.menu ul li ul li::marker {
  color: #178e89;
  font-size: 12px;
  font-size: 0.75rem;
}
@media (pointer: fine) {
  .--sidebar .bloc-sidebar.menu ul li ul li:hover a {
    text-decoration: underline;
  }
}
.--sidebar .bloc-sidebar.menu ul li ul li.actif a {
  color: #178e89;
  background: none;
  text-decoration: underline;
  font-weight: normal;
}
.--sidebar .bloc-sidebar.menu ul li ul li a {
  padding: 0 0 0 5px;
}

.cookies {
  position: fixed;
  bottom: 0;
  background-color: #e5e5e5;
  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 .--content .--text .exergue {
  max-width: 40%;
  margin: 0 0 20px;
  padding: 20px;
}
.PageTexte .--content .--text .exergue.Droite {
  float: right;
  margin: 0 0 20px 20px;
}
.PageTexte .--content .--text .exergue.Gauche {
  float: left;
  margin: 0 20px 20px 0;
}
.PageTexte .--content .--text .exergue .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.PageTexte .--content .--text .exergue .content .texte h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fe7c1a;
  line-height: normal;
}
.PageTexte .--content .--text .exergue .content .icone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}
.PageTexte .--content .--text .exergue .content .icone img {
  width: 100%;
  padding: 0 15px 0 0;
}
@media (max-width: 600px) {
  .PageTexte .--content .--text .exergue .content .icone img {
    padding: 0;
    margin: 0 0 10px;
  }
}
@media (max-width: 1024px) {
  .PageTexte .--content .--text .exergue {
    max-width: 100%;
  }
  .PageTexte .--content .--text .exergue.Droite {
    float: none;
    margin: 0;
  }
  .PageTexte .--content .--text .exergue.Gauche {
    float: none;
    margin: 0;
  }
  .PageTexte .--content .--text .exergue .content .icone {
    max-width: 100px;
  }
}
@media (max-width: 600px) {
  .PageTexte .--content .--text .exergue .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.PageTexte .--content .--text .encadre {
  background-color: #eeeeee;
  clear: both;
  margin: 0 0 20px;
  padding: 40px 20px 20px;
  border-left: 4px solid #178e89;
}
.PageTexte .--content .--text .encadre.Orange {
  border-left: 4px solid #f89720;
}
.PageTexte .--content .--text .encadre.Orange .content h3 {
  color: #f89720;
}
.PageTexte .--content .--text .encadre.Orange .content p:last-child {
  margin: 0;
}
.PageTexte .--content .--text .encadre.Orange .content p a {
  color: #f89720;
}
.PageTexte .--content .--text .encadre.Orange .content p a.btn--secondary {
  color: #FFFFFF;
}
.PageTexte .--content .--text .encadre.Orange .content ul li::marker {
  color: #178e89;
}
.PageTexte .--content .--text .encadre.Orange .content ul li a {
  color: #f89720;
}
.PageTexte .--content .--text .encadre .content h3 {
  color: #178e89;
}
.PageTexte .--content .--text .encadre .content p {
  margin: 0 0 15px;
}
.PageTexte .--content .--text .encadre .content p:first-of-type {
  font-weight: normal;
}
.PageTexte .--content .--text .encadre .content p:last-child {
  margin: 0;
}
.PageTexte .--content .--text .encadre .content p a {
  color: #178e89;
}
.PageTexte .--content .--text .encadre .content p a.btn--secondary {
  color: #FFFFFF;
}
.PageTexte .--content .--text .encadre .content ul li a {
  color: #178e89;
}
.PageTexte .--content .--text .encadre .content img {
  width: 100%;
}
.PageTexte .--content .--text .encadre.wSteps {
  padding: 0;
}
.PageTexte .--content .--text .encadre.wSteps .--texte {
  padding: 20px;
}
.PageTexte .--content .--text .encadre.wSteps .steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.PageTexte .--content .--text .encadre.wSteps .steps .step {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#f5f5f5));
  background: linear-gradient(to bottom, #fcfcfc 0%, #f5f5f5 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.PageTexte .--content .--text .encadre.wSteps .steps .step:not(:last-child) {
  border-right: 1px solid #e5e5e5;
}
.PageTexte .--content .--text .encadre.wSteps .steps .step:not(:last-child) .number::after {
  content: "";
  background: url("/Media/img/fleche-verte.png") no-repeat center center;
  background-size: auto;
  background-size: 100% auto;
  width: 17px;
  height: 50px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  right: -8px;
  z-index: 666;
}
@media (max-width: 768px) {
  .PageTexte .--content .--text .encadre.wSteps .steps .step:not(:last-child) .number::after {
    display: none;
  }
}
.PageTexte .--content .--text .encadre.wSteps .steps .step .number {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}
.PageTexte .--content .--text .encadre.wSteps .steps .step .number h3 {
  color: #21262e;
  font-size: 43px;
  font-size: 2.6875rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
.PageTexte .--content .--text .encadre.wSteps .steps .step .number::before {
  content: "";
  z-index: 666;
  border-left: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  position: absolute;
  left: 50%;
  bottom: -15px;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  -webkit-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
  background: linear-gradient(45deg, rgb(245, 245, 245) 0%, rgb(255, 255, 255) 45%, rgb(255, 255, 255) 54%, rgba(255, 255, 255, 0) 70%);
}
.PageTexte .--content .--text .encadre.wSteps .steps .step .texte {
  padding: 35px 15px 15px;
  margin: 0 0 15px;
}
.PageTexte .--content .--text .encadre.wSteps .steps .step .texte p {
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}
.PageTexte .--content .--text .encadre.wSteps .steps .step .texte p a {
  text-decoration: underline;
  color: #fe7c1a;
}
.PageTexte .--content .--text .encadre.wSteps .steps .step .texte ol {
  font-size: 12px;
  font-size: 0.75rem;
  color: #666666;
  text-align: center;
}
.PageTexte .--content .--text .encadre.wSteps .steps .step .texte ol li {
  list-style: decimal inside;
}
.PageTexte .--content .--text .encadre.wSteps .steps .step .texte ol li a {
  text-decoration: underline;
  color: #fe7c1a;
}
.PageTexte .--content .--text .encadre.wSteps .steps .step .image {
  text-align: center;
  padding: 0 0 20px;
  margin: auto 0 0 0;
}
.PageTexte .--content .--text .encadre.wSteps .steps .step .image img {
  width: auto;
}
@media (max-width: 768px) {
  .PageTexte .--content .--text .encadre.wSteps .steps .step {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 420px) {
  .PageTexte .--content .--text .encadre.wSteps .steps .step {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .PageTexte .--content .--text .encadre.wSteps .steps {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .PageTexte .--content .--text .encadre .collapsed ul {
    padding-left: 20px;
  }
}
.PageTexte .--content .--text .collapse {
  clear: both;
}
.PageTexte .--content .--text .collapse--head h3 {
  color: #178e89;
  margin: 0;
  font-size: 20px;
  font-size: 1.25rem;
}
.PageTexte .--content .--text .collapse--body .content p:first-of-type {
  font-weight: normal;
}
@media (max-width: 600px) {
  .PageTexte .--content .--text .collapse--head h3 {
    font-size: 18px;
    font-size: 1.125rem;
    padding-right: 30px;
  }
}
.PageTexte .--content .--text .grille-faits {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.PageTexte .--content .--text .grille-faits .fait {
  text-align: center;
  padding: 20px 40px;
}
.PageTexte .--content .--text .grille-faits .fait-titre {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 300 !important;
  text-transform: uppercase;
  min-height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #1a8d8a;
  margin: 0 0 5px;
}
.PageTexte .--content .--text .grille-faits .fait img {
  width: auto;
  margin: 0 0 5px;
}
.PageTexte .--content .--text .grille-faits .fait-chiffre {
  color: #f89720;
  font-size: 32px;
  font-size: 2rem;
  white-space: nowrap;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.PageTexte .--content .--text .grille-faits .fait-sousTitre {
  text-transform: uppercase;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .PageTexte .--content .--text .grille-faits {
    grid-template-columns: 1fr 1fr;
  }
  .PageTexte .--content .--text .grille-faits .fait {
    padding: 30px;
  }
  .PageTexte .--content .--text .grille-faits .fait-titre {
    min-height: 100px;
  }
}
@media (max-width: 768px) {
  .PageTexte .--content .--text .grille-faits {
    grid-template-columns: 1fr;
  }
  .PageTexte .--content .--text .grille-faits .fait-titre {
    min-height: 0;
  }
}
.PageTexte .--content .--text .video-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.PageTexte .--content .--text .video-description .video {
  width: 40%;
}
.PageTexte .--content .--text .video-description .video iframe {
  height: 200px;
  width: 100%;
}
.PageTexte .--content .--text .video-description .description {
  border-top: 1px solid #e5e5e5;
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.PageTexte .--content .--text .video-description .description .titre {
  font-weight: 700 !important;
}
@media (max-width: 1024px) {
  .PageTexte .--content .--text .video-description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .PageTexte .--content .--text .video-description .video {
    width: 70%;
  }
  .PageTexte .--content .--text .video-description .description {
    width: 100%;
    padding: 20px 0 0;
  }
}
@media (max-width: 600px) {
  .PageTexte .--content .--text .video-description {
    margin-bottom: 20px;
  }
  .PageTexte .--content .--text .video-description .video {
    width: 100%;
  }
}
.PageTexte .--content .--text .tableau-container {
  margin: 40px 0;
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-top: 2px solid #1a8d8a;
  border-bottom: 2px solid #1a8d8a;
  margin-bottom: 20px;
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif-titles h3 {
  margin: 20px 0 0;
  color: #1a8d8a;
  font-size: 20px;
  font-size: 1.25rem;
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif-titles h3:first-child {
  width: 30%;
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif-titles h3:nth-child(2) {
  width: 30%;
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif-titles h3:nth-child(3) {
  width: 40%;
}
@media (max-width: 600px) {
  .PageTexte .--content .--text .tableau-container .tableau-descriptif-titles h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media (max-width: 420px) {
  .PageTexte .--content .--text .tableau-container .tableau-descriptif-titles {
    display: none;
  }
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-nav {
  width: 30%;
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-nav ul {
  padding-left: 0;
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-nav ul li {
  padding: 10px 20px;
  cursor: pointer;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #1a8d8a;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-nav ul li:hover {
    background-color: #e5e5e5;
  }
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-nav ul li.actif {
  background-color: #1a8d8a;
  color: #FFFFFF;
}
@media (max-width: 420px) {
  .PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-nav {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-content {
  width: 70%;
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-content .content-container {
  background-color: #1a8d8a;
  padding: 15px;
  min-height: 330px;
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-content .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  opacity: 0;
  max-height: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -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);
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
  -webkit-transform-origin: top;
  transform-origin: top;
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-content .content p {
  font-weight: 400;
  color: #FFFFFF;
  margin: 10px 0;
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-content .content p:first-child {
  width: 45%;
}
@media (max-width: 420px) {
  .PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-content .content p:first-child {
    width: 100%;
  }
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-content .content p:nth-child(2) {
  width: 55%;
}
@media (max-width: 420px) {
  .PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-content .content p:nth-child(2) {
    width: 100%;
  }
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-content .content.actif {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  max-height: 500px;
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
  -webkit-transform-origin: top;
  transform-origin: top;
}
@media (max-width: 420px) {
  .PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-content .content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 420px) {
  .PageTexte .--content .--text .tableau-container .tableau-descriptif .tableau-content {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.PageTexte .--content .--text .tableau-container .tableau-descriptif .content-title {
  display: none;
  font-weight: 700;
  margin-bottom: 5px;
}
@media (max-width: 420px) {
  .PageTexte .--content .--text .tableau-container .tableau-descriptif {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.PageTexte .--content .--text .liens {
  margin: 0 0 40px;
}
.PageTexte .--content .--text .liens .lien h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.PageTexte .--content .--text .liens .lien h3 .link-number {
  padding: 5px 0;
  background-color: #666;
  color: #FFFFFF;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.PageTexte .--content .--text .liens .lien h3 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 10px;
  background: linear-gradient(45deg, rgb(252, 235, 225) 3%, rgba(255, 255, 255, 0) 64%);
}
.PageTexte .--content .--text .liens .lien h3.alternatif {
  border-left: 4px solid #1a8d8a;
  /* smartphones, touchscreens */
}
.PageTexte .--content .--text .liens .lien h3.alternatif .link-number {
  background-color: #1a8d8a;
}
.PageTexte .--content .--text .liens .lien h3.alternatif a {
  background: none;
  background-color: #eeeeee;
  width: 100%;
  color: #333333;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  padding: 10px;
}
@media (pointer: fine) {
  .PageTexte .--content .--text .liens .lien h3.alternatif:hover a {
    color: #FFFFFF;
    background-color: #1a8d8a;
  }
}
@media (max-width: 600px) {
  .PageTexte .--content .--text {
    margin-bottom: 40px;
  }
}

.AssuranceAutoEnBref .--content .--text .btn .tooltip.hidden {
  display: none;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main .--content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(70% - 20px);
  flex: 0 0 calc(70% - 20px);
  margin: 0 40px 0 0;
}
.main .--content .block-Cid {
  padding: 20px;
  border: 1px solid #eeeeee;
  -webkit-box-shadow: 0px 0px 13px #e5e5e5;
  box-shadow: 0px 0px 13px #e5e5e5;
  margin: 0 0 25px;
}
.main .--content .block-Cid .etape-cid {
  background-color: #3f3f3f;
  padding: 35px 80px 15px 15px;
  margin: 0 0 20px;
}
.main .--content .block-Cid .etape-cid ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.main .--content .block-Cid .etape-cid ul li {
  color: #FFFFFF;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
}
.main .--content .block-Cid .etape-cid ul li.active {
  color: #fe7c1a;
}
@media (max-width: 420px) {
  .main .--content .block-Cid .etape-cid {
    padding: 35px 15px 15px;
  }
}
.main .--content .block-Cid .etape-header {
  background-color: #1a8d8a;
  padding: 15px;
  margin: 0 0 40px;
}
.main .--content .block-Cid .etape-header h3 {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: normal;
}
.main .--content .block-Cid .etape-header .-image {
  -ms-flex-preferred-size: 33.3333333333%;
  flex-basis: 33.3333333333%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.main .--content .block-Cid .etape-header .-image img {
  margin: 0 0 15px;
}
.main .--content .block-Cid .etape-header .-image p {
  color: #FFFFFF;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 10px;
  background-color: #3f3f3f;
}
@media (max-width: 600px) {
  .main .--content .block-Cid .etape-header .-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.main .--content .block-Cid .etape-header .-texte {
  -ms-flex-preferred-size: 66.6666666667%;
  flex-basis: 66.6666666667%;
  padding: 20px 20px 0;
}
.main .--content .block-Cid .etape-header .-texte h3 {
  margin: 0 0 20px;
}
.main .--content .block-Cid .etape-header .-texte p {
  color: #FFFFFF;
  margin: 0 0 10px;
}
.main .--content .block-Cid .etape-header .-texte ul {
  padding: 0 0 0 20px;
}
.main .--content .block-Cid .etape-header .-texte ul li {
  color: #FFFFFF;
  margin: 0 0 5px;
  list-style-type: "- ";
}
@media (max-width: 600px) {
  .main .--content .block-Cid .etape-header .-texte {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
@media (max-width: 600px) {
  .main .--content .block-Cid .etape-header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.main .--content .block-Cid .bloc-etape .etape-1 .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 20px;
}
.main .--content .block-Cid .bloc-etape .etape-1 .question .radioGroup {
  margin: 0 15px 0 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.main .--content .block-Cid .bloc-etape .etape-1 .question .radioGroup input {
  margin: 0 5px;
}
.main .--content .block-Cid .bloc-etape .etape-1 .question .radioGroup label {
  color: #666666;
}
.main .--content .block-Cid .bloc-etape .etape-1 .question h4 {
  color: #666666;
  font-weight: bold;
  font-size: 22px;
  font-size: 1.375rem;
}
@media (max-width: 420px) {
  .main .--content .block-Cid .bloc-etape .etape-1 .question h4 {
    margin: 0 0 20px;
  }
}
.main .--content .block-Cid .bloc-etape .etape-1 .question span.tooltip {
  color: #fe7c1a;
  position: relative;
  cursor: pointer;
  /* smartphones, touchscreens */
}
.main .--content .block-Cid .bloc-etape .etape-1 .question span.tooltip .tooltip-inner {
  background-color: #1a8d8a;
  color: #FFFFFF;
  padding: 20px 15px;
  width: 300px;
  border-radius: 10px;
  position: absolute;
  left: 110%;
  visibility: none;
  z-index: 55;
  -webkit-transform: translateY(calc(-50% - 11px));
  transform: translateY(calc(-50% - 11px));
  opacity: 0;
  -webkit-transition: 0.3s opacity cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s opacity cubic-bezier(0.58, 0, 0.32, 1);
  pointer-events: none;
}
.main .--content .block-Cid .bloc-etape .etape-1 .question span.tooltip .tooltip-inner p {
  margin: 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}
.main .--content .block-Cid .bloc-etape .etape-1 .question span.tooltip .tooltip-inner ol {
  counter-reset: list;
  padding: 0 0 0 20px;
}
.main .--content .block-Cid .bloc-etape .etape-1 .question span.tooltip .tooltip-inner ol li {
  margin: 0 0 10px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
  counter-increment: list;
}
.main .--content .block-Cid .bloc-etape .etape-1 .question span.tooltip .tooltip-inner ol li::marker {
  content: counter(list, lower-alpha) ") ";
}
.main .--content .block-Cid .bloc-etape .etape-1 .question span.tooltip .tooltip-inner ol li:last-child {
  margin: 0;
}
.main .--content .block-Cid .bloc-etape .etape-1 .question span.tooltip .tooltip-inner:before {
  border: solid;
  border-color: transparent #1a8d8a transparent transparent;
  border-width: 8px;
  content: "";
  top: calc(50% - 8px);
  right: 100%;
  position: absolute;
}
@media (max-width: 1024px) {
  .main .--content .block-Cid .bloc-etape .etape-1 .question span.tooltip .tooltip-inner:before {
    top: -16px;
    right: calc(50% - 8px);
    border-color: transparent transparent #1a8d8a transparent;
  }
}
@media (max-width: 1024px) {
  .main .--content .block-Cid .bloc-etape .etape-1 .question span.tooltip .tooltip-inner {
    top: 110%;
    -webkit-transform: translateX(calc(-50% - 11px));
    transform: translateX(calc(-50% - 11px));
    left: calc(50% + 11px);
  }
}
@media (max-width: 768px) {
  .main .--content .block-Cid .bloc-etape .etape-1 .question span.tooltip .tooltip-inner {
    width: 200px;
  }
}
@media (pointer: fine) {
  .main .--content .block-Cid .bloc-etape .etape-1 .question span.tooltip:hover .tooltip-inner {
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 420px) {
  .main .--content .block-Cid .bloc-etape .etape-1 .question {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.main .--content .block-Cid .bloc-etape .etape-1-negative .-text {
  margin: 0 0 40px;
}
.main .--content .block-Cid .bloc-etape .etape-1-negative p {
  color: #666666;
  margin: 0 0 15px;
}
.main .--content .block-Cid .bloc-etape .etape-1-negative p a {
  color: #fe7c1a;
}
.main .--content .block-Cid .bloc-etape .etape-1-negative ul {
  padding: 0 0 0 40px;
}
.main .--content .block-Cid .bloc-etape .etape-1-negative ul li {
  color: #666666;
  margin: 0 0 20px;
  list-style: square;
}
.main .--content .block-Cid .bloc-etape .etape-1-negative ul li a {
  color: #fe7c1a;
}
.main .--content .block-Cid .bloc-etape .etape-1-negative ul li::marker {
  color: #fe7c1a;
}
.main .--content .block-Cid .bloc-etape .etape-1-negative ul li.hidden {
  display: none;
}
.main .--content .block-Cid .bloc-etape .etape-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  border-bottom: 1px solid #e5e5e5;
  margin: 0 0 30px;
  padding: 0 0 15px;
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas h4 {
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
  color: #808080;
  padding: 0 20px;
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas .radioGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas .radioGroup img {
  margin: 0 0 10px;
  width: auto;
}
@media (max-width: 768px) {
  .main .--content .block-Cid .bloc-etape .etape-2 .blocCas .radioGroup img {
    width: 100%;
  }
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas .radioGroup input {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas p {
  font-size: 16px;
  font-size: 1rem;
  color: #666666;
  padding: 0 20px;
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas span.tooltip {
  color: #fe7c1a;
  position: relative;
  cursor: pointer;
  font-weight: bold;
  /* smartphones, touchscreens */
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas span.tooltip .tooltip-inner {
  background-color: #1a8d8a;
  color: #FFFFFF;
  padding: 20px 15px;
  width: 300px;
  border-radius: 10px;
  position: absolute;
  left: 110%;
  visibility: none;
  z-index: 55;
  -webkit-transform: translateY(calc(-50% - 11px));
  transform: translateY(calc(-50% - 11px));
  opacity: 0;
  -webkit-transition: 0.3s opacity cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s opacity cubic-bezier(0.58, 0, 0.32, 1);
  pointer-events: none;
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas span.tooltip .tooltip-inner p {
  margin: 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  padding: 0;
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas span.tooltip .tooltip-inner ol {
  counter-reset: list;
  padding: 0 0 0 20px;
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas span.tooltip .tooltip-inner ol li {
  margin: 0 0 10px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
  counter-increment: list;
  color: #FFFFFF;
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas span.tooltip .tooltip-inner ol li::marker {
  content: counter(list, lower-alpha) ") ";
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas span.tooltip .tooltip-inner ol li:last-child {
  margin: 0;
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas span.tooltip .tooltip-inner:before {
  border: solid;
  border-color: transparent #1a8d8a transparent transparent;
  border-width: 8px;
  content: "";
  top: calc(50% - 8px);
  right: 100%;
  position: absolute;
}
@media (max-width: 1024px) {
  .main .--content .block-Cid .bloc-etape .etape-2 .blocCas span.tooltip .tooltip-inner:before {
    top: -16px;
    right: calc(50% - 8px);
    border-color: transparent transparent #1a8d8a transparent;
  }
}
@media (max-width: 1024px) {
  .main .--content .block-Cid .bloc-etape .etape-2 .blocCas span.tooltip .tooltip-inner {
    top: 110%;
    -webkit-transform: translateX(calc(-50% - 11px));
    transform: translateX(calc(-50% - 11px));
    left: calc(50% + 11px);
    width: 250px;
  }
}
@media (max-width: 768px) {
  .main .--content .block-Cid .bloc-etape .etape-2 .blocCas span.tooltip .tooltip-inner {
    width: 200px;
  }
}
@media (pointer: fine) {
  .main .--content .block-Cid .bloc-etape .etape-2 .blocCas span.tooltip:hover .tooltip-inner {
    visibility: visible;
    opacity: 1;
  }
}
.main .--content .block-Cid .bloc-etape .etape-2 .blocCas:last-child {
  border: none;
  margin: 0;
}
@media (max-width: 768px) {
  .main .--content .block-Cid .bloc-etape .etape-2 .blocCas {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.main .--content .block-Cid .bloc-etape .etape-3 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  border-bottom: 1px solid #e5e5e5;
  margin: 0 0 30px;
  padding: 0 20px 20px 0;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas h4 {
  font-size: 16px;
  font-size: 1rem;
  color: #666666;
  margin: 0 0 20px;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas h4 span {
  color: #333333;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas .radioGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas .radioGroup p {
  color: #FFFFFF;
  background-color: #fe7c1a;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 5px 20px 5px 10px;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas .radioGroup input {
  margin: 0 10px 0 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas .groupeImage {
  max-width: 100%;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas .groupeImage .slick {
  max-width: 208px;
  margin: 0;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas .groupeImage .slick .slick-list {
  max-width: 100%;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas .groupeImage .slick img {
  max-width: 100%;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas .groupeImage .slick .slick-dots {
  padding: 5px;
  right: 0;
  bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas .groupeImage .slick .slick-dots li {
  margin: 0 4px 0 0;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas .groupeImage .slick .slick-dots li button {
  background-color: #fe7c1a;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 30px;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas .groupeImage .slick .slick-dots li button::before {
  display: none;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas .groupeImage .slick .slick-dots li:last-child {
  margin: 0;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas .groupeImage .slick .slick-dots li.slick-active button {
  background-color: #178e89;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas.full {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas.full h4 {
  margin: 0;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas.full .radioGroup input {
  margin: 0 10px 0 0;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas.full:last-child {
  border: none;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas.full-img {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas:last-child {
  margin: 0;
}
@media (max-width: 600px) {
  .main .--content .block-Cid .bloc-etape .etape-3 .container .blocCas {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.main .--content .block-Cid .bloc-etape .etape-3 .container .sousTitre {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin: 0 0 40px;
  font-weight: bold;
  color: #fe7c1a;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-exemples {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-exemples .bloc-exemple {
  margin: 0 20px 0 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 208px;
  flex: 0 0 208px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-exemples .bloc-exemple.full {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-exemples .bloc-exemple p {
  font-weight: bold;
  color: #666666;
}
@media (max-width: 600px) {
  .main .--content .block-Cid .bloc-etape .etape-4 .section-exemples .bloc-exemple img {
    width: 100%;
  }
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-exemples .bloc-exemple p.description {
  color: #FFFFFF;
  background-color: #fe7c1a;
  padding: 20px 10px 5px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-exemples .bloc-exemple .descriptionLongue p {
  margin: 0 0 20px;
  font-weight: normal;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-exemples .bloc-exemple .descriptionLongue p:last-child {
  margin: 0;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-exemples .bloc-exemple:last-child {
  margin: 0;
}
@media (max-width: 600px) {
  .main .--content .block-Cid .bloc-etape .etape-4 .section-exemples .bloc-exemple {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0 0 20px;
  }
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite {
  background-color: #e5e5e5;
  padding: 40px 15px 15px;
  margin: 0 0 40px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite h3 {
  color: #fe7c1a;
  font-weight: bold;
  margin: 0 0 20px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 15px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite .-image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  margin: 0 20px 0 0;
}
@media (max-width: 600px) {
  .main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite .-image img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite .-image {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin: 0 0 20px;
  }
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite .-texte .encadreCyan {
  background-color: #1a8d8a;
  padding: 20px 10px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite .-texte .encadreCyan p {
  color: #FFFFFF;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite .-texte .encadreCyan p:last-child {
  margin: 0;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite .-texte p {
  margin: 0 0 15px;
  color: #666666;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite .-texte ul {
  margin: 0 0 15px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite .-texte ul li {
  color: #666666;
  margin: 0 0 15px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite .-texte ol {
  margin: 0 0 20px;
  counter-reset: list;
  padding: 0 0 0 20px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite .-texte ol li {
  color: #666666;
  margin: 0 0 20px;
  list-style: none;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite .-texte ol li:before {
  content: counter(list, lower-alpha) ") ";
  counter-increment: list;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite .-texte a {
  text-decoration: none;
  color: #fe7c1a;
}
@media (max-width: 600px) {
  .main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite .bloc-responsabilite {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable {
  background: none;
  padding: 0;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable h3 {
  background-color: #3f3f3f;
  text-align: right;
  color: #FFFFFF;
  padding: 10px;
  margin: 0;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite {
  border: 1px solid #e5e5e5;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 10px;
  border-bottom: 1px solid #e5e5e5;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-header p {
  color: #666666;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
}
@media (max-width: 768px) {
  .main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-header p {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-header .label {
  margin: 0 25px 0 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-header .label span {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 900;
  color: #fe7c1a;
  margin: 0 20px;
}
@media (max-width: 768px) {
  .main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-body ol {
  counter-reset: list;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-body ol li {
  padding: 10px;
  border-bottom: 1px solid #e5e5e5;
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-body ol li span.titre {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
}
@media (max-width: 768px) {
  .main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-body ol li span.titre {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 95%;
    flex: 0 0 95%;
    margin: 0 0 10px;
  }
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-body ol li .label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-body ol li .label span {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fe7c1a;
  margin: 0 10px;
}
@media (max-width: 768px) {
  .main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-body ol li .label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-body ol li:nth-child(even) {
  background-color: #eeeeee;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-body ol li:last-child {
  border: none;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-body ol li::before {
  content: counter(list, lower-alpha) ") ";
  counter-increment: list;
  font-weight: bold;
}
@media (max-width: 768px) {
  .main .--content .block-Cid .bloc-etape .etape-4 .section-responsabilite.wTable .tableau-responsabilite .-body ol li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-indemnisation {
  margin: 0 0 40px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-indemnisation h3 {
  color: #fe7c1a;
  font-weight: bold;
  margin: 0 0 20px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-indemnisation p {
  color: #666666;
  margin: 0 0 15px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-indemnisation p a {
  color: #fe7c1a;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-indemnisation ul {
  padding: 0 0 0 40px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-indemnisation ul li {
  color: #666666;
  margin: 0 0 20px;
  list-style: square;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-indemnisation ul li a {
  color: #fe7c1a;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-indemnisation ul li::marker {
  color: #fe7c1a;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-note h3 {
  color: #1a8d8a;
  font-weight: bold;
  margin: 0 0 20px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-note p {
  color: #666666;
  margin: 0 0 15px;
}
.main .--content .block-Cid .bloc-etape .etape-4 .section-note p a {
  color: #fe7c1a;
}
.main .--content .block-Cid .bloc-etape .bloc-erreur {
  color: #FFFFFF;
  background-color: #C30000;
  margin: 0 0 20px;
  max-height: 0px;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  overflow: hidden;
}
.main .--content .block-Cid .bloc-etape .bloc-erreur p {
  padding: 5px 10px;
}
.main .--content .block-Cid .bloc-etape .bloc-erreur.active {
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
.main .--content .avis-Cid {
  padding: 20px 20px 20px 120px;
  background-color: #eeeeee;
  background-image: url(/media/w4ojyjtk/i_avis.png);
  background-repeat: no-repeat;
  background-position: 20px 20px;
}
.main .--content .avis-Cid h3 {
  color: #aaa891;
  font-weight: bold;
  font-size: 22px;
  font-size: 1.375rem;
  margin: 20px 0;
}
.main .--content .avis-Cid p {
  color: #666666;
  margin: 0 0 15px;
}
.main .--content .avis-Cid p a {
  text-decoration: none;
  color: #fe7c1a;
}
@media (max-width: 420px) {
  .main .--content .avis-Cid {
    padding: 20px;
    background-image: none;
  }
}
@media (max-width: 1024px) {
  .main .--content {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .main {
    display: block;
  }
}

.--share {
  width: 70%;
  margin: 20px auto;
}
.--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;
}
@media (max-width: 1024px) {
  .--share {
    margin: 60px 0 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}