@charset "UTF-8";
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
@import "fontawesome/css/all.min.css";
@import "_MyriadPro.css";
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: "Bitter-ExtraLightItalic";
  src: url("../fonts/Bitter/Bitter-ExtraLightItalic.woff2") format("woff2"), url("../fonts/Bitter/Bitter-ExtraLightItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-Light";
  src: url("../fonts/Bitter/Bitter-Light.woff2") format("woff2"), url("../fonts/Bitter/Bitter-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-ThinItalic";
  src: url("../fonts/Bitter/Bitter-ThinItalic.woff2") format("woff2"), url("../fonts/Bitter/Bitter-ThinItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-SemiBoldItalic";
  src: url("../fonts/Bitter/Bitter-SemiBoldItalic.woff2") format("woff2"), url("../fonts/Bitter/Bitter-SemiBoldItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-ThinItalic";
  src: url("../fonts/Bitter/Bitter-ThinItalic.woff2") format("woff2"), url("../fonts/Bitter/Bitter-ThinItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-MediumItalic";
  src: url("../fonts/Bitter/Bitter-MediumItalic.woff2") format("woff2"), url("../fonts/Bitter/Bitter-MediumItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-Thin";
  src: url("../fonts/Bitter/Bitter-Thin.woff2") format("woff2"), url("../fonts/Bitter/Bitter-Thin.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-BoldItalic";
  src: url("../fonts/Bitter/Bitter-BoldItalic.woff2") format("woff2"), url("../fonts/Bitter/Bitter-BoldItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-Medium";
  src: url("../fonts/Bitter/Bitter-Medium.woff2") format("woff2"), url("../fonts/Bitter/Bitter-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-Italic";
  src: url("../fonts/Bitter/Bitter-Italic.woff2") format("woff2"), url("../fonts/Bitter/Bitter-Italic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-SemiBold";
  src: url("../fonts/Bitter/Bitter-SemiBold.woff2") format("woff2"), url("../fonts/Bitter/Bitter-SemiBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-Black";
  src: url("../fonts/Bitter/Bitter-Black.woff2") format("woff2"), url("../fonts/Bitter/Bitter-Black.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-ExtraBoldItalic";
  src: url("../fonts/Bitter/Bitter-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/Bitter/Bitter-ExtraBoldItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-LightItalic";
  src: url("../fonts/Bitter/Bitter-LightItalic.woff2") format("woff2"), url("../fonts/Bitter/Bitter-LightItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-Bold";
  src: url("../fonts/Bitter/Bitter-Bold.woff2") format("woff2"), url("../fonts/Bitter/Bitter-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-ExtraLight";
  src: url("../fonts/Bitter/Bitter-ExtraLight.woff2") format("woff2"), url("../fonts/Bitter/Bitter-ExtraLight.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-BlackItalic";
  src: url("../fonts/Bitter/Bitter-BlackItalic.woff2") format("woff2"), url("../fonts/Bitter/Bitter-BlackItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-Regular";
  src: url("../fonts/Bitter/Bitter-Regular.woff2") format("woff2"), url("../fonts/Bitter/Bitter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-Thin";
  src: url("../fonts/Bitter/Bitter-Thin.woff2") format("woff2"), url("../fonts/Bitter/Bitter-Thin.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter-ExtraBold";
  src: url("../fonts/Bitter/Bitter-ExtraBold.woff2") format("woff2"), url("../fonts/Bitter/Bitter-ExtraBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[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;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff2") format("woff2"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px\9 ;
  /*lte IE 8*/
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

* {
  box-sizing: border-box;
  font-weight: normal;
  margin: 0;
}

body {
  position: relative;
}

.debug {
  display: none;
}

.zone_wrap {
  width: 1000px !important;
  max-width: 100% !important;
  margin: auto;
}
@media (max-width: 1020px) {
  .zone_wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

h1 {
  font: 70px/1.15 MyriadPro-Bold;
  text-transform: uppercase;
  text-align: center;
  color: #003282;
  padding: 0 20px;
  margin: calc(30px + 20 * (100vw - 400px) / 800) auto calc(20px + 20 * (100vw - 400px) / 800);
  font-size: calc(40px + 30 * (100vw - 400px) / 800);
}
@media (max-width: 400px) {
  h1 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 70px;
  }
}

h2 {
  font: 70px/1.15 MyriadPro-Bold;
  text-transform: uppercase;
  text-align: center;
  color: #003282;
  padding: 0 20px;
  margin: calc(30px + 20 * (100vw - 400px) / 800) auto calc(20px + 20 * (100vw - 400px) / 800);
  font-size: calc(36px + 34 * (100vw - 400px) / 800);
}
@media (max-width: 400px) {
  h2 {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 70px;
  }
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  font: 18px/1.5 Bitter-Regular;
  text-align: justify;
}
p strong {
  font: 18px/1.5 Bitter-Bold;
}
p a {
  font: 15px/1.5 MyriadPro-Bold;
  text-transform: uppercase;
  color: #003282;
}

a {
  text-decoration: none;
}
a.ancre:before, a.ancre:after {
  display: none;
}

.reseaux ul {
  list-style: none;
  display: flex;
  align-items: center;
}
.reseaux ul li a {
  color: #b4c800;
  height: 30px;
  width: 30px;
  margin: auto 10px;
}
.reseaux ul li a i {
  font-size: 25px;
}

.picto {
  margin: auto;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  border: solid 3px #003282;
  background: #b4c800;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -75px;
  left: calc(50% - 75px);
}
.picto i {
  font-size: 80px;
  color: #003282;
}
.picto:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -80px;
  width: 80px;
  border-top: solid 3px #003282;
}
.picto:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -80px;
  width: 80px;
  border-top: solid 3px #003282;
}
@media (max-width: 1000px) {
  .picto {
    height: 120px;
    width: 120px;
    top: -60px;
    left: calc(50% - 60px);
  }
  .picto i {
    font-size: 60px;
  }
}
@media (max-width: 900px) {
  .picto {
    height: 100px;
    width: 100px;
    top: -50px;
    left: calc(50% - 50px);
  }
  .picto i {
    font-size: 50px;
  }
}
@media (max-width: 800px) {
  .picto {
    height: 90px;
    width: 90px;
    top: -45px;
    left: calc(50% - 45px);
  }
  .picto i {
    font-size: 45px;
  }
}
@media (max-width: 700px) {
  .picto {
    height: 80px;
    width: 80px;
    top: -40px;
    left: calc(50% - 40px);
  }
  .picto i {
    font-size: 40px;
  }
}
@media (max-width: 560px) {
  .picto {
    height: 70px;
    width: 70px;
    top: -35px;
    left: calc(50% - 35px);
  }
  .picto i {
    font-size: 35px;
  }
}

header {
  border-bottom: solid 1px #003282;
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 999;
}
header .zone_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
header .logo {
  padding-top: 3px;
  width: 160px;
  height: auto;
}
header .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 15px;
}
header .navigation li {
  position: relative;
}
header .navigation li a, header .navigation li span {
  font: 16px/1.5 MyriadPro-Bold;
  text-transform: uppercase;
  color: #003282;
  cursor: pointer;
}
header .navigation li ul {
  display: none;
}
header .navigation li.active ul {
  background: fuchsia;
  display: block;
  position: absolute;
  top: 45px;
  left: -20px;
  background: white;
  list-style: none;
  padding-left: 20px;
  padding-top: 5px;
}
header .navigation li.active ul li {
  background: white;
  height: 60px;
  border-bottom: solid 1px #003282;
}
header .navigation li.active ul li a {
  padding-right: 20px;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
}
header .navigation li.active ul li:last-child {
  border: none;
}
header .navigation.mobile {
  display: none;
}
header .reseaux {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
header .reseaux li a {
  color: #b4c800;
}
header .btn_menu {
  display: none;
}
@media (max-width: 920px) {
  header {
    min-height: 70px;
    max-height: 100vh;
  }
  header .btn_menu {
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .btn_menu i {
    font-size: 30px;
  }
  header .navigation {
    display: none;
  }
  header .navigation.active {
    background: white;
    border-top: solid 1px #003282;
    border-bottom: solid 1px #003282;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: block;
    align-items: center;
    list-style: none;
    overflow-y: scroll;
    height: 100vh;
  }
  header .navigation.active li {
    min-height: 70px;
    margin-top: 20px;
    text-align: center;
  }
  header .navigation.active li span, header .navigation.active li a {
    text-align: center;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font: 16px/1.5 MyriadPro-Bold;
    text-transform: uppercase;
    color: #003282;
    margin-bottom: 15px;
  }
  header .navigation.active li ul {
    position: relative;
    display: block;
  }
  header .navigation.active li ul li {
    min-height: 40px;
    margin: 0;
    border-top: none;
    border-bottom: none;
  }
  header .navigation.active li ul li a {
    margin-bottom: 0;
    text-transform: none;
  }
  header .navigation.active > .sousnav {
    min-height: 40px;
  }
  header .navigation.active .mobile {
    display: flex;
  }
  header .navigation.active .mobile .reseaux li a {
    color: #b4c800;
  }
}

main {
  padding-top: 70px;
}
@media (max-width: 460px) {
  main p, main li {
    text-align: left !important;
  }
}

footer .footer_social {
  background: #003282;
  height: 40px;
}
footer .footer_social .zone_wrap, footer .footer_social .social {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_social .zone_wrap ul, footer .footer_social .social ul {
  list-style: none;
}
footer .footer_social .zone_wrap span, footer .footer_social .zone_wrap a, footer .footer_social .social span, footer .footer_social .social a {
  color: white;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  min-width: 40px;
  margin: 0 10px;
  font: 20px/1 Bitter-Regular;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 960px) {
  footer .footer_social .zone_wrap span, footer .footer_social .zone_wrap a, footer .footer_social .social span, footer .footer_social .social a {
    font-size: 15px;
  }
}
footer .footer_infos {
  background: #b4c800;
  padding: 50px 0;
}
footer .footer_infos .zone_wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  justify-items: center;
}
footer .footer_infos .zone_wrap .contact {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: black;
}
footer .footer_infos .zone_wrap .contact .logo {
  margin-bottom: 20px;
}
footer .footer_infos .zone_wrap .contact .aulnay {
  font: 20px/1.5 Bitter-Bold;
}
footer .footer_infos .zone_wrap .contact .adresse, footer .footer_infos .zone_wrap .contact .telephone {
  font: 20px/1.5 Bitter-Light;
}
footer .footer_infos .zone_wrap .contact .email {
  font: 20px/1.5 Bitter-Regular;
  color: #003282;
}
footer .footer_infos .zone_wrap .contact .horaires {
  font: 16px/1.5 Bitter-Regular;
  margin-top: 30px;
}
footer .footer_infos .zone_wrap .col.B {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
footer .footer_infos .zone_wrap .col.B .souscolA, footer .footer_infos .zone_wrap .col.B .souscolB {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .footer_infos .zone_wrap .navigation {
  list-style: none;
}
footer .footer_infos .zone_wrap .navigation li a {
  font: 20px/1.5 Bitter-Light;
  color: #003282;
}
footer .footer_infos .zone_wrap .navigation li.strong a {
  font: 20px/1.5 Bitter-Bold;
}
footer .footer_infos .zone_wrap .navigation.B {
  margin-bottom: 0;
}
footer .footer_infos .zone_wrap .mentions {
  font: 16px/1.5 Bitter-LightItalic;
  color: #003282;
  margin-top: 10px;
}
@media (max-width: 840px) {
  footer .footer_infos .zone_wrap > * {
    max-width: 300px;
  }
}
@media (max-width: 640px) {
  footer .footer_infos .zone_wrap {
    grid-template-columns: 1fr;
  }
  footer .footer_infos .zone_wrap .contact {
    text-align: center;
  }
  footer .footer_infos .zone_wrap .contact * {
    text-align: center;
  }
  footer .footer_infos .zone_wrap .contact > * {
    text-align: center;
  }
  footer .footer_infos .zone_wrap .contact .horaires {
    margin-bottom: 30px;
  }
  footer .footer_infos .zone_wrap .col .navigation, footer .footer_infos .zone_wrap .col .mentions {
    text-align: center;
  }
}
@media (max-width: 560px) {
  footer .footer_infos .zone_wrap .col .navigation, footer .footer_infos .zone_wrap .col .mentions {
    text-align: center;
  }
}

.menu_mobile {
  display: none;
}

#page_standard .contenu {
  background: #f0f0f0;
  padding: 100px 0;
}
#page_standard .contenu p {
  font: 18px/1.5 Bitter-Regular;
  text-align: justify;
  color: black;
}
#page_standard .contenu p strong {
  font: 18px/1.5 Bitter-Bold;
}
#page_standard .contenu p a {
  font: 15px/1.5 MyriadPro-Bold;
  text-transform: uppercase;
  color: #003282;
}
#page_standard .contenu p a:before {
  content: "\f0da";
  font: 20px/1.5 Pro;
  margin-right: 6px;
  position: relative;
  top: 2px;
}
#page_standard .contenu ul {
  padding-left: 20px;
}
#page_standard .contenu ul li {
  font: 18px/1.5 Bitter-Regular;
}

#page_accueil .diaporama .une_diapo {
  width: 100vw;
  height: 700px;
  max-height: 75vh;
  background: center no-repeat;
  background-size: cover;
}
#page_accueil .offres {
  position: relative;
  padding-top: calc(40px + 60 * (100vw - 400px) / 800);
}
#page_accueil .offres h2 {
  margin-top: 0;
}
#page_accueil .chk_une_offre_accueil {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 300px;
}
#page_accueil .chk_une_offre_accueil .zone_image {
  order: 1;
  background: center no-repeat;
  background-size: cover;
}
#page_accueil .chk_une_offre_accueil .zone_texte {
  background: #f0f0f0;
  order: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 100px;
}
#page_accueil .chk_une_offre_accueil .zone_texte .zone h3 {
  font: 50px/1.1 MyriadPro-Bold;
  color: black;
}
#page_accueil .chk_une_offre_accueil .zone_texte .zone .texte ul li {
  list-style: none;
  display: flex;
  align-items: center;
}
#page_accueil .chk_une_offre_accueil .zone_texte .zone .texte ul li a {
  font: 15px/1.5 MyriadPro-Bold;
  text-transform: uppercase;
  color: #003282;
}
#page_accueil .chk_une_offre_accueil .zone_texte .zone .texte ul li a em {
  padding-left: 20px;
  color: black;
}
#page_accueil .chk_une_offre_accueil .zone_texte .zone .texte ul li a:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f0da";
  font-size: 20px;
  margin-right: 6px;
  position: relative;
  top: 2px;
}
#page_accueil .chk_une_offre_accueil:nth-child(odd) .zone_image {
  order: 2;
}
#page_accueil .chk_une_offre_accueil:nth-child(odd) .zone_texte {
  order: 1;
  padding-right: 100px;
  padding-left: 0;
  justify-content: flex-end;
  text-align: right;
}
@media (max-width: 840px) {
  #page_accueil .chk_une_offre_accueil .zone_texte {
    padding: 30px;
    justify-content: center;
    align-items: center;
  }
  #page_accueil .chk_une_offre_accueil:nth-child(odd) .zone_texte {
    padding: 20px;
    justify-content: center;
    text-align: right;
  }
}
@media (max-width: 768px) {
  #page_accueil .chk_une_offre_accueil {
    grid-template-columns: 1fr;
  }
  #page_accueil .chk_une_offre_accueil .zone_texte {
    padding: 40px;
  }
  #page_accueil .chk_une_offre_accueil .zone_image {
    height: 300px;
  }
  #page_accueil .chk_une_offre_accueil:nth-child(odd) .zone_image {
    order: 1;
  }
  #page_accueil .chk_une_offre_accueil:nth-child(odd) .zone_texte {
    order: 2;
    padding: 40px;
    justify-content: center;
    text-align: left;
  }
}
#page_accueil .zone_presentation {
  display: grid;
  grid-template-columns: 38vw 1fr;
}
#page_accueil .zone_presentation .zone_image {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-rows: 200px 1fr;
}
#page_accueil .zone_presentation .zone_image .logo {
  text-align: right;
  padding: 60px 40px;
  background: #003282;
}
#page_accueil .zone_presentation .zone_image .logo img {
  margin: auto;
  width: 300px;
  height: 100px;
}
#page_accueil .zone_presentation .zone_image .photo {
  width: 100%;
  height: 100%;
  background: center no-repeat;
  background-size: cover;
}
#page_accueil .zone_presentation .zone_image .photo img {
  width: 100%;
  object-fit: contain;
}
#page_accueil .zone_presentation .zone_texte {
  padding: 50px 80px;
  background: #b4c800;
}
#page_accueil .zone_presentation .zone_texte .texte {
  max-width: 570px;
}
#page_accueil .zone_presentation .zone_texte .texte p {
  font: 18px/1.5 Bitter-Regular;
  text-align: justify;
  color: black;
}
#page_accueil .zone_presentation .zone_texte .texte p strong {
  font: 18px/1.5 Bitter-Bold;
}
#page_accueil .zone_presentation .zone_texte .texte p a {
  font: 15px/1.5 MyriadPro-Bold;
  text-transform: uppercase;
  color: #003282;
}
#page_accueil .zone_presentation .zone_texte .texte p a:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f0da";
  font-size: 20px;
  margin-right: 6px;
  position: relative;
  top: 2px;
}
#page_accueil .zone_presentation .zone_texte .texte ul {
  padding-left: 20px;
}
#page_accueil .zone_presentation .zone_texte .texte ul li {
  font: 18px/1.5 Bitter-Regular;
}
@media (max-width: 960px) {
  #page_accueil .zone_presentation {
    grid-template-columns: 1fr;
  }
  #page_accueil .zone_presentation .zone_image .logo {
    text-align: center;
  }
  #page_accueil .zone_presentation .zone_image .photo {
    display: none;
  }
  #page_accueil .zone_presentation .zone_texte .texte {
    max-width: none;
  }
}
@media (max-width: 800px) {
  #page_accueil .zone_presentation .zone_texte {
    padding: 40px 20px;
  }
}
#page_accueil .zone_contact {
  padding: 150px 0 30px;
  position: relative;
}
#page_accueil .zone_contact .picto {
  margin: 100px auto;
}
#page_accueil .zone_contact .texte p {
  font: 30px/1.5 Bitter-Regular;
  font-size: calc(20px + 10 * (100vw - 400px) / 600);
  text-align: center;
}
@media (max-width: 400px) {
  #page_accueil .zone_contact .texte p {
    font-size: 20px;
  }
}
@media (min-width: 1000px) {
  #page_accueil .zone_contact .texte p {
    font-size: 30px;
  }
}
#page_accueil .zone_contact .texte p a {
  text-align: center;
}
#page_accueil .zone_contact .texte p a:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f0da";
  font-size: 20px;
  margin-right: 6px;
  position: relative;
  top: 2px;
}

