@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);
  aspect-ratio: attr(data-aspectratio, "1");
  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 ***/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, p {
  margin: 1.4em 0 1.2em;
}

h5, .h5 {
  font-size: 1.6rem;
  font-family: "Bebas Neue", serif;
  line-height: 1.2;
}

h4, .h4 {
  font-size: 1.8rem;
  font-family: "Bebas Neue", serif;
}

h3, .h3 {
  font-size: 2.1rem;
  font-family: "Bebas Neue", serif;
  line-height: 1.1;
  font-weight: 400;
}

h2, .h2 {
  font-size: 3rem;
  font-family: "Bebas Neue", serif;
  line-height: 1.1;
  font-weight: 400;
}

h1, .h1 {
  font-size: 4rem;
  font-family: "Bebas Neue", serif;
  line-height: 1.1;
}

/*** Material icons google ***/
.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

@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);
  }
}
#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;
}

input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  opacity: 0.3;
}

input::placeholder, textarea::placeholder, select::placeholder {
  opacity: 0.3;
}

*.form-control:disabled {
  background-color: #f5f5f5;
  color: #aaa;
  opacity: 1;
}

form {
  margin: 0;
  padding: 2rem;
  transition: all 0.3s ease-in-out;
  position: relative;
}
form .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1rem 2rem;
  margin: 2rem 0;
}
form .alert {
  font-size: 1.3rem;
  font-style: italic;
  padding: 5px 18px;
  border-radius: 50vh;
  margin-top: 2px;
}
form .alert--danger {
  background: #ea7272;
  color: #fff;
}

fieldset {
  border: 1px solid #f0f0f0;
  margin: 0 0 3rem 0;
  padding: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
fieldset h3 {
  background: #1f1e19;
  color: #fff;
  margin: 0 0 2rem 0;
  padding: 6px 15px 6px;
}
fieldset .grid {
  margin: 2rem;
}
fieldset hr {
  border-top: 1px solid #ebebeb;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0rem;
  margin: 0.3rem 0;
  gap: 5px;
  position: relative;
}

.form-group--flex-row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin: 1.6rem 0;
  align-items: center;
}

.form-control {
  background: #fff;
  border: 1px solid #1f1e19;
  color: #1f1e19;
  border-radius: 8px;
  padding: 8px 20px;
  width: 100%;
}
.form-control:required {
  font-weight: 600;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  background: #ebebeb;
}

textarea.form-control {
  line-height: 1.3;
  padding: 10px;
}

input:required:invalid:not(:-moz-placeholder-shown) {
  border: 1px solid red;
  background-image: url(/assets/default/img/checked-rounded-red.png);
}

input:required:invalid:not(:placeholder-shown), input:focus:invalid, .form-control-is-invalid {
  border: 1px solid red;
  background-image: url(/assets/default/img/checked-rounded-red.png);
}

input:required:invalid:not(:-moz-placeholder-shown) + small {
  color: red;
}

input:required:invalid:not(:placeholder-shown) + small, input:focus:invalid + small, .form-control-is-invalid + small {
  color: red;
}

input:required:valid:not(:-moz-placeholder-shown) {
  background-image: url(/assets/default/img/checked-rounded-green.png);
}

input:required:valid:not(:placeholder-shown) {
  background-image: url(/assets/default/img/checked-rounded-green.png);
}

input:required:valid:not(:-moz-placeholder-shown), input:required:invalid:not(:-moz-placeholder-shown) {
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px);
}

input:required:valid:not(:placeholder-shown), input:required:invalid:not(:placeholder-shown), input:focus:invalid, .form-control-is-invalid {
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px);
}

.form__actions {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

select.form-control {
  padding: 10px 8px 10px;
}

form.loading {
  opacity: 0.2;
}

.invalid-feedback {
  color: red;
}

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

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

label.required {
  font-weight: 700;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.radio-group div {
  border: 1px solid #ebebeb;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  padding-left: 15px;
}
.radio-group div label {
  padding: 15px 0;
  min-width: 250px;
  cursor: pointer;
  display: inline-block;
}
.radio-group div:hover {
  background: #ebebeb;
}

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

.select-selected.form-control {
  width: 100%;
}
.select-selected.form-control:focus {
  box-shadow: none;
  background: #f5f5f5;
  border-bottom: 2px solid #ff8c00;
}
.select-selected.form-control:after {
  position: absolute;
  content: "";
  top: 20px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #1f1e19 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 #1f1e19 transparent;
  top: 12px;
}

/* style the items (options), including the selected item: */
.select-items div {
  color: #1f1e19;
  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: #f8f8f8;
  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;
  gap: 1rem;
}
.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 span.count,
.checkbox-group > * [type=checkbox]:checked + label span.count {
  background: #ff8c00;
  border-radius: 8px;
  padding: 3px;
  margin-left: 5px;
  font-size: 10px;
  width: 16px;
  height: 16px;
  line-height: 10px;
  display: inline-block;
  text-align: center;
}
.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: 29px;
  font-weight: 800;
  color: #1f1e19;
  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;
}

.autocomplete-box {
  position: relative;
  width: 100%;
}
.autocomplete-box ul {
  position: absolute;
  border: 1px solid #707070;
  overflow: hidden;
  background: #ebebeb;
  width: 100%;
  border-radius: 25px;
}
.autocomplete-box ul li {
  padding: 10px;
  cursor: pointer;
}
.autocomplete-box ul li:hover {
  background: #ff8c00;
  color: #fff;
}

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

/**
* Jquery form builder
 */
.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.rendered-form--column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@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;
  }
}

