@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  aspect-ratio: attr(width)/attr(height);
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

ul, li, ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
ul::marker, li::marker, ol::marker {
  display: none !important;
}

.preload * {
  transition-property: none !important;
  transform: none !important;
  animation: none !important;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* hue rotation for themes */
/*** font base size ***/
/*** font face ***/
/*** font size ***/
/*** line height ***/
/*** header ***/
h5 {
  font-size: 1.6rem;
  font-family: "Archivo black", serif;
  line-height: 1.2;
  font-weight: 300;
}

h4, .h4 {
  font-size: 1.8rem;
  font-family: "Archivo black", serif;
  font-weight: 300;
}

h3, .h3 {
  font-size: 2.1rem;
  font-family: "Archivo black", serif;
  font-weight: 300;
}

h2, .h2 {
  font-size: 2.5rem;
  font-family: "Archivo black", serif;
  line-height: 1.2;
  font-weight: 300;
}

h1, .h1 {
  font-size: 5rem;
  font-family: "Archivo black", serif;
  line-height: 1.2;
  font-weight: 300;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade_in-scale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-1rem);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes fade_in-down {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes slidedownAnimation {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes gradiantRotation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes bouncing {
  0% {
    transform: translateY(0) scaleY(0.9) scaleX(1.05);
  }
  10% {
    transform: scaleY(0.98) scaleX(1.01);
  }
  100% {
    transform: translateY(-30px) scaleY(1) scaleX(1);
  }
}
@keyframes shakeAndScale {
  0% {
    transform: translate(0%, -5%) scale(1.02);
  }
  25% {
    transform: translate(0%, -5%) scale(1.02) rotate(5deg);
  }
  40% {
    transform: translate(0%, -5%) scale(1.02) rotate(-5deg);
  }
  50% {
    transform: translate(0%, -5%) scale(1.02) rotate(2deg);
  }
  60% {
    transform: translate(0%, -5%) scale(1.02) rotate(-5deg);
  }
  75% {
    transform: translate(0%, -5%) scale(1.02) rotate(5deg);
  }
  100% {
    transform: translate(0%, -5%) scale(1.02);
  }
}
form {
  margin: 2rem 0;
  padding: 2rem;
  transition: all 0.3s ease-in-out;
  background: #efefef;
  border-radius: 10px;
}
form .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1rem 2rem;
}
form .alert {
  font-size: 1.3rem;
  font-style: italic;
  padding: 3px 6px 1px;
  border-radius: 3px;
  margin-top: 2px;
}
form .alert--danger {
  background: #ea7272;
  color: #fff;
}

fieldset {
  border: 1px solid #efefef;
  margin: 0 0 3rem 0;
  padding: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
fieldset h3 {
  background: #bcc3bf;
  color: #454545;
  margin: 0 0 2rem 0;
  padding: 13px 15px 6px;
}
fieldset .grid {
  margin: 2rem;
}
fieldset hr {
  border-top: 1px solid #efefef;
}

.form-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0rem;
  gap: 5px;
  position: relative;
}
.form-group label {
  padding-top: 1rem;
  color: #888;
}

.form-control {
  background: #fff;
  border: 1px solid #bcc3bf;
  color: #444;
  border-radius: 4px;
  padding: 4px 8px 2px;
  line-height: 2;
  width: 100%;
}
.form-control:required {
  font-weight: 600;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  background: #f5f5f5;
  border-bottom: 2px solid #fbe100;
}

.form-control-is-invalid {
  border: 1px solid red;
}

.form__actions {
  display: flex;
  gap: 2rem;
}

form.loading {
  opacity: 0.2;
}

.invalid-feedback {
  color: red;
}

input[type=file].form-control {
  border-bottom: 0;
  font-size: 1.4rem;
}
input[type=file].form-control:focus {
  border-bottom: 0;
}
input[type=file].form-control:required {
  font-weight: 400;
}

textarea.form-control {
  min-height: 120px;
  width: 100%;
}
textarea.form-control:focus {
  background: #fff;
  box-shadow: none;
  outline: none;
}

label.required {
  font-weight: 700;
}

.radio-group {
  display: flex;
  gap: 15px;
}

#js__password__toggle {
  position: absolute;
  bottom: 7px;
  right: 9px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease-in-out;
}
#js__password__toggle img {
  height: 28px;
}
#js__password__toggle:hover {
  opacity: 1;
}

/*** select drop list customisée ***/
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected.form-control {
  border: 1px solid #efefef;
  padding: 4px 28px 3px 8px;
  color: #444;
  width: 100%;
}
.select-selected.form-control:focus {
  box-shadow: none;
  background: #f5f5f5;
  border-bottom: 2px solid #fbe100;
}
.select-selected.form-control:after {
  position: absolute;
  content: "";
  top: 20px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #444 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.form-control.select-arrow-active:after {
  border-color: transparent transparent #444 transparent;
  top: 12px;
}

/* style the items (options), including the selected item: */
.select-items div {
  color: #fff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #fbe100;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/*** check box ***/
.checkbox-group {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0 0 0;
}
.checkbox-group > * {
  position: relative;
  /* Aspect de la case */
  /* Aspect de la coche */
  /* Aspect non cochée */
  /* Aspect cochée */
  /* Disabled checkbox */
  /* Disabled checked */
  /* Accessibility focus */
}
.checkbox-group > * [type=checkbox]:not(:checked),
.checkbox-group > * [type=checkbox]:checked {
  /* Cache la checkbox sans
     la rendre invisible aux
     lecteurs d'écran */
  position: absolute;
  left: 0;
  opacity: 0.01;
}
.checkbox-group > * [type=checkbox]:not(:checked) + label,
.checkbox-group > * [type=checkbox]:checked + label {
  position: relative; /* permet de positionner la checkbox */
  padding-left: 2.3em; /* place pour la box */
  font-size: 1.4rem;
  line-height: 1.7;
  cursor: pointer;
}
.checkbox-group > * [type=checkbox]:not(:checked) + label::before,
.checkbox-group > * [type=checkbox]:checked + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  background: transparent;
  border-radius: 2px;
  opacity: 1;
  transition: all 0.275s;
}
.checkbox-group > * [type=checkbox]:not(:checked) + label::after,
.checkbox-group > * [type=checkbox]:checked + label::after {
  content: "✓";
  speak: never; /* Pour être sûr que le lecteur d'écran ne lira pas "fois" */
  position: absolute;
  top: 7px;
  left: 2px;
  font-size: 19px;
  font-weight: 800;
  color: #fbe100;
  line-height: 0;
  transition: all 0.2s; /* Petite transition */
}
.checkbox-group > * [type=checkbox]:not(:checked) + label::after {
  opacity: 0;
  transform: scale(0) rotate(45deg);
}
.checkbox-group > * [type=checkbox]:checked + label::after {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.checkbox-group > * [type=checkbox]:disabled:not(:checked) + label::before,
.checkbox-group > * [type=checkbox]:disabled:checked + label::before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #e9e9e9;
}
.checkbox-group > * [type=checkbox]:disabled:checked + label::after {
  color: #777;
}
.checkbox-group > * [type=checkbox]:disabled + label {
  color: #aaa;
}
.checkbox-group > * [type=checkbox]:checked:focus + label::before,
.checkbox-group > * [type=checkbox]:not(:checked):focus + label::before {
  border: 2px solid #fff;
}

/*** Login form ***/
.login__form {
  max-width: 500px;
}

/**
* Jquery form builder
 */
.rendered-form {
  background: rgba(239, 239, 239, 0.937254902);
  padding: 2rem;
  border-radius: 20px;
}
.rendered-form .formbuilder-checkbox label {
  padding-top: 0;
}
.rendered-form .formbuilder-checkbox [type=checkbox]:not(:checked) + label::before,
.rendered-form .formbuilder-checkbox [type=checkbox]:checked + label::before {
  border: 1px solid #aaa;
}
.rendered-form .form-control {
  height: 42px !important;
}

@media screen and (min-width: 800px) {
  .rendered-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .rendered-form > div:not(.form-group) {
    grid-column: span 2;
  }
  .rendered-form .formbuilder-textarea {
    grid-column: span 2;
  }
}
@media screen and (min-width: 1000px) {
  .rendered-form {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .rendered-form > div:not(.form-group) {
    grid-column: span 3;
  }
  .rendered-form .formbuilder-textarea {
    grid-column: span 2;
  }
}
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}

/*! shareon v1.6.2 */
.shareon {
  font-size: 0 !important;
}

.shareon > * {
  background-color: #ccc;
  border: none;
  border-radius: 3.33333px;
  box-sizing: content-box;
  color: #fff;
  display: inline-block;
  height: 24px;
  line-height: 1.5;
  margin: 3px;
  min-width: 16px;
  padding: 6px 10px;
  position: relative;
  transition: opacity 0.3s ease;
  vertical-align: middle;
}

.shareon > :hover {
  border: none;
  cursor: pointer;
  opacity: 0.7;
}

.shareon > :not(:empty) {
  font-size: 16px;
  text-decoration: none;
}

.shareon > :not(:empty):before {
  background-position: 0 50%;
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 28px;
}

.shareon > :before {
  background-repeat: no-repeat;
  background-size: 20px 20px;
  content: "";
  display: inline-block;
  height: 20px;
  left: 8px;
  position: absolute;
  top: 8px;
  vertical-align: bottom;
  width: 20px;
}

.shareon > .facebook {
  background-color: #1877f2;
}

.shareon > .facebook:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.998 12c0-6.628-5.372-12-11.999-12C5.372 0 0 5.372 0 12c0 5.988 4.388 10.952 10.124 11.852v-8.384H7.078v-3.469h3.046V9.356c0-3.008 1.792-4.669 4.532-4.669 1.313 0 2.686.234 2.686.234v2.953H15.83c-1.49 0-1.955.925-1.955 1.874V12h3.328l-.532 3.469h-2.796v8.384c5.736-.9 10.124-5.864 10.124-11.853z'/%3E%3C/svg%3E");
}