#page_groupe h1 {
  margin-bottom: calc(40px + 60 * (100vw - 400px) / 800);
}
#page_groupe .diaporama {
  position: relative;
}
#page_groupe .diaporama .une_diapo {
  width: 100vw;
  height: 400px;
  background: center no-repeat;
  background-size: cover;
}
#page_groupe .zone_presentation .presentation {
  display: grid;
  grid-template-columns: 39vw 1fr;
}
#page_groupe .zone_presentation .presentation .encart {
  background: #003282;
  color: white;
  text-align: right;
  padding: 60px 50px;
}
#page_groupe .zone_presentation .presentation .encart .logo {
  width: 300px;
  height: 100px;
}
#page_groupe .zone_presentation .presentation .encart .zone {
  margin-left: auto;
  width: 300px;
}
#page_groupe .zone_presentation .presentation .encart .zone ul {
  margin-top: 50px;
  padding-left: 20px;
}
#page_groupe .zone_presentation .presentation .encart .zone ul li {
  font: 30px/1.5 Bitter-Regular;
  text-align: left;
}
#page_groupe .zone_presentation .presentation .texte {
  padding: 50px 80px;
  background: #b4c800;
}
#page_groupe .zone_presentation .presentation .texte .zone {
  max-width: 570px;
}
#page_groupe .zone_presentation .presentation .texte .zone p {
  font: 18px/1.5 Bitter-Regular;
  text-align: justify;
  color: black;
}
#page_groupe .zone_presentation .presentation .texte .zone p strong {
  font: 18px/1.5 Bitter-Bold;
}
#page_groupe .zone_presentation .presentation .texte .zone p a {
  font: 15px/1.5 MyriadPro-Bold;
  text-transform: uppercase;
  color: #003282;
}
#page_groupe .zone_presentation .presentation .texte .zone p a:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f0da";
  font-size: 20px;
  margin-right: 6px;
  position: relative;
  top: 2px;
}
#page_groupe .zone_presentation .presentation .texte .zone ul {
  padding-left: 20px;
}
#page_groupe .zone_presentation .presentation .texte .zone ul li {
  font: 18px/1.5 Bitter-Regular;
}
@media (max-width: 960px) {
  #page_groupe .zone_presentation .presentation {
    grid-template-columns: 1fr;
  }
  #page_groupe .zone_presentation .presentation .encart, #page_groupe .zone_presentation .presentation .texte {
    text-align: center;
    padding: 40px 20px;
  }
  #page_groupe .zone_presentation .presentation .encart .zone, #page_groupe .zone_presentation .presentation .texte .zone {
    margin: auto;
  }
  #page_groupe .zone_presentation .presentation .zone_image .logo {
    text-align: center;
  }
  #page_groupe .zone_presentation .presentation .zone_image .photo {
    display: none;
  }
  #page_groupe .zone_presentation .presentation .zone_texte .texte {
    max-width: none;
  }
}
@media (max-width: 800px) {
  #page_groupe .zone_presentation .presentation .zone_texte {
    padding: 40px;
  }
}
#page_groupe .zone_chiffres {
  width: 1000px !important;
  max-width: 100% !important;
  margin: auto;
}
@media (max-width: 1020px) {
  #page_groupe .zone_chiffres {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#page_groupe .zone_chiffres .chiffres {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: center;
  justify-items: center;
  text-align: center;
  gap: 60px;
  padding-bottom: 30px;
}
#page_groupe .zone_chiffres .chiffres p, #page_groupe .zone_chiffres .chiffres li {
  font: 25px/1.5 Bitter-Regular;
  font-size: calc(20px + 5 * (100vw - 400px) / 600);
}
@media (max-width: 400px) {
  #page_groupe .zone_chiffres .chiffres p, #page_groupe .zone_chiffres .chiffres li {
    font-size: 20px;
  }
}
@media (min-width: 1000px) {
  #page_groupe .zone_chiffres .chiffres p, #page_groupe .zone_chiffres .chiffres li {
    font-size: 25px;
  }
}
#page_groupe .zone_chiffres .chiffres img {
  margin: calc(20px + 10 * (100vw - 400px) / 600) auto calc(30px + 10 * (100vw - 400px) / 600);
}
@media (max-width: 960px) {
  #page_groupe .zone_chiffres .chiffres {
    grid-template-columns: 1fr;
  }
}
#page_groupe .banner {
  width: 100vw;
  height: 400px;
  background: center no-repeat;
  background-size: cover;
}
#page_groupe .zone_equipe .equipe {
  display: grid;
  grid-template-columns: 39vw 1fr;
}
#page_groupe .zone_equipe .equipe .encart {
  background: #003282;
  color: white;
  text-align: right;
}
#page_groupe .zone_equipe .equipe .encart .logo {
  width: 300px;
  height: 100px;
}
#page_groupe .zone_equipe .equipe .encart .zone {
  margin-left: auto;
  margin-right: 0;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#page_groupe .zone_equipe .equipe .encart .zone p {
  font: 18px/1.5 Bitter-Regular;
  text-align: left;
  width: 300px;
}
#page_groupe .zone_equipe .equipe .encart .zone ul {
  width: 300px;
  padding-left: 20px;
}
#page_groupe .zone_equipe .equipe .encart .zone ul li {
  font: 18px/1.5 Bitter-Regular;
  text-align: left;
}
#page_groupe .zone_equipe .equipe .encart .image {
  height: 540px;
  width: 100%;
  background: center no-repeat;
  background-size: cover;
}
#page_groupe .zone_equipe .equipe .texte {
  padding: 50px 80px;
  background: #b4c800;
}
#page_groupe .zone_equipe .equipe .texte .zone {
  max-width: 570px;
}
#page_groupe .zone_equipe .equipe .texte .zone p {
  font: 25px/1.5 Bitter-Regular;
  text-align: left;
  color: black;
  margin-bottom: 20px;
  font-size: calc(20px + 5 * (100vw - 400px) / 600);
}
@media (max-width: 400px) {
  #page_groupe .zone_equipe .equipe .texte .zone p {
    font-size: 20px;
  }
}
@media (min-width: 1000px) {
  #page_groupe .zone_equipe .equipe .texte .zone p {
    font-size: 25px;
  }
}
#page_groupe .zone_equipe .equipe .texte .zone p em {
  font: 20px/1.5 Bitter-Regular;
  font-size: calc(18px + 7 * (100vw - 400px) / 600);
}
@media (max-width: 400px) {
  #page_groupe .zone_equipe .equipe .texte .zone p em {
    font-size: 18px;
  }
}
@media (min-width: 1000px) {
  #page_groupe .zone_equipe .equipe .texte .zone p em {
    font-size: 25px;
  }
}
#page_groupe .zone_equipe .equipe .texte .zone p strong {
  font: 25px/1.5 Bitter-Bold;
  font-size: calc(18px + 7 * (100vw - 400px) / 600);
}
@media (max-width: 400px) {
  #page_groupe .zone_equipe .equipe .texte .zone p strong {
    font-size: 18px;
  }
}
@media (min-width: 1000px) {
  #page_groupe .zone_equipe .equipe .texte .zone p strong {
    font-size: 25px;
  }
}
#page_groupe .zone_equipe .equipe .texte .zone p a {
  font: 25px/1.5 Bitter-Regular;
  text-transform: none;
  color: #003282;
  font-size: calc(18px + 7 * (100vw - 400px) / 600);
}
#page_groupe .zone_equipe .equipe .texte .zone p a:before {
  display: none;
}
@media (max-width: 400px) {
  #page_groupe .zone_equipe .equipe .texte .zone p a {
    font-size: 18px;
  }
}
@media (min-width: 1000px) {
  #page_groupe .zone_equipe .equipe .texte .zone p a {
    font-size: 25px;
  }
}
#page_groupe .zone_equipe .equipe .texte .zone ul {
  padding-left: 20px;
}
#page_groupe .zone_equipe .equipe .texte .zone ul li {
  font: 18px/1.5 Bitter-Regular;
}
@media (max-width: 960px) {
  #page_groupe .zone_equipe .equipe {
    grid-template-columns: 1fr;
  }
  #page_groupe .zone_equipe .equipe .texte {
    padding: 40px 20px;
  }
  #page_groupe .zone_equipe .equipe .texte .zone {
    margin: auto;
  }
  #page_groupe .zone_equipe .equipe .encart {
    text-align: center;
  }
  #page_groupe .zone_equipe .equipe .encart .zone {
    margin: auto;
  }
  #page_groupe .zone_equipe .equipe .encart .zone p, #page_groupe .zone_equipe .equipe .encart .zone ul {
    margin: 0 auto 0 0;
    width: auto;
  }
  #page_groupe .zone_equipe .equipe .zone_image .logo {
    text-align: center;
  }
  #page_groupe .zone_equipe .equipe .zone_image .photo {
    display: none;
  }
  #page_groupe .zone_equipe .equipe .zone_texte .texte {
    padding: 40px 20px;
    max-width: none;
  }
}
@media (max-width: 800px) {
  #page_groupe .zone_equipe .equipe .zone_texte {
    padding: 40px;
  }
}
#page_groupe .zone_garage .garage {
  display: grid;
  grid-template-columns: 50vw 50vw;
}
#page_groupe .zone_garage .garage .texte {
  background: #f0f0f0;
  padding: 60px 90px;
  display: flex;
  justify-content: flex-end;
}
#page_groupe .zone_garage .garage .texte .zone {
  max-width: 400px;
  font: 18px/1.5 Bitter-Regular;
  text-align: justify;
}
#page_groupe .zone_garage .garage .texte .zone ul {
  padding-left: 20px;
}
#page_groupe .zone_garage .garage .image {
  background: center no-repeat;
  background-size: cover;
  height: 100%;
}
@media (max-width: 960px) {
  #page_groupe .zone_garage .garage {
    grid-template-columns: 1fr;
  }
  #page_groupe .zone_garage .garage .texte {
    padding: 40px 20px;
  }
  #page_groupe .zone_garage .garage .texte .zone {
    max-width: none;
  }
  #page_groupe .zone_garage .garage .image {
    height: 400px;
  }
}
#page_groupe .zone_savoir .savoir {
  display: grid;
  grid-template-columns: 50vw 50vw;
  background: #f0f0f0;
}
#page_groupe .zone_savoir .savoir .texte {
  background: #f0f0f0;
  padding: 60px 90px;
}
#page_groupe .zone_savoir .savoir .texte .zone {
  max-width: 400px;
  font: 18px/1.5 Bitter-Regular;
  text-align: justify;
}
#page_groupe .zone_savoir .savoir .texte .zone ul {
  padding-left: 20px;
}
#page_groupe .zone_savoir .savoir .texte .zone ul li a {
  font: 15px/1.5 MyriadPro-Bold;
  text-transform: uppercase;
  color: #003282;
}
#page_groupe .zone_savoir .savoir .texte .zone ul li a:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f0da";
  font-size: 20px;
  margin-right: 6px;
  position: relative;
  top: 2px;
}
#page_groupe .zone_savoir .savoir .image {
  background: center no-repeat;
  background-size: cover;
  height: 600px;
}
@media (max-width: 960px) {
  #page_groupe .zone_savoir .savoir {
    grid-template-columns: 1fr;
  }
  #page_groupe .zone_savoir .savoir .texte {
    order: 1;
    padding: 40px 20px;
  }
  #page_groupe .zone_savoir .savoir .texte .zone {
    margin: auto;
    max-width: none;
  }
  #page_groupe .zone_savoir .savoir .image {
    order: 2;
  }
}
#page_groupe .zone_contact .texte ul li a {
  font: 15px/1.5 MyriadPro-Bold;
  text-transform: uppercase;
  color: #003282;
}
#page_groupe .zone_contact .texte ul li a:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f0da";
  font-size: 20px;
  margin-right: 6px;
  position: relative;
  top: 2px;
}