/*** form de recherche multicritère en haut de page des listes ***/
.form__search {
  background: #f0f0f0;
  padding: 2rem 3rem;
  margin: 0;
  /*@media screen and (min-width: map-get($mq-breakpoints, 'md')) {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    font-size: $fs-300;
  }*/
}
.form__search label {
  color: #1f1e19;
  font-weight: 600;
  padding-top: 0;
}
.form__search .check__label {
  color: #1f1e19;
}
@media screen and (min-width: 800px) {
  .form__search .form-control {
    font-size: 1.4rem;
    margin-top: 8px;
  }
}
.form__search .h4 {
  cursor: pointer;
  position: relative;
  width: 100%;
  padding-left: 21px;
}
.form__search .h4:after {
  content: "";
  background: url(/assets/default/img/ico-arrow-down.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 5px;
  transition: all 0.2s ease-in-out;
}
.form__search .h4.active:after {
  transform: rotate(180deg);
}
.form__search .checkbox-group {
  background: #f0f0f0;
  transform-origin: top;
  transform: scaleY(0);
  height: 0;
  opacity: 0;
  transition: all 0.1s ease-in-out;
}
.form__search .checkbox-group.active {
  opacity: 1;
  height: auto;
  transform: scaleY(1);
}
.form__search input.form-control[type=select] {
  padding-top: 8px;
}
.form__search .select-selected.form-control:after {
  top: 51px;
}
.form__search .select-selected.form-control.select-arrow-active:after {
  top: 44px;
}
.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");
}

.reseaux {
  margin-bottom: 3rem;
}

.shareon {
  display: flex;
  margin: 0;
}
.shareon > * {
  height: 16px;
  padding: 4px 8px 13px;
  background: #707070 !important;
}
.shareon > *:before {
  background-size: 16px;
  width: 16px;
  height: 16px;
  top: 9px;
}
.shareon .email:before {
  background-image: url(/assets/default/img/ico-mail.svg);
}

a {
  transition: all 0.2s ease-in-out;
  color: #1f1e19;
}
a:hover {
  color: #707070;
}

small, .small {
  font-size: 1.2rem;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

h2, h3 {
  color: #ff8c00;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
h2 span, h3 span {
  font-family: "Inter", sans-serif;
  font-size: 2.1rem;
  color: #1f1e19;
}

blockquote {
  font-size: 4rem;
  position: relative;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}

/*
blockquote:before {
  display: block;
  padding-left: 10px;
  content: "\300A";
  font-size: 24px;
  position: absolute;
  left: -40px;
  top: 9px;
  color: $black;

}

blockquote:after {
  display: block;
  padding-left: 10px;
  content: "\300B";
  font-size: 24px;
  position: absolute;
  right: 0px;
  Bottom: 9px;
  color: $black;

}*/

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

.flex {
  display: flex;
  gap: 1rem;
}

.gap-3 {
  gap: 3rem;
}

 .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: 2rem;
}

.date {
  font-size: 1.2rem;
  margin-top: 1.6rem;
}

.pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem 0.3rem;
  margin-top: 4rem;
}
.pagination li {
  padding: 8px;
  border: 1px solid #707070;
  font-size: 1.6rem;
  border-radius: 8px;
}
.pagination li:hover {
  background: #ff8c00;
}
.pagination li button, .pagination li span {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding-block: 1px;
  padding-inline: 6px;
  width: 26px;
}
.pagination li.active {
  background: #1f1e19;
  color: #fff;
  font-weight: 800;
}

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

/*
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 1px;
  margin: 3rem 0;


  th {
    background: $primary;
    color: $white;
    text-align: center;
    line-height: 30px;
    text-transform: uppercase;
    padding: 5px 0 0;


  }

  td {
    background: #efefef;
    padding: 6px !important;
    border: 0 !important;
    font-size: 1.4rem;

  }

  tr:nth-child(even) {
    td {
      background: #fafafa;
    }

  }
}
*/
table {
  margin: 0;
}

.pill__theme {
  font-weight: 800;
  display: inline-block;
  border-bottom: 4px solid #ff8c00;
  margin: 1.2rem 0;
}

.dropdown {
  position: relative;
  display: inline-block;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  /* Dropdown Content (Hidden by Default) */
}
.dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fafafa;
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 999999;
}
.dropdown .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.glide__arrow {
  border: 0;
  box-shadow: none;
  text-shadow: none;
}

.glide__arrow--left {
  left: -6rem;
}