.shareon > .linkedin {
  background-color: #2867b2;
}

.shareon > .linkedin:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.722 23.72h-4.91v-7.692c0-1.834-.038-4.194-2.559-4.194-2.56 0-2.95 1.995-2.95 4.06v7.827H8.394V7.902h4.716v2.157h.063c.659-1.244 2.261-2.556 4.655-2.556 4.974 0 5.894 3.274 5.894 7.535zM.388 7.902h4.923v15.819H.388zM2.85 5.738A2.849 2.849 0 0 1 0 2.886a2.851 2.851 0 1 1 2.85 2.852z'/%3E%3C/svg%3E");
}

.shareon > .linkedin:not(:empty):before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065 2.064 2.064 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E");
}

.shareon > .messenger {
  background-color: #09f;
}

.shareon > .messenger:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 11.64C0 4.95 5.24 0 12 0s12 4.95 12 11.64-5.24 11.64-12 11.64c-1.21 0-2.38-.16-3.47-.46a.96.96 0 0 0-.64.05L5.5 23.92a.96.96 0 0 1-1.35-.85l-.07-2.14a.97.97 0 0 0-.32-.68A11.39 11.39 0 0 1 0 11.64zm8.32-2.19-3.52 5.6c-.35.53.32 1.14.82.75l3.79-2.87c.26-.2.6-.2.87 0l2.8 2.1c.84.63 2.04.4 2.6-.48l3.52-5.6c.35-.53-.32-1.13-.82-.75l-3.79 2.87c-.25.2-.6.2-.86 0l-2.8-2.1a1.8 1.8 0 0 0-2.61.48z'/%3E%3C/svg%3E");
}

.shareon > .pinterest {
  background-color: #ee0023;
}

.shareon > .pinterest:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026z'/%3E%3C/svg%3E");
}

.shareon > .telegram {
  background-color: #179cde;
}

.shareon > .telegram:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.517 11.31c-.962.382-1.466.756-1.512 1.122-.088.702.924.921 2.196 1.335 1.037.337 2.433.731 3.158.747.658.014 1.393-.257 2.204-.814 5.533-3.735 8.39-5.622 8.57-5.663.126-.029.301-.065.42.04.119.106.107.306.095.36-.101.429-5.3 5.156-5.599 5.467-1.143 1.187-2.443 1.913-.437 3.235 1.735 1.144 2.746 1.873 4.534 3.045 1.142.75 2.039 1.637 3.218 1.529.543-.05 1.104-.56 1.389-2.083.673-3.598 1.996-11.392 2.302-14.604a3.585 3.585 0 0 0-.034-.8c-.027-.158-.084-.383-.29-.55-.243-.197-.619-.24-.787-.236-.764.013-1.936.42-7.579 2.767C11.39 7.03 7.44 8.73 1.517 11.31z'/%3E%3C/svg%3E");
}

.shareon > .twitter {
  background-color: #1da1f2;
}

.shareon > .twitter:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.954 4.569a10 10 0 0 1-2.825.775 4.958 4.958 0 0 0 2.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 0 0-8.384 4.482C7.691 8.094 4.066 6.13 1.64 3.161a4.822 4.822 0 0 0-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 0 1-2.228-.616v.061a4.923 4.923 0 0 0 3.946 4.827 4.996 4.996 0 0 1-2.212.085 4.937 4.937 0 0 0 4.604 3.417 9.868 9.868 0 0 1-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 0 0 7.557 2.209c9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63a9.936 9.936 0 0 0 2.46-2.548l-.047-.02z'/%3E%3C/svg%3E");
}

.shareon > .whatsapp {
  background-color: #25d366;
}

.shareon > .whatsapp:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51a12.8 12.8 0 0 0-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413z'/%3E%3C/svg%3E");
}

.shareon {
  margin: 0;
}
.shareon > * {
  height: 16px;
  padding: 4px 8px 13px;
  background: #000023 !important;
}
.shareon > *:before {
  background-size: 16px;
  width: 16px;
  height: 16px;
  top: 9px;
}

@media screen and (min-width: 800px) {
  .shareon {
    display: flex;
  }
}
a {
  transition: all 0.2s ease-in-out;
  color: #000023;
}

.small {
  font-size: 1.2rem;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

blockquote {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-style: italic;
  margin: 0.25em 0;
  line-height: 1.45;
  position: relative;
  color: #444;
  text-indent: 30px;
}
@media screen and (min-width: 800px) {
  blockquote {
    padding: 0.35em 40px;
  }
}

blockquote:before {
  display: block;
  padding-left: 10px;
  content: "“";
  font-size: 80px;
  position: absolute;
  left: -50px;
  top: -30px;
  color: #7a7a7a;
}

code {
  display: block;
  font-size: 1.4rem;
  background: #efefef;
  border: 1px solid #888;
  border-radius: 4px;
  padding: 1.5rem;
}

.date {
  color: #454545;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-top: 1.6rem;
}

.pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem 0.3rem;
}
.pagination li {
  padding: 8px;
  border: 1px solid #dedede;
  font-size: 1.2rem;
  border-radius: 3px;
}
.pagination li:hover {
  background: #dedede;
}
.pagination li.active {
  background: #000023;
  color: #fff;
  font-weight: 800;
}

figure legend {
  margin: 5px 0;
  color: #bcc3bf;
  font-style: italic;
  font-size: 1.4rem;
}

.sitemap li {
  padding: 8px 0;
  list-style: disc;
}

.shareon {
  margin: 3rem 0 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4vw;
}

.grid--2c {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 640px) {
  .grid--2c {
    grid-template-columns: 1fr 1fr;
  }
}

table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 300px;
  width: 100%;
}
table thead tr {
  background-color: #000023;
  color: #ffffff;
  text-align: left;
}
table th, table td {
  padding: 12px 15px;
}
table tbody tr {
  border-bottom: 1px solid #dddddd;
}
table tr:nth-of-type(even) {
  background-color: #f3f3f3;
}
table tbody tr:last-of-type {
  border-bottom: 2px solid #000023;
}

.adminpanel {
  position: fixed;
  z-index: 1000;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20rem;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  margin-left: -20rem;
  transition: all 0.3s ease-out;
}
.adminpanel > div {
  position: relative;
  height: 100vh;
}

.adminpanel__arrow {
  position: absolute;
  top: 30%;
  margin-left: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
}
.adminpanel__arrow span {
  display: block;
  transition: all 0.3s ease-out;
}

.adminpanel.adminpanel--open {
  margin-left: 0;
}
.adminpanel.adminpanel--open .adminpanel__arrow span {
  transform: rotate(180deg);
}

.adminpanel__menu {
  height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.adminpanel__menu .adminpanel__vars {
  margin-top: 8rem;
}
.adminpanel__menu p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.admin__widget__tools {
  display: none;
  position: absolute;
  z-index: 999;
  top: 0px;
  left: -20px;
  font-size: 1.4rem;
}
.admin__widget__tools:hover .admin__widget__handler {
  display: none;
  background: #efefef !important;
  color: #fff !important;
}
.admin__widget__tools:hover .admin__widget__content {
  display: block;
}

.admin__widget__handler {
  position: absolute;
  background: #fff url(/assets/default/img/three-dots-vertical_1.svg) no-repeat center center !important;
  background-size: contain;
  border: 1px solid #aaa;
  border-radius: 3px !important;
  padding: 4px !important;
  width: 15px !important;
  height: 25px !important;
  color: #888 !important;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 5;
}
.admin__widget__handler img {
  width: 15px;
}
.admin__widget__handler:hover {
  background: #fafafa;
  color: #fff;
}

.admin__widget__content {
  display: none;
  position: absolute !important;
  background: #fafafa !important;
  box-shadow: 4px 5px 12px -1px rgba(0, 0, 0, 0.37);
  top: -5px;
  left: -15px;
  z-index: 10;
  cursor: pointer;
  padding: 0 !important;
  border-radius: 4px !important;
  flex-direction: column;
}
.admin__widget__content h5 {
  margin: 0;
  background: #000;
  color: #fff;
  padding: 8px 15px 0px 15px;
  border-radius: 4px 4px 0 0;
}
.admin__widget__content > div {
  padding: 15px;
}
.admin__widget__content > div p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #888 !important;
  font-size: 1.4rem !important;
  text-transform: none !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}
.admin__widget__content > div p span {
  width: -moz-max-content;
  width: max-content;
  color: #888 !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
}
.admin__widget__content > div p:hover {
  color: #3d86d8 !important;
}
.admin__widget__content > div p:hover span {
  color: #3d86d8 !important;
}