#page_engagement .presentation {
  background: #b4c800;
  padding: 40px;
  width: 100vw;
  font: 20px/1.5 Bitter-Regular;
  text-align: center;
}
#page_engagement h2 {
  margin-bottom: calc(40px + 30 * (100vw - 400px) / 600);
}
#page_engagement .chapitres .chk_un_chapitre_engagements.c1 h3 {
  display: none;
}
#page_engagement .chapitres .chk_un_chapitre_engagements h3 {
  font: 70px/1.15 MyriadPro-Bold;
  text-transform: uppercase;
  text-align: center;
  color: #003282;
  padding: 0 20px;
  margin: 30px auto calc(40px + 30 * (100vw - 400px) / 600);
  font-size: calc(40px + 30 * (100vw - 400px) / 600);
}
@media (max-width: 400px) {
  #page_engagement .chapitres .chk_un_chapitre_engagements h3 {
    font-size: 40px;
  }
}
@media (min-width: 1000px) {
  #page_engagement .chapitres .chk_un_chapitre_engagements h3 {
    font-size: 70px;
  }
}
#page_engagement .chapitres .chk_un_chapitre_engagements h4 {
  font: 40px/1.1 MyriadPro-Bold;
  font-size: calc(30px + 10 * (100vw - 400px) / 600);
  text-transform: none;
  text-align: left;
  color: black;
  padding: 0;
  margin: 30px auto 20px;
}
@media (max-width: 400px) {
  #page_engagement .chapitres .chk_un_chapitre_engagements h4 {
    font-size: 30px;
  }
}
@media (min-width: 1000px) {
  #page_engagement .chapitres .chk_un_chapitre_engagements h4 {
    font-size: 40px;
  }
}
#page_engagement .chapitres .chk_un_chapitre_engagements h4:first-of-type {
  margin-top: 0;
}
#page_engagement .chapitres .chk_un_chapitre_engagements ul {
  padding-left: 20px;
}
#page_engagement .chapitres .chk_un_chapitre_engagements .zone {
  display: grid;
  grid-template-columns: 50% 50%;
  background: #f0f0f0;
  padding: calc(50px + 50 * (100vw - 400px) / 600) 0;
  position: relative;
}
#page_engagement .chapitres .chk_un_chapitre_engagements .zone .image {
  max-width: 500px;
  width: 100%;
  height: 100%;
  background: center no-repeat;
  background-size: cover;
  order: 1;
  margin: auto 0 auto auto;
  padding: 0 0 0 20px;
}
#page_engagement .chapitres .chk_un_chapitre_engagements .zone .texte {
  order: 2;
  padding: 0 20px;
}
#page_engagement .chapitres .chk_un_chapitre_engagements .zone .texte .zone_texte {
  max-width: 500px;
  text-align: justify;
  font: 18px/1.5 Bitter-Regular;
}
#page_engagement .chapitres .chk_un_chapitre_engagements.c2 .zone, #page_engagement .chapitres .chk_un_chapitre_engagements.c4 .zone, #page_engagement .chapitres .chk_un_chapitre_engagements.c6 .zone, #page_engagement .chapitres .chk_un_chapitre_engagements.c8 .zone {
  display: grid;
  grid-template-columns: 50vw 50vw;
}
#page_engagement .chapitres .chk_un_chapitre_engagements.c2 .zone .image, #page_engagement .chapitres .chk_un_chapitre_engagements.c4 .zone .image, #page_engagement .chapitres .chk_un_chapitre_engagements.c6 .zone .image, #page_engagement .chapitres .chk_un_chapitre_engagements.c8 .zone .image {
  order: 2;
  margin: auto auto auto 75px;
  padding: 0 20px;
}
@media (max-width: 1020px) {
  #page_engagement .chapitres .chk_un_chapitre_engagements.c2 .zone .image, #page_engagement .chapitres .chk_un_chapitre_engagements.c4 .zone .image, #page_engagement .chapitres .chk_un_chapitre_engagements.c6 .zone .image, #page_engagement .chapitres .chk_un_chapitre_engagements.c8 .zone .image {
    margin: auto;
  }
}
#page_engagement .chapitres .chk_un_chapitre_engagements.c2 .zone .texte, #page_engagement .chapitres .chk_un_chapitre_engagements.c4 .zone .texte, #page_engagement .chapitres .chk_un_chapitre_engagements.c6 .zone .texte, #page_engagement .chapitres .chk_un_chapitre_engagements.c8 .zone .texte {
  order: 1;
  margin: auto 0 auto auto;
  padding: 0 0 0 20px;
}
@media (max-width: 840px) {
  #page_engagement .chapitres .chk_un_chapitre_engagements .zone {
    grid-template-columns: 1fr;
  }
  #page_engagement .chapitres .chk_un_chapitre_engagements .zone .image {
    order: 2 !important;
    margin: 30px auto !important;
    max-width: none;
    text-align: center;
  }
  #page_engagement .chapitres .chk_un_chapitre_engagements .zone .image img {
    margin: auto;
  }
  #page_engagement .chapitres .chk_un_chapitre_engagements .zone .texte {
    order: 1 !important;
    margin: auto !important;
  }
  #page_engagement .chapitres .chk_un_chapitre_engagements.c2 .zone, #page_engagement .chapitres .chk_un_chapitre_engagements.c4 .zone, #page_engagement .chapitres .chk_un_chapitre_engagements.c6 .zone, #page_engagement .chapitres .chk_un_chapitre_engagements.c8 .zone {
    grid-template-columns: 1fr;
  }
  #page_engagement .chapitres .chk_un_chapitre_engagements.c2 .zone .image, #page_engagement .chapitres .chk_un_chapitre_engagements.c4 .zone .image, #page_engagement .chapitres .chk_un_chapitre_engagements.c6 .zone .image, #page_engagement .chapitres .chk_un_chapitre_engagements.c8 .zone .image {
    order: 2 !important;
    margin: 30px auto !important;
    max-width: none;
    text-align: center;
  }
  #page_engagement .chapitres .chk_un_chapitre_engagements.c2 .zone .texte, #page_engagement .chapitres .chk_un_chapitre_engagements.c4 .zone .texte, #page_engagement .chapitres .chk_un_chapitre_engagements.c6 .zone .texte, #page_engagement .chapitres .chk_un_chapitre_engagements.c8 .zone .texte {
    order: 1 !important;
    margin: auto !important;
  }
}
@media (max-width: 580px) {
  #page_engagement .chapitres .chk_un_chapitre_engagements .zone .texte, #page_engagement .chapitres .chk_un_chapitre_engagements .zone .image {
    padding: 0 20px;
  }
  #page_engagement .chapitres .chk_un_chapitre_engagements.c2 .zone .texte, #page_engagement .chapitres .chk_un_chapitre_engagements.c2 .zone .image, #page_engagement .chapitres .chk_un_chapitre_engagements.c4 .zone .texte, #page_engagement .chapitres .chk_un_chapitre_engagements.c4 .zone .image, #page_engagement .chapitres .chk_un_chapitre_engagements.c6 .zone .texte, #page_engagement .chapitres .chk_un_chapitre_engagements.c6 .zone .image, #page_engagement .chapitres .chk_un_chapitre_engagements.c8 .zone .texte, #page_engagement .chapitres .chk_un_chapitre_engagements.c8 .zone .image {
    padding: 0 20px;
  }
}