.glide__arrow--right {
  right: -6rem;
}

.glide__bullets {
  bottom: -2rem;
}

.glide__bullet {
  box-shadow: none;
  background: #ebebeb;
}

.glide__bullet--active {
  background: #1f1e19;
}

.active {
  background-color: #ccc;
}

.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.loading-masq > div {
  position: absolute;
  z-index: 100;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: 3rem;
  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: #fff;
  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, .overlay {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  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_links {
  cursor: pointer;
}

.modal {
  background: #fff;
  max-width: 90%;
  border-radius: 4px;
  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: 1rem 2rem;
}
.modal__header .js_close_modal {
  align-items: center;
  border-radius: 50vh;
  color: #707070;
  background: #fff;
  border: 1px solid #707070;
  display: flex;
  height: 30px;
  justify-content: center;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  width: 30px;
}

.modal__body {
  padding: 1rem 2rem 2rem;
}
.modal__body img {
  max-height: 70vh;
}
.modal__body h1, .modal__body h2, .modal__body h3 {
  margin-top: 0;
}
.modal__body h1, .modal__body h2, .modal__body h3, .modal__body p {
  margin-bottom: 2rem;
}
.modal__body .btn {
  margin-bottom: 0;
}

#modalForm.modal {
  background: #fff;
  color: #1f1e19;
}
#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;
  display: none;
}
@media screen and (min-width: 800px) {
  #modalForm.modal .modal__body .modal__intro {
    display: flex;
  }
}
#modalForm.modal .modal__body form {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
#modalForm.modal .modal__body .form-control {
  border-radius: 4px;
}
#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;
}
.btn {
  display: inline-block;
  position: relative;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1rem 2rem;
  text-align: center;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease-in-out;
  margin: 1.6rem 0;
  text-decoration: none !important;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}
.btn:before, .btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #1f1e19;
  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: #ff8c00;
  z-index: -2;
}
.btn:hover {
  color: #fff;
}
.btn:hover:before {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.btn--no-margin {
  margin: 0;
}

.btn--actif {
  color: #fff !important;
}
.btn--actif:before {
  opacity: 1;
  transform: none;
  background: #1f1e19;
}

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

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

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

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

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

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

.btn--tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EBEBEB;
  color: #1f1e19;
  font-size: 1.2rem;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0 0.2rem;
}
.btn--tag img {
  height: 20px;
}
.btn--tag:hover {
  background: #ff8c00;
}
.btn--tag:after, .btn--tag:before {
  display: none;
}

.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #dedede;
  padding: 0 5px 0 5px;
  margin-bottom: 2rem;
}
.tabs .btn {
  border-radius: 0.4rem 0.4rem 0 0;
  margin-bottom: 0;
  border: 0;
}
.tabs .btn--active {
  background: #fff;
  border: 1px solid #dedede;
  border-bottom: 0;
  color: #1f1e19;
  position: relative;
  margin-bottom: -2px;
}
.tabs .btn--active:after {
  display: none;
}
.tabs .btn--active:hover {
  background: #1f1e19;
  color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  margin: 4rem 2rem;
}

.card {
  position: relative;
  display: flex !important;
  flex-direction: column;
  padding: 2rem;
  transition: all 0.3s ease-in-out;
  text-align: left;
  list-style: none;
  list-style-image: none;
  border: 1px solid #707070;
  border-radius: 8px;
}
@media screen and (min-width: 800px) {
  .card {
    max-width: 405px;
  }
}
.card .content {
  position: relative;
  z-index: 2;
}
.card p {
  font-size: 1.4rem;
}
.card h2, .card h3 {
  font-size: 2.1rem;
  font-weight: 400;
  margin: 1.6rem 0 1rem;
  padding-left: 0;
}
.card h2:before, .card h2:after, .card h3:before, .card h3:after {
  display: none;
}
.card h2 a, .card h3 a {
  color: #ff8c00;
}
.card .date {
  color: #1f1e19;
}
.card .more {
  text-align: right;
  margin: 0;
}
.card .more .btn {
  margin: 0;
}
.card .card__illustration {
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease-in-out;
}
.card .card__illustration img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-out;
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 16/9;
}
.card:hover {
  background: #ff8c00;
}
.card:hover .date, .card:hover .pill__theme, .card:hover p {
  color: #fff;
}
.card:hover h2 a, .card:hover h3 a, .card:hover a {
  color: #fff;
}

.item .icon a {
  color: #e35558;
}