/*!
 * Toastify js 1.11.2
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */
.toastify {
  padding: 0.5rem 20px 2rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
  background: linear-gradient(135deg, #73a5ff, #5477f5);
  position: fixed;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  max-width: calc(50% - 20px);
  z-index: 2147483647;
}

.toastify.on {
  opacity: 1;
}

.toast-close {
  opacity: 0.4;
  padding: 0 5px;
}

.toastify-right {
  right: 15px;
}

.toastify-left {
  left: 15px;
}

.toastify-top {
  top: -150px;
}

.toastify-bottom {
  bottom: -150px;
}

.toastify-rounded {
  border-radius: 25px;
}

.toastify-avatar {
  width: 6rem;
  height: 6rem;
  margin: 2rem 0 1.5rem;
}
.toastify-avatar path {
  color: #fff;
}

.toastify-center {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: fit-content;
  max-width: -moz-fit-content;
}

@media only screen and (max-width: 360px) {
  .toastify-right, .toastify-left {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.toastify {
  font-size: 2rem !important;
  max-width: 600px;
  justify-content: center;
  align-items: center;
}

.toastify-success {
  background: #2eb85c;
}

.toastify-danger {
  background: #e55353;
}

.toastify-warning {
  background: #f9b115;
}

.toastify-info {
  background: #39f;
}

:root {
  --x: 0;
  --y: 0;
  --size: 0;
}

.overlay {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 300;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation-delay: 0s;
  animation-duration: 0.6s;
  animation-name: fade-in;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.overlay.overlay__close {
  animation-name: fade-out;
}

.modal {
  max-width: 90%;
  opacity: 0;
  animation-delay: 0.6s;
  animation-duration: 0.6s;
  animation-name: fade_in-down;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 800px) {
  .modal {
    max-width: 600px;
  }
}
@media screen and (min-width: 1000px) {
  .modal {
    max-width: 900px;
  }
}

.modal__header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-radius: 4px 4px 0 0;
  background: #55aaa5;
  color: #fff;
}
.modal__header > * {
  font-size: 1.6rem;
}
.modal__header .js_close_modal {
  padding: 3px 8px 0;
  margin: 0;
}
.modal__header .js_close_modal:before {
  background: #fbe100;
}
.modal__header .js_close_modal:after {
  background: #000023;
}

.modal__body {
  padding: 1rem 2rem 2rem;
  background: #fff;
}
.modal__body .modal__img {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.modal__body img {
  max-height: 75vh;
}
.modal__body .two-cols {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 1 100%;
  gap: 4rem;
}
.modal__body .two-cols img {
  display: none;
}
@media screen and (min-width: 800px) {
  .modal__body .two-cols img {
    display: block;
  }
}
.modal__body h1, .modal__body h2, .modal__body h3, .modal__body p {
  margin-bottom: 2rem;
}
.modal__body .btn {
  margin-bottom: 0;
}

.modal__footer {
  background: #fff;
  border-radius: 0 0 4px 4px;
  min-height: 15px;
}

#modalForm.modal {
  background: #000023;
  color: #fff;
}
#modalForm.modal .modal__body {
  padding: 0rem 4rem;
  position: relative;
}
#modalForm.modal .modal__body h1, #modalForm.modal .modal__body h2 {
  margin-top: 0;
}
#modalForm.modal .modal__body .modal__intro {
  justify-content: space-between;
  align-items: flex-start;
  gap: 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  padding-bottom: 2rem;
  margin-bottom: 4rem;
  display: none;
}
@media screen and (min-width: 800px) {
  #modalForm.modal .modal__body .modal__intro {
    display: flex;
  }
}
#modalForm.modal .modal__body .modal__intro p {
  font-size: 1.4rem;
}
#modalForm.modal .modal__body form {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
@media screen and (min-width: 800px) {
  #modalForm.modal .modal__body form {
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
#modalForm.modal .modal__body .form-control {
  background: #000032;
  color: whitesmoke;
  border: 0;
  border-radius: 4px;
}
#modalForm.modal .modal__body .form-control::-moz-placeholder {
  color: #dbdbdb;
}
#modalForm.modal .modal__body .form-control::placeholder {
  color: #dbdbdb;
}
#modalForm.modal .modal__body .form-control:focus-visible {
  outline: 1px solid whitesmoke;
}
#modalForm.modal .modal__body .checkbox-group {
  /* Aspect de la coche */
}
#modalForm.modal .modal__body .checkbox-group [type=checkbox]:not(:checked) + label::before,
#modalForm.modal .modal__body .checkbox-group [type=checkbox]:checked + label::before {
  border: 0;
  background: #000032;
}
#modalForm.modal .modal__body .checkbox-group [type=checkbox]:not(:checked) + label::after,
#modalForm.modal .modal__body .checkbox-group [type=checkbox]:checked + label::after {
  color: #fff;
}
#modalForm.modal .modal__body .btn {
  background: #fff;
  color: #000023;
}
#modalForm.modal .modal__body .btn:after {
  display: none;
}
#modalForm.modal .modal__body .btn:hover {
  background: #55aaa5;
  color: #fff;
}

.btn {
  display: inline-block;
  position: relative;
  border: 0;
  border-radius: 0.4rem;
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  padding: 1rem 2rem;
  line-height: 1.5;
  transition: all 0.3s ease-in-out;
  margin: 1.6rem 0;
  text-decoration: none !important;
  overflow: hidden;
  z-index: 1;
}
.btn:before, .btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fbe100;
  z-index: -1;
  opacity: 0;
  transform-origin: center;
  transform: translateX(0%) scale(0);
  transition: all 0.2s ease-in-out;
}
.btn:after {
  opacity: 1;
  transform: translateX(0) scale(1);
  background: #000023;
  z-index: -2;
}
.btn:hover {
  color: #fff;
}
.btn:hover:before {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.btn--picto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 1rem;
}
.btn--picto span.picto > * {
  height: 17px;
}

.btn--transparent {
  background: transparent;
  border: 1px solid #000023;
  color: #000023;
}
.btn--transparent:after {
  display: none;
}
.btn--transparent:hover {
  background: #000023;
  color: #fff;
}

.btn--accent {
  background: #55aaa5;
  color: #fff;
}
.btn--accent:hover {
  background: transparent;
  color: #fff;
}
.btn--accent:before {
  background: #fbe100;
}
.btn--accent:after {
  background: #55aaa5;
}

.btn--small {
  font-size: 1.2rem;
  padding: 0.5rem 1.5rem;
}

.btn--danger {
  background: #e55353;
}
.btn--danger:hover {
  background: #f2a9a9;
}

.btn--warning {
  background: #f9b115;
}
.btn--warning:hover {
  background: #fcd88a;
}

.btn--success {
  background: #2eb85c;
}
.btn--success:hover {
  background: #96dbad;
}

.btn--info {
  background: #39f;
}
.btn--info:hover {
  background: #80c6ff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid #f5f5f5;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  max-width: 400px;
  background: #fff;
  list-style: none;
  box-shadow: 20px 20px 10px -20px rgba(0, 0, 0, 0.5);
}
.card:before {
  display: none !important;
}
.card p {
  font-size: 1.4rem;
}
.card h2 {
  font-size: 2.1rem;
  margin: 1.6rem 0 1rem;
}
.card a {
  text-decoration: none !important;
}
.card .more {
  text-align: right;
}
.card .more a {
  display: inline-block;
  text-decoration: none !important;
  line-height: 22px;
  padding-left: 30px;
  padding-right: 20px;
  position: relative;
}
.card:hover {
  background: #fafafa;
  transform: translateY(0.3rem) translatex(0.3rem);
  box-shadow: 0px 0px 10px -20px rgba(0, 0, 0, 0.5);
}
.card:hover .more a {
  padding-right: 0;
  padding-left: 60px;
}
.card:hover .more a:after {
  width: 60px;
}

html {
  scroll-behavior: smooth;
  font-size: 54%;
}
@media screen and (min-width: 480px) {
  html {
    font-size: 54%;
  }
}
@media screen and (min-width: 640px) {
  html {
    font-size: 56%;
  }
}
@media screen and (min-width: 800px) {
  html {
    font-size: 60%;
  }
}
@media screen and (min-width: 1000px) {
  html {
    font-size: 61.5%;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 62%;
  }
}
@media screen and (min-width: 1300px) {
  html {
    font-size: 65%;
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  background: #55aaa5;
  color: #444;
}
@media screen and (min-width: 800px) {
  body {
    padding-top: 117px;
  }
}

h1, .h1, h2, .h2, h3, .h3 {
  color: #000023;
}

#loading-screen.loading-screen__close {
  animation-name: fade-out;
}

#accueil {
  padding: 0;
}
#accueil #loading-screen {
  background: #55aaa5;
}

.wrapper {
  width: 100%;
  padding: 0 2rem;
}

.container {
  width: 100%;
  margin: auto;
  padding: 0 2rem;
}
@media screen and (min-width: 480px) {
  .container {
    max-width: 100%;
  }
}
@media screen and (min-width: 640px) {
  .container {
    max-width: 100%;
  }
}
@media screen and (min-width: 800px) {
  .container {
    max-width: 800px;
  }
}
@media screen and (min-width: 1000px) {
  .container {
    max-width: 1000px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media screen and (min-width: 1300px) {
  .container {
    max-width: 1300px;
  }
}

.tools {
  display: none;
  position: fixed;
  z-index: 999;
  right: 0;
  top: 30%;
}
@media screen and (min-width: 800px) {
  .tools {
    display: block;
  }
}
.tools li {
  background: #fbe100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 11px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 5px;
  border-radius: 4px 0 0 4px;
}
.tools li img {
  display: inline-block;
  margin-right: 1.5rem;
}
.tools li a {
  color: #000023;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.tools li a span {
  color: #444;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.tools li:hover {
  background: #000023;
}
.tools li:hover a {
  color: #fff;
}
@media screen and (min-width: 800px) {
  .tools {
    display: block;
  }
}

.tools {
  display: none;
  position: fixed;
  z-index: 999;
  right: 0;
  top: 30%;
}
@media screen and (min-width: 800px) {
  .tools {
    display: block;
  }
}
.tools li {
  background: #fbe100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 11px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 5px;
  border-radius: 4px 0 0 4px;
}
.tools li img {
  display: inline-block;
  margin-right: 1.5rem;
}
.tools li a {
  color: #000023;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.tools li a span {
  color: #444;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.tools li:hover {
  background: #000023;
}
.tools li:hover a {
  color: #fff;
}
@media screen and (min-width: 800px) {
  .tools {
    display: block;
  }
}

.menu-desktop {
  display: none;
}
@media screen and (min-width: 800px) {
  .menu-desktop {
    display: block;
  }
}
.menu-desktop ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 3.5rem;
}
.menu-desktop ul li {
  text-align: center;
  position: relative;
}
.menu-desktop ul li a {
  text-transform: uppercase;
  color: #444;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  position: relative;
  display: block;
  padding: 6px 0;
}
.menu-desktop ul li a:hover, .menu-desktop ul li a:focus-visible {
  color: #fbe100;
}
.menu-desktop ul li a:hover:after, .menu-desktop ul li a:focus-visible:after {
  width: 30px;
}
.menu-desktop ul li:hover ul {
  display: block;
  animation-name: fade_in-scale;
}
.menu-desktop ul li ul {
  position: absolute;
  display: none;
  background: #fff;
  width: 250px;
  border-radius: 0 0 3px 3px;
  box-shadow: 0px 10px 21px -8px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation-duration: 0.4s;
  animation-name: fade-in;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.menu-desktop ul li ul li a {
  color: #444;
  font-size: 1.6rem;
  letter-spacing: normal;
  text-transform: none;
  text-align: left;
  display: block;
  padding: 1rem 2rem;
  transition: all 0.3s ease-in-out;
}
.menu-desktop ul li ul li a:hover {
  background: #55aaa5;
  color: #fff;
}
.menu-desktop ul li.level-1 > a {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fbe100;
  position: relative;
}
.menu-desktop ul li.level-1 > a:after {
  position: absolute;
  content: "";
  height: 3px;
  width: 0px;
  background: #55aaa5;
  opacity: 0;
  transition: width 0.3s ease-in-out;
  top: -8px;
  left: 0;
  border-radius: 4px;
}
.menu-desktop ul li.level-1 > a:hover {
  color: #fff;
}
.menu-desktop ul li.level-1 > a:hover:after {
  width: 60px;
  top: -2px;
  opacity: 1;
}

#accueil .menu-desktop ul li.level-1 > a {
  color: #fbe100;
}
#accueil .menu-desktop ul li.level-1 > a:hover {
  color: #fff;
}