#page_offres .presentation {
  background: #b4c800;
  padding: 40px;
  width: 100vw;
}
#page_offres .presentation p {
  font: 20px/1.5 Bitter-Regular;
  text-align: justify;
  text-align-last: center;
}
#page_offres h2#transports {
  margin-bottom: calc(40px + 60 * (100vw - 400px) / 800);
}
#page_offres .diaporama {
  position: relative;
}
#page_offres .diaporama .une_diapo {
  width: 100vw;
  height: 400px;
  background: center no-repeat;
  background-size: cover;
}
#page_offres .chapitres .chk_un_chapitre_offres h3,
#page_offres .chapitres .chk_un_chapitre_services h3 {
  font: 70px/1.15 MyriadPro-Light;
  text-transform: uppercase;
  text-align: center;
  color: #003282;
  padding: 0 20px;
  margin: 30px auto;
  font-size: calc(40px + 30 * (100vw - 400px) / 600);
}
@media (max-width: 400px) {
  #page_offres .chapitres .chk_un_chapitre_offres h3,
#page_offres .chapitres .chk_un_chapitre_services h3 {
    font-size: 40px;
  }
}
@media (min-width: 1000px) {
  #page_offres .chapitres .chk_un_chapitre_offres h3,
#page_offres .chapitres .chk_un_chapitre_services h3 {
    font-size: 70px;
  }
}
#page_offres .chapitres .chk_un_chapitre_offres h4,
#page_offres .chapitres .chk_un_chapitre_services h4 {
  font: 50px/1.1 MyriadPro-Bold;
  font-size: calc(30px + 10 * (100vw - 400px) / 600);
  text-transform: none;
  text-align: left;
  color: black;
  padding: 0;
  margin: 0 auto 30px;
}
@media (max-width: 400px) {
  #page_offres .chapitres .chk_un_chapitre_offres h4,
#page_offres .chapitres .chk_un_chapitre_services h4 {
    font-size: 30px;
  }
}
@media (min-width: 1000px) {
  #page_offres .chapitres .chk_un_chapitre_offres h4,
#page_offres .chapitres .chk_un_chapitre_services h4 {
    font-size: 40px;
  }
}
#page_offres .chapitres .chk_un_chapitre_offres .zone,
#page_offres .chapitres .chk_un_chapitre_services .zone {
  display: grid;
  grid-template-columns: 50vw 50vw;
  background: #f0f0f0;
  position: relative;
}
#page_offres .chapitres .chk_un_chapitre_offres .zone .image,
#page_offres .chapitres .chk_un_chapitre_services .zone .image {
  width: 100%;
  height: 700px;
  background: center no-repeat;
  background-size: cover;
  order: 1;
}
#page_offres .chapitres .chk_un_chapitre_offres .zone .texte,
#page_offres .chapitres .chk_un_chapitre_services .zone .texte {
  order: 2;
  padding: 50px 50px;
}
#page_offres .chapitres .chk_un_chapitre_offres .zone .texte .zone_texte,
#page_offres .chapitres .chk_un_chapitre_services .zone .texte .zone_texte {
  max-width: 405px;
  text-align: left;
  font: 18px/1.5 Bitter-Regular;
}
#page_offres .chapitres .chk_un_chapitre_offres .zone .texte .zone_texte ul,
#page_offres .chapitres .chk_un_chapitre_services .zone .texte .zone_texte ul {
  padding-left: 20px;
}
@media (max-width: 820px) {
  #page_offres .chapitres .chk_un_chapitre_offres .zone,
#page_offres .chapitres .chk_un_chapitre_services .zone {
    grid-template-columns: 1fr;
  }
  #page_offres .chapitres .chk_un_chapitre_offres .zone .image,
