@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% {
    transform: rotate(225deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(350deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(495deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(710deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(855deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(945deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes loading-orbit1 {
  0% {
    transform: rotate(225deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(350deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(495deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(710deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(855deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(945deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes loading-orbit1 {
  0% {
    transform: rotate(225deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(350deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(495deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(710deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(855deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(945deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit1 {
  0% {
    transform: rotate(225deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(350deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(495deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(710deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(855deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(945deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading-orbit2 {
  0% {
    transform: rotate(215deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(340deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(485deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(700deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(845deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(935deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes loading-orbit2 {
  0% {
    transform: rotate(215deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(340deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(485deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(700deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(845deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(935deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes loading-orbit2 {
  0% {
    transform: rotate(215deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(340deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(485deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(700deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(845deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(935deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit2 {
  0% {
    transform: rotate(215deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(340deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(485deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(700deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(845deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(935deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading-orbit3 {
  0% {
    transform: rotate(205deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(330deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(475deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(690deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(835deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(925deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes loading-orbit3 {
  0% {
    transform: rotate(205deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(330deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(475deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(690deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(835deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(925deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes loading-orbit3 {
  0% {
    transform: rotate(205deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(330deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(475deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(690deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(835deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(925deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit3 {
  0% {
    transform: rotate(205deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(330deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(475deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(690deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(835deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(925deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading-orbit4 {
  0% {
    transform: rotate(195deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(320deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(465deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(680deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(825deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(915deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes loading-orbit4 {
  0% {
    transform: rotate(195deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(320deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(465deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(680deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(825deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(915deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes loading-orbit4 {
  0% {
    transform: rotate(195deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(320deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(465deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(680deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(825deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(915deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit4 {
  0% {
    transform: rotate(195deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(320deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(465deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(680deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(825deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(915deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading-orbit5 {
  0% {
    transform: rotate(185deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(310deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(455deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(670deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(815deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(905deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes loading-orbit5 {
  0% {
    transform: rotate(185deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(310deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(455deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(670deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(815deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(905deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes loading-orbit5 {
  0% {
    transform: rotate(185deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(310deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(455deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(670deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(815deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(905deg);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit5 {
  0% {
    transform: rotate(185deg);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    transform: rotate(310deg);
    animation-timing-function: linear;
  }
  29% {
    transform: rotate(455deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(670deg);
    animation-timing-function: linear;
  }
  62% {
    transform: rotate(815deg);
    animation-timing-function: ease-in;
  }
  66% {
    transform: rotate(905deg);
    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: #888888;
  border-width: 1px;
}
body .tox:not(.tox-tinymce-inline) .tox-editor-header {
  border-bottom: 1px solid #888888;
}
body .tox .tox-statusbar {
  border-color: #888888;
}

/* Slick Slider styles */
.slick-slider {
  position: relative;
  display: block;
  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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-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 {
  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 */
  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 {
  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] {
  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 !important;
}

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

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

.underline {
  text-decoration: underline;
}

h1,
.h1 {
  font-family: var(--title), sans-serif;
  font-weight: 900;
  font-size: 35px;
  font-size: 2.1875rem;
  letter-spacing: -3px;
}
@media (min-width: 600px) {
  h1,
  .h1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

h2,
.h2 {
  font-family: var(--title), sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  color: #1f2533;
  font-size: 30px;
  font-size: 1.875rem;
}
h2 span,
.h2 span {
  font-family: var(--title), sans-serif;
  font-weight: 500;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0px;
}
@media (min-width: 768px) {
  h2,
  .h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

h3,
.h3 {
  font-family: var(--title), sans-serif;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h3,
  .h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
h3 a,
.h3 a {
  font-family: var(--title), sans-serif;
}

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

h5,
.h5 {
  font-family: var(--title), sans-serif;
  font-weight: 900;
  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: 14px;
  font-size: 0.875rem;
}
.btn *,
button * {
  font-family: var(--title), sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}

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

li {
  font-size: 14px;
  font-size: 0.875rem;
}

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(--title), sans-serif;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .lm {
    font-size: 16px;
    font-size: 1rem;
  }
}

.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: 700;
  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: 16px;
    font-size: 1rem;
  }
}
.field select option {
  text-size-adjust: none;
  font-family: var(--text), sans-serif;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .field select option {
    font-size: 16px;
    font-size: 1rem;
  }
}
.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;
  }
}

::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;
  overscroll-behavior: none;
  scroll-behavior: smooth;
  background-color: #ffffff;
  scroll-padding: 130px 0 0;
}
html.htmlCompetencesVe {
  background-color: #1f2533;
}
html::first-letter {
  text-transform: capitalize;
}
html.hidden {
  overflow: hidden;
}
@media (max-width: 768px) {
  html.hidden {
    overflow-y: scroll;
  }
}

body {
  overflow-x: hidden;
}

#app {
  position: relative;
}

main {
  padding: 110px 0 0 0;
  background-color: #f6f8fb;
  width: calc(100% - 400px);
  margin-left: 400px;
}
@media (max-width: 1800px) {
  main {
    width: calc(100% - 320px);
    margin-left: 320px;
  }
}
@media (max-width: 1024px) {
  main {
    width: calc(100% - 50px);
    margin-left: 50px;
  }
}
@media (max-width: 480px) {
  main {
    width: 100%;
    margin-left: 0;
    padding: 150px 0 0 0;
  }
}
main.mainCompetencesVe {
  background-color: transparent;
  padding: 0;
  width: 100%;
  margin: 0;
  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
*/
* {
  box-sizing: border-box;
}

/*
* Sync with a js fonction, this will prevent animation when page resizing. Better user expert less laggy
*/
.resize-animation-stopper * {
  animation: 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: #f7741b;
}

::selection {
  background: #f7741b;
}

/*
* 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 #f7741b;
  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: 20px;
  background-color: #f7f7f7;
}
.form--callToAction {
  display: flex;
  justify-content: center;
}
@media (max-width: 600px) {
  .form {
    padding: 40px 20px;
  }
}
.form a {
  text-decoration-color: #f7741b;
}

.form--link {
  margin-top: 15px;
}
.form--link p {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 900;
  font-family: var(--title), sans-serif;
}
.form--link p a {
  font-weight: 400;
  margin-left: 10px;
  color: #000000;
  text-decoration-color: #f7741b;
}
@media (max-width: 768px) {
  .form--link p {
    text-align: left;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .form--link p a {
    display: block;
    margin-top: 5px;
    margin-left: 0;
  }
}

.checkboxGroup {
  display: flex;
  align-items: center;
  gap: 20px;
}
.checkboxGroup input {
  border: 1px solid #1f2533;
  margin: 0;
  cursor: pointer;
}
.checkboxGroup label {
  margin: 0;
  max-width: calc(100% - 40px);
  cursor: pointer;
}

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

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

.validation-summary-errors,
.error--form {
  background-color: #ffcccc;
  color: #ff0505;
  padding: 20px;
  margin-bottom: 20px;
}
.validation-summary-errors p,
.error--form p {
  margin-bottom: 0 !important;
}

span.validation-summary-errors {
  display: block;
}

.number-quantite {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.number-quantite input {
  max-width: 50px;
  border: 0;
  padding: 5px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}
.number-quantite input[type=number]::-webkit-inner-spin-button,
.number-quantite input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.number-quantite input[type=number] {
  -moz-appearance: textfield;
}
.number-quantite .moins {
  background: url(/media/1456/btncollapse.png) center no-repeat;
  background-size: 35px;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
.number-quantite .plus {
  background: url(/media/1460/btncollapeplus.png) center no-repeat;
  background-size: 35px;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

label {
  width: max-content;
  display: block;
  position: relative;
  color: #1f2533;
  z-index: 1;
  color: #1f2533;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
}
label.checkbox {
  display: inline;
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -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;
  transition: all 300ms cubic-bezier(0.58, 0, 0.32, 1);
  padding: 15px;
  background-color: #ffffff;
  position: relative;
  box-shadow: 0 5px 15px -10px rgba(0, 0, 0, 0.3);
  z-index: 1;
  color: #1f2533;
  width: 100%;
  margin-top: 5px;
}
input.rounded-input,
select.rounded-input,
textarea.rounded-input {
  border-radius: 30px;
  border: 1px solid #1f2533;
  padding: 15px;
}
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%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #1f2533;
  width: 11px;
  height: 11px;
  border-radius: 2px;
  opacity: 0;
  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;
}
input[type=radio]::after,
select[type=radio]::after,
textarea[type=radio]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #1f2533;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0;
  transition: 0.1s cubic-bezier(0.35, 0, 0, 1);
}
input[type=radio],
select[type=radio],
textarea[type=radio] {
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  input[type=radio]:hover::after,
  select[type=radio]:hover::after,
  textarea[type=radio]:hover::after {
    opacity: 100%;
  }
}
input[type=radio]:checked::after,
select[type=radio]:checked::after,
textarea[type=radio]:checked::after {
  opacity: 100%;
}
@media (max-width: 768px) {
  input,
  select,
  textarea {
    padding: 10px;
  }
}

select {
  padding-right: 45px;
  background: #ffffff url(/assets/icons/i_arrow-down-dark.png);
  background-repeat: no-repeat;
  background-position: center right 12px;
  background-size: 10px;
  border: 0;
  margin-top: 0;
}

.customSelect {
  position: relative;
  overflow: hidden;
  border: 1px solid #1f2533;
  border-radius: 30px;
}
.customSelect select {
  background: #ffffff;
}
.customSelect .dropdown-arrow {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #1f2533;
  background-image: url(/media/1743/i_arrow-down.png);
  background-position: 50%;
  background-repeat: no-repeat;
  border-radius: 0 30px 30px 0;
  width: 55px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

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

::placeholder {
  /* Most modern browsers support this now. */
  color: #464343;
  font-size: 18px;
  font-size: 1.125rem;
}

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

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

.btn,
button {
  padding: 15px 25px;
  width: fit-content;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  background-color: #1f2533;
  color: #ffffff;
  cursor: pointer;
  display: block;
  text-align: center;
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .btn:hover,
  button:hover {
    background-color: #2f384d;
  }
}
.btn--secondary,
button--secondary {
  background-color: #f7741b;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .btn--secondary:hover,
  button--secondary:hover {
    background-color: #ed511a;
  }
}
.btn:active,
button:active {
  background-color: #b1988a;
}
.btn:active.btn--secondary,
button:active.btn--secondary {
  background-color: #1f2533;
}

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

.lm {
  color: #000000;
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  display: block;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .lm:hover {
    color: #f7741b;
  }
}
.lm:active, .lm.active {
  border-bottom: 5px solid #f7741b;
}

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

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

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;
  line-height: 150%;
  letter-spacing: 0px;
}
.text-block h1 {
  letter-spacing: 0px;
}
.text-block h3 {
  color: #f7741b;
  letter-spacing: 0px;
}
.text-block h4,
.text-block h5 {
  margin: 30px 0 20px;
  letter-spacing: 0px;
}
.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: 8px;
  height: 8px;
  background-color: #f7741b;
  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 #03072b;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .text-block ul {
    margin-left: 10px;
  }
  .text-block ul li {
    padding-left: 20px;
  }
}
.text-block span.btn a {
  color: #ffffff;
  text-decoration: none;
  font-style: normal;
  font-weight: 700;
}
.text-block span.image-full img {
  width: 100%;
}
.text-block table {
  width: 100%;
  height: 100%;
  border: none;
}
.text-block table tbody {
  border: 1px solid #03072b;
}
.text-block table tbody tr:nth-child(odd) {
  background-color: #dbc37f;
}
.text-block table tbody tr:first-child {
  background-color: #f7741b;
  border-bottom: 1px solid #ed511a;
}
.text-block table tbody tr td {
  border: none;
  padding: 15px;
}
.text-block table tbody tr td > * {
  margin: 0;
}
.text-block blockquote {
  background-color: #f6f8fb;
  padding: 40px 20px;
  border-left: solid 3px #1f2533;
}
.text-block hr {
  border-top: 1px solid #03072b;
  max-width: 200px;
}
.text-block .fRight {
  float: right;
  margin: 0 0 15px 15px;
  max-width: 400px;
}
@media (max-width: 768px) {
  .text-block .fRight {
    float: none;
    margin: 0 0 15px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .text-block iframe {
    width: 100%;
  }
}
.text-block .collapse--head > * {
  margin: 0;
}

/*
* Collapse
*/
.collapse {
  margin-bottom: 50px;
}
.collapse:last-child {
  margin-bottom: 0;
}
.collapse--head {
  padding: 20px;
  background-color: #ffffff;
  color: #1f2533;
  position: relative;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
.collapse--head .row {
  align-items: center;
  justify-content: flex-start;
}
.collapse--head .row p {
  margin: 0 60px 0 0;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
}
.collapse--head .row .btn-plus {
  position: relative;
  background-color: #1f2533;
  min-width: 32px;
  height: 32px;
  margin: 0 40px 0 20px;
  border-radius: 100%;
}
.collapse--head .row .btn-plus span {
  border-radius: 2px;
  width: 20px;
  height: 2px;
  display: block;
  background-color: #f7741b;
  position: absolute;
  opacity: 100%;
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.collapse--head .row .btn-plus span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.collapse--head {
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .collapse--head:hover {
    background-color: #f7741b;
  }
}
.collapse--body {
  background-color: #f7f7f7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  align-items: flex-start;
}
.collapse--body .texte {
  margin: 20px;
}
.collapse--body.text-block > * {
  margin: 20px;
}
@media (max-width: 768px) {
  .collapse--body.text-block > * {
    margin: 15px;
  }
}
.collapse--body.text-block ul {
  margin-left: 30px;
}
.collapse.ouvert > .collapse--head .btn-plus span {
  -moz-transform: translate(-50%, -50%) rotate(180deg);
  -o-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}
.collapse.ouvert > .collapse--head .btn-plus span:last-child {
  opacity: 0;
  width: 0;
}
.collapse.ouvert > .collapse--body {
  max-height: fit-content;
}
@media (max-width: 1024px) {
  .collapse--head .row {
    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 {
    flex-direction: column;
  }
  .collapse--body .texte {
    margin: 20px;
  }
}

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

.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 60px;
  margin: auto;
  max-width: 1440px;
}
@media (max-width: 1280px) {
  .wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 1280px) and (max-width: 768px) {
  .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 1280px) and (max-width: 768px) and (max-width: 600px) {
  .wrapper {
    padding: 0 20px;
  }
}

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

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

.row {
  display: flex;
  justify-content: space-between;
}
.row--direction-column {
  flex-direction: column;
}
.row--align-center {
  align-items: center;
}
.row--align-bottom {
  align-items: end;
}
.row--justify-left {
  justify-content: left;
}
.row--justify-right {
  justify-content: right;
}
.row--justify-center {
  justify-content: center;
}
.row--equale .col {
  flex: 1;
}
.row .col-lg-1 {
  flex-basis: 8.33333333%;
}
.row .col-lg-2 {
  flex-basis: 16.66666667%;
}
.row .col-lg-3 {
  flex-basis: 25%;
}
.row .col-lg-4 {
  flex-basis: 33.33333333%;
}
.row .col-lg-5 {
  flex-basis: 41.66666667%;
}
.row .col-lg-6 {
  flex-basis: 50%;
}
.row .col-lg-7 {
  flex-basis: 58.33333333%;
}
.row .col-lg-8 {
  flex-basis: 66.66666667%;
}
.row .col-lg-9 {
  flex-basis: 75%;
}
.row .col-lg-10 {
  flex-basis: 83.33333333%;
}
.row .col-lg-11 {
  flex-basis: 91.66666667%;
}
.row .col-lg-12 {
  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, min-content);
  -moz-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, min-content);
  -moz-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: flex;
  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);
    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);
    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));
  }
}

.popup-reinitialisation-mdp-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.7);
}
.popup-reinitialisation-mdp-container .popup-reinitialisation-mdp {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 40px;
}
.popup-reinitialisation-mdp-container .popup-reinitialisation-mdp h2 {
  margin-top: 10px;
}
.popup-reinitialisation-mdp-container .popup-reinitialisation-mdp .close-popup {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  margin: 0;
  transform: rotate(45deg);
  cursor: pointer;
}
.popup-reinitialisation-mdp-container .popup-reinitialisation-mdp .close-popup span {
  width: 20px;
  height: 3px;
  background-color: #1f2533;
  display: block;
}
.popup-reinitialisation-mdp-container .popup-reinitialisation-mdp .close-popup span:first-child {
  transform: translateY(3px) rotate(90deg);
}
@media (max-width: 1024px) {
  .popup-reinitialisation-mdp-container .popup-reinitialisation-mdp {
    width: 90%;
    padding: 40px 20px;
  }
}

.accueil h2 {
  text-transform: lowercase;
  font-size: 55px;
  font-size: 3.4375rem;
  letter-spacing: -4px;
}
.accueil h2::first-letter {
  text-transform: lowercase;
}
@media (max-width: 1024px) {
  .accueil h2 span {
    display: block;
  }
}
@media (max-width: 1024px) {
  .accueil h2 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}
.accueil .formations {
  padding: 60px 0;
}
.accueil .formations-grille {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 40px 0;
}
.accueil .formations-grille .formation {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}
.accueil .formations-grille .formation-image img {
  display: block;
  width: 100%;
  height: 100%;
}
.accueil .formations-grille .formation-texte {
  height: 100%;
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff;
}
.accueil .formations-grille .formation-texte h3 {
  text-decoration: underline;
  margin-bottom: 20px;
  font-weight: 900;
}
@media (max-width: 1280px) {
  .accueil .formations .formations-grille {
    grid-template-columns: 1fr 1fr;
    gap: 60px 20px;
    width: 80%;
    margin: 40px auto;
  }
}
@media (max-width: 1024px) {
  .accueil .formations .formations-grille {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .accueil .formations .formations-grille {
    grid-template-columns: 1fr;
    width: 80%;
  }
}
@media (max-width: 400px) {
  .accueil .formations .formations-grille {
    width: 100%;
  }
}
.accueil .organisation {
  padding: 100px 0;
  position: relative;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
}
.accueil .organisation h2::first-letter {
  text-transform: capitalize;
}
.accueil .organisation .wrapper .organisation-content {
  width: 100%;
  border-bottom: 2px solid #f7741b;
  position: relative;
  color: #ffffff;
}
.accueil .organisation .wrapper .organisation-content h2 {
  color: #ffffff;
  margin-bottom: 0;
  text-transform: none;
  font-weight: 900;
}
.accueil .organisation .wrapper .organisation-content p {
  margin-top: 0;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: var(--title), sans-serif;
  font-weight: 500;
}
.accueil .organisation .wrapper .organisation-content * {
  position: relative;
  z-index: 3;
}
.accueil .organisation .wrapper .organisation-content::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #f7741b;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 1;
}
.accueil .organisation .wrapper img {
  position: absolute;
  max-width: 600px;
  bottom: 0;
  right: 50px;
  z-index: 2;
}
@media (max-width: 600px) {
  .accueil .organisation .wrapper img {
    display: none;
  }
}
.accueil .nouveaute {
  padding: 60px 0;
}
.accueil .nouveaute .nouvelles-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 40px;
  gap: 15px;
}
.accueil .nouveaute .nouvelles-container .nouvelles {
  width: 40%;
}
.accueil .nouveaute .nouvelles-container .nouvelle-vedette {
  width: 60%;
}
.accueil .nouveaute .nouvelles-container .nouvelle-vedette .nouvelle {
  display: flex;
  gap: 10px;
}
.accueil .nouveaute .nouvelles-container .nouvelle-vedette .nouvelle .image {
  border-radius: 10px;
  overflow: hidden;
}
.accueil .nouveaute .nouvelles-container .nouvelle {
  padding: 30px 40px;
  border-radius: 10px;
  background-color: #ffffff;
  margin-bottom: 20px;
}
.accueil .nouveaute .nouvelles-container .nouvelle h3 a {
  text-decoration-color: #f7741b;
  font-weight: 900;
  line-height: 150%;
}
.accueil .nouveaute .ctaNouvelle {
  padding: 30px 40px;
  border-radius: 10px;
  background-color: #ffffff;
  width: 40%;
}
.accueil .nouveaute .ctaNouvelle .btn {
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .accueil .nouveaute .nouvelles-container {
    flex-direction: column-reverse;
    gap: 0;
  }
  .accueil .nouveaute .nouvelles-container .nouvelles {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .accueil .nouveaute .nouvelles-container .nouvelle-vedette {
    width: 100%;
  }
  .accueil .nouveaute .nouvelles-container .nouvelle-vedette .nouvelle h3 {
    max-width: 60%;
  }
  .accueil .nouveaute .ctaNouvelle {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .accueil .nouveaute .nouvelles-container .nouvelles {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .accueil .nouveaute .nouvelles-container .nouvelle-vedette {
    width: 100%;
  }
  .accueil .nouveaute .nouvelles-container .nouvelle-vedette .nouvelle {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .accueil .nouveaute .nouvelles-container .nouvelle-vedette .nouvelle h3 {
    max-width: 100%;
  }
}
.accueil .a-propos {
  background-color: #f7741b;
  color: #ffffff;
  padding: 100px 0;
}
.accueil .a-propos h2 {
  color: #ffffff;
}
.accueil .a-propos a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}
.accueil .a-propos .text-container {
  background: url("/media/1304/bg-a-propos.png") no-repeat left top;
  background-size: 70%;
}
.accueil .a-propos .text-container .text-block {
  max-width: 800px;
  width: 75%;
  background-color: #f7741b;
  margin-left: auto;
  padding: 40px 80px;
}
.accueil .a-propos .text-container .text-block ul li::before {
  background-color: #ffffff;
  width: 5px;
  height: 5px;
  left: 6px;
}
@media (max-width: 1280px) {
  .accueil .a-propos {
    padding: 0 0 160px 0;
  }
  .accueil .a-propos .text-container {
    background-size: 90%;
  }
  .accueil .a-propos .text-container .text-block {
    width: 80%;
    padding: 40px 60px;
    transform: translateY(15%);
  }
}
@media (max-width: 600px) {
  .accueil .a-propos {
    padding: 0;
    background: none;
  }
  .accueil .a-propos .text-container .text-block {
    width: 100%;
    padding: 30px;
    transform: translateY(0);
  }
}
.accueil .acces-rapide {
  padding: 150px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.accueil .acces-rapide h2 {
  padding: 15px 65px 15px 0;
  margin-right: 65px;
  border-right: 1px solid #e9eff6;
}
.accueil .acces-rapide .acces-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 50px;
}
.accueil .acces-rapide .acces-container .liens {
  display: flex;
  gap: 30px;
  align-items: center;
}
.accueil .acces-rapide .acces-container .liens .lien {
  text-decoration: none;
  cursor: pointer;
}
.accueil .acces-rapide .acces-container .liens .lien p {
  text-align: center;
  font-weight: 700;
}
.accueil .acces-rapide .acces-container .liens .lien .image {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #f7f7f7;
}
.accueil .acces-rapide .acces-container .liens .lien .image img {
  background-color: #ffffff;
  border-radius: 100%;
}
.accueil .acces-rapide .acces-container .liens .lien:hover .image {
  background-color: #f7741b;
}
.accueil .acces-rapide .acces-container .liens .lien:hover p {
  color: #f7741b;
}
@media (max-width: 1280px) {
  .accueil .acces-rapide h2 {
    padding: 15px 15px 15px 0;
    margin-right: 0;
    border-right: 0;
  }
  .accueil .acces-rapide .acces-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px;
  }
  .accueil .acces-rapide .acces-container .liens {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
  }
}
@media (max-width: 600px) {
  .accueil .acces-rapide .wrapper {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  .accueil .acces-rapide .acces-container {
    background-color: rgba(255, 255, 255, 0.9);
  }
}
.accueil .coordonneesCpa {
  padding: 60px 0;
}
.accueil .coordonneesCpa .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.accueil .coordonneesCpa .container .blocPartenaire {
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff;
}
.accueil .coordonneesCpa .container .blocPartenaire .blocPartenaireInfos {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.accueil .coordonneesCpa .container .blocPartenaire .blocPartenaireInfos h3 {
  margin-bottom: 10px;
  color: #1f2533;
}
.accueil .coordonneesCpa .container .blocPartenaire .blocPartenaireInfos p {
  margin-bottom: 10px;
  color: #4e8eaf;
}
@media (max-width: 1800px) {
  .accueil .coordonneesCpa .container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1280px) {
  .accueil .coordonneesCpa .container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .accueil .coordonneesCpa .container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .accueil .coordonneesCpa .container {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.page-texte {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .page-texte {
    padding: 30px 0;
  }
}

.nous-joindre {
  padding: 60px 0 100px;
}
.nous-joindre--form {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .nous-joindre {
    padding: 40px 0 80px;
  }
}

.equipe .equipe-container h2 {
  margin: 10px 0 25px;
  color: #1f2533;
}
.equipe .equipe-container h3 {
  margin: 10px 0 20px;
  color: #f7741b;
}
.equipe .equipe-container .grille-equipe {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  width: fit-content;
}
.equipe .equipe-container .grille-equipe:last-child {
  margin-bottom: 0;
}
.equipe .equipe-container .grille-equipe .membreEquipe {
  max-width: 250px;
}
.equipe .equipe-container .grille-equipe .membreEquipe .image-membre img {
  width: 100%;
}
.equipe .equipe-container .grille-equipe .membreEquipe .infos-membre {
  text-align: center;
}
.equipe .equipe-container .grille-equipe .membreEquipe .infos-membre h3 {
  margin: 20px 0 10px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #1f2533;
  font-weight: 700;
}
.equipe .equipe-container .grille-equipe .membreEquipe .infos-membre p {
  margin-bottom: 10px;
}
.equipe .equipe-container .grille-equipe .membreEquipe .infos-membre p.courriel a {
  font-weight: 700;
  color: #f7741b;
}
@media (max-width: 1800px) {
  .equipe .equipe-container .grille-equipe {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1280px) {
  .equipe .equipe-container .grille-equipe {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .equipe .equipe-container .grille-equipe {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .equipe .equipe-container .grille-equipe {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .equipe .equipe-container .grille-equipe {
    grid-template-columns: 1fr;
  }
  .equipe .equipe-container .grille-equipe .membreEquipe {
    max-width: 100%;
  }
}

.nouveautes .nouveautes-grille {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
}
.nouveautes .nouveautes-grille .nouveaute {
  max-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.nouveautes .nouveautes-grille .nouveaute .image img {
  width: 100%;
  height: 100%;
}
.nouveautes .nouveautes-grille .nouveaute .texte {
  background-color: #ffffff;
  padding: 20px;
  height: 100%;
}
.nouveautes .nouveautes-grille .nouveaute .texte h3 {
  font-size: 16px;
  font-size: 1rem;
  text-decoration: underline;
  text-decoration-color: #f7741b;
  font-weight: 700;
}
.nouveautes .nouveautes-grille .nouveaute .texte .dateNouvelle {
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 10px;
  color: #1f2533;
}
@media (max-width: 1280px) {
  .nouveautes .nouveautes-grille {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .nouveautes .nouveautes-grille {
    grid-template-columns: 1fr;
  }
  .nouveautes .nouveautes-grille .nouveaute {
    margin: 0 auto;
  }
}

.qualifications .qualification-grille {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.qualifications .qualification-grille .qualification {
  text-decoration: none;
  height: 100%;
  display: block;
  background-color: #ffffff;
  height: 100%;
}
.qualifications .qualification-grille .qualification .image {
  position: relative;
}
.qualifications .qualification-grille .qualification .image img {
  width: 100%;
  height: 100%;
}
.qualifications .qualification-grille .qualification .image .btn-plus {
  width: 40px;
  height: 40px;
  background-color: #f7741b;
  border-radius: 100%;
  margin: 0 auto;
  z-index: 3;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.qualifications .qualification-grille .qualification .image .btn-plus span {
  display: block;
  width: 4px;
  height: 25px;
  border-radius: 5px;
  background-color: #000000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.qualifications .qualification-grille .qualification .image .btn-plus span:first-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.qualifications .qualification-grille .qualification .texte {
  padding: 50px 20px 30px;
}
.qualifications .qualification-grille .qualification .texte h3 {
  text-align: center;
}
@media (max-width: 1024px) {
  .qualifications .qualification-grille {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .qualifications .qualification-grille {
    grid-template-columns: 1fr;
  }
}

.formations .filtres-formations {
  display: flex;
  gap: 10px;
  width: 98%;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .formations .filtres-formations {
    flex-direction: column;
    width: 100%;
  }
  .formations .filtres-formations select {
    margin-bottom: 10px;
  }
}
.formations .types-formations h2 {
  margin-bottom: 50px;
}
.formations .types-formations .type-formation {
  margin-bottom: 40px;
}
.formations .types-formations .type-formation:last-child {
  margin-bottom: 0;
}
.formations .types-formations .typeContent .collapse h3 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #1f2533;
  margin: 0;
}
.formations .types-formations .typeContent .collapse h4 {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1f2533;
  margin: 0;
  margin: 5px 0;
}
.formations .types-formations .typeContent .collapse p {
  margin: 5px 0;
}
.formations .types-formations .typeContent .collapse .subtitle {
  font-family: var(--title), sans-serif;
}
@media (max-width: 600px) {
  .formations .types-formations .typeContent .collapse .subtitle {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.formations .types-formations .typeContent .collapse--body .body-content {
  background-color: #ffffff;
  padding: 30px 50px 50px;
}
.formations .types-formations .typeContent .collapse--body .reference {
  padding: 25px 0;
}
.formations .types-formations .typeContent .collapse--body .reference a {
  text-align: center;
  display: block;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 auto;
}
.formations .types-formations .typeContent .collapse--body .formation {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 135px;
}
.formations .types-formations .typeContent .collapse--body .formation:first-child {
  margin-top: 45px;
}
.formations .types-formations .typeContent .collapse--body .formation:last-child {
  margin-bottom: 90px;
}
.formations .types-formations .typeContent .collapse--body .formation-image {
  width: 280px;
  max-height: 350px;
  -webkit-box-shadow: 8px 10px 9px -3px #cecece;
}
.formations .types-formations .typeContent .collapse--body .formation-image img {
  width: 100%;
  height: 100%;
}
.formations .types-formations .typeContent .collapse--body .formation-texte {
  max-width: 60%;
}
.formations .types-formations .typeContent .collapse--body .formation .achatManuels {
  margin: 30px 0;
}
.formations .types-formations .typeContent .collapse--body .formation .achatManuels .prix-quantite {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}
.formations .types-formations .typeContent .collapse--body .formation .achatManuels .prix-quantite .prix {
  font-size: 30px;
  font-size: 1.875rem;
  color: #f7741b;
  font-weight: 700;
}
.formations .types-formations .typeContent .collapse--body .formation .achatManuels .prix-quantite .section {
  gap: 20px;
  align-items: flex-start;
}
.formations .types-formations .typeContent .collapse--body .formation .achatManuels .prix-quantite .section .titreQuantite {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
.formations .types-formations .typeContent .collapse--body .formation .achatManuels .addToCart {
  margin-top: 60px;
  padding: 15px 25px;
}
@media (max-width: 1280px) {
  .formations .types-formations .typeContent .collapse--body .formation {
    gap: 30px;
  }
  .formations .types-formations .typeContent .collapse--body .formation .achatManuels .prix-quantite {
    flex-direction: column;
    gap: 10px;
  }
  .formations .types-formations .typeContent .collapse--body .formation .achatManuels .addToCart {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .formations .types-formations .typeContent .collapse--body .formation {
    flex-direction: column-reverse;
  }
  .formations .types-formations .typeContent .collapse--body .formation-image {
    width: 280px;
    margin: 0 auto;
  }
  .formations .types-formations .typeContent .collapse--body .formation-texte {
    max-width: 100%;
  }
  .formations .types-formations .typeContent .collapse--body .formation .achatManuels .prix-quantite {
    flex-direction: row;
    gap: 20px;
  }
  .formations .types-formations .typeContent .collapse--body .formation .achatManuels .prix-quantite .section {
    display: flex;
  }
  .formations .types-formations .typeContent .collapse--body .formation .achatManuels .addToCart {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .formations .types-formations .typeContent .collapse--body .formation .achatManuels .prix-quantite {
    flex-direction: column;
  }
  .formations .types-formations .typeContent .collapse--body .formation .achatManuels .addToCart {
    margin-top: 20px;
  }
}
@media (max-width: 450px) {
  .formations .types-formations .typeContent .collapse--body .formation-image {
    width: 100%;
  }
  .formations .types-formations .typeContent .collapse--body .formation .achatManuels .prix-quantite .section {
    display: block;
  }
  .formations .types-formations .typeContent .collapse--body .formation .achatManuels .prix-quantite .section .field {
    margin: 10px 0;
  }
}
@media (max-width: 768px) {
  .formations .types-formations .typeContent .collapse--body .body-content {
    padding: 30px 30px 50px;
  }
}

.coordonnees-cpa .texte {
  margin-bottom: 60px;
}
.coordonnees-cpa .grille-cpa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.coordonnees-cpa .grille-cpa .cpa {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 15px;
}
.coordonnees-cpa .grille-cpa .cpa h3 {
  color: #f7741b;
}
.coordonnees-cpa .grille-cpa .cpa .adresse {
  margin: 15px 0;
}
.coordonnees-cpa .grille-cpa .cpa .adresse p {
  margin: 0;
}
.coordonnees-cpa .grille-cpa .cpa a {
  text-decoration: none;
  color: #f7741b;
}
@media (max-width: 600px) {
  .coordonnees-cpa .grille-cpa {
    grid-template-columns: 1fr;
  }
}

.page-liste-membres {
  padding: 60px 0;
}
.page-liste-membres .edit-membre #errorSauvegardeMembre {
  display: none;
}
.page-liste-membres .edit-membre #errorSauvegardeMembre.active {
  display: block;
}
.page-liste-membres .edit-membre input {
  border: 0;
}
.page-liste-membres .edit-membre input#Courriel {
  pointer-events: none;
}
.page-liste-membres .edit-membre .buttons-edit-member {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 60%;
  margin-left: auto;
}
.page-liste-membres .liste-membres-filters {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.page-liste-membres .liste-membres-filters input,
.page-liste-membres .liste-membres-filters select {
  display: block;
  max-width: 250px;
  border: 0;
}
.page-liste-membres .liste-membres-filters .numberOfResults {
  margin-left: auto;
}
@media (max-width: 1024px) {
  .page-liste-membres .liste-membres-filters {
    flex-wrap: wrap;
  }
  .page-liste-membres .liste-membres-filters .numberOfResults {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .page-liste-membres .liste-membres-filters {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-liste-membres .liste-membres-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.page-liste-membres .liste-membres-buttons .btn {
  display: block;
  padding: 10px 25px;
}
.page-liste-membres .liste-membres .tableauMembre table {
  width: 100%;
  border-collapse: collapse;
}
.page-liste-membres .liste-membres .tableauMembre table tr {
  background-color: #ffffff;
}
.page-liste-membres .liste-membres .tableauMembre table tr:nth-child(odd) {
  background-color: #f7f7f7;
}
.page-liste-membres .liste-membres .tableauMembre table tr:first-child {
  background-color: #1f2533;
  color: #ffffff;
  font-weight: 700;
}
.page-liste-membres .liste-membres .tableauMembre table tr td {
  width: 30%;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 10px;
}
.page-liste-membres .liste-membres .tableauMembre table tr td:last-child {
  width: 10%;
}
.page-liste-membres .liste-membres .tableauMembre table tr td a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #551a8b;
  text-decoration: none;
  cursor: pointer;
}
.page-liste-membres .liste-membres .tableauMembre table tr td .deleteMemberButton {
  width: fit-content;
  padding: 8px;
  margin-left: auto;
  line-height: 0.4;
  font-weight: 500;
}

.page-creation-codes .codeModeSelection {
  margin-bottom: 20px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.page-creation-codes .texte {
  max-width: 700px;
  margin: 0 auto 40px;
}
.page-creation-codes .texte p {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 38px;
}
@media (max-width: 1024px) {
  .page-creation-codes .texte p,
  .page-creation-codes .texte ul li {
    margin-left: 0;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.page-creation-codes .form-codes,
.page-creation-codes .codesCrees {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px 60px;
}
.page-creation-codes .form-codes h2,
.page-creation-codes .form-codes h3,
.page-creation-codes .codesCrees h2,
.page-creation-codes .codesCrees h3 {
  text-align: center;
  margin-bottom: 25px;
}
.page-creation-codes .form-codes .codeNumber,
.page-creation-codes .codesCrees .codeNumber {
  border: 1px solid #1f2533;
  border-radius: 30px;
  margin-top: 0;
  max-width: 150px;
}
.page-creation-codes .form-codes .form--callToAction,
.page-creation-codes .codesCrees .form--callToAction {
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .page-creation-codes .form-codes,
  .page-creation-codes .codesCrees {
    padding: 30px 20px;
  }
  .page-creation-codes .form-codes h2,
  .page-creation-codes .form-codes h3,
  .page-creation-codes .codesCrees h2,
  .page-creation-codes .codesCrees h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.page-creation-codes .codesCrees {
  color: #ffffff;
  margin-top: 40px;
  background-color: #1f2533;
}
.page-creation-codes .codesCrees ul {
  columns: 2;
}
.page-creation-codes .codesCrees ul li {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 20px;
}

.page-paiement .panier {
  max-height: none !important;
  overflow-y: auto;
}
.page-paiement .paiement-form .modeLivraison {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.page-paiement .paiement-form .modeLivraison .choixLivraison input {
  display: none;
}
.page-paiement .paiement-form .modeLivraison .choixLivraison label {
  display: block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
}
.page-paiement .paiement-form .modeLivraison .choixLivraison label::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border: 3px solid #f7741b;
  border-radius: 100%;
}
.page-paiement .paiement-form .modeLivraison .choixLivraison input:checked + label::before {
  background-color: #f7741b;
}
.page-paiement .paiement-form .modeLivraison .choixLivraison p {
  margin: 5px 0;
}
.page-paiement .paiement-form .facture .sousTotalContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
}
.page-paiement .paiement-form .facture .sousTotalContainer h3 {
  font-weight: 700;
}
.page-paiement .paiement-form .facture .sousTotalContainer .montant {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
.page-paiement .paiement-form .facture-details {
  width: 500px;
  padding: 20px;
  background-color: #ffffff;
  margin-left: auto;
}
.page-paiement .paiement-form .facture-details .info-tarif {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.page-paiement .paiement-form .facture-details .info-tarif:last-child {
  margin-bottom: 0;
}
.page-paiement .paiement-form .facture-details .info-tarif .type-taxe {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
  font-family: "Spartan", sans-serif;
}
.page-paiement .paiement-form .facture-details .info-tarif .total {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 900;
}
.page-paiement .paiement-form .facture .confirmOrder {
  margin: 60px 0 0 auto;
}
.page-paiement .paiement-form .mention-paypal {
  text-align: center;
  margin-top: 40px;
}
.page-paiement .paiement-form input {
  border: 0;
  padding: 10px;
}
.page-paiement .paiement-form .etape2 .mention-paypal {
  margin: 0 0 20px 20px;
  text-align: left;
}
.page-paiement .paiement-form .etape2 h2 {
  margin: 10px 0 25px;
}
.page-paiement .paiement-form .etape2 h3 {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .page-paiement .paiement-form .modeLivraison {
    flex-direction: column;
    gap: 20px;
  }
}

.page-pdf .listePdf h2 {
  margin: 40px 0 25px;
}
.page-pdf .listePdf ul {
  columns: 2;
}
.page-pdf .listePdf ul li {
  margin: 0 10px 20px 0;
}
.page-pdf .listePdf ul li a {
  font-size: 18px;
  font-size: 1.125rem;
  color: #f7741b;
}
@media (max-width: 600px) {
  .page-pdf .listePdf ul {
    columns: 1;
  }
}

.autoformation-login .page-texte--contenu .text-block p,
.autoformation-login .page-texte--contenu .text-block ul li,
.autoformation-register .page-texte--contenu .text-block p,
.autoformation-register .page-texte--contenu .text-block ul li {
  margin-left: 40px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 160%;
}
.autoformation-login .page-texte--contenu .text-block p::before,
.autoformation-login .page-texte--contenu .text-block ul li::before,
.autoformation-register .page-texte--contenu .text-block p::before,
.autoformation-register .page-texte--contenu .text-block ul li::before {
  top: 12px;
}
.autoformation-login .page-texte--contenu .text-block.acces-manuel,
.autoformation-register .page-texte--contenu .text-block.acces-manuel {
  text-align: center;
}
.autoformation-login .page-texte--contenu .text-block.acces-manuel p,
.autoformation-register .page-texte--contenu .text-block.acces-manuel p {
  text-align: left;
  margin-left: 0;
}
.autoformation-login .page-texte--contenu .text-block.acces-manuel h3,
.autoformation-register .page-texte--contenu .text-block.acces-manuel h3 {
  margin: 20px 0 10px;
  font-size: 28px;
  font-size: 1.75rem;
  color: #000000;
}
@media (max-width: 1024px) {
  .autoformation-login .page-texte--contenu .text-block p,
  .autoformation-login .page-texte--contenu .text-block ul li,
  .autoformation-register .page-texte--contenu .text-block p,
  .autoformation-register .page-texte--contenu .text-block ul li {
    margin-left: 0;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.autoformation-login .page-texte--contenu .text-notes,
.autoformation-register .page-texte--contenu .text-notes {
  margin-top: 40px;
}
.autoformation-login .form-connexion,
.autoformation-register .form-connexion {
  max-width: 650px;
  margin: 60px auto 0;
}
.autoformation-login .form-connexion .form-white-container,
.autoformation-register .form-connexion .form-white-container {
  background-color: #ffffff;
  padding: 40px 60px;
}
.autoformation-login .form-connexion .form-white-container h3,
.autoformation-register .form-connexion .form-white-container h3 {
  margin-bottom: 25px;
  font-size: 32px;
  font-size: 2rem;
  text-align: center;
  letter-spacing: -1px;
}
.autoformation-login .form-connexion .form-white-container .section input,
.autoformation-register .form-connexion .form-white-container .section input {
  border: 1px solid #1f2533;
  background-color: transparent;
  border-radius: 30px;
  padding: 15px 15px 15px 40px;
}
.autoformation-login .form-connexion .form-white-container .section input.username,
.autoformation-register .form-connexion .form-white-container .section input.username {
  background: url(/media/1745/nom-utilisateur-icone.png) no-repeat 20px center;
}
.autoformation-login .form-connexion .form-white-container .section input.password,
.autoformation-register .form-connexion .form-white-container .section input.password {
  background: url(/media/1744/mot-de-passe-icone.png) no-repeat 20px center;
}
.autoformation-login .form-connexion .form-white-container .btn-connexion,
.autoformation-register .form-connexion .form-white-container .btn-connexion {
  margin-bottom: 20px;
  padding: 10px 25px;
}
@media (max-width: 768px) {
  .autoformation-login .form-connexion .form-white-container,
  .autoformation-register .form-connexion .form-white-container {
    padding: 30px 20px;
  }
  .autoformation-login .form-connexion .form-white-container h3,
  .autoformation-register .form-connexion .form-white-container h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media (max-width: 600px) {
  .autoformation-login .form-connexion,
  .autoformation-register .form-connexion {
    margin: 20px auto 0;
  }
}
.autoformation-login .form-code-autoformations,
.autoformation-register .form-code-autoformations {
  max-width: 650px;
  margin: 60px auto 0;
}
.autoformation-login .form-code-autoformations .form-white-container,
.autoformation-register .form-code-autoformations .form-white-container {
  background-color: #ffffff;
  padding: 40px 60px;
}
.autoformation-login .form-code-autoformations .form-white-container h3,
.autoformation-register .form-code-autoformations .form-white-container h3 {
  margin-bottom: 25px;
  font-size: 28px;
  font-size: 1.75rem;
  text-align: center;
  letter-spacing: -1px;
}
.autoformation-login .form-code-autoformations .form-white-container h3.titleSpacing,
.autoformation-register .form-code-autoformations .form-white-container h3.titleSpacing {
  margin-top: 40px;
}
.autoformation-login .form-code-autoformations .form-white-container .btn,
.autoformation-register .form-code-autoformations .form-white-container .btn {
  padding: 10px 25px;
}
.autoformation-login .form-code-autoformations .form-white-container .section.blockSelect,
.autoformation-register .form-code-autoformations .form-white-container .section.blockSelect {
  display: block;
}
.autoformation-login .form-code-autoformations .form-white-container .section.code-container,
.autoformation-register .form-code-autoformations .form-white-container .section.code-container {
  position: relative;
  margin-bottom: 20px;
  display: block;
}
.autoformation-login .form-code-autoformations .form-white-container .section.code-container input,
.autoformation-register .form-code-autoformations .form-white-container .section.code-container input {
  border-radius: 30px;
  border: 1px solid #1f2533;
}
.autoformation-login .form-code-autoformations .form-white-container .section.code-container .popupButton,
.autoformation-register .form-code-autoformations .form-white-container .section.code-container .popupButton {
  position: absolute;
  right: -40px;
  top: -20px;
  width: 35px;
  height: 35px;
  background-color: #1f2533;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .autoformation-login .form-code-autoformations .form-white-container .section.code-container .popupButton:hover,
  .autoformation-register .form-code-autoformations .form-white-container .section.code-container .popupButton:hover {
    color: #f7741b;
  }
}
@media (max-width: 768px) {
  .autoformation-login .form-code-autoformations .form-white-container,
  .autoformation-register .form-code-autoformations .form-white-container {
    padding: 30px 20px;
  }
  .autoformation-login .form-code-autoformations .form-white-container h3,
  .autoformation-register .form-code-autoformations .form-white-container h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media (max-width: 600px) {
  .autoformation-login .form-code-autoformations,
  .autoformation-register .form-code-autoformations {
    margin: 20px auto 0;
  }
}

.autoformation-register .form-code-autoformations p {
  margin-bottom: 20px;
}

.popupInfoCode {
  display: none;
  flex-direction: column;
  border: 4px solid #1f2533;
  border-radius: 10px;
  background-color: white;
  padding: 60px 60px 40px 40px;
  max-width: 700px;
  width: calc(100% - 20px);
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
  margin: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 25;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
}
.popupInfoCode.active {
  display: flex;
}
.popupInfoCode .closePopupInfoCode {
  position: absolute;
  top: -1px;
  right: -1px;
  cursor: pointer;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  background-color: #1f2533;
  color: white;
  padding: 6px 14px 10px 17px;
  border-radius: 0 0 0 10px;
  transition: 0.2s ease-in-out;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .popupInfoCode .closePopupInfoCode:hover {
    color: #f7741b;
  }
}
.popupInfoCode p {
  font-size: 18px;
  font-size: 1.125rem;
  color: #1f2533;
  font-weight: 500;
}

.page-stats-manuels .page-texte--contenu .text-block {
  margin-bottom: 15px;
}
.page-stats-manuels .stats-filtres select {
  border: 2px solid #1f2533;
}
.page-stats-manuels .stats-filtres .result-number {
  margin: 0 0 15px;
  width: fit-content;
}
.page-stats-manuels .stats-filtres .export-button {
  margin-bottom: 20px;
}
.page-stats-manuels .stats-manuels-container .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel {
  padding: 40px 30px;
  border-bottom: 1px solid #1f2533;
  border-right: 1px solid #1f2533;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel__image {
  width: 25%;
}
.page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel__content {
  width: 75%;
}
.page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel__content .h4 {
  margin-bottom: 5px;
}
.page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel__content .highlighted-match {
  background-color: #f7741b;
}
.page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel:nth-child(odd) {
  border-left: 1px solid #1f2533;
}
.page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel:first-child, .page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel:nth-child(2) {
  border-top: 1px solid #1f2533;
}
@media (max-width: 1280px) {
  .page-stats-manuels .stats-manuels-container .stats-grid {
    grid-template-columns: 1fr;
  }
  .page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel {
    border-bottom: 1px solid #1f2533;
    border-right: 1px solid #1f2533;
    border-left: 1px solid #1f2533;
  }
  .page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel__image {
    width: 30%;
  }
  .page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel__content {
    width: 70%;
  }
  .page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel:nth-child(2) {
    border-top: 0;
  }
}
@media (max-width: 600px) {
  .page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel {
    padding: 30px;
  }
  .page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel__image {
    display: none;
  }
  .page-stats-manuels .stats-manuels-container .stats-grid .stat-manuel__content {
    width: 100%;
  }
}

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

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

.page-texte--nouveaute .text-container {
  display: flex;
}
.page-texte--nouveaute iframe {
  max-width: 100%;
}
.page-texte--nouveaute h2 {
  margin-bottom: 25px;
}
.page-texte--nouveaute .nouveauteDate {
  margin-bottom: 15px;
}
.page-texte--nouveaute .documentNouvelle {
  display: block;
  margin: 40px 0;
  text-decoration: none;
}
.page-texte--nouveaute .documentNouvelle p {
  color: #f7741b;
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}
.page-texte--nouveaute .documentNouvelle img {
  max-width: 200px;
}
.page-texte--nouveaute .boutonNouveaute {
  margin-top: 20px;
  display: block;
}

.headerCVE .wrapper {
  border-bottom: 4px solid #ffffff;
  padding: 60px;
}
@media (max-width: 768px) {
  .headerCVE .wrapper {
    padding: 40px;
  }
}
@media (max-width: 450px) {
  .headerCVE .wrapper {
    padding: 40px 20px;
  }
}
.headerCVE h1 {
  text-align: center;
  color: #ffffff;
  text-transform: lowercase;
  letter-spacing: 5px;
  margin-bottom: 40px;
}
.headerCVE h1::first-letter {
  text-transform: lowercase;
}
@media (max-width: 768px) {
  .headerCVE h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media (max-width: 450px) {
  .headerCVE h1 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.headerCVE .logo-cve {
  text-align: center;
}

.mainCompetencesVe {
  text-align: center;
}
.mainCompetencesVe .btn {
  padding: 10px 25px;
}
.mainCompetencesVe .error,
.mainCompetencesVe .validation-summary-errors {
  text-align: left;
}
.mainCompetencesVe .page-texte {
  padding: 60px 0;
}
.mainCompetencesVe .page-texte h2 {
  color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .mainCompetencesVe .page-texte h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.mainCompetencesVe .page-texte h3 {
  font-size: 28px;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .mainCompetencesVe .page-texte h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.mainCompetencesVe .page-texte .portail-cve--content {
  padding: 60px;
  background-color: #ffffff;
  max-width: 615px;
  margin: 0 auto;
  color: #000000;
}
.mainCompetencesVe .page-texte .portail-cve--content .portail-moodle {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 2px solid #1f2533;
}
.mainCompetencesVe .page-texte .portail-cve--content .portail-moodle .autoevaluation-link {
  display: block;
  margin-bottom: 20px;
  text-decoration-color: #f7741b;
}
.mainCompetencesVe .page-texte .portail-cve--content .portail-moodle .autoevaluation-link.main-link {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}
.mainCompetencesVe .page-texte .portail-cve--content .portail-moodle .autoevaluation-link:last-child {
  margin-bottom: 0;
}
.mainCompetencesVe .page-texte .portail-cve--content .deconnexion {
  padding: 10px 25px;
  margin: 0 auto;
  display: block;
}
.mainCompetencesVe .page-texte .portail-cve--content .text-block {
  color: #000000;
}
.mainCompetencesVe .page-texte .portail-cve--content .text-block h3 {
  color: #000000;
}
.mainCompetencesVe .page-texte .portail-texte {
  margin-bottom: 20px;
}
.mainCompetencesVe .page-texte .form-cve {
  padding: 60px;
  background-color: #ffffff;
  max-width: 615px;
  margin: 0 auto;
  color: #000000;
}
@media (max-width: 768px) {
  .mainCompetencesVe .page-texte .form-cve {
    padding: 30px;
  }
}
.mainCompetencesVe .page-texte .form-cve .section input {
  border: 1px solid #1f2533;
  background-color: transparent;
  border-radius: 30px;
  padding: 15px;
}
.mainCompetencesVe .page-texte .form-cve .section input.disabled {
  border: 0;
  pointer-events: none;
  padding: 0 0 0 15px;
}
.mainCompetencesVe .page-texte .form-cve .form {
  background-color: transparent;
  padding: 0;
}
.mainCompetencesVe .page-texte .form-cve h2,
.mainCompetencesVe .page-texte .form-cve h3 {
  color: #000000;
}
.mainCompetencesVe .page-texte .form-cve h4 {
  color: #000000;
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
}
.mainCompetencesVe .page-texte .form-cve .form-creationMdp .form--success h4 {
  margin-bottom: 0;
}
.mainCompetencesVe .page-texte .form-cve .form-creationMdp .conditions-mdp {
  text-align: left;
  font-size: 16px;
  font-size: 1rem;
}
.mainCompetencesVe .page-texte .form-cve .oublieMdp form {
  margin: 0 auto;
  max-width: 350px;
}
.mainCompetencesVe .page-texte .form-cve .oublieMdp .section {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
.mainCompetencesVe .page-texte .form-cve .oublieMdp .section .field {
  width: 100%;
  margin-right: 0;
}
.mainCompetencesVe .page-texte .form-cve .oublieMdp .section .field input {
  width: 100%;
}
.mainCompetencesVe .page-texte .form-cve .form-connexion .form-white-container {
  background-color: transparent;
  padding: 0;
  color: #000000;
}
.mainCompetencesVe .page-texte .form-cve .form-connexion .form-white-container h3 {
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: -1px;
}
.mainCompetencesVe .page-texte .form-cve .form-connexion .form-white-container .section input {
  padding: 15px 15px 15px 40px;
}
.mainCompetencesVe .page-texte .form-cve .form-connexion .form-white-container .section input.username {
  background: url(/media/1745/nom-utilisateur-icone.png) no-repeat 20px center;
}
.mainCompetencesVe .page-texte .form-cve .form-connexion .form-white-container .section input.password {
  background: url(/media/1744/mot-de-passe-icone.png) no-repeat 20px center;
}
.mainCompetencesVe .page-texte .form-cve .form-connexion .form-white-container .btn-connexion {
  margin-bottom: 20px;
  padding: 10px 25px;
}
.mainCompetencesVe .page-texte .form-cve .form-connexion .form-white-container .mdpOublie {
  text-align: left;
  display: block;
  width: fit-content;
}
.mainCompetencesVe .page-texte .form-cve .info-form {
  text-align: left;
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 160%;
}
.mainCompetencesVe .page-texte .form-cve .form--link {
  padding-top: 40px;
  border-top: 2px solid #1f2533;
  margin-top: 40px;
}
.mainCompetencesVe .page-texte .form-cve .form--link p {
  text-align: center;
  color: #000000;
  font-size: 18px;
  font-size: 1.125rem;
}
.mainCompetencesVe .page-texte .form-cve .form--link a {
  font-size: 18px;
  font-size: 1.125rem;
  margin-left: 10px;
  width: fit-content;
}
@media (max-width: 768px) {
  .mainCompetencesVe .page-texte .form-cve .form--link p {
    text-align: center;
  }
  .mainCompetencesVe .page-texte .form-cve .form--link a {
    display: block;
    margin: 10px auto 0;
  }
}

/**************** HEADER MENU *******************/
header .menu-utilitaire {
  text-align: right;
}
header .menu-utilitaire nav ul li {
  display: inline-block;
  margin-bottom: 10px;
}
header .menu-utilitaire nav ul li:not(:first-child) {
  margin-left: 40px;
}
header .menu-principal nav ul {
  display: flex;
  align-items: flex-start;
}
header .menu-principal nav ul li {
  z-index: 5;
  display: block;
  position: relative;
}
header .menu-principal nav ul li:hover .sous-menu {
  display: block;
}
header .menu-principal nav ul li.cartBtn {
  cursor: pointer;
  position: relative;
  height: auto;
  padding: 50px 20px 50px 10px;
}
header .menu-principal nav ul li.cartBtn .cartLength {
  position: absolute;
  top: 32%;
  right: 5px;
  background-color: #c30038;
  width: 20px;
  height: 20px;
  color: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
}
header .menu-principal nav ul li .sous-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f7741b;
  padding: 20px;
  min-width: 350px;
}
header .menu-principal nav ul li .sous-menu li {
  display: block;
}
header .menu-principal nav ul li .sous-menu li a {
  color: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid rgb(222, 95, 9);
}
header .menu-principal nav ul li .sous-menu li a:hover {
  background: linear-gradient(to right, #f7741b 0%, #ed511a 100%);
}
header .menu-principal nav ul li .sous-menu li:last-child a {
  border-bottom: 0;
}
@media (max-width: 1450px) {
  header .menu-principal nav {
    width: 450px;
  }
  header .menu-principal nav ul {
    flex-direction: column;
    position: relative;
  }
  header .menu-principal nav ul li {
    display: block;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid #f7741b;
  }
  header .menu-principal nav ul li a {
    padding: 20px;
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    font-size: 1.125rem;
  }
  header .menu-principal nav ul li.cartBtn {
    width: fit-content;
    margin-left: auto !important;
  }
  header .menu-principal nav ul li.cartBtn a {
    font-size: 12px;
    font-size: 0.75rem;
    width: fit-content;
  }
  header .menu-principal nav ul li:not(:first-child) {
    margin-left: 0;
  }
  header .menu-principal nav ul li .sous-menu {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    background-color: transparent;
    padding: 10px 20px;
    min-width: auto;
  }
  header .menu-principal nav ul li .sous-menu li {
    border-bottom: 0;
  }
  header .menu-principal nav ul li .sous-menu li a {
    color: #000000;
    border-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    font-size: 1rem;
  }
  header .menu-principal nav ul li .sous-menu li a:hover {
    background: none;
  }
  header.open .menu-utilitaire nav ul li a,
  header.open .menu-principal nav ul li a {
    color: #000000;
    /* smartphones, touchscreens */
  }
}
@media (max-width: 1450px) and (pointer: fine) {
  header.open .menu-utilitaire nav ul li a:hover,
  header.open .menu-principal nav ul li a:hover {
    color: #f7741b;
  }
}
@media (max-width: 1450px) {
  header.open .menu-utilitaire nav ul li.cartBtn a,
  header.open .menu-principal nav ul li.cartBtn a {
    color: #ffffff;
  }
}
@media (max-width: 600px) {
  header .menu-utilitaire nav ul li:not(:first-child) {
    margin-left: 20px;
  }
  header .menu-principal nav {
    max-width: 90%;
    margin-right: auto;
    width: 100%;
  }
}

/********* FOOTER ************/
footer {
  color: #ffffff;
  background-color: #1f2533;
}
footer .footer-top {
  background-size: cover;
  padding: 60px 0;
}
footer .footer-top--row {
  align-items: center;
  margin-bottom: 40px;
}
footer .footer-top--row .logo {
  max-width: 250px;
  margin-right: 40px;
}
footer .footer-top--row .sociaux {
  flex-basis: 80%;
  padding-bottom: 10px;
}
footer .footer-top--row .sociaux .row {
  justify-content: right;
}
footer .footer-top--row .sociaux a:not(:last-child) {
  margin-right: 10px;
}
footer .footer-top--row .sociaux a.linkedin svg {
  width: 22px;
}
footer .footer-top--row .sociaux svg {
  width: 25px;
  height: fit-content;
}
footer .footer-top--row .sociaux svg path {
  transition: 0.2s cubic-bezier(0.35, 0, 0, 1);
}
footer .footer-top--row .sociaux svg {
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  footer .footer-top--row .sociaux svg:hover path {
    fill: #1f2533;
  }
}
footer .footer-top--utilitaire li:not(:last-child) {
  margin-right: 40px;
}
footer .footer-top--infolettre {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #03072b;
}
footer .footer-top--infolettre h4 {
  text-align: center;
  margin-bottom: 20px;
  color: #03072b;
}
footer .footer-top--infolettre form {
  max-width: 600px;
  margin: 0 auto;
}
footer .footer-bottom {
  border-top: 1px solid #ffffff;
}
footer .footer-bottom .copyright {
  padding: 20px 0;
}
footer .footer-bottom .copyright p {
  text-align: center;
}
footer .footer-bottom .copyright .link {
  color: #ffffff;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  footer .footer-bottom .copyright .link:hover {
    color: #2f384d;
  }
}
@media (max-width: 768px) {
  footer .footer-top {
    padding: 60px 0;
  }
  footer .footer-top--row .logo {
    max-width: 200px;
    flex-basis: 60%;
  }
  footer .footer-top--row .sociaux svg {
    width: 20px;
  }
}
@media (max-width: 600px) {
  footer .footer-top--utilitaire {
    margin-bottom: 40px;
  }
  footer .footer-top--utilitaire ul {
    display: block;
  }
  footer .footer-top--utilitaire ul li {
    display: inline;
    margin-bottom: 20px;
  }
  footer .footer-top--menu .main {
    grid-template-columns: 1fr 1fr;
  }
  footer .footer-top--menu .main > ul:nth-child(1) {
    grid-area: inherit;
  }
  footer .footer-top--menu .main > ul:nth-child(2) {
    grid-area: inherit;
  }
  footer .footer-top--menu .main > ul:nth-child(3) {
    grid-area: inherit;
  }
  footer .footer-top--menu .main > ul:nth-child(4) {
    grid-area: inherit;
  }
  footer .footer-top--menu .main > ul:nth-child(5) {
    grid-area: inherit;
  }
  footer .footer-top--menu .main > ul:nth-child(6) {
    grid-area: inherit;
  }
  footer .footer-top--menu .main > ul:nth-child(7) {
    grid-area: inherit;
  }
}

/********* HEADER ************/
header {
  position: fixed;
  transition: 0.6s cubic-bezier(0.58, 0, 0.32, 1);
  z-index: 20;
  width: calc(100% - 400px);
  margin-left: 400px;
}
@media (max-width: 1800px) {
  header {
    width: 100%;
    margin-left: 0;
  }
}
header .menu-bar {
  background-color: #ffffff;
  z-index: 25;
  position: relative;
}
header .menu-utilitaire {
  margin-bottom: 20px;
  position: relative;
  z-index: 20;
}
header .menu-principal {
  display: flex;
  align-items: center;
  justify-content: right;
}
header .menu-principal--logo {
  max-width: 375px;
  width: 100%;
  margin-right: auto;
  position: relative;
  z-index: 20;
}
header .menu-principal--logo img {
  max-height: 90px;
  transition: all 0.6s cubic-bezier(0.58, 0, 0.32, 1);
}
header .menu-principal--nav {
  margin-left: 20px;
  display: flex;
  align-items: center;
  z-index: 5;
}
header .menu-principal--nav ul li a {
  padding: 50px 10px;
}
header .menu-principal--nav .btn {
  margin-left: 40px;
}
header .menu-principal--btn {
  z-index: 5;
  display: none;
  align-items: center;
  cursor: pointer;
}
header .menu-principal--btn a {
  margin-right: 10px;
}
header .menu-principal--btn span {
  display: block;
  background-color: #000000;
  height: 5px;
  width: 30px;
  border-radius: 25px;
  border-radius: 2px;
  transform-origin: center;
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
header .menu-principal--btn span:not(:last-child) {
  margin-bottom: 7px;
}
header .menu-principal--btn {
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  header .menu-principal--btn:hover a {
    color: #f7741b;
  }
  header .menu-principal--btn:hover span {
    background-color: #f7741b;
  }
}
header.open .menu-principal--btn span {
  background-color: #000000;
  margin: 0;
}
header.open .menu-principal--btn span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(3px);
  width: 27px;
}
header.open .menu-principal--btn span:nth-child(2) {
  width: 0;
  opacity: 0;
}
header.open .menu-principal--btn span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(3px);
  width: 27px;
}
header.open .menu-principal--btn {
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  header.open .menu-principal--btn:hover a {
    color: #f7741b;
  }
  header.open .menu-principal--btn:hover span {
    background-color: #f7741b;
  }
}
@media (max-width: 1450px) {
  header .menu-principal {
    padding: 10px 0;
  }
  header .menu-principal--btn {
    display: flex;
    margin-left: 40px;
  }
  header .menu-principal--nav {
    display: block;
    background-color: #ffffff;
    margin: 0;
    padding-top: 120px;
    position: absolute;
    top: 0;
    right: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.6s cubic-bezier(0.58, 0, 0.32, 1);
  }
  header .menu-principal--nav nav {
    margin: 0;
    padding: 10px 20px;
  }
  header .menu-principal--nav .btn {
    margin: 40px auto 0;
  }
  header.open .menu-principal--nav {
    transform: scaleX(1);
  }
}
@media (max-width: 768px) {
  header .menu-principal--logo {
    max-width: 360px;
  }
  header .menu-principal--nav {
    padding-top: 120px;
  }
  header .menu-principal--nav nav {
    margin: 20px 40px 0;
  }
  header .menu-principal--nav .btn {
    margin: 40px auto 0;
  }
  header .publicite-top {
    padding: 20px 0;
  }
}
@media (max-width: 600px) {
  header {
    position: absolute;
  }
  header .menu-principal--logo {
    max-width: 300px;
  }
  header .menu-principal--btn {
    margin-left: 20px;
  }
  header .menu-principal--nav {
    padding-top: 120px;
  }
  header .menu-principal--nav nav {
    margin: 0 20px 0;
  }
  header .menu-principal--nav .btn {
    margin: 40px auto 0;
  }
}

.banner {
  position: relative;
  z-index: 1;
}
.banner.gauche {
  background-position: left;
}
.banner.centre {
  background-position: center;
}
.banner.droite {
  background-position: right;
}
.banner.haut {
  background-position: top;
}
.banner.bas {
  background-position: bottom;
}
.banner .wrapper {
  height: 100%;
}
.banner .bloc {
  background: linear-gradient(to right, #f7741b 0%, #ed511a 100%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.banner .bloc h1 {
  color: #ffffff;
  padding: 40px 60px;
}
@media (max-width: 768px) {
  .banner .bloc h1 {
    padding: 40px 20px;
  }
}
.banner.bannerWithImage {
  display: flex;
}
.banner.bannerWithImage .bloc {
  width: 50%;
}
.banner.bannerWithImage .imageBanner {
  width: 50%;
}
.banner.bannerWithImage .imageBanner img {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (max-width: 1280px) {
  .banner.bannerWithImage {
    display: block;
  }
  .banner.bannerWithImage .bloc {
    width: 100%;
  }
  .banner.bannerWithImage .imageBanner {
    display: none;
  }
}
.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 {
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-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 {
  -moz-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  animation: loading-orbit1 5s infinite;
  animation-delay: 0ms;
}
.loading-screen .loading--dot1::after {
  background: #ffffff;
}
.loading-screen .loading--dot2 {
  -moz-transform: rotate(215deg);
  -o-transform: rotate(215deg);
  -ms-transform: rotate(215deg);
  -webkit-transform: rotate(215deg);
  transform: rotate(215deg);
  animation: loading-orbit2 5s infinite;
  animation-delay: 125ms;
}
.loading-screen .loading--dot2::after {
  background: #f7f7f7;
}
.loading-screen .loading--dot3 {
  -moz-transform: rotate(205deg);
  -o-transform: rotate(205deg);
  -ms-transform: rotate(205deg);
  -webkit-transform: rotate(205deg);
  transform: rotate(205deg);
  animation: loading-orbit3 5s infinite;
  animation-delay: 250ms;
}
.loading-screen .loading--dot3::after {
  background: #b2b2b2;
}
.loading-screen .loading--dot4 {
  -moz-transform: rotate(195deg);
  -o-transform: rotate(195deg);
  -ms-transform: rotate(195deg);
  -webkit-transform: rotate(195deg);
  transform: rotate(195deg);
  animation: loading-orbit4 5s infinite;
  animation-delay: 375ms;
}
.loading-screen .loading--dot4::after {
  background: #b2b2b2;
}
.loading-screen .loading--dot5 {
  -moz-transform: rotate(185deg);
  -o-transform: rotate(185deg);
  -ms-transform: rotate(185deg);
  -webkit-transform: rotate(185deg);
  transform: rotate(185deg);
  animation: loading-orbit5 5s infinite;
  animation-delay: 500ms;
}
.loading-screen .loading--dot5::after {
  background: #888888;
}
@media (max-width: 600px) {
  .loading-screen h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.breadcrumb {
  padding: 15px 15px 15px 80px;
  background-color: #ed511a;
}
.breadcrumb ul li {
  padding-right: 10px;
  display: inline;
  color: #ffffff;
}
.breadcrumb ul li .link {
  color: #ffffff;
}
.breadcrumb ul li:not(:last-child):after {
  content: url(/media/1316/ico-fleche-fil-ariane.png);
  font-size: 18px;
  font-size: 1.125rem;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding: 15px 15px 15px 20px;
  }
}

.sidebar-membre {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 400px;
  overflow: hidden;
  background-color: #1f2533;
  color: #ffffff;
}
.sidebar-membre .mobile-button {
  position: absolute;
  left: 10px;
  top: 145px;
  display: none;
  cursor: pointer;
}
.sidebar-membre .mobile-button span {
  width: 30px;
  height: 4px;
  background-color: #ffffff;
  display: block;
  border-radius: 3px;
}
.sidebar-membre .mobile-button span:first-child {
  transform: translateY(100%) rotate(90deg);
}
@media (max-width: 1800px) {
  .sidebar-membre {
    position: absolute;
    height: 100%;
    width: 320px;
    padding-top: 120px;
    z-index: 15;
  }
}
@media (max-width: 1024px) {
  .sidebar-membre {
    width: 50px;
  }
  .sidebar-membre .espaceMembre,
  .sidebar-membre .contactInfos,
  .sidebar-membre .footer-sidebar {
    display: none;
  }
  .sidebar-membre .mobile-button {
    display: block;
  }
  .sidebar-membre.active {
    width: 320px;
  }
  .sidebar-membre.active .espaceMembre,
  .sidebar-membre.active .contactInfos,
  .sidebar-membre.active .footer-sidebar {
    display: block;
  }
  .sidebar-membre.active .mobile-button {
    transform: rotate(45deg);
  }
}
@media (max-width: 480px) {
  .sidebar-membre {
    width: 100%;
    height: 50px;
    padding-top: 0;
    top: 110px;
    min-height: auto;
    display: block;
    overflow: hidden;
  }
  .sidebar-membre .mobile-button {
    top: 20px;
  }
  .sidebar-membre.active {
    height: 100%;
    width: 100%;
  }
}
.sidebar-membre a {
  text-decoration-color: #f7741b;
}
.sidebar-membre .btn {
  padding: 10px 25px;
}
.sidebar-membre .espaceMembre {
  padding: 20px 70px;
  background-color: #1f2533;
}
.sidebar-membre .espaceMembre h3 {
  margin-bottom: 20px;
  text-transform: lowercase;
}
.sidebar-membre .espaceMembre .btn-connexion {
  margin-bottom: 20px;
}
.sidebar-membre .espaceMembre .spacing-link {
  margin-top: 30px;
}
.sidebar-membre .espaceMembre .welcome {
  margin-bottom: 20px;
}
.sidebar-membre .espaceMembre .welcome p a {
  text-decoration-color: #f7741b;
  text-decoration-thickness: 2px;
}
.sidebar-membre .espaceMembre .membre-menu li {
  list-style: none;
  border: 1px solid #2f384d;
  border-radius: 40px;
  margin-bottom: 10px;
}
.sidebar-membre .espaceMembre .membre-menu li a {
  display: block;
  padding: 15px 20px 15px 60px;
  margin: 0;
  text-decoration: none;
}
.sidebar-membre .espaceMembre .membre-menu li.listeMembre a {
  background: url(/media/1295/ico-nom-utilisateur.png) no-repeat 20px center;
}
.sidebar-membre .espaceMembre .membre-menu li.code a {
  background: url(/media/1294/ico-mot-de-passe.png) no-repeat 20px center;
}
.sidebar-membre .espaceMembre .membre-menu li.commande a, .sidebar-membre .espaceMembre .membre-menu li.guidePrep a {
  background: url(/media/1490/i_guide-preparatoire.png) no-repeat 20px center;
}
.sidebar-membre .espaceMembre .membre-menu li.electude a {
  background: url(/media/1488/i_electude.png) no-repeat 20px center;
}
.sidebar-membre .espaceMembre .membre-menu li.banqueImage a {
  background: url(/media/1487/i_banque-d-images.png) no-repeat 20px center;
}
.sidebar-membre .espaceMembre .acces-manuel {
  margin: 10px 0;
}
.sidebar-membre .espaceMembre .acces-manuel p {
  font-weight: 700;
}
.sidebar-membre .espaceMembre .section input {
  border: 1px solid #2f384d;
  background-color: transparent;
  border-radius: 30px;
  padding: 15px 15px 15px 40px;
  color: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
}
.sidebar-membre .espaceMembre .section input::placeholder {
  color: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
}
.sidebar-membre .espaceMembre .section input.username {
  background: url(/media/1295/ico-nom-utilisateur.png) no-repeat 20px center;
}
.sidebar-membre .espaceMembre .section input.password {
  background: url(/media/1294/ico-mot-de-passe.png) no-repeat 20px center;
}
.sidebar-membre .espaceMembre .competencesInfos {
  padding: 30px 0 0;
}
.sidebar-membre .espaceMembre .competencesInfos .image {
  background: #ffffff;
  border-radius: 100%;
  border: 10px solid #ffffff;
  display: block;
  width: 100px;
  margin: 0 auto 20px;
}
.sidebar-membre .espaceMembre .competencesInfos a {
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
.sidebar-membre .espaceMembre .competencesInfos a img {
  display: inline-block;
  margin: 0 0 3px 3px;
}
@media (max-width: 1800px) {
  .sidebar-membre .espaceMembre {
    padding: 20px 50px;
  }
}
.sidebar-membre .contactInfos {
  background: url(/media/1284/bg-sidebar.jpg) no-repeat center center;
  padding: 30px 80px;
  text-align: center;
}
.sidebar-membre .contactInfos .adresse {
  padding-top: 40px;
  margin-bottom: 20px;
  background: url(/media/1291/ico-pin-adresse.png) no-repeat top center/28px 34px;
}
.sidebar-membre .contactInfos .telephone {
  padding-top: 40px;
  background: url(/media/1292/ico-telephone.png) no-repeat top center/28px 34px;
}
@media (max-width: 1800px) {
  .sidebar-membre .contactInfos {
    padding: 60px 40px;
  }
}
.sidebar-membre .footer-sidebar {
  background-color: #1f2533;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  text-align: center;
}
.sidebar-membre .footer-sidebar p {
  padding: 10px 0;
}
.sidebar-membre .footer-sidebar a {
  text-decoration: none;
}

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

.infolettre {
  padding: 60px;
  background-color: #f7741b;
  color: #ffffff;
}
.infolettre .wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
.infolettre .wrapper .form-container {
  width: 50%;
}
.infolettre .wrapper .form-container .text-block {
  margin-bottom: 20px;
}
.infolettre .wrapper .form-container .text-block h3 {
  color: #ffffff;
}
.infolettre .wrapper .form-container .section .field label {
  color: #ffffff;
}
.infolettre .wrapper .form-container .section .field input {
  border: 0;
}
.infolettre .wrapper .form-container .submitInfolettre {
  width: fit-content;
  background-color: #1f2533;
  color: #ffffff;
  border: 0;
  border-radius: 50px;
  font-weight: 700;
  padding: 10px 25px;
  cursor: pointer;
}
.infolettre .wrapper .backToTop {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.infolettre .wrapper .backToTop img {
  margin: 0 auto;
  display: block;
}
.infolettre .wrapper .backToTop a {
  text-decoration: none;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .infolettre .wrapper .form-container {
    width: 60%;
  }
  .infolettre .wrapper .backToTop {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .infolettre {
    padding: 40px;
  }
  .infolettre .wrapper {
    padding: 0;
    flex-direction: column;
    gap: 100px;
  }
  .infolettre .wrapper .form-container {
    width: 100%;
  }
  .infolettre .wrapper .backToTop {
    width: 100%;
  }
}

.no-access {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px 60px;
}
.no-access .btn {
  background-color: #f7741b;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .no-access .btn:hover {
    background-color: #ed511a;
  }
}

.form-creation-membre input {
  border: 0;
}
.form-creation-membre select {
  margin-top: 5px;
}
.form-creation-membre .form--callToAction {
  justify-content: flex-end;
  margin-top: 20px;
}

.retour {
  padding: 0 20px;
  color: #f7741b;
}
.retour a {
  text-decoration: none;
}

.form-creationMdp {
  max-width: 750px;
  margin: 0 auto;
  padding: 40px 60px;
  background-color: #ffffff;
}
.form-creationMdp .conditions-mdp {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 15px;
  line-height: 160%;
}

.oublieMdp .section {
  align-items: center;
  margin-top: 25px;
}
.oublieMdp .section .field {
  max-width: 350px;
  margin-bottom: 0;
}
.oublieMdp .section .field input {
  border: 0;
}
@media (max-width: 768px) {
  .oublieMdp .section {
    display: flex;
  }
}
@media (max-width: 600px) {
  .oublieMdp .section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .oublieMdp .section .field {
    max-width: 100%;
  }
}

.panier {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: -1;
  min-width: 600px;
  max-height: 85vh;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #ffffff;
  margin: 0 0 0 auto;
  padding: 20px;
  transition: opacity 0.5s cubic-bezier(0.58, 0, 0.32, 1), box-shadow 0.5s cubic-bezier(0.58, 0, 0.32, 1), transform 0.8s cubic-bezier(0.58, 0, 0.32, 1);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.panier p {
  width: fit-content;
}
.panier .produit-panier {
  margin-bottom: 40px;
}
.panier .produit-panier:last-child {
  margin-bottom: 0;
}
.panier .produit-panier .nom-quantite-prix {
  display: flex;
  gap: 40px;
  align-items: center;
}
.panier .produit-panier .nom-quantite-prix .nom {
  width: 60%;
}
.panier .produit-panier .nom-quantite-prix .nom h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
.panier .produit-panier .nom-quantite-prix .quantite {
  width: 25%;
}
.panier .produit-panier .nom-quantite-prix .quantite .number-quantite input {
  width: fit-content;
}
.panier .produit-panier .nom-quantite-prix .prix {
  width: 15%;
  text-align: right;
}
.panier .produit-panier .nom-quantite-prix .prix p {
  width: 100%;
}
.panier .produit-panier .nom-quantite-prix .prix .delete {
  color: #f7741b;
  font-size: 12px;
  font-size: 0.75rem;
  cursor: pointer;
}
.panier.actif {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(5px);
  box-shadow: 0 10px 30px 5px rgba(0, 0, 0, 0.5);
}
.panier hr {
  height: 2px;
  background-color: #f7741b;
  display: block;
  margin: 0 0 20px;
}
.panier .commande {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.panier .commande .passerCommandeContainer {
  width: 50%;
}
.panier .commande .passerCommandeContainer a {
  padding: 10px 25px;
  margin: 0;
}
.panier .commande .sousTotal {
  width: 25%;
}
.panier .commande .prixSousTotal {
  width: 15%;
  text-align: right;
}
@media (max-width: 1450px) {
  .panier {
    transform: translateY(0);
  }
  .panier.actif {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(calc(-100% - 100px));
    box-shadow: 0 10px 30px 5px rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 768px) {
  .panier {
    min-width: auto;
    width: 450px;
    max-height: 500px;
  }
  .panier .produit-panier .nom-quantite-prix {
    gap: 30px;
    flex-direction: column;
  }
  .panier .produit-panier .nom-quantite-prix .nom {
    width: 100%;
  }
  .panier .produit-panier .nom-quantite-prix .nom h3 {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
  }
  .panier .produit-panier .nom-quantite-prix .quantite {
    width: 100%;
  }
  .panier .produit-panier .nom-quantite-prix .quantite .number-quantite input {
    width: fit-content;
  }
  .panier .produit-panier .nom-quantite-prix .prix {
    width: 100%;
    text-align: left;
  }
  .panier .produit-panier .nom-quantite-prix .prix .delete {
    padding-left: 0;
  }
  .panier .commande {
    flex-direction: column;
    gap: 15px;
  }
  .panier .commande .passerCommandeContainer {
    width: 100%;
  }
  .panier .commande .sousTotal {
    width: 100%;
  }
  .panier .commande .prixSousTotal {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .panier {
    width: 300px;
    max-height: 350px;
  }
}

.panier-paiement {
  pointer-events: auto;
  position: relative;
  transform: translateY(0);
  min-width: auto;
  width: 100%;
  margin: 30px 0 10px;
  background-color: transparent;
  padding: 20px 0;
  z-index: 1;
  opacity: 1;
}