#menu-toggle {
  position: absolute;
  width: 100%;
  left: 0;
}
#menu-toggle .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#menu-toggle .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 3px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 25px;
}
#menu-toggle .menu-icon .navicon:before, #menu-toggle .menu-icon .navicon:after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
#menu-toggle .menu-icon .navicon:before {
  top: 8px;
}
#menu-toggle .menu-icon .navicon:after {
  top: -8px;
}
#menu-toggle .menu-btn {
  display: none;
}
#menu-toggle .menu-btn:checked ~ .menu-mobile {
  transform: translateX(0);
}
#menu-toggle .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
#menu-toggle .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
#menu-toggle .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
#menu-toggle .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, #menu-toggle .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
#menu-toggle .menu-mobile {
  position: absolute;
  z-index: 30;
  width: 100%;
  transform: translateX(-100%);
  top: 77px;
  left: 0;
  transition: all 0.3s ease-out;
  background: #fff;
  overflow: hidden;
  box-shadow: 0px 7px 7px -5px rgba(0, 0, 0, 0.4);
  height: calc(100vh - 77px);
}
#menu-toggle .menu-mobile li {
  border-bottom: 1px solid #e0e0e0;
}
#menu-toggle .menu-mobile li:last-child {
  border-bottom: 0;
}
#menu-toggle .menu-mobile li a {
  display: block;
  color: #444;
  padding: 1rem 2rem;
  font-size: 2.1rem;
}
#menu-toggle .menu-mobile li a:hover {
  background: #000023;
  color: #fff;
}
#menu-toggle .menu-mobile li ul {
  display: none;
}
#menu-toggle .menu-mobile li ul li a {
  font-size: 1.4rem;
  padding: 0.7rem 0 0.7rem 4rem;
}
#menu-toggle .menu-mobile li:hover ul {
  display: block;
}
@media screen and (min-width: 800px) {
  #menu-toggle {
    display: none;
  }
}

#accueil #menu-toggle {
  top: 3rem;
}
#accueil #menu-toggle .menu-mobile {
  top: 115px;
}
#accueil #menu-toggle .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.breadcrumb ol {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 150;
  background: #fff;
  padding: 1rem 1rem 1rem 0;
  flex-wrap: wrap;
}
@media screen and (min-width: 800px) {
  .breadcrumb ol {
    padding: 1rem 1rem 1rem 0rem;
    background: #fff;
    border-radius: 4px;
  }
}
.breadcrumb li {
  font-size: 1.4rem;
  margin-right: 5px;
}
.breadcrumb li a {
  color: #000023;
  font-weight: 700;
}
.breadcrumb li a:hover {
  color: #fbe100;
}

@media screen and (min-width: 800px) {
  .module_article .breadcrumb {
    display: flex;
    justify-content: flex-start;
  }
}

.footer__menu > div {
  padding: 4rem 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 800px) {
  .footer__menu > div {
    flex-direction: row;
  }
}
.footer__menu > div ul a {
  font-size: 1.4rem;
  display: block;
  padding: 15px 0px 15px 0px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__menu > div ul a:hover {
  color: #fff;
}
@media screen and (min-width: 800px) {
  .footer__menu > div ul a {
    font-size: 1.6rem;
    padding: 15px 0px 15px 20px;
  }
}
@media screen and (min-width: 800px) {
  .footer__menu > div ul {
    flex-direction: row;
  }
}

.main__wrapper article h1, .main__wrapper article.article h1, .main__wrapper article.actu h1, article.menu h1, article.mailing_list h1, article.theme h1 {
  margin: 0em 0 5rem;
  position: relative;
  color: #55aaa5;
  /* &:after {
     position: absolute;
     content: '';
     height: 3px;
     width: 40px;
     background: $secondary;
     bottom: -14px;
     left: 0;
     border-radius: 0px;

   }*/
}
.main__wrapper article .chapo, .main__wrapper article.article .chapo, .main__wrapper article.actu .chapo, article.menu .chapo, article.mailing_list .chapo, article.theme .chapo {
  margin-top: 3rem;
  font-weight: 700;
  /*

      @media screen and (min-width: map-get($mq-breakpoints,'lg')) {
        max-width: 50%;
        padding-right: 4rem;
        text-align: justify;
      }
  */
}
.main__wrapper article h2, .main__wrapper article.article h2, .main__wrapper article.actu h2, article.menu h2, article.mailing_list h2, article.theme h2 {
  margin: 2.5rem 0 2rem;
  color: #55aaa5;
}
.main__wrapper article h3, .main__wrapper article h4, .main__wrapper article.article h3, .main__wrapper article.article h4, .main__wrapper article.actu h3, .main__wrapper article.actu h4, article.menu h3, article.menu h4, article.mailing_list h3, article.mailing_list h4, article.theme h3, article.theme h4 {
  margin: 2rem 0 1rem;
}
.main__wrapper article h3, .main__wrapper article.article h3, .main__wrapper article.actu h3, article.menu h3, article.mailing_list h3, article.theme h3 {
  font-size: 1.8rem;
  color: #55aaa5;
}
.main__wrapper article h4, .main__wrapper article.article h4, .main__wrapper article.actu h4, article.menu h4, article.mailing_list h4, article.theme h4 {
  color: #55aaa5;
}
.main__wrapper article p, .main__wrapper article.article p, .main__wrapper article.actu p, article.menu p, article.mailing_list p, article.theme p {
  margin: 1.6rem 0;
}
.main__wrapper article a:not(.btn), .main__wrapper article.article a:not(.btn), .main__wrapper article.actu a:not(.btn), article.menu a:not(.btn), article.mailing_list a:not(.btn), article.theme a:not(.btn) {
  color: #55aaa5;
  text-decoration: underline;
}
.main__wrapper article a:not(.btn):hover, .main__wrapper article.article a:not(.btn):hover, .main__wrapper article.actu a:not(.btn):hover, article.menu a:not(.btn):hover, article.mailing_list a:not(.btn):hover, article.theme a:not(.btn):hover {
  color: #000023;
}
.main__wrapper article iframe, .main__wrapper article.article iframe, .main__wrapper article.actu iframe, article.menu iframe, article.mailing_list iframe, article.theme iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.main__wrapper article li, .main__wrapper article.article li, .main__wrapper article.actu li, article.menu li, article.mailing_list li, article.theme li {
  margin-left: 2rem;
}
.main__wrapper article li:before, .main__wrapper article.article li:before, .main__wrapper article.actu li:before, article.menu li:before, article.mailing_list li:before, article.theme li:before {
  content: "•"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #55aaa5;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.main__wrapper article .article__medias, .main__wrapper article.article .article__medias, .main__wrapper article.actu .article__medias, article.menu .article__medias, article.mailing_list .article__medias, article.theme .article__medias {
  margin: 4rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: end;
}
@media screen and (min-width: 1000px) {
  .main__wrapper article .article__medias, .main__wrapper article.article .article__medias, .main__wrapper article.actu .article__medias, article.menu .article__medias, article.mailing_list .article__medias, article.theme .article__medias {
    max-width: 1100px;
  }
}
.main__wrapper article .article__medias figure, .main__wrapper article.article .article__medias figure, .main__wrapper article.actu .article__medias figure, article.menu .article__medias figure, article.mailing_list .article__medias figure, article.theme .article__medias figure {
  position: relative;
  padding-bottom: 4rem;
}
.main__wrapper article .article__medias figure legend, .main__wrapper article.article .article__medias figure legend, .main__wrapper article.actu .article__medias figure legend, article.menu .article__medias figure legend, article.mailing_list .article__medias figure legend, article.theme .article__medias figure legend {
  position: absolute;
  bottom: -2rem;
  width: 80%;
  padding: 1rem;
  background: #55aaa5;
  color: #fff;
  left: 1rem;
  font-size: 1.2rem;
}
.main__wrapper article .article__encadre, .main__wrapper article.article .article__encadre, .main__wrapper article.actu .article__encadre, article.menu .article__encadre, article.mailing_list .article__encadre, article.theme .article__encadre {
  background: #55aaa5;
  padding: 2rem;
  margin-top: 3rem;
  border-radius: 4px;
  color: #fff;
}
.main__wrapper article .article__encadre > *:first-child, .main__wrapper article.article .article__encadre > *:first-child, .main__wrapper article.actu .article__encadre > *:first-child, article.menu .article__encadre > *:first-child, article.mailing_list .article__encadre > *:first-child, article.theme .article__encadre > *:first-child {
  margin-top: 0;
}
.main__wrapper article .article__encadre h2, .main__wrapper article .article__encadre h3, .main__wrapper article .article__encadre h4, .main__wrapper article.article .article__encadre h2, .main__wrapper article.article .article__encadre h3, .main__wrapper article.article .article__encadre h4, .main__wrapper article.actu .article__encadre h2, .main__wrapper article.actu .article__encadre h3, .main__wrapper article.actu .article__encadre h4, article.menu .article__encadre h2, article.menu .article__encadre h3, article.menu .article__encadre h4, article.mailing_list .article__encadre h2, article.mailing_list .article__encadre h3, article.mailing_list .article__encadre h4, article.theme .article__encadre h2, article.theme .article__encadre h3, article.theme .article__encadre h4 {
  color: #55aaa5;
}
.main__wrapper article .article__encadre a, .main__wrapper article.article .article__encadre a, .main__wrapper article.actu .article__encadre a, article.menu .article__encadre a, article.mailing_list .article__encadre a, article.theme .article__encadre a {
  color: #fff;
  text-decoration: underline;
}
.main__wrapper article .article__encadre a:hover, .main__wrapper article.article .article__encadre a:hover, .main__wrapper article.actu .article__encadre a:hover, article.menu .article__encadre a:hover, article.mailing_list .article__encadre a:hover, article.theme .article__encadre a:hover {
  color: #000023;
}
.main__wrapper article .article__encadre li::before, .main__wrapper article.article .article__encadre li::before, .main__wrapper article.actu .article__encadre li::before, article.menu .article__encadre li::before, article.mailing_list .article__encadre li::before, article.theme .article__encadre li::before {
  color: #fff;
}
.main__wrapper article .article__encadre a.btn:hover, .main__wrapper article.article .article__encadre a.btn:hover, .main__wrapper article.actu .article__encadre a.btn:hover, article.menu .article__encadre a.btn:hover, article.mailing_list .article__encadre a.btn:hover, article.theme .article__encadre a.btn:hover {
  color: #fff;
}
.main__wrapper article .article__contact, .main__wrapper article.article .article__contact, .main__wrapper article.actu .article__contact, article.menu .article__contact, article.mailing_list .article__contact, article.theme .article__contact {
  display: flex;
  padding: 2rem;
  border-radius: 20px;
  background: #55aaa5;
  color: #fff;
  gap: 2rem;
  margin: 4rem 0;
}
.main__wrapper article .article__contact img, .main__wrapper article.article .article__contact img, .main__wrapper article.actu .article__contact img, article.menu .article__contact img, article.mailing_list .article__contact img, article.theme .article__contact img {
  max-width: 150px;
  border-radius: 15px;
}
.main__wrapper article .article__more-on-this, .main__wrapper article.article .article__more-on-this, .main__wrapper article.actu .article__more-on-this, article.menu .article__more-on-this, article.mailing_list .article__more-on-this, article.theme .article__more-on-this {
  margin: 6rem 0;
}
.main__wrapper article .article__more-on-this h2, .main__wrapper article.article .article__more-on-this h2, .main__wrapper article.actu .article__more-on-this h2, article.menu .article__more-on-this h2, article.mailing_list .article__more-on-this h2, article.theme .article__more-on-this h2 {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1000px) {
  .main__wrapper article .two-cols, .main__wrapper article.article .two-cols, .main__wrapper article.actu .two-cols, article.menu .two-cols, article.mailing_list .two-cols, article.theme .two-cols {
    margin-top: 4rem;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
    -moz-column-rule: 1px solid rgba(0, 0, 0, 0.2);
         column-rule: 1px solid rgba(0, 0, 0, 0.2);
    text-align: justify;
  }
  .main__wrapper article .two-cols h2, .main__wrapper article .two-cols h3, .main__wrapper article.article .two-cols h2, .main__wrapper article.article .two-cols h3, .main__wrapper article.actu .two-cols h2, .main__wrapper article.actu .two-cols h3, article.menu .two-cols h2, article.menu .two-cols h3, article.mailing_list .two-cols h2, article.mailing_list .two-cols h3, article.theme .two-cols h2, article.theme .two-cols h3 {
    text-align: left;
    -moz-column-break-after: avoid;
         break-after: avoid;
  }
  .main__wrapper article .two-cols > *:first-child, .main__wrapper article.article .two-cols > *:first-child, .main__wrapper article.actu .two-cols > *:first-child, article.menu .two-cols > *:first-child, article.mailing_list .two-cols > *:first-child, article.theme .two-cols > *:first-child {
    margin-top: 0;
  }
}

.article__etudes, .articles__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 3rem;
}