html {
  scroll-behavior: smooth;
  interpolate-size: allow-keywords;
  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: "Inter", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  background: white;
  color: #1f1e19;
  padding-top: 116px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (min-width: 640px) {
  body {
    padding-top: 145px;
  }
}
@media screen and (min-width: 800px) {
  body {
    padding-top: 132px;
  }
}
@media screen and (min-width: 1000px) {
  body {
    padding-top: 175px;
  }
}
@media screen and (min-width: 1200px) {
  body {
    padding-top: 135px;
  }
}

body.pdf {
  padding-top: 0;
  background: transparent;
}
body.pdf p {
  margin: 30px 0;
}

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

.wrapper {
  width: 100%;
}

.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: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .container {
    max-width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media screen and (min-width: 1300px) {
  .container {
    max-width: 1300px;
  }
}

.menu-desktop {
  display: none;
}
@media screen and (min-width: 800px) {
  .menu-desktop {
    display: block;
    margin: 0rem 0 1rem;
  }
}
.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: #fff;
  font-size: 2.1rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  position: relative;
  display: block;
  padding: 6px 0;
  font-family: "Bebas Neue", serif;
}
.menu-desktop ul li a:hover, .menu-desktop ul li a:focus-visible {
  color: #ff8c00;
}
.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: #dde4f1;
  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: #1f1e19;
  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: #ff8c00;
  color: #fff;
}
.menu-desktop ul li.level-1 a:after {
  position: absolute;
  content: "";
  height: 5px;
  width: 0;
  background: #1f1e19;
  transition: width 0.3s ease-in-out;
  bottom: -8px;
  left: 0;
}

#menu-toggle {
  position: absolute;
  width: 100%;
  left: 0;
  top: -2rem;
}
@media screen and (min-width: 640px) {
  #menu-toggle {
    top: 2rem;
  }
}
#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: #1f1e19;
  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: #1f1e19;
  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: 51px;
  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: #1f1e19;
  padding: 1rem 2rem;
  font-size: 2.1rem;
}
#menu-toggle .menu-mobile li a:hover {
  background: #1f1e19;
  color: #fff;
}
#menu-toggle .menu-mobile li ul {
  display: none;
}
#menu-toggle .menu-mobile li ul li a {
  font-size: 1.6rem;
  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;
  }
}