#page_offres .chapitres .chk_un_chapitre_services .zone .image {
    height: 400px;
    order: 2;
  }
  #page_offres .chapitres .chk_un_chapitre_offres .zone .texte,
#page_offres .chapitres .chk_un_chapitre_services .zone .texte {
    order: 1;
    padding: 40px 20px;
  }
  #page_offres .chapitres .chk_un_chapitre_offres .zone .texte .zone_texte,
#page_offres .chapitres .chk_un_chapitre_services .zone .texte .zone_texte {
    max-width: none;
  }
}
#page_offres .chapitres .chk_un_chapitre_offres.c2 .zone, #page_offres .chapitres .chk_un_chapitre_offres.c4 .zone, #page_offres .chapitres .chk_un_chapitre_offres.c6 .zone, #page_offres .chapitres .chk_un_chapitre_offres.c8 .zone,
#page_offres .chapitres .chk_un_chapitre_services.c2 .zone,
#page_offres .chapitres .chk_un_chapitre_services.c4 .zone,
#page_offres .chapitres .chk_un_chapitre_services.c6 .zone,
#page_offres .chapitres .chk_un_chapitre_services.c8 .zone {
  display: grid;
  grid-template-columns: 50vw 50vw;
}
#page_offres .chapitres .chk_un_chapitre_offres.c2 .zone .image, #page_offres .chapitres .chk_un_chapitre_offres.c4 .zone .image, #page_offres .chapitres .chk_un_chapitre_offres.c6 .zone .image, #page_offres .chapitres .chk_un_chapitre_offres.c8 .zone .image,
#page_offres .chapitres .chk_un_chapitre_services.c2 .zone .image,
#page_offres .chapitres .chk_un_chapitre_services.c4 .zone .image,
#page_offres .chapitres .chk_un_chapitre_services.c6 .zone .image,
#page_offres .chapitres .chk_un_chapitre_services.c8 .zone .image {
  order: 2;
}
#page_offres .chapitres .chk_un_chapitre_offres.c2 .zone .texte, #page_offres .chapitres .chk_un_chapitre_offres.c4 .zone .texte, #page_offres .chapitres .chk_un_chapitre_offres.c6 .zone .texte, #page_offres .chapitres .chk_un_chapitre_offres.c8 .zone .texte,
#page_offres .chapitres .chk_un_chapitre_services.c2 .zone .texte,
#page_offres .chapitres .chk_un_chapitre_services.c4 .zone .texte,
#page_offres .chapitres .chk_un_chapitre_services.c6 .zone .texte,
#page_offres .chapitres .chk_un_chapitre_services.c8 .zone .texte {
  order: 1;
  margin: auto 0 auto auto;
}
@media (max-width: 820px) {
  #page_offres .chapitres .chk_un_chapitre_offres.c2 .zone, #page_offres .chapitres .chk_un_chapitre_offres.c4 .zone, #page_offres .chapitres .chk_un_chapitre_offres.c6 .zone, #page_offres .chapitres .chk_un_chapitre_offres.c8 .zone,
#page_offres .chapitres .chk_un_chapitre_services.c2 .zone,
#page_offres .chapitres .chk_un_chapitre_services.c4 .zone,
#page_offres .chapitres .chk_un_chapitre_services.c6 .zone,
#page_offres .chapitres .chk_un_chapitre_services.c8 .zone {
    grid-template-columns: 1fr;
  }
  #page_offres .chapitres .chk_un_chapitre_offres.c2 .zone .image, #page_offres .chapitres .chk_un_chapitre_offres.c4 .zone .image, #page_offres .chapitres .chk_un_chapitre_offres.c6 .zone .image, #page_offres .chapitres .chk_un_chapitre_offres.c8 .zone .image,