.articles__list__intro h2.surtitre {
  margin-bottom: 2rem;
}

h2.surtitre {
  font-weight: 300;
  color: #55aaa5;
  margin-top: 0;
  font-family: "Poppins", sans-serif;
  font-size: 2.1rem;
  color: #55aaa5;
}

.articles__slider img {
  -o-object-fit: cover;
     object-fit: cover;
}
.articles__slider li {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}
@media screen and (min-width: 800px) {
  .articles__slider li {
    grid-template-rows: 1fr 1fr;
  }
}
.articles__slider .date {
  text-transform: uppercase;
  font-size: 1.2rem;
  position: relative;
  margin-bottom: 3rem;
}
.articles__slider .date:after {
  position: absolute;
  content: "";
  height: 3px;
  width: 10px;
  background: #55aaa5;
  bottom: -8px;
  left: 0;
}
.articles__slider h3 {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 3rem;
}
.articles__slider .texte {
  font-size: 1.4rem;
}
.articles__slider .illustration {
  position: relative;
}
.articles__slider .illustration img {
  width: 100%;
  height: 100%;
}
.articles__slider .content {
  background: #fff;
  padding: 3rem;
  box-shadow: -30px -15px 37px -31px rgba(0, 0, 0, 0.6);
  border-radius: 4px 4px 0 0;
}
.articles__slider .liens {
  margin-top: 3rem;
}
.articles__slider .liens .btn {
  font-size: 1.2rem;
}
.articles__slider .liens .btn:after {
  display: none;
}
.articles__slider .liens .btn:hover {
  background: transparent;
  border: 1px solid #bcc3bf;
}
.articles__slider .glide__slide {
  height: auto;
}
@media screen and (min-width: 800px) {
  .articles__slider .glide__slide {
    height: 50vh;
  }
}
.articles__slider .glide__bullets {
  left: 80%;
}
.articles__slider .glide__bullet {
  background: #444;
  padding: 8px;
}
.articles__slider .glide__bullet--active {
  background: #55aaa5;
}
.articles__slider .glide__arrow {
  border: 0;
  box-shadow: none;
  padding: 0;
  opacity: 0.4;
  top: 30%;
  transition: opacity 0.2s ease-in-out;
}
.articles__slider .glide__arrow:hover {
  opacity: 1;
}
@media screen and (min-width: 1000px) {
  .articles__slider li {
    display: grid;
    grid-template-columns: 4fr 1fr 2fr 1fr;
    grid-template-rows: 1fr 11fr;
  }
  .articles__slider .illustration {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
    position: relative;
  }
  .articles__slider .illustration img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .articles__slider .content {
    grid-column: 2/span 2;
    grid-row: 2/3;
    position: relative;
    z-index: 10;
    background: #fafafa;
    padding: 3rem;
    min-height: 500px;
  }
  .articles__slider .glide__arrow {
    top: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .articles__slider .content {
    min-height: 400px;
  }
}

.main__wrapper article.articles__list__intro {
  margin: 0;
  padding: 0;
  box-shadow: none;
}
.main__wrapper article.articles__list__intro .content {
  position: relative;
}
@media screen and (min-width: 1000px) {
  .main__wrapper article.articles__list__intro .content .box {
    width: 70%;
  }
}

.actus__wrapper {
  padding: 4rem 0;
}
@media screen and (min-width: 800px) {
  .actus__wrapper {
    padding: 4rem;
  }
}
.actus__wrapper h1 {
  color: #000023;
}
.actus__wrapper h2 {
  text-align: center;
  font-weight: 600;
  font-size: 3.5rem;
  margin-bottom: 4rem;
}

.actus__wrapper:not(#accueil .actus__wrapper) {
  background: #F3F5F7;
}

.card--actus img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card--actus article {
  padding: 1.5rem 0;
}
.card--actus article h3 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.card--actus article h3 a {
  color: #000023;
}
.card--actus article a {
  color: #fff;
}
.card--actus:hover {
  background: #55aaa5;
  color: #fff;
}
.card--actus:hover article a {
  color: #fff;
}

.module_custom_form h2.surtitre {
  margin-bottom: 2rem;
}

.media__list {
  margin: 4rem 0;
}

.galerie {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.galerie figure {
  flex: auto;
  min-width: 120px;
  height: 235px;
  position: relative;
  margin: 0 1px 1px 0;
  transition: all 0.3s ease-out;
  overflow: hidden;
}
.galerie figure img {
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
}
.galerie figure img:hover {
  filter: brightness(100%);
  transform: scale(1.05);
}
.galerie figure:hover {
  /*  box-shadow: 0px 10px 10px -10px #656565;
    margin-top:-4px;
    margin-bottom: 4px;*/
}
.galerie figure:hover figcaption {
  top: 0;
}
.galerie figure figcaption {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
  transition: all 0.3s ease-out;
}
.galerie figure figcaption a {
  color: #fff;
}
.galerie figure figcaption a:hover {
  color: #fff;
}
.galerie figure:nth-child(4n+1) {
  width: 220px;
}
.galerie figure:nth-child(4n+2) {
  width: 380px;
}
.galerie figure:nth-child(4n+3) {
  width: 180px;
}
.galerie figure:nth-child(4n+4) {
  width: 300px;
}
.galerie figure:nth-child(4n+5) {
  width: 280px;
}

.galerie-video {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.faq-list {
  margin-top: 3rem;
}
.faq-list h2 {
  margin-bottom: 2rem;
}
.faq-list ul {
  padding-bottom: 5rem;
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 100%;
  justify-content: space-between;
  gap: 4rem;
}
.faq-list li {
  flex-basis: 100%;
  padding: 2rem;
  background: #000023;
  color: #fff;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease-in-out;
  min-height: 150px;
}
@media screen and (min-width: 800px) {
  .faq-list li {
    flex-basis: 47%;
  }
}
.faq-list li .faq-list__question {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  transition: all 0.3s ease-in-out;
  color: #fff;
  position: relative;
  max-width: 80%;
  padding: 1rem;
  background: #55aaa5;
  border-radius: 3px;
  left: -4rem;
  box-shadow: -8px -8px 20px -8px rgba(0, 0, 0, 0.6);
}
.faq-list li .faq-list__reponse {
  font-style: italic;
  margin-top: 2rem;
}
.faq-list li .faq-list__reponse a {
  text-decoration: underline;
  color: #000;
  font-weight: 500;
}

.faq-list.animate {
  opacity: 0;
  animation-delay: 0.3s;
  animation-duration: 0.6s;
  animation-name: slidedownAnimation;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.cards--agenda {
  margin-top: 4rem;
}
@media screen and (min-width: 800px) {
  .cards--agenda {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.cards--agenda .card {
  text-align: center;
  font-size: 1.4rem;
  padding-bottom: 2rem;
  margin-top: 0rem;
  cursor: pointer;
  max-width: 400px;
}
.cards--agenda .card > a:first-child div {
  background-color: #55aaa5;
  background-image: url("/assets/default/img/Easy-Oyster.svg");
  background-position: top 48px left -58px;
  background-repeat: no-repeat;
  background-size: 212px 212px;
  border-radius: 5px;
  padding: 2rem 2rem 2.5rem;
  color: #000023;
  transition: all 0.3s ease-in-out;
  margin-bottom: 2rem;
}
.cards--agenda .card > a:first-child div:hover {
  background-color: #fbe100;
  color: #fbe100 !important;
}
.cards--agenda .card .theme {
  text-transform: uppercase;
  font-size: 1.2rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.cards--agenda .card .theme:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 1px;
  background: #55aaa5;
  left: 50%;
  margin-left: -30px;
}
.cards--agenda .card .jour {
  margin: 0 auto;
  display: block;
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
}
.cards--agenda .card .mois {
  font-weight: 700;
  font-size: 3.5rem;
  font-weight: 600;
  text-transform: uppercase;
}
.cards--agenda .card .jour_stop, .cards--agenda .card .annee, .cards--agenda .card .mois_stop, .cards--agenda .card .separator {
  font-weight: 600;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.cards--agenda .card .separator {
  font-weight: 300;
  display: block;
  font-size: 1.4rem;
}
.cards--agenda .card:hover > div:first-child {
  background: #2d5a87;
  color: #000023;
}
.cards--agenda .card.card--agenda.theme__30 a > div {
  background-color: #aac1c3;
  color: #000023;
}
.cards--agenda .card.card--agenda.theme__31 a > div {
  background-color: #55aaa5;
  color: #000023;
}
.cards--agenda .card.card--agenda.theme__32 a > div {
  background-color: #ecedec;
  color: #000023;
}
.cards--agenda .card.card--agenda.theme__33 a > div {
  background-color: #7ea99e;
  color: #000023;
}
.cards--agenda .card.card--agenda.theme__34 a > div {
  background-color: #e3e2cc;
  color: #000023;
}
.cards--agenda .card.card--agenda.theme__35 a > div {
  background-color: #e9d990;
  color: #000023;
}

.job-offers-list-intro {
  margin: 3rem 0;
}

.cards--job {
  margin-top: 4rem;
  grid-gap: 3rem;
}
@media screen and (min-width: 800px) {
  .cards--job {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.cards--job .card {
  border: 1px solid #bcc3bf;
  padding: 0 2rem;
  border-radius: 4px;
  font-size: 1.4rem;
  justify-content: flex-start;
}
.cards--job .card p {
  margin-top: 2rem;
}

.job-offer {
  margin-top: 4rem;
}
.job-offer .job-offer__infos {
  background: #bcc3bf;
  padding: 2rem;
  margin: 4rem 0;
  border-radius: 4px;
}
.job-offer .job-offer__infos p {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 800px) {
  .job-offer .colonnes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
  }
}
.job-offer .job-offer__content h3 {
  margin-bottom: 1.5rem;
}

.job-offer__candidature {
  margin-top: 4rem;
  border-radius: 4px;
  border: 1px solid #bcc3bf;
}
.job-offer__candidature h2 {
  padding: 2rem;
  background: #bcc3bf;
  color: #454545;
}
.job-offer__candidature > div {
  padding: 2rem;
}

.searchform > div {
  position: relative;
}
.searchform > div input.form-control {
  width: 70%;
}

.searchform_autocomplete_propositions {
  position: absolute;
  margin-top: -1px;
  left: 0;
  border: 1px solid #dfdfdf;
  background: #fdfdfd;
  border-radius: 0 0 3px 3px;
  width: 70%;
  filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.4));
}
.searchform_autocomplete_propositions li {
  padding: 5px 15px;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
}
.searchform_autocomplete_propositions li:hover {
  background: #000023;
  color: #fff;
}

.pre__footer__wrapper .searchform {
  display: flex;
  max-width: 800px;
  margin: auto;
}
.pre__footer__wrapper .searchform > div {
  width: 100%;
}
.pre__footer__wrapper .searchform > div input.form-control {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 20px 0 0 20px;
  line-height: 4rem;
  padding: 0 2rem;
  width: 100%;
}
.pre__footer__wrapper .searchform > div input.form-control:focus-visible {
  outline: none;
}
.pre__footer__wrapper .searchform > div .searchform_autocomplete_propositions {
  text-align: left;
  left: 20px;
  width: 80%;
  background: white;
  border-color: transparent;
}
.pre__footer__wrapper .searchform > div .searchform_autocomplete_propositions li {
  color: #fff;
}
.pre__footer__wrapper .searchform .form__submit {
  flex: 0 0 54px;
  padding: 0 1rem;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  line-height: 4rem;
}
.pre__footer__wrapper .searchform .form__submit:focus-visible {
  outline: none;
}
.pre__footer__wrapper .searchform .form__submit:hover {
  background: #000023;
  border-color: #000023;
  color: #fff;
}

.search-result .search-result__nbresult {
  font-weight: 800;
  margin-bottom: 2rem;
}
.search-result .search-result__items {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.search-result .search-result__items li {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #bcc3bf;
}
.search-result .search-result__items li a {
  font-size: 1.8rem;
  font-weight: 800;
}

.partenaires__slider .illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.5rem;
}
.partenaires__slider .illustration img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 180px;
  height: 180px;
}
.partenaires__slider h3 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: normal;
}
.partenaires__slider .glide__arrow {
  box-shadow: none;
  text-shadow: none;
}
.partenaires__slider .glide__arrow--left {
  left: -3rem;
}
.partenaires__slider .glide__arrow--right {
  right: -1rem;
}
.partenaires__slider .glide__bullets {
  bottom: -5rem;
}
.partenaires__slider .glide__bullets .glide__bullet {
  background-color: #000023;
}
.partenaires__slider .glide__bullets .glide__bullet--active {
  background-color: #fbe100;
}

.card--societe {
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-top: 38px;
}
.card--societe .logo_part {
  position: absolute;
  right: 0;
  top: -50px;
  display: flex;
  z-index: 100;
}
.card--societe h3 {
  font-weight: 600;
}
.card--societe figure {
  background: #fff;
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.card--societe figure img {
  max-height: 150px;
  width: auto;
}
.card--societe figure:after {
  display: none;
}
.card--societe > div:last-child {
  padding: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 800px) {
  article.societe {
    display: flex;
    gap: 6rem;
    flex-wrap: nowrap;
  }
  article.societe > div {
    width: 100%;
  }
  article.societe > div:last-child {
    width: 300px;
  }
}
article.societe h1 {
  font-size: 5rem;
}
article.societe .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}
article.societe .adresse li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #dedede;
  list-style: none !important;
  margin: 0;
}
article.societe .adresse li p {
  margin: 0;
}
article.societe .adresse li:before {
  display: none;
}

.cards--user {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card--user {
  background: #efefef;
  border: 0;
  min-height: 530px !important;
}
.card--user h4 {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0;
  color: #000023;
}
.card--user .flag {
  width: 20px;
}
.card--user p {
  margin: 0 0 1.5rem;
}
.card--user figure {
  display: flex;
  justify-content: center;
}
.card--user figure img {
  height: 200px;
  width: auto;
}
.card--user .vainqueur {
  /*position:absolute;
  top:-15px;
  right:10px;
  z-index:99999;*/
  float: right;
  margin-top: -35px;
  margin-left: 85%;
  color: #CC3300;
  font-weight: 600;
}

@media screen and (min-width: 800px) {
  .temoignages__slider {
    margin: 4rem 7rem;
  }
}
.temoignages__slider .user__slide {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 2.5rem 4rem;
  background: #efefef;
  border-radius: 15px;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .temoignages__slider .user__slide {
    display: grid;
    grid-template-columns: 150px 3fr;
  }
}
.temoignages__slider .user__slide img {
  width: 150px;
  height: 150px;
  border-radius: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #bcc3bf;
}
.temoignages__slider .glide__arrow {
  box-shadow: none;
  text-shadow: none;
  border: 0;
}
.temoignages__slider .glide__arrow--left {
  left: -5rem;
}
.temoignages__slider .glide__arrow--right {
  right: -5rem;
}
.temoignages__slider .glide__bullets {
  bottom: 1rem;
}

.users__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}
.users__filters .pills {
  padding: 4px 8px;
  background: #000023;
  color: #fbe100;
  border-radius: 4px;
  font-size: 1.4rem;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.2s ease-in-out;
}
.users__filters .pills:hover {
  background: #fbe100;
  color: #000023;
}

#tarteaucitronRoot #tarteaucitronAlertBig {
  background: #000023 !important;
  padding: 50px 0 !important;
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  font: 16px "Open Sans" !important;
}

span#tarteaucitronDisclaimerAlert {
  display: block !important;
  margin-bottom: 25px !important;
  text-align: center !important;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert,
#tarteaucitronAlertBig #tarteaucitronPersonalize,
#tarteaucitronAlertBig #tarteaucitronPersonalize2,
#tarteaucitronAlertBig .tarteaucitronDeny {
  border: 1px solid #fff !important;
  border-radius: 6px !important;
  background: transparent !important;
  color: #fff !important;
}
#tarteaucitronAlertBig #tarteaucitronCloseAlert:hover,
#tarteaucitronAlertBig #tarteaucitronPersonalize:hover,
#tarteaucitronAlertBig #tarteaucitronPersonalize2:hover,
#tarteaucitronAlertBig .tarteaucitronDeny:hover {
  background: #dedede !important;
  color: #000 !important;
  border-color: #dedede !important;
}