.breadcrumb {
  position: relative;
  z-index: 1;
}
.breadcrumb ol {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 150;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.breadcrumb li {
  font-size: 1.4rem;
  margin-right: 5px;
}
.breadcrumb li a {
  color: #1f1e19;
  font-weight: 700;
}
.breadcrumb li a:hover {
  color: #ff8c00;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
.footer__menu a {
  font-size: 1.4rem;
  display: block;
  padding: 15px 0px 15px 0px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__menu a:hover {
  color: #fff;
}
@media screen and (min-width: 800px) {
  .footer__menu a {
    font-size: 1.6rem;
    padding: 15px 0px 15px 20px;
  }
}
@media screen and (min-width: 800px) {
  .footer__menu {
    flex-direction: row;
  }
}

article {
  margin-bottom: 6rem;
}
article p {
  margin: 2rem 0;
}
article h1 {
  font-size: 5rem;
  font-weight: 400;
  margin: 3rem 0;
  color: #ff8c00;
}
@media screen and (min-width: 800px) {
  article .article__chapo, article .article__texte {
    margin: auto 0 auto 0;
  }
}
article .article__chapo h2, article .article__chapo h3, article .article__chapo h4, article .article__texte h2, article .article__texte h3, article .article__texte h4 {
  font-weight: 800;
  padding-left: 0;
}
article .article__chapo h2:before, article .article__chapo h2:after, article .article__chapo h3:before, article .article__chapo h3:after, article .article__chapo h4:before, article .article__chapo h4:after, article .article__texte h2:before, article .article__texte h2:after, article .article__texte h3:before, article .article__texte h3:after, article .article__texte h4:before, article .article__texte h4:after {
  display: none;
}
article .article__chapo h3, article .article__texte h3 {
  color: #de8429;
  font-weight: 600;
  letter-spacing: 0.2rem;
}
article .article__chapo ul, article .article__texte ul {
  margin: 1.5rem 0;
}
article .article__chapo ul li, article .article__texte ul li {
  display: list-item;
  margin-left: 3rem;
  margin-bottom: 2rem;
  padding-left: 24px;
  background: url(/assets/default/img/puce.svg) no-repeat left top 3px;
}
article .article__chapo ul li li, article .article__texte ul li li {
  padding-left: 0;
  background: none;
  list-style: disc;
  margin: auto;
  margin-left: 1.5rem;
}
article .article__chapo ul li h3, article .article__texte ul li h3 {
  margin-bottom: 1rem;
}
article .flex {
  justify-content: space-between;
  gap: 4rem;
}
article .article__chapo {
  font-weight: 600;
  font-size: 2.1rem;
  margin: 3rem auto;
}
article .illustration {
  padding: 0 0rem 2rem;
}
article .illustration a {
  display: flex;
  justify-content: center;
}
article .illustration figcaption {
  margin-top: 0.75rem;
  font-size: 1.4rem;
  color: #707070;
}
article .cartouche {
  padding: 3rem;
  margin: 4rem 0;
  background: #ebebeb;
}
article .cartouche > *:first-child {
  margin-top: 0;
}
article .article__encadre {
  background: #1f1e19;
  padding: 4rem;
  margin-top: 3rem;
  color: #fff;
}
article .article__encadre h2, article .article__encadre h3, article .article__encadre h4 {
  color: #fff;
}
article .article__encadre a {
  color: #fff;
  text-decoration: underline;
}
article .article__encadre a:hover {
  color: #ff8c00;
}
article .article__encadre blockquote {
  color: #fff;
  margin: 3rem;
  font-size: 2.5rem;
}
article .article__encadre blockquote:before {
  color: #fff;
}
article .article__encadre .btn:after {
  background: #ff8c00;
}
article .article__encadre .btn:before {
  background: #707070;
}
article .article__encadre h2 {
  margin: 2.5rem 0 2rem;
}
article .article__encadre h3 {
  font-size: 1.8rem;
}
article .article__encadre h3, article .article__encadre h4 {
  margin: 2rem 0 1rem;
}
article .article__encadre p {
  margin: 1.6rem 0;
}
article .article__encadre iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
article .article__encadre a.btn:hover {
  color: #fff;
}
article .article__more-on-this {
  margin: 6rem 0;
}
article .article__more-on-this h2 {
  margin-bottom: 3rem;
}
article .article__documents ul {
  margin-top: 2rem;
  border: 0;
}
article .article__documents li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 2rem;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  background: none;
}
article .article__documents li:hover {
  background: #ebebeb;
}
article .article__keywords {
  margin: 4rem 0;
}
article .article__keywords ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
article .article__keywords ul li {
  list-style: none;
  margin: 0;
}
article .article__keywords ul li:before {
  display: none;
}

.articles__slider {
  margin-bottom: 6rem;
}
@media screen and (min-width: 800px) {
  .articles__slider .glide__track {
    max-width: 85vw;
    margin: auto;
  }
}
.articles__slider li {
  border: 1px solid #1f1e19;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease-in-out;
}
.articles__slider li:hover {
  background: #ff8c00;
}
.articles__slider li:hover h3 a {
  color: #fff;
}
.articles__slider li:hover .date {
  border: 3px solid #1f1e19;
}
.articles__slider .date {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  width: 100px;
  height: 100px;
  position: relative;
  margin: auto;
  margin-bottom: 3rem;
  background: #dde4f1;
  border: 3px solid #ff8c00;
  border-radius: 50vh;
  padding: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.articles__slider h3 {
  font-size: 1.6rem;
  line-height: 1.25;
}
.articles__slider .content {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
.articles__slider .content h3 {
  margin: 0;
}
@media screen and (min-width: 800px) {
  .articles__slider .content {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}
.articles__slider .glide__bullets {
  right: 0%;
  left: auto;
  bottom: -4rem;
  transform: none;
}
.articles__slider .glide__bullet {
  background: #1f1e19;
  padding: 8px;
}
.articles__slider .glide__bullet--active {
  background: #ff8c00;
}
.articles__slider .glide__arrows {
  display: none;
}
@media screen and (min-width: 800px) {
  .articles__slider .glide__arrows {
    display: block;
  }
}
.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;
}
.articles__slider .glide__arrow--left {
  left: -2.5rem;
}
.articles__slider .glide__arrow--right {
  right: -2.5rem;
}
@media screen and (min-width: 800px) {
  .articles__slider .glide__arrow {
    top: 50%;
  }
}
.actus__slider img {
  -o-object-fit: cover;
     object-fit: cover;
}
.actus__slider li {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}
@media screen and (min-width: 800px) {
  .actus__slider li {
    grid-template-rows: 1fr 1fr;
  }
}
.actus__slider .date {
  text-transform: uppercase;
  font-size: 1.2rem;
  position: relative;
  margin-bottom: 3rem;
}
.actus__slider .date:after {
  position: absolute;
  content: "";
  height: 3px;
  width: 10px;
  background: #ff8c00;
  bottom: -8px;
  left: 0;
}
.actus__slider h3 {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 3rem;
}
.actus__slider .illustration {
  position: relative;
}
.actus__slider .illustration img {
  width: 100%;
  height: 100%;
}
.actus__slider .content {
  background: #fff;
  padding: 3rem;
  box-shadow: -30px -15px 37px -31px rgba(0, 0, 0, 0.6);
  border-radius: 4px 4px 0 0;
}
.actus__slider .liens {
  margin-top: 3rem;
}
.actus__slider .liens .btn {
  font-size: 1.2rem;
}
.actus__slider .liens .btn:after {
  display: none;
}
.actus__slider .liens .btn:hover {
  background: transparent;
  border: 1px solid #ebebeb;
}
.actus__slider .glide__slide {
  height: auto;
}
@media screen and (min-width: 800px) {
  .actus__slider .glide__slide {
    height: 55vh;
  }
}
.actus__slider .glide__bullets {
  left: 80%;
  bottom: 3rem;
}
.actus__slider .glide__bullet {
  background: #1f1e19;
  padding: 8px;
}
.actus__slider .glide__bullet--active {
  background: #ff8c00;
}
.actus__slider .glide__arrow {
  border: 0;
  box-shadow: none;
  padding: 0;
  opacity: 0.4;
  top: 30%;
  transition: opacity 0.2s ease-in-out;
}
.actus__slider .glide__arrow:hover {
  opacity: 1;
}
@media screen and (min-width: 800px) {
  .actus__slider li {
    display: grid;
    grid-template-columns: 4fr 1fr 2fr 1fr;
    grid-template-rows: 1fr 6fr;
  }
  .actus__slider .illustration {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
    position: relative;
  }
  .actus__slider .illustration img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .actus__slider .content {
    grid-column: 2/span 2;
    grid-row: 2/3;
    position: relative;
    z-index: 10;
    background: #fff;
    padding: 3rem;
    min-height: 500px;
  }
  .actus__slider .glide__arrow {
    top: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .actus__slider .content {
    min-height: 400px;
  }
}

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

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}


.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.media__galerie {
  margin: 4rem 0;
}
.media__galerie audio {
  width: auto;
  min-width: 260px;
}
.media__galerie .card {
  border: 1px solid #efefef;
  align-items: center;
  padding: 2rem;
}
.media__galerie .card h3 {
  margin: 2rem 0 2rem;
}
.media__galerie .card .resume {
  font-size: 1.4rem;
  margin: 2rem 0;
}
.media__galerie .card--video {
  padding-top: 0;
  max-width: none;
}
.media__galerie .card--video h3 {
  margin: 1rem 0 0;
}

.galerie {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin: 5rem 0 2rem;
}
.galerie figure {
  flex: auto;
  min-width: 220px;
  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: 280px;
}
.galerie figure:nth-child(4n+2) {
  width: 420px;
}
.galerie figure:nth-child(4n+3) {
  width: 350px;
}
.galerie figure:nth-child(4n+4) {
  width: 310px;
}
.galerie figure:nth-child(4n+5) {
  width: 280px;
}

.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: 100%;
  filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.2));
  z-index: 999;
}
.searchform_autocomplete_propositions li {
  padding: 5px 15px;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  list-style: none !important;
  margin: 0 !important;
}
.searchform_autocomplete_propositions li:hover {
  background: #1f1e19;
  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 #ebebeb;
}
.search-result .search-result__items li a {
  font-size: 1.8rem;
  font-weight: 800;
}

.temoignage-slide {
  display: flex;
  flex-direction: column;
  max-width: 50%;
  margin: 10rem auto 4rem;
}

.process__exit {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cards--user {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.cards--user .card__illustration img {
  border-radius: 50vh;
  max-width: 150px;
  margin: auto;
}

.grid--user {
  grid-template-columns: 1fr 4fr;
  gap: 4rem;
}
.grid--user .card__illustration img {
  border-radius: 50vh;
  margin: auto;
}

.user--contact {
  background: #ebebeb;
  padding: 1.5rem 3rem 3rem;
  margin: 2rem 0;
}
.user--contact > * {
  margin-top: 0;
}

.user--social {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.user--social li {
  transition: all 0.3s ease-in-out;
}
.user--social li:hover {
  transform: translateY(-6px);
}

.user--share .shareon {
  justify-content: flex-end;
}

#tarteaucitronRoot #tarteaucitronAlertBig {
  background: #1f1e19 !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;
}

.header__wrapper {
  background: #333;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 100;
  height: 117px;
  filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.4));
}
@media screen and (min-width: 640px) {
  header {
    height: 145px;
  }
}
@media screen and (min-width: 800px) {
  header {
    height: auto;
  }
}
header .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  padding: 0;
}
@media screen and (min-width: 800px) {
  header .container {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
  }
}
header .header__nav__group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
header .header__action {
  position: absolute;
  top: 5px;
  display: flex;
  gap: 4rem;
  padding-right: 2rem;
}
header .header__action a {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 300;
  color: hsl(194, 32%, 70%);
}
@media screen and (min-width: 800px) {
  header .header__action {
    position: static;
    padding-top: 2rem;
    padding-right: 0;
  }
}
header .header__action ul {
  display: flex;
  gap: 1.5rem;
}
header .header__action .lang a {
  background: #fff;
  border-radius: 4px;
  font-size: 1.2rem;
  padding: 0.2rem 0.5rem;
  color: #1f1e19;
  line-height: 1.7;
}
header .header__action .lang a:hover {
  background: #1f1e19;
  color: #fff;
}
header .header__logo {
  width: 100%;
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
}
header .header__logo h1 {
  margin: 0;
}
header .header__logo img {
  max-width: 200px;
  margin: auto;
}
@media screen and (min-width: 640px) {
  header .header__logo img {
    max-width: 300px;
    margin: auto;
  }
}
@media screen and (min-width: 800px) {
  header .header__logo {
    padding: 1.5rem 0;
    width: auto;
  }
  header .header__logo img {
    max-width: 350px;
    margin: auto;
  }
}
header nav {
  width: 100%;
  position: absolute;
  z-index: 80;
}
@media screen and (min-width: 800px) {
  header nav {
    position: static;
    align-self: flex-end;
    margin-top: 4rem;
  }
}

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