#page_offres .chapitres .chk_un_chapitre_services.c2 .zone .image,
#page_offres .chapitres .chk_un_chapitre_services.c4 .zone .image,
#page_offres .chapitres .chk_un_chapitre_services.c6 .zone .image,
#page_offres .chapitres .chk_un_chapitre_services.c8 .zone .image {
    height: 400px;
  }
  #page_offres .chapitres .chk_un_chapitre_offres.c2 .zone .texte, #page_offres .chapitres .chk_un_chapitre_offres.c4 .zone .texte, #page_offres .chapitres .chk_un_chapitre_offres.c6 .zone .texte, #page_offres .chapitres .chk_un_chapitre_offres.c8 .zone .texte,
#page_offres .chapitres .chk_un_chapitre_services.c2 .zone .texte,
#page_offres .chapitres .chk_un_chapitre_services.c4 .zone .texte,
#page_offres .chapitres .chk_un_chapitre_services.c6 .zone .texte,
#page_offres .chapitres .chk_un_chapitre_services.c8 .zone .texte {
    padding: 40px 20px;
  }
  #page_offres .chapitres .chk_un_chapitre_offres.c2 .zone .texte .zone_texte, #page_offres .chapitres .chk_un_chapitre_offres.c4 .zone .texte .zone_texte, #page_offres .chapitres .chk_un_chapitre_offres.c6 .zone .texte .zone_texte, #page_offres .chapitres .chk_un_chapitre_offres.c8 .zone .texte .zone_texte,