.pre__header__wrapper {
  position: static;
  top: 0;
  width: 100%;
  z-index: 210;
  padding: 0rem 2rem 0;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 800px) {
  .pre__header__wrapper {
    position: fixed;
  }
}
.pre__header__wrapper > div {
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 9rem;
}
.pre__header__wrapper .countdown {
  padding: 1rem;
  background: #fbe100;
  color: #000023;
  justify-content: center;
  gap: 1rem;
  width: 330px;
  display: none;
}
@media screen and (min-width: 800px) {
  .pre__header__wrapper .countdown {
    display: flex;
  }
}
.pre__header__wrapper .countdown.aces {
  padding: 0;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  font-weight: 800;
}
.pre__header__wrapper ul {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .pre__header__wrapper ul {
    gap: 0 1.5rem;
  }
}
.pre__header__wrapper ul li a {
  display: block;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  padding: 6px 0 6px 12px;
  font-size: 1.4rem;
}
@media screen and (min-width: 800px) {
  .pre__header__wrapper ul li a {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
  }
}
.pre__header__wrapper ul li a:hover, .pre__header__wrapper ul li a:focus-visible {
  color: #444;
}
@media screen and (min-width: 800px) {
  .pre__header__wrapper ul li.accent a {
    font-size: 1rem;
    color: #fff;
    background: #55aaa5;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.2s ease-out;
  }
  .pre__header__wrapper ul li.accent a:hover, .pre__header__wrapper ul li.accent a:focus-visible {
    background: #fbe100;
  }
}
.pre__header__wrapper ul li.lang {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pre__header__wrapper ul li.lang a {
  padding: 0;
  font-size: 1rem !important;
}
.pre__header__wrapper ul li.lang span {
  display: block;
  height: 1px;
  width: 100%;
  background: #444;
}

.scroll-down .pre__header__wrapper {
  opacity: 0;
}

.scroll-up .pre__header__wrapper {
  opacity: 1;
}

#accueil .pre__header__wrapper {
  position: static;
  padding: 0rem 2rem;
}
@media screen and (min-width: 800px) {
  #accueil .pre__header__wrapper {
    position: absolute;
  }
}
#accueil .pre__header__wrapper li.accent a {
  color: #fff;
}
#accueil .pre__header__wrapper li.lang span {
  background: #fff;
}
#accueil .pre__header__wrapper ul li:hover a, #accueil .pre__header__wrapper ul li:hover a:focus-visible {
  color: #fff;
}