.scroll-up header {
  transform: translate3d(0, 0, 0);
}

header.animate {
  position: fixed;
}

.pdf header {
  background: transparent;
  padding: 40px;
  margin-bottom: 0px;
  position: static;
}

.mailing__wrapper {
  background: #707070;
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.mailing__wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 800px;
  top: -50px;
  right: -43%;
  background: url("/assets/default/img/envelop.svg") no-repeat;
  transform-origin: center;
  transform: rotate(30deg);
}
.mailing__wrapper h4, .mailing__wrapper a {
  color: #fff;
}
.mailing__wrapper .form-control {
  background: transparent;
  border-color: #fff;
  color: #fff;
  font-weight: 400;
}
.mailing__wrapper .form-control::-moz-placeholder {
  color: #efefef;
}
.mailing__wrapper .form-control::placeholder {
  color: #efefef;
}
.mailing__wrapper .btn {
  color: #ff8c00;
}
.mailing__wrapper .btn:before, .mailing__wrapper .btn:after {
  background: #1f1e19;
}
.mailing__wrapper .btn:after {
  background: #fff;
}
.mailing__wrapper .footer__socials__utils {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.mailing__wrapper .footer__socials__utils h4 {
  margin-top: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
}
.mailing__wrapper .footer__socials__utils form {
  padding: 0rem 0;
}
.mailing__wrapper .footer__socials__utils .form-group {
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 640px) {
  .mailing__wrapper .footer__socials__utils .form-group {
    flex-direction: row;
  }
}
.mailing__wrapper .footer__socials__utils .form-group .form-control {
  width: auto;
}
.mailing__wrapper .footer__socials__utils .form-group button {
  margin: 0;
  min-width: 100px;
}

footer {
  margin-top: auto;
  background: #9d8864;
  color: #fff;
}
footer .container {
  padding: 0rem 2rem 4rem;
}
footer a {
  color: #ff8c00;
}

.footer__adresse {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  justify-content: space-between;
}
@media screen and (min-width: 800px) {
  .footer__adresse {
    flex-direction: row;
  }
}
.footer__adresse img {
  display: block;
  margin: 0 2rem 0 0;
  max-width: 150px;
}
.footer__adresse .reseaux img {
  width: 25px;
  height: 25px;
  margin: 0;
}
.footer__adresse span {
  font-size: 2.1rem;
  font-weight: 600;
}

.copyright a {
  display: inline;
  padding: 0;
}

.reseaux {
  margin-top: 2rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.footer__nav nav {
  padding: 0rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.pdf footer {
  background: transparent;
  color: #1f1e19;
  padding: 40px 0 0;
  margin-top: 40px;
  border-top: 1px solid #1f1e19;
}

.hero__wrapper {
  padding: 0;
  background: #fff;
}
.hero__wrapper > .container {
  height: 60vh;
  max-width: 100%;
  position: relative;
}
.hero__wrapper > .container:after {
  display: none;
  content: "";
  position: absolute;
  top: 3rem;
  right: 10vw;
  width: 20vw;
  height: 20vh;
  background: url("/assets/default/img/laureat_fr.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 12;
}
@media screen and (min-width: 800px) {
  .hero__wrapper > .container:after {
    display: block;
  }
}
.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 .slide {
  animation: slideFade 32s linear infinite 0s;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center center;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  opacity: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero__wrapper .slide > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px 0 0 3rem;
  color: #fff;
}
@media screen and (min-width: 800px) {
  .hero__wrapper .slide > div {
    padding: 2vh 1rem;
  }
}
.hero__wrapper .slide h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.3;
  position: relative;
  margin-top: 4rem;
  color: #ff8c00;
  background: #dde4f1;
  padding: 3rem;
  border-radius: 5px 5px 0 0;
  letter-spacing: 0.1rem;
  margin-bottom: 0;
  position: relative;
  text-transform: uppercase;
  opacity: 0;
  animation-delay: 0s;
  animation-duration: 1s;
  animation-name: slidedownAnimation;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.hero__wrapper .slide h2 span {
  display: block;
  font-size: 2.5rem;
  color: #1f1e19;
  font-family: "Inter", sans-serif;
  text-transform: none;
}
@media screen and (min-width: 800px) {
  .hero__wrapper .slide h2 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1000px) {
  .hero__wrapper .slide h2 {
    font-size: 4.5rem;
  }
}
.hero__wrapper .slide p {
  background: #ebebeb;
  color: #1f1e19;
  padding: 3rem;
  font-size: 1.4rem;
  border-radius: 5px;
}
.hero__wrapper .slide p.slogan {
  background: #fff;
  display: none;
  opacity: 0;
  animation-delay: 0.3s;
  animation-duration: 0.8s;
  animation-name: slidedownAnimation;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  border-radius: 5px;
  position: relative;
}
@media screen and (min-width: 640px) {
  .hero__wrapper .slide p.slogan {
    display: block;
  }
}
@media screen and (min-width: 800px) {
  .hero__wrapper .slide p.slogan {
    margin-left: 3rem;
    font-size: 1.6rem;
    margin-top: 4rem;
    max-width: 800px;
  }
}
.hero__wrapper .slide p.slogan:before {
  display: none;
  position: absolute;
  content: "";
  border-radius: 5px;
  width: 50px;
  height: 50px;
  background: #fff;
  transform: rotate(45deg);
  top: -20px;
  left: 19%;
}
@media screen and (min-width: 800px) {
  .hero__wrapper .slide p.slogan:before {
    display: block;
  }
}
.hero__wrapper .slide .actions {
  margin: 0rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
  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) {
  .hero__wrapper .slide .actions {
    flex-direction: row;
  }
}
@media screen and (min-width: 800px) {
  .hero__wrapper .slide .actions {
    margin-left: 3rem;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1rem 8rem;
  }
}
@media screen and (min-width: 1000px) {
  .hero__wrapper .slide .actions {
    flex-direction: row;
  }
}
.hero__wrapper .slide .actions .btn {
  padding: 2rem 2rem 2rem 6rem;
  position: relative;
  margin: auto;
  background: #ff8c00;
  color: #fff;
}
@media screen and (min-width: 800px) {
  .hero__wrapper .slide .actions .btn {
    margin: 0;
  }
}
.hero__wrapper .slide .actions .btn:before {
  position: absolute;
  inset: unset;
  top: 1.6rem;
  left: 2rem;
  content: "";
  background: url("/assets/default/img/ico-comments.svg") no-repeat;
  background-size: cover;
  height: 30px;
  width: 30px;
  opacity: 1;
  transform: scale(0.9);
}
.hero__wrapper .slide .actions .btn:after {
  display: none;
}
.hero__wrapper .slide .actions .btn:hover {
  background: #ff8c00;
}
.hero__wrapper .slide .actions .btn:hover:before {
  transform: scale(1);
}
.hero__wrapper .slide .actions a {
  color: #fff;
  font-weight: 600;
  padding: 1.7rem 2rem;
  transition: all 0.3s ease-out;
  border: 1px solid transparent;
  background: transparent;
}
.hero__wrapper .slide .actions a:hover {
  border-radius: 0.4rem;
  background: rgba(0, 0, 0, 0.2);
}
.hero__wrapper .slide:nth-child(1) {
  background-image: url("/assets/default/img/bg_profil.webp");
}
.hero__wrapper .slide:nth-child(2) {
  animation-delay: 8s;
  background-image: url("/assets/default/img/bg_carbone.webp");
}
.hero__wrapper .slide:nth-child(3) {
  animation-delay: 16s;
  background-image: url("/assets/default/img/bg_profil.webp");
}
.hero__wrapper .slide:nth-child(4) {
  animation-delay: 24s;
  background-image: url("/assets/default/img/carbone.webp");
}

.en .hero__wrapper > .container:after {
  background: url("/assets/default/img/laureat_en.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.de .hero__wrapper > .container:after {
  background: url("/assets/default/img/laureat_de.png");
  background-repeat: no-repeat;
  background-size: contain;
}

@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;
  }
}
.teaser__wrapper {
  padding: 3rem 0;
  text-align: center;
}
.teaser__wrapper h2 {
  font-size: 4.5rem;
  margin-bottom: 0;
}
.teaser__wrapper .slogan {
  font-weight: 600;
  font-size: 2.1rem;
}
.teaser__wrapper p.valid {
  text-align: center;
}
.teaser__wrapper p.valid img {
  width: 40px;
  display: block;
  margin: auto;
}
.teaser__wrapper .grid {
  gap: 0 6rem;
}
.teaser__wrapper .grid > div {
  max-width: 600px;
}
.teaser__wrapper .grid > div h3 {
  font-size: 2.5rem;
}
.teaser__wrapper .grid > div p {
  display: flex;
  text-align: justify;
}

.produits__wrapper {
  background: #fff;
  padding-bottom: 6rem;
}
.produits__wrapper h2 {
  font-size: 4.5rem;
  text-align: center;
}
.produits__wrapper .grid {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6rem;
}
@media screen and (min-width: 800px) {
  .produits__wrapper .grid {
    flex-direction: row;
    gap: 4rem;
  }
}
.produits__wrapper .grid .produit {
  flex: 1;
}
.produits__wrapper .grid .produit .produit_img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.produits__wrapper .grid .produit .produit_img img {
  display: block;
  margin: auto;
  max-width: 100%;
  border-radius: 8px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  height: 150px;
}
.machines__wrapper {
  background: #ff8c00 url("/assets/default/img/parc_machine.jpg") no-repeat center right;
  background-size: contain;
  color: #fff;
  padding: 1rem 0 6rem;
}
.machines__wrapper .machines__widget {
  max-width: 900px;
}
.machines__wrapper h2 {
  color: #009BD6;
  font-size: 4.5rem;
}
.machines__wrapper h3 {
  color: #fff;
}

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

.surtitre {
  color: #707070;
  padding-left: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  text-transform: uppercase;
}
.surtitre:before, .surtitre:after {
  display: none;
}

.main__wrapper {
  padding: 2rem 0 4rem;
}