#page_offres .chapitres .chk_un_chapitre_services.c2 .zone .texte .zone_texte,
#page_offres .chapitres .chk_un_chapitre_services.c4 .zone .texte .zone_texte,
#page_offres .chapitres .chk_un_chapitre_services.c6 .zone .texte .zone_texte,
#page_offres .chapitres .chk_un_chapitre_services.c8 .zone .texte .zone_texte {
    max-width: none;
  }
}
#page_offres .chapitres .chk_un_chapitre_services h3 {
  font: 70px/1.15 MyriadPro-Bold;
  margin-bottom: calc(40px + 40 * (100vw - 400px) / 800);
}
#page_offres .chapitres .chk_un_chapitre_services .zone .texte {
  margin-top: calc(40px + 60 * (100vw - 400px) / 800) !important;
}
#page_offres .zone_affretement {
  width: 100vw;
  padding: 60px 0;
  background: #003282;
}
#page_offres .zone_affretement .zone_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-content: center;
  justify-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
#page_offres .zone_affretement h3 {
  font: 50px/1.1 MyriadPro-Regular;
  font-size: calc(36px + 14 * (100vw - 400px) / 600);
  text-transform: uppercase;
  text-align: center;
  color: #b4c800;
  margin: auto auto 15px;
}
@media (max-width: 400px) {
  #page_offres .zone_affretement h3 {
    font-size: 36px;
  }
}
@media (min-width: 1000px) {
  #page_offres .zone_affretement h3 {
    font-size: 50px;
  }
}
#page_offres .zone_affretement p {
  max-width: 320px;
  font: 18px/1.5 Bitter-Regular;
  text-align: center;
  color: white;
  margin: auto;
}
#page_offres .zone_affretement .gauche {
  width: 300px;
}
#page_offres .zone_affretement .droite {
  width: 300px;
}

#page_une_actualite .actualite {
  background: #f0f0f0;
  padding: calc(30px + 20 * (100vw - 400px) / 800) 0;
}
#page_une_actualite .actualite .zone_wrap {
  display: grid;
  grid-template-columns: 50% 50%;
}
#page_une_actualite .actualite .zone_wrap .image {
  padding-right: calc(30px + 40 * (100vw - 400px) / 600);
}
#page_une_actualite .actualite .zone_wrap .image.mobile {
  display: none;
}
#page_une_actualite .actualite .zone_wrap .textes {
  max-width: 500px;
}
#page_une_actualite .actualite .zone_wrap .textes .date {
  font: 16px/1.5 MyriadPro-Bold;
  text-transform: uppercase;
  color: #b4c800;
  border-top: solid 1px #b4c800;
  border-bottom: solid 1px #b4c800;
  height: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
#page_une_actualite .actualite .zone_wrap .textes h2 {
  font: 40px/1.1 MyriadPro-Bold;
  font-size: calc(30px + 10 * (100vw - 400px) / 600);
  text-align: left;
  text-transform: none;
  color: black;
  margin: 0 0 20px;
  padding: 0;
}
@media (max-width: 400px) {
  #page_une_actualite .actualite .zone_wrap .textes h2 {
    font-size: 30px;
  }
}
@media (min-width: 1000px) {
  #page_une_actualite .actualite .zone_wrap .textes h2 {
    font-size: 40px;
  }
}
#page_une_actualite .actualite .zone_wrap .textes .texte {
  font: 18px/1.5 Bitter-Regular;
  text-align: left;
}
@media (max-width: 640px) {
  #page_une_actualite .actualite .zone_wrap {
    grid-template-columns: 1fr;
  }
  #page_une_actualite .actualite .zone_wrap .image {
    display: none;
  }
  #page_une_actualite .actualite .zone_wrap .textes {
    max-width: none;
  }
  #page_une_actualite .actualite .zone_wrap .textes .date {
    text-align: center;
    margin: 30px auto 15px;
  }
  #page_une_actualite .actualite .zone_wrap .textes .mobile {
    display: block;
    margin: 0 auto 20px;
    padding: 0 20px;
    text-align: center !important;
  }
}
#page_une_actualite .actualites {
  padding: 60px 0;
}
#page_une_actualite .actualites .zone_wrap {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
#page_une_actualite .actualites .zone_wrap .slick-prev {
  z-index: 990;
  left: 0;
}
#page_une_actualite .actualites .zone_wrap .slick-prev:before {
  content: "\f0d9";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 30px;
}
#page_une_actualite .actualites .zone_wrap .slick-next {
  z-index: 990;
  right: 0;
}
#page_une_actualite .actualites .zone_wrap .slick-next:before {
  color: #b4c800;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f0da";
  font-size: 30px;
}
#page_une_actualite .actualites .zone_wrap .slick-dots li {
  width: 20px;
  height: 20px;
}
#page_une_actualite .actualites .zone_wrap .slick-dots li button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f0f0f0;
}
#page_une_actualite .actualites .zone_wrap .slick-dots li button:before {
  content: "";
}
#page_une_actualite .actualites .zone_wrap .slick-dots li.slick-active button {
  background: #b4c800;
}
#page_une_actualite .actualites .zone_wrap .chk_une_actualite {
  flex: 0 0 300px;
  text-align: center;
  margin: 0 10px;
}
#page_une_actualite .actualites .zone_wrap .chk_une_actualite .image {
  text-align: center;
}
#page_une_actualite .actualites .zone_wrap .chk_une_actualite .image img {
  margin: auto;
}
#page_une_actualite .actualites .zone_wrap .chk_une_actualite .date {
  font: 16px/1.5 MyriadPro-Bold;
  text-transform: uppercase;
  color: #b4c800;
  border-top: solid 1px #b4c800;
  border-bottom: solid 1px #b4c800;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  text-align: center;
}
#page_une_actualite .actualites .zone_wrap .chk_une_actualite h3 {
  font: 20px/1.25 MyriadPro-Bold;
  text-align: center;
  color: black;
}