header {
  position: static;
  z-index: 200;
  top: 0;
  left: 0;
  padding: 0 !important;
  transition: all 0.3s ease-in-out;
  background: #55aaa5;
}
@media screen and (min-width: 800px) {
  header {
    position: fixed;
  }
}
header .container {
  padding: 2rem 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header .header__logo {
  padding-top: 0;
  z-index: 1;
}
header .header__logo img {
  max-width: 170px;
  margin-top: 0;
  margin-left: 2rem;
}
@media screen and (min-width: 640px) {
  header .header__logo img {
    max-width: 100%;
    margin: 0;
  }
}
header nav {
  width: 100%;
  position: absolute;
  z-index: 80;
}
@media screen and (min-width: 800px) {
  header nav {
    align-self: flex-end;
    transform: translateY(1rem);
  }
}

.scroll-down header {
  transform: translate3d(0, -100%, 0);
}

.scroll-up header {
  transform: translate3d(0, 0, 0);
  filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.4));
}

#accueil header {
  position: static;
  top: 0;
  background: transparent;
}
@media screen and (min-width: 800px) {
  #accueil header {
    position: absolute;
  }
}
#accueil header .header__logo {
  padding-top: 0;
  z-index: 999;
}
#accueil header .header__logo img {
  max-width: 170px;
  margin-top: 0;
  margin-left: 2rem;
}
@media screen and (min-width: 640px) {
  #accueil header .header__logo img {
    max-width: 100%;
    margin-left: 0;
  }
}
#accueil header .container {
  padding: 3rem 0 0;
}
@media screen and (min-width: 800px) {
  #accueil header .container {
    padding: 2rem 0 0;
  }
}
@media screen and (min-width: 640px) {
  #accueil header .container {
    display: block;
  }
}
#accueil header nav {
  transform: translateY(-2rem);
}

/*
 Pas d'animation du header en home page
  */
#accueil.scroll-down header {
  transform: none;
}

#accueil.scroll-up header {
  transform: none;
  filter: none;
}

header.animate {
  position: fixed;
}

.footer__wrapper {
  background: #000;
  padding-top: 4rem;
}

footer {
  color: #fff;
}
footer h1, footer .h1, footer h2, footer .h2, footer h3, footer .h3 {
  color: #2d5a87;
}
footer .container {
  padding: 0rem 0 0rem;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #55aaa5;
}
footer .footer__utils h3 {
  font-size: 2.1rem;
  font-family: "Archivo black", serif;
  margin: 4rem 0 2rem;
  color: #55aaa5;
}
footer .footer__utils .btn {
  margin-top: 3rem;
  font-size: 1.4rem;
  font-weight: 400;
}
footer .footer__utils .btn:before {
  background: #fbe100;
}
footer .footer__utils .btn:after {
  background: #55aaa5;
}
footer .footer__utils__adresse .adresse {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
}
footer .social {
  display: flex;
}
footer .social img {
  width: 50px;
  height: 50px;
  margin: 5px;
}
footer li {
  line-height: 3.2rem;
}
footer .copyright {
  text-align: right;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}
footer .subscribe__form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 1rem;
}
footer .subscribe__form .form-group {
  padding: 0;
}
footer .subscribe__form .btn {
  margin: 0;
}
footer .footer__mailing {
  padding-top: 4rem;
}
footer .footer__mailing form {
  color: #444;
}
footer .footer__mailing a {
  color: rgba(255, 255, 255, 0.6);
}
footer .footer__mailing a:hover {
  color: #fff;
}

.hero__wrapper {
  padding: 0;
  /*
  .slide:nth-child(1) {
    background-image: url('/assets/default/img/bg-hero-xl-1.webp');
  }

  .slide:nth-child(2) {
    animation-delay: 8s;
    background-image: url('/assets/default/img/bg-hero-xl-1.webp');
  }

  .slide:nth-child(3) {
    animation-delay: 16s;
    background-image: url('/assets/default/img/bg-hero-xl-1.webp');
  }

  .slide:nth-child(4) {
    animation-delay: 24s;
    background-image: url('/assets/default/img/bg-hero-xl-1.webp');
  }*/
}
.hero__wrapper > .container {
  height: 90vh;
  min-height: 550px;
  max-width: 100%;
  position: relative;
}
.hero__wrapper .hero__forward {
  display: none;
}
@media screen and (min-width: 800px) {
  .hero__wrapper .hero__forward {
    width: 100%;
    left: 0;
    bottom: 6rem;
    position: absolute;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation-delay: 0.3s;
    animation-duration: 1s;
    animation-name: slidedownAnimation;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .hero__wrapper .hero__forward a {
    opacity: 0.4;
    animation-duration: 0.7s;
    animation-name: bouncing;
    animation-direction: alternate;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  .hero__wrapper .hero__forward:hover a {
    opacity: 1;
  }
}
.hero__wrapper .hero__banner {
  background-size: cover;
  background-position: center center;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  background-image: url("/assets/default/img/bg-hero-xl-1.webp");
  /*   &:before {
        content: '';
        position: absolute;
        inset: 0 0 0 0;
        background: rgb(111,174,154);
        background: linear-gradient(180deg, rgba(111,174,154,0.8519782913165266) 0%, rgba(103,172,172,0.6839110644257703) 15%, rgba(94,136,154,0) 32%);
      }
  */
}
.hero__wrapper .hero__banner > div {
  padding-top: 12rem;
}
@media screen and (min-width: 640px) {
  .hero__wrapper .hero__banner > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 0;
  }
}
.hero__wrapper .hero__banner > div > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 0px 0 0 3rem;
}
@media screen and (min-width: 800px) {
  .hero__wrapper .hero__banner > div > div {
    padding: 250px 1rem 150px 1rem;
  }
}
.hero__wrapper .hero__banner h2 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.3;
  position: relative;
  margin-top: 8rem;
  text-align: right;
  color: #fff;
  letter-spacing: 0.1rem;
  opacity: 0;
  animation-delay: 0s;
  animation-duration: 1s;
  animation-name: slidedownAnimation;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 800px) {
  .hero__wrapper .hero__banner h2 {
    font-size: 4.5rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .hero__wrapper .hero__banner h2 {
    font-size: 6rem;
  }
}
.hero__wrapper .hero__banner p {
  margin-top: 2rem;
  font-size: 1.6rem;
  color: #fff;
  text-align: right;
  opacity: 0;
  animation-delay: 0.3s;
  animation-duration: 0.8s;
  animation-name: slidedownAnimation;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 800px) {
  .hero__wrapper .hero__banner p {
    font-size: 2.1rem;
  }
}
.hero__wrapper .hero__banner p.date {
  font-size: 3.6rem;
  color: #fbe100;
  font-weight: 800;
}
.hero__wrapper .hero__banner .partenaires {
  padding-top: 3rem;
}
.hero__wrapper .hero__banner .actions {
  margin-top: 6rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4rem 8rem;
  flex-wrap: wrap;
  opacity: 0;
  animation-delay: 0.5s;
  animation-duration: 0.6s;
  animation-name: slidedownAnimation;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.hero__wrapper .hero__banner .actions .btn {
  padding: 2rem;
  position: relative;
  margin: 0;
  background: transparent;
  color: #fff;
}
.hero__wrapper .hero__banner .actions .btn:after {
  background: #55aaa5;
}
.hero__wrapper .hero__banner .actions .btn:hover:before {
  background: #fbe100;
  transform: scale(1);
}
.hero__wrapper .hero__banner .actions a {
  color: #fff;
  font-weight: 600;
  padding: 1.7rem 2rem;
  transition: all 0.3s ease-out;
  border: 1px solid transparent;
}
.hero__wrapper .hero__banner .actions a:hover {
  border-radius: 0.4rem;
  background: rgba(0, 0, 0, 0.2);
}

/*
@keyframes slideFade {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    z-index: 0;
  }
  8% {
    animation-timing-function: ease-out;
    opacity: 1;
    z-index: 10;
  }
  17% {
    opacity: 1;
    z-index: 10;
  }
  25% {
    opacity: 0;
    z-index: 0;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}
*/
.chiffres__wrapper .container {
  padding: 8rem 4rem;
}
.chiffres__wrapper .container h2 {
  color: #fbe100;
  text-align: center;
  margin-bottom: 4rem;
}
.chiffres__wrapper .container .compteurs {
  justify-content: space-around;
  align-items: flex-end;
  gap: 2rem;
  color: #fff;
}
@media screen and (min-width: 800px) {
  .chiffres__wrapper .container .compteurs {
    display: flex;
  }
}
.chiffres__wrapper .container .compteurs > div {
  padding: 2rem 4rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  gap: 2rem;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .chiffres__wrapper .container .compteurs > div {
    max-width: 300px;
  }
}
.chiffres__wrapper .container .compteurs > div > div {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fbe100;
}

.features__wrapper, .tableau__wrapper {
  background: #55aaa5;
  padding: 5rem 0 8rem;
  color: #fff;
}
.features__wrapper h2, .tableau__wrapper h2 {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: "Archivo black", serif;
  margin-bottom: 1.5rem;
  opacity: 0;
  color: #fff;
  text-align: center;
}
.features__wrapper h3, .tableau__wrapper h3 {
  text-align: center;
}
.features__wrapper .widget__edito .grid, .tableau__wrapper .widget__edito .grid {
  max-width: 500px;
  margin: auto;
}
.features__wrapper .widget__edito .grid > div, .tableau__wrapper .widget__edito .grid > div {
  text-align: center;
}
.features__wrapper .widget__edito .grid p, .tableau__wrapper .widget__edito .grid p {
  margin: 1.5rem 0;
}
.features__wrapper .btn--accent:before, .tableau__wrapper .btn--accent:before {
  background: #fbe100;
}
.features__wrapper .btn--accent:after, .tableau__wrapper .btn--accent:after {
  background: #000023;
}
.features__wrapper .widget__edito img, .tableau__wrapper .widget__edito img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.features__wrapper.animate h2, .tableau__wrapper.animate h2 {
  opacity: 0;
  animation-delay: 0s;
  animation-duration: 0.6s;
  animation-name: slidedownAnimation;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.features__wrapper.animate p, .tableau__wrapper.animate p {
  opacity: 0;
  animation-delay: 0.3s;
  animation-duration: 0.6s;
  animation-name: slidedownAnimation;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.tableau__wrapper {
  background: #fff;
}
.tableau__wrapper h2 {
  color: #000023;
}

.agendas__wrapper {
  display: none;
  background: #fff;
  padding: 8rem 0 4rem;
  position: relative;
}
.agendas__wrapper .agendas__container {
  position: relative;
  z-index: 3;
}
.agendas__wrapper h2 {
  color: #fff;
  text-align: center;
}

.references__wrapper {
  position: relative;
  padding: 8rem 0;
}
.references__wrapper .references__container {
  position: relative;
  z-index: 3;
}
.references__wrapper .references__container h3 {
  color: #fbe100;
}
.references__wrapper .references__container .references {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  align-items: center;
  gap: 6rem;
}
@media screen and (min-width: 1000px) {
  .references__wrapper .references__container .references {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  }
}
.references__wrapper .reference {
  border: 0;
  border-radius: 5px;
  background: #55aaa5;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: none;
}
.references__wrapper .reference h3 {
  font-size: 3.5rem;
}
.references__wrapper .reference:hover a {
  color: #fff !important;
}
.references__wrapper .reference p {
  text-align: center;
  color: #fff;
}

.actus__wrapper, .photos__wrapper {
  background: #efefef;
  position: relative;
  padding-top: 4rem;
}
.actus__wrapper .actus__container, .photos__wrapper .actus__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
}
.actus__wrapper .actus__container .glide, .photos__wrapper .actus__container .glide {
  margin-bottom: 2rem;
}

.photos__wrapper {
  padding: 4rem;
}
.photos__wrapper h2 {
  color: #000023;
  text-align: center;
}

.partenaires_wrapper {
  padding: 6rem 0 8rem;
  background: #fff;
}
.partenaires_wrapper h2 {
  text-align: center;
}

.titrepage__wrapper, .titrepage__container {
  padding: 0;
  margin: 0;
  position: relative;
}

.titrepage__wrapper:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: #55aaa5 url("/assets/default/img/bg-bandeau.webp") center left;
  background-size: cover;
  #background-size: cover;
  /*
   @media screen and (min-width: map-get($mq-breakpoints, 'sm')) {
     background: #fff url('/assets/default/img/bg-hero-sm-1.webp') no-repeat top 45% center;
     background-size: cover;
   }

   @media screen and (min-width: map-get($mq-breakpoints, 'md')) {
     background: #fff url('/assets/default/img/bg-hero-md-1.webp') no-repeat top 45% center;
     background-size: cover;
   }

   @media screen and (min-width: map-get($mq-breakpoints, 'xl')) {
     background: #fff url('/assets/default/img/bg-hero-xl-1.webp') no-repeat top 45% center;
     background-size: cover;
   }
   */
}

.titrepage__container {
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 10;
  /*
  &:before {
    content: '';
    position: absolute;
    inset: 0 0 0 0;

    background: linear-gradient(180deg, rgba(111,174,154,0.6) 0%,  rgba(94,136,154,0) 62%);
  }
  /*
   */
}
.titrepage__container .titrepage__widget {
  min-height: 40vw;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 50;
}
@media screen and (min-width: 640px) {
  .titrepage__container .titrepage__widget {
    min-height: 15vw;
  }
}
@media screen and (min-width: 1000px) {
  .titrepage__container .titrepage__widget {
    min-height: 10vw;
  }
}
.titrepage__container img {
  width: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  height: 60vw;
}
@media screen and (min-width: 1000px) {
  .titrepage__container img {
    height: 55vh;
  }
}
.titrepage__container .h1, .titrepage__container h1 {
  color: #fbe100;
  font-size: 2.1rem;
}
@media screen and (min-width: 640px) {
  .titrepage__container .h1, .titrepage__container h1 {
    font-size: 3.5rem;
  }
}

.histoire .titrepage__wrapper .titrepage__container .h1, .histoire .titrepage__wrapper .titrepage__container h1 {
  color: #000023;
}

.intro {
  margin: 3rem 0;
}
.intro p {
  margin-bottom: 2rem;
}

.ariane__wrapper, .main__wrapper {
  background: #fff;
}

.ariane__wrapper {
  padding: 1.5rem 0 0;
  font-size: 1.4rem;
}

.main__wrapper {
  padding: 2rem 0 6rem;
}
.main__wrapper h1, .main__wrapper .two-cols, .main__wrapper .chapo, .main__wrapper .surtitre, .main__wrapper .content {
  opacity: 0;
}

.main__wrapper.animate {
  /*
  pas d'animation sur les petits écran car en fonction de la longueur de la liste il se peut que l'on jamais 10% de visible dans la hauteur du view port vois JS
   */
}
.main__wrapper.animate h1, .main__wrapper.animate .surtitre, .main__wrapper.animate .chapo, .main__wrapper.animate .two-cols, .main__wrapper.animate .content {
  opacity: 0;
  animation-delay: 0s;
  animation-duration: 0.6s;
  animation-name: slidedownAnimation;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.main__wrapper.animate h1 {
  opacity: 0;
  animation-delay: 0.2s;
  animation-duration: 0.6s;
  animation-name: slidedownAnimation;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.main__wrapper.animate .date {
  opacity: 0;
  animation-delay: 0.4s;
  animation-duration: 0.6s;
  animation-name: slidedownAnimation;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.main__wrapper.animate .chapo {
  opacity: 0;
  animation-delay: 0.5s;
  animation-duration: 0.6s;
  animation-name: slidedownAnimation;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 640px) {
  .main__wrapper.animate .articles__list {
    opacity: 0;
    animation-delay: 0s;
    animation-duration: 0.6s;
    animation-name: slidedownAnimation;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
}

.offres {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.offres > div {
  background: #fbe100;
  color: #000023;
  padding: 2rem;
  border-radius: 15px;
}
.offres > div > span {
  display: inline-block;
  background: #000023;
  padding: 5px 15px;
  color: #fff;
  border-radius: 50vh;
  font-size: 1.2rem;
}
.offres > div h3 {
  text-transform: uppercase;
}
.offres > div .prix {
  font-size: 2.1rem;
  font-weight: 700;
}
.offres > div .prix span {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}
.offres > div .btn {
  margin: 1.6rem auto;
  width: 100%;
  text-align: center;
}
.offres > div:first-child, .offres > div:last-child {
  margin: 4rem 0;
}