#page_contact .zone_contact {
  display: grid;
  grid-template-columns: 40vw 60vw;
  height: 470px;
  background: #b4c800;
}
#page_contact .zone_contact .contact {
  margin: 60px 75px auto auto;
}
#page_contact .zone_contact .contact .zone {
  width: 255px;
  padding-left: 20px;
}
#page_contact .zone_contact .contact .zone .logo {
  margin-bottom: 15px;
}
#page_contact .zone_contact .contact .zone .aulnay {
  font: 20px/1.5 Bitter-Bold;
}
#page_contact .zone_contact .contact .zone .adresse {
  font: 20px/1.5 Bitter-Light;
}
#page_contact .zone_contact .contact .zone .telephone {
  font: 20px/1.5 Bitter-Light;
}
#page_contact .zone_contact .contact .zone .horaires {
  margin-top: 30px;
}
#page_contact .zone_contact .googlemap iframe {
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 840px) {
  #page_contact .zone_contact {
    height: auto;
    grid-template-columns: 1fr;
  }
  #page_contact .zone_contact .contact {
    margin: 30px auto;
  }
  #page_contact .zone_contact .googlemap {
    height: 450px;
  }
}
#page_contact h2.emploi {
  margin-bottom: calc(80px + 40 * (100vw - 400px) / 800);
}
#page_contact .zone_emploi {
  background: #f0f0f0;
  position: relative;
  padding: 0;
}
#page_contact .zone_emploi .chk_une_offre_emploi {
  max-width: 500px;
  margin: -40px auto 40px;
  padding-top: calc(40px + 60 * (100vw - 400px) / 800);
  padding-bottom: 60px;
}
#page_contact .zone_emploi .chk_une_offre_emploi h3 {
  font: 40px/1.1 MyriadPro-Bold;
  font-size: calc(30px + 10 * (100vw - 400px) / 600);
  margin: 0 auto 30px;
}
@media (max-width: 400px) {
  #page_contact .zone_emploi .chk_une_offre_emploi h3 {
    font-size: 30px;
  }
}
@media (min-width: 1000px) {
  #page_contact .zone_emploi .chk_une_offre_emploi h3 {
    font-size: 40px;
  }
}
@media (max-width: 500px) {
  #page_contact .zone_emploi .chk_une_offre_emploi h3 {
    text-align: center;
  }
}
#page_contact .zone_emploi .chk_une_offre_emploi p {
  font: 18px/1.5 Bitter-Regular;
}
#page_contact .zone_emploi .chk_une_offre_emploi ul {
  padding-left: 20px;
}
#page_contact h2#candidature {
  margin-bottom: calc(40px + 60 * (100vw - 400px) / 800);
}
#page_contact .zone_candidature {
  background: #f0f0f0;
  padding: calc(40px + 60 * (100vw - 400px) / 800) 0 calc(30px + 30 * (100vw - 400px) / 600);
  position: relative;
}
#page_contact .zone_candidature .zone_retour {
  margin-bottom: 30px;
}
#page_contact .zone_candidature .zone_retour .candidature_ko, #page_contact .zone_candidature .zone_retour .candidature_ok {
  width: 100%;
  height: 100%;
  background: darkred;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
}
#page_contact .zone_candidature .zone_retour .candidature_ko p, #page_contact .zone_candidature .zone_retour .candidature_ok p {
  font: 18px/1.5 MyriadPro-BoldSemiCn;
  text-align: center;
  color: white;
}
#page_contact .zone_candidature .zone_retour .candidature_ok {
  background: limegreen;
}
#page_contact .zone_candidature #forme_candidature {
  display: flex;
  justify-content: space-between;
  justify-items: center;
  flex-wrap: wrap;
}
#page_contact .zone_candidature #forme_candidature fieldset {
  border: none;
}
#page_contact .zone_candidature #forme_candidature .zone_nom label, #page_contact .zone_candidature #forme_candidature .zone_adresse label {
  display: flex;
  justify-content: space-between;
  font: 20px/1.5 MyriadPro-Regular;
  text-align: left;
}
#page_contact .zone_candidature #forme_candidature .zone_nom label .error, #page_contact .zone_candidature #forme_candidature .zone_adresse label .error {
  font: 16px/1.5 MyriadPro-BoldSemiCnIt;
  color: darkred;
}
#page_contact .zone_candidature #forme_candidature .zone_nom input, #page_contact .zone_candidature #forme_candidature .zone_adresse input {
  width: 405px;
  height: 50px;
  background: white;
  padding: 3px 10px;
  margin-bottom: 30px;
  border: none;
}
#page_contact .zone_candidature #forme_candidature .zone_nom .styled-select, #page_contact .zone_candidature #forme_candidature .zone_adresse .styled-select {
  display: block;
  background: white;
  border: none;
  height: 50px;
  padding: 0;
  width: 405px;
  font: 20px/1.5 MyriadPro-Regular;
  margin-bottom: 30px;
  position: relative;
}
#page_contact .zone_candidature #forme_candidature .zone_nom .styled-select:after, #page_contact .zone_candidature #forme_candidature .zone_adresse .styled-select:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f0d7";
  background: #b4c800;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #003282;
}
#page_contact .zone_candidature #forme_candidature .zone_nom .styled-select select, #page_contact .zone_candidature #forme_candidature .zone_adresse .styled-select select {
  -webkit-appearance: none;
  background: 0 0;
  border: none;
  border-radius: 0;
  font-size: 16px;
  height: 50px;
  line-height: 1;
  outline: 0;
  padding: 5px 10px;
  text-align: left;
  width: 100%;
  font: 20px/1.5 MyriadPro-Regular;
}
#page_contact .zone_candidature #forme_candidature .fichiers {
  border: none;
  flex: 0 0 100%;
}
#page_contact .zone_candidature #forme_candidature .fichiers .btn_envoyez {
  width: 320px;
  height: 60px;
  border: none;
  background: #b4c800;
  color: #003282;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto 20px;
  font: 16px/1.2 MyriadPro-Bold;
  font-size: calc(14px + 2 * (100vw - 400px) / 600);
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 400px) {
  #page_contact .zone_candidature #forme_candidature .fichiers .btn_envoyez {
    font-size: 14px;
  }
}
@media (min-width: 1000px) {
  #page_contact .zone_candidature #forme_candidature .fichiers .btn_envoyez {
    font-size: 16px;
  }
}
#page_contact .zone_candidature #forme_candidature .fichiers .btn_envoyez em {
  font: 16px/1.2 MyriadPro-Regular;
}
#page_contact .zone_candidature #forme_candidature .zone_fichiers {
  display: none;
}
#page_contact .zone_candidature #forme_candidature .zone_fichiers.active {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#page_contact .zone_candidature #forme_candidature .conditions {
  flex: 0 0 100%;
  max-width: 600px;
  margin: 30px auto;
}
#page_contact .zone_candidature #forme_candidature .validation {
  flex: 0 0 100%;
  max-width: 600px;
  margin: 30px auto;
}
#page_contact .zone_candidature #forme_candidature .btn_envoyer {
  width: 320px;
  height: 60px;
  background: #003282;
  color: #b4c800;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
#page_contact .zone_candidature #forme_candidature .btn_envoyer:after {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  background: #003282;
  color: #b4c800;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font: 16px/1.2 MyriadPro-Bold;
  text-transform: uppercase;
}
@media (max-width: 940px) {
  #page_contact .zone_candidature #forme_candidature .zone_nom, #page_contact .zone_candidature #forme_candidature .zone_adresse {
    margin: auto;
  }
  #page_contact .zone_candidature #forme_candidature .zone_nom > *, #page_contact .zone_candidature #forme_candidature .zone_adresse > * {
    margin: auto;
  }
  #page_contact .zone_candidature #forme_candidature .zone_nom input, #page_contact .zone_candidature #forme_candidature .zone_adresse input {
    width: 300px;
  }
  #page_contact .zone_candidature #forme_candidature .zone_nom .styled-select, #page_contact .zone_candidature #forme_candidature .zone_adresse .styled-select {
    width: 300px;
  }
}
@media (max-width: 740px) {
  #page_contact .zone_candidature #forme_candidature .zone_nom input, #page_contact .zone_candidature #forme_candidature .zone_adresse input {
    width: 400px;
    max-width: 100%;
  }
  #page_contact .zone_candidature #forme_candidature .zone_nom .styled-select, #page_contact .zone_candidature #forme_candidature .zone_adresse .styled-select {
    width: 400px;
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  #page_contact .zone_candidature #forme_candidature .zone_nom, #page_contact .zone_candidature #forme_candidature .zone_adresse {
    margin: 0;
    width: 100%;
  }
  #page_contact .zone_candidature #forme_candidature .zone_nom input, #page_contact .zone_candidature #forme_candidature .zone_adresse input {
    width: 100%;
    max-width: 400px;
  }
  #page_contact .zone_candidature #forme_candidature .zone_nom .styled-select, #page_contact .zone_candidature #forme_candidature .zone_adresse .styled-select {
    width: 100%;
    max-width: 400px;
  }
}

.qq-upload-button {
  padding: 10px !important;
  background: rgba(180, 200, 0, 0.75) !important;
  width: 100% !important;
  min-height: 60px !important;
  display: flex !important;
  justify-items: center !important;
  align-items: center !important;
}
.qq-clear-button {
  display: none !important;
}

.file-uploader-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.file-uploader-items .file-wrap {
  float: none !important;
  background: rgba(0, 50, 130, 0.75);
  color: white !important;
  padding: 15px !important;
  margin: 15px auto !important;
  white-space: pre;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.file-uploader-items .thumb {
  display: none;
}
.file-uploader-items .titre {
  display: block;
}

/*# sourceMappingURL=main.css.map */
