@charset "UTF-8";
/************************
*
* PLAN DES SCSS
*
01 => CONFIG
02 => LAYOUT
03 => PAGES
04 => COMPOSANTS
*
*
*************************/
/* Set core body defaults */
@import "../../editor-style.css";
:root {
  color-scheme: unset;
}
body {
  min-height: 96vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: flex-end;
}
body main {
  min-height: 69vh;
}
@media screen and (min-width: 960px) {
  body main {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 767px) and (max-width: 960px) {
  body main {
    margin-top: 4rem;
  }
}
body .elementor-location-footer {
  bottom: 0;
}
.post, .page {
  margin: 0em !important;
}
/* Box sizing rules */
*, *::before, *::after {
  box-sizing: border-box;
}
/* Remove default padding */
ul[class], ol[class] {
  padding: 0;
}
p {
  margin-top: 0rem;
  margin-bottom: 1rem;
}
html {
  scroll-behavior: smooth;
}
/* Remove default margin */
body, h1, h2, h3, h4, ul[class], ol[class], li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
}
/* Remove list styles on ul, ol elements with a class attribute */
ul[class], ol[class] {
  list-style: none;
}
/* Make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  text-decoration: none;
}
/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}
/**
*
*  color BG + TXT
*
****************/
.bg_primary {
  background-color: #3b414c;
}
.txt_primary {
  color: #3b414c;
}
.bg_noir {
  background-color: #000000;
}
.txt_noir {
  color: #000000;
}
.bg_blanc {
  background-color: #ffffff;
}
.txt_blanc {
  color: #ffffff;
}
.bg_gris1 {
  background-color: #f3f3f1;
}
.txt_gris1 {
  color: #f3f3f1;
}
.bg_gris2 {
  background-color: #eeeeee;
}
.txt_gris2 {
  color: #eeeeee;
}
.bg_gris3 {
  background-color: #707070;
}
.txt_gris3 {
  color: #707070;
}
.bg_gris4 {
  background-color: #333333;
}
.txt_gris4 {
  color: #333333;
}
.bg_color1 {
  background-color: #e2b773;
}
.txt_color1 {
  color: #e2b773;
}
.bg_color2 {
  background-color: #446686;
}
.txt_color2 {
  color: #446686;
}
.bg_color3 {
  background-color: #AFC59F;
}
.txt_color3 {
  color: #AFC59F;
}
.bg_color4 {
  background-color: #E1C5CA;
}
.txt_color4 {
  color: #E1C5CA;
}
.bg_color5 {
  background-color: #222222;
}
.txt_color5 {
  color: #222222;
}
.bg_color6 {
  background-color: #e2b773;
}
.txt_color6 {
  color: #e2b773;
}
/**
*
* Colonne
*
****************/
.col2 p, .col3 p {
  margin: 0 !important;
}
.col2 ul, .col3 ul {
  margin-top: 0 !important;
}
@media screen and (min-width: 960px) {
  .col2 {
    columns: 2;
    column-gap: 25px;
    column-fill: balance;
  }
  .col3 {
    columns: 3;
    column-gap: 25px;
    column-fill: balance;
  }
}
/*
@use "sass:math";
*/
/**
*
* Espacement
*
****************/
/**
    *
    * Padding
    *
    ****************/
.px_1 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .px_1 {
    padding-left: calc($spacer, 2) * 1;
    padding-right: calc($spacer, 2) * 1;
  }
}
.pl_1 {
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .pl_1 {
    padding-left: calc($spacer, 2) * 1;
  }
}
.pr_1 {
  padding-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .pr_1 {
    padding-right: calc($spacer, 2) * 1;
  }
}
.py_1 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .py_1 {
    padding-top: calc($spacer, 2) * 1;
    padding-bottom: calc($spacer, 2) * 1;
  }
}
.pt_1 {
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .pt_1 {
    padding-top: calc($spacer, 2) * 1;
  }
}
.pb_1 {
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .pb_1 {
    padding-bottom: calc($spacer, 2) * 1;
  }
}
/**
    *
    * Margin
    *
    ****************/
.mx_1 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .mx_1 {
    margin-left: calc($spacer, 2) * 1;
    margin-right: calc($spacer, 2) * 1;
  }
}
.ml_1 {
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .ml_1 {
    margin-left: calc($spacer, 2) * 1;
  }
}
.mr_1 {
  margin-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .mr_1 {
    margin-right: calc($spacer, 2) * 1;
  }
}
.my_1 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .my_1 {
    margin-top: calc($spacer, 2) * 1;
    margin-bottom: calc($spacer, 2) * 1;
  }
}
.mt_1 {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .mt_1 {
    margin-top: calc($spacer, 2) * 1;
  }
}
.mb_1 {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .mb_1 {
    margin-bottom: calc($spacer, 2) * 1;
  }
}
/**
    *
    * Padding
    *
    ****************/
.px_2 {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media screen and (max-width: 767px) {
  .px_2 {
    padding-left: calc($spacer, 2) * 2;
    padding-right: calc($spacer, 2) * 2;
  }
}
.pl_2 {
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .pl_2 {
    padding-left: calc($spacer, 2) * 2;
  }
}
.pr_2 {
  padding-right: 3rem;
}
@media screen and (max-width: 767px) {
  .pr_2 {
    padding-right: calc($spacer, 2) * 2;
  }
}
.py_2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .py_2 {
    padding-top: calc($spacer, 2) * 2;
    padding-bottom: calc($spacer, 2) * 2;
  }
}
.pt_2 {
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .pt_2 {
    padding-top: calc($spacer, 2) * 2;
  }
}
.pb_2 {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .pb_2 {
    padding-bottom: calc($spacer, 2) * 2;
  }
}
/**
    *
    * Margin
    *
    ****************/
.mx_2 {
  margin-left: 3rem;
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .mx_2 {
    margin-left: calc($spacer, 2) * 2;
    margin-right: calc($spacer, 2) * 2;
  }
}
.ml_2 {
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .ml_2 {
    margin-left: calc($spacer, 2) * 2;
  }
}
.mr_2 {
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .mr_2 {
    margin-right: calc($spacer, 2) * 2;
  }
}
.my_2 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .my_2 {
    margin-top: calc($spacer, 2) * 2;
    margin-bottom: calc($spacer, 2) * 2;
  }
}
.mt_2 {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .mt_2 {
    margin-top: calc($spacer, 2) * 2;
  }
}
.mb_2 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .mb_2 {
    margin-bottom: calc($spacer, 2) * 2;
  }
}
/**
    *
    * Padding
    *
    ****************/
.px_3 {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}
@media screen and (max-width: 767px) {
  .px_3 {
    padding-left: calc($spacer, 2) * 3;
    padding-right: calc($spacer, 2) * 3;
  }
}
.pl_3 {
  padding-left: 4.5rem;
}
@media screen and (max-width: 767px) {
  .pl_3 {
    padding-left: calc($spacer, 2) * 3;
  }
}
.pr_3 {
  padding-right: 4.5rem;
}
@media screen and (max-width: 767px) {
  .pr_3 {
    padding-right: calc($spacer, 2) * 3;
  }
}
.py_3 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .py_3 {
    padding-top: calc($spacer, 2) * 3;
    padding-bottom: calc($spacer, 2) * 3;
  }
}
.pt_3 {
  padding-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .pt_3 {
    padding-top: calc($spacer, 2) * 3;
  }
}
.pb_3 {
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .pb_3 {
    padding-bottom: calc($spacer, 2) * 3;
  }
}
/**
    *
    * Margin
    *
    ****************/
.mx_3 {
  margin-left: 4.5rem;
  margin-right: 4.5rem;
}
@media screen and (max-width: 767px) {
  .mx_3 {
    margin-left: calc($spacer, 2) * 3;
    margin-right: calc($spacer, 2) * 3;
  }
}
.ml_3 {
  margin-left: 4.5rem;
}
@media screen and (max-width: 767px) {
  .ml_3 {
    margin-left: calc($spacer, 2) * 3;
  }
}
.mr_3 {
  margin-right: 4.5rem;
}
@media screen and (max-width: 767px) {
  .mr_3 {
    margin-right: calc($spacer, 2) * 3;
  }
}
.my_3 {
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .my_3 {
    margin-top: calc($spacer, 2) * 3;
    margin-bottom: calc($spacer, 2) * 3;
  }
}
.mt_3 {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .mt_3 {
    margin-top: calc($spacer, 2) * 3;
  }
}
.mb_3 {
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .mb_3 {
    margin-bottom: calc($spacer, 2) * 3;
  }
}
/**
    *
    * Padding
    *
    ****************/
.px_4 {
  padding-left: 6rem;
  padding-right: 6rem;
}
@media screen and (max-width: 767px) {
  .px_4 {
    padding-left: calc($spacer, 2) * 4;
    padding-right: calc($spacer, 2) * 4;
  }
}
.pl_4 {
  padding-left: 6rem;
}
@media screen and (max-width: 767px) {
  .pl_4 {
    padding-left: calc($spacer, 2) * 4;
  }
}
.pr_4 {
  padding-right: 6rem;
}
@media screen and (max-width: 767px) {
  .pr_4 {
    padding-right: calc($spacer, 2) * 4;
  }
}
.py_4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .py_4 {
    padding-top: calc($spacer, 2) * 4;
    padding-bottom: calc($spacer, 2) * 4;
  }
}
.pt_4 {
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .pt_4 {
    padding-top: calc($spacer, 2) * 4;
  }
}
.pb_4 {
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .pb_4 {
    padding-bottom: calc($spacer, 2) * 4;
  }
}
/**
    *
    * Margin
    *
    ****************/
.mx_4 {
  margin-left: 6rem;
  margin-right: 6rem;
}
@media screen and (max-width: 767px) {
  .mx_4 {
    margin-left: calc($spacer, 2) * 4;
    margin-right: calc($spacer, 2) * 4;
  }
}
.ml_4 {
  margin-left: 6rem;
}
@media screen and (max-width: 767px) {
  .ml_4 {
    margin-left: calc($spacer, 2) * 4;
  }
}
.mr_4 {
  margin-right: 6rem;
}
@media screen and (max-width: 767px) {
  .mr_4 {
    margin-right: calc($spacer, 2) * 4;
  }
}
.my_4 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .my_4 {
    margin-top: calc($spacer, 2) * 4;
    margin-bottom: calc($spacer, 2) * 4;
  }
}
.mt_4 {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .mt_4 {
    margin-top: calc($spacer, 2) * 4;
  }
}
.mb_4 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .mb_4 {
    margin-bottom: calc($spacer, 2) * 4;
  }
}
/**
    *
    * Padding
    *
    ****************/
.px_5 {
  padding-left: 7.5rem;
  padding-right: 7.5rem;
}
@media screen and (max-width: 767px) {
  .px_5 {
    padding-left: calc($spacer, 2) * 5;
    padding-right: calc($spacer, 2) * 5;
  }
}
.pl_5 {
  padding-left: 7.5rem;
}
@media screen and (max-width: 767px) {
  .pl_5 {
    padding-left: calc($spacer, 2) * 5;
  }
}
.pr_5 {
  padding-right: 7.5rem;
}
@media screen and (max-width: 767px) {
  .pr_5 {
    padding-right: calc($spacer, 2) * 5;
  }
}
.py_5 {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .py_5 {
    padding-top: calc($spacer, 2) * 5;
    padding-bottom: calc($spacer, 2) * 5;
  }
}
.pt_5 {
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .pt_5 {
    padding-top: calc($spacer, 2) * 5;
  }
}
.pb_5 {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .pb_5 {
    padding-bottom: calc($spacer, 2) * 5;
  }
}
/**
    *
    * Margin
    *
    ****************/
.mx_5 {
  margin-left: 7.5rem;
  margin-right: 7.5rem;
}
@media screen and (max-width: 767px) {
  .mx_5 {
    margin-left: calc($spacer, 2) * 5;
    margin-right: calc($spacer, 2) * 5;
  }
}
.ml_5 {
  margin-left: 7.5rem;
}
@media screen and (max-width: 767px) {
  .ml_5 {
    margin-left: calc($spacer, 2) * 5;
  }
}
.mr_5 {
  margin-right: 7.5rem;
}
@media screen and (max-width: 767px) {
  .mr_5 {
    margin-right: calc($spacer, 2) * 5;
  }
}
.my_5 {
  margin-top: 7.5rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .my_5 {
    margin-top: calc($spacer, 2) * 5;
    margin-bottom: calc($spacer, 2) * 5;
  }
}
.mt_5 {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .mt_5 {
    margin-top: calc($spacer, 2) * 5;
  }
}
.mb_5 {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .mb_5 {
    margin-bottom: calc($spacer, 2) * 5;
  }
}
/**
    *
    * Padding
    *
    ****************/
.px_6 {
  padding-left: 9rem;
  padding-right: 9rem;
}
@media screen and (max-width: 767px) {
  .px_6 {
    padding-left: calc($spacer, 2) * 6;
    padding-right: calc($spacer, 2) * 6;
  }
}
.pl_6 {
  padding-left: 9rem;
}
@media screen and (max-width: 767px) {
  .pl_6 {
    padding-left: calc($spacer, 2) * 6;
  }
}
.pr_6 {
  padding-right: 9rem;
}
@media screen and (max-width: 767px) {
  .pr_6 {
    padding-right: calc($spacer, 2) * 6;
  }
}
.py_6 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .py_6 {
    padding-top: calc($spacer, 2) * 6;
    padding-bottom: calc($spacer, 2) * 6;
  }
}
.pt_6 {
  padding-top: 9rem;
}
@media screen and (max-width: 767px) {
  .pt_6 {
    padding-top: calc($spacer, 2) * 6;
  }
}
.pb_6 {
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .pb_6 {
    padding-bottom: calc($spacer, 2) * 6;
  }
}
/**
    *
    * Margin
    *
    ****************/
.mx_6 {
  margin-left: 9rem;
  margin-right: 9rem;
}
@media screen and (max-width: 767px) {
  .mx_6 {
    margin-left: calc($spacer, 2) * 6;
    margin-right: calc($spacer, 2) * 6;
  }
}
.ml_6 {
  margin-left: 9rem;
}
@media screen and (max-width: 767px) {
  .ml_6 {
    margin-left: calc($spacer, 2) * 6;
  }
}
.mr_6 {
  margin-right: 9rem;
}
@media screen and (max-width: 767px) {
  .mr_6 {
    margin-right: calc($spacer, 2) * 6;
  }
}
.my_6 {
  margin-top: 9rem;
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .my_6 {
    margin-top: calc($spacer, 2) * 6;
    margin-bottom: calc($spacer, 2) * 6;
  }
}
.mt_6 {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .mt_6 {
    margin-top: calc($spacer, 2) * 6;
  }
}
.mb_6 {
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .mb_6 {
    margin-bottom: calc($spacer, 2) * 6;
  }
}
/**
    *
    * Padding
    *
    ****************/
.px_7 {
  padding-left: 10.5rem;
  padding-right: 10.5rem;
}
@media screen and (max-width: 767px) {
  .px_7 {
    padding-left: calc($spacer, 2) * 7;
    padding-right: calc($spacer, 2) * 7;
  }
}
.pl_7 {
  padding-left: 10.5rem;
}
@media screen and (max-width: 767px) {
  .pl_7 {
    padding-left: calc($spacer, 2) * 7;
  }
}
.pr_7 {
  padding-right: 10.5rem;
}
@media screen and (max-width: 767px) {
  .pr_7 {
    padding-right: calc($spacer, 2) * 7;
  }
}
.py_7 {
  padding-top: 10.5rem;
  padding-bottom: 10.5rem;
}
@media screen and (max-width: 767px) {
  .py_7 {
    padding-top: calc($spacer, 2) * 7;
    padding-bottom: calc($spacer, 2) * 7;
  }
}
.pt_7 {
  padding-top: 10.5rem;
}
@media screen and (max-width: 767px) {
  .pt_7 {
    padding-top: calc($spacer, 2) * 7;
  }
}
.pb_7 {
  padding-bottom: 10.5rem;
}
@media screen and (max-width: 767px) {
  .pb_7 {
    padding-bottom: calc($spacer, 2) * 7;
  }
}
/**
    *
    * Margin
    *
    ****************/
.mx_7 {
  margin-left: 10.5rem;
  margin-right: 10.5rem;
}
@media screen and (max-width: 767px) {
  .mx_7 {
    margin-left: calc($spacer, 2) * 7;
    margin-right: calc($spacer, 2) * 7;
  }
}
.ml_7 {
  margin-left: 10.5rem;
}
@media screen and (max-width: 767px) {
  .ml_7 {
    margin-left: calc($spacer, 2) * 7;
  }
}
.mr_7 {
  margin-right: 10.5rem;
}
@media screen and (max-width: 767px) {
  .mr_7 {
    margin-right: calc($spacer, 2) * 7;
  }
}
.my_7 {
  margin-top: 10.5rem;
  margin-bottom: 10.5rem;
}
@media screen and (max-width: 767px) {
  .my_7 {
    margin-top: calc($spacer, 2) * 7;
    margin-bottom: calc($spacer, 2) * 7;
  }
}
.mt_7 {
  margin-top: 10.5rem;
}
@media screen and (max-width: 767px) {
  .mt_7 {
    margin-top: calc($spacer, 2) * 7;
  }
}
.mb_7 {
  margin-bottom: 10.5rem;
}
@media screen and (max-width: 767px) {
  .mb_7 {
    margin-bottom: calc($spacer, 2) * 7;
  }
}
/**
    *
    * Padding
    *
    ****************/
.px_8 {
  padding-left: 12rem;
  padding-right: 12rem;
}
@media screen and (max-width: 767px) {
  .px_8 {
    padding-left: calc($spacer, 2) * 8;
    padding-right: calc($spacer, 2) * 8;
  }
}
.pl_8 {
  padding-left: 12rem;
}
@media screen and (max-width: 767px) {
  .pl_8 {
    padding-left: calc($spacer, 2) * 8;
  }
}
.pr_8 {
  padding-right: 12rem;
}
@media screen and (max-width: 767px) {
  .pr_8 {
    padding-right: calc($spacer, 2) * 8;
  }
}
.py_8 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .py_8 {
    padding-top: calc($spacer, 2) * 8;
    padding-bottom: calc($spacer, 2) * 8;
  }
}
.pt_8 {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .pt_8 {
    padding-top: calc($spacer, 2) * 8;
  }
}
.pb_8 {
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .pb_8 {
    padding-bottom: calc($spacer, 2) * 8;
  }
}
/**
    *
    * Margin
    *
    ****************/
.mx_8 {
  margin-left: 12rem;
  margin-right: 12rem;
}
@media screen and (max-width: 767px) {
  .mx_8 {
    margin-left: calc($spacer, 2) * 8;
    margin-right: calc($spacer, 2) * 8;
  }
}
.ml_8 {
  margin-left: 12rem;
}
@media screen and (max-width: 767px) {
  .ml_8 {
    margin-left: calc($spacer, 2) * 8;
  }
}
.mr_8 {
  margin-right: 12rem;
}
@media screen and (max-width: 767px) {
  .mr_8 {
    margin-right: calc($spacer, 2) * 8;
  }
}
.my_8 {
  margin-top: 12rem;
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .my_8 {
    margin-top: calc($spacer, 2) * 8;
    margin-bottom: calc($spacer, 2) * 8;
  }
}
.mt_8 {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .mt_8 {
    margin-top: calc($spacer, 2) * 8;
  }
}
.mb_8 {
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .mb_8 {
    margin-bottom: calc($spacer, 2) * 8;
  }
}
/**
 *
 * CLASS POUR MODIFIER LA TAILLE
 *
****************/
.width_40 {
  width: 40% !important;
}
@media screen and (max-width: 960px) {
  .width_40 {
    width: 100% !important;
  }
}
.widthcenter_40 {
  width: 40%;
}
.width_50 {
  width: 50% !important;
}
@media screen and (max-width: 960px) {
  .width_50 {
    width: 100% !important;
  }
}
.widthcenter_50 {
  width: 50%;
}
.width_60 {
  width: 60% !important;
}
@media screen and (max-width: 960px) {
  .width_60 {
    width: 100% !important;
  }
}
.widthcenter_60 {
  width: 60%;
}
.width_70 {
  width: 70% !important;
}
@media screen and (max-width: 960px) {
  .width_70 {
    width: 100% !important;
  }
}
.widthcenter_70 {
  width: 70%;
}
.width_80 {
  width: 80% !important;
}
@media screen and (max-width: 960px) {
  .width_80 {
    width: 100% !important;
  }
}
.widthcenter_80 {
  width: 80%;
}
.width_90 {
  width: 90% !important;
}
@media screen and (max-width: 960px) {
  .width_90 {
    width: 100% !important;
  }
}
.widthcenter_90 {
  width: 90%;
}
[class*="widthcenter_"] {
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (max-width: 960px) {
  [class*="widthcenter_"] {
    width: 100% !important;
  }
}
@media screen and (max-width: 960px) {
  [class*="width_"] {
    width: 100% !important;
  }
}
/**
*
* Text alignement
*
****************/
.text-center {
  text-align: center;
}
.text-center img {
  margin-left: auto;
  margin-right: auto;
}
.text-right {
  text-align: right;
}
.text-right img {
  margin-left: auto;
  margin-right: 0;
}
/**
*
* Align in row
*
****************/
.align-items-center > .m1_row {
  align-items: center;
}
/************************
* Header & fix header
*************************/
.header_m1 .gm-padding {
  padding: 0 !important;
}
.header_m1 .gm-wrapper {
  width: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.75) !important;
}
.header_m1 .gm-inner .gm-container {
  transition: all 0.3s ease-in-out;
}
.header_m1 .gm-inner .gm-container .gm-logo {
  width: auto;
  height: auto;
}
.header_m1 .gm-inner .gm-container .gm-logo a img {
  width: auto;
  height: 125px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header_m1 .gm-inner .gm-container .gm-logo a img {
    height: 50px;
  }
}
.header_m1 .gm-inner .gm-container .gm-logo a svg {
  fill: #ffffff;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu {
  align-items: center;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: stretch;
  width: 100%;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-menu-item__txt-wrapper {
  transition: none !important;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-menu-item--lvl-0.gm-open, .header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-menu-item--lvl-0.current_page_item {
  color: #e2b773 !important;
  transition: all 0.3s ease-in-out;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-menu-item--lvl-0.gm-open > .gm-anchor .gm-menu-item__txt-wrapper, .header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-menu-item--lvl-0.current_page_item > .gm-anchor .gm-menu-item__txt-wrapper {
  color: #e2b773 !important;
  text-decoration: underline;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-menu-item--lvl-0 > a {
  padding: 36px 10px;
  margin: 0;
  background-color: transparent;
  color: #ffffff !important;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-menu-item--lvl-0 > a:hover, .header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-menu-item--lvl-0 > a:active {
  color: #e2b773 !important;
  transition: all 0.3s ease-in-out;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-menu-item--lvl-0 > a .gm-menu-item__txt-wrapper {
  position: relative;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-dropdown-menu-wrapper .gm-dropdown-menu {
  border-top: 3px solid #446686 !important;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-dropdown-menu--lvl-1, .header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-dropdown-menu--lvl-2 {
  padding-right: 0px !important;
  padding-left: 0px !important;
  font-size: 16px;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-dropdown-menu--lvl-1.gm-open, .header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-dropdown-menu--lvl-2.gm-open {
  color: #e2b773 !important;
  transition: all 0.3s ease-in-out;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-dropdown-menu--lvl-1.gm-open > .gm-anchor .gm-menu-item__txt-wrapper, .header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-dropdown-menu--lvl-2.gm-open > .gm-anchor .gm-menu-item__txt-wrapper {
  color: #446686 !important;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-dropdown-menu--lvl-1 a:hover, .header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-dropdown-menu--lvl-1 a:active, .header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-dropdown-menu--lvl-2 a:hover, .header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-dropdown-menu--lvl-2 a:active {
  color: #446686 !important;
  transition: all 0.3s ease-in-out;
}
.header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-dropdown-menu--lvl-1 .gm-dropdown-menu-wrapper .gm-dropdown-menu, .header_m1 .gm-inner .gm-main-menu-wrapper #gm-main-menu .gm-navbar-nav .gm-dropdown-menu--lvl-2 .gm-dropdown-menu-wrapper .gm-dropdown-menu {
  border-top: 3px solid #446686 !important;
}
.header_m1 .gm-inner .gm-main-menu-wrapper .gm-inner {
  transition: none !important;
}
.header_m1.fixed-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: slide-down 1s cubic-bezier(0, 0, 0.58, 1);
  height: 100px;
}
.header_m1.fixed-header .gm-wrapper {
  background-color: rgba(226, 183, 115, 0.75);
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.header_m1.fixed-header .gm-inner .gm-container {
  height: 125px;
  transition: all 0.3s ease-in-out;
}
.header_m1.fixed-header .gm-inner .gm-container .gm-main-menu-wrapper {
  height: auto !important;
}
.header_m1.fixed-header .gm-inner .gm-container .gm-logo > a img {
  width: auto;
  height: 125px !important;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header_m1.fixed-header .gm-inner .gm-container .gm-logo > a img {
    height: 100px !important;
    width: auto;
  }
}
.gm-menu-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 999999;
}
@media screen and (max-width: 960px) {
  .gm-wrapper .gm-container {
    padding-left: 0px;
    padding-right: 0px;
  }
  .gm-wrapper .gm-container .gm-action__gm_before_mobile_hamburger {
    width: 100%;
  }
  .gm-wrapper .gm-container .gm-action__gm_before_mobile_hamburger > .elementor {
    width: 100%;
  }
  .gm-wrapper .gm-container .gm-menu-btn {
    display: flex;
  }
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
#header_menu .elementor-nav-menu .menu-item a {
  color: #ffffff;
  padding: 20px 20px;
}
#footer_m1 {
  background-color: #000000;
  border: 0px;
  padding: 2rem 0rem;
}
#footer_m1 .footer_logo {
  height: 90px !important;
}
#footer_m1 .footer_logo svg {
  fill: #ffffff;
  height: 90px !important;
  width: 100% !important;
}
#footer_m1 .footer_logo:hover svg {
  fill: #ffffff;
}
#footer_m1 .footer_titre {
  color: #ffffff;
  text-transform: uppercase;
}
#footer_m1 p {
  color: #ffffff;
}
#footer_m1 a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
#footer_m1 a:hover {
  color: #a8b3a5;
  transition: all 0.3s ease-in-out;
}
#footer_m1 .elementor-social-icon {
  background-color: transparent;
  border: 1px solid #ffffff;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
  margin: 2px;
}
@media screen and (max-width: 960px) {
  #footer_m1 .elementor-social-icon {
    font-size: 14px;
  }
}
#footer_m1 .elementor-social-icon svg {
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
#footer_m1 .elementor-social-icon:hover {
  border: 1px solid #446686;
  transition: all 0.3s ease-in-out;
}
#footer_m1 .elementor-social-icon:hover svg {
  fill: #446686;
  transition: all 0.3s ease-in-out;
}
#footer_m1 .footer_menu .elementor-nav-menu--dropdown {
  background-color: transparent !important;
}
#footer_m1 .footer_menu .elementor-nav-menu--dropdown a:hover {
  background-color: #ffffff;
}
#footer_m1 .footer_btn .elementor-button-link {
  color: #ffffff;
  background-color: transparent;
  text-align: left;
  padding: 0px;
  transition: all 0.3s ease-in-out;
}
#footer_m1 .footer_btn .elementor-button-link:hover {
  color: #e2b773;
}
#copyright_m1 {
  background-color: #000000;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
}
#copyright_m1 p {
  color: #ffffff;
}
#copyright_m1 a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
#copyright_m1 a:hover {
  color: #a8b3a5;
  transition: all 0.3s ease-in-out;
}
body {
  font-family: "Poppins", sans-serif, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
body #content a:not([class]) {
  transition: color 300ms ease;
  color: #e2b773;
}
body #content a:not([class]):hover {
  color: #AFC59F;
}
.gm-nav-content-wrapper {
  will-change: inherit !important;
}
/******************************
* Titres principaux
******************************/
.titre_1, .titre_1_line {
  position: relative;
  font-size: calc(30px + (38 - 30) * ((100vw - 300px) / (1600 - 300)));
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.titre_1 .elementor-heading-title, .titre_1_line .elementor-heading-title {
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  .titre_1 br, .titre_1_line br {
    display: none;
  }
}
.titre_1 strong, .titre_1 b, .titre_1_line strong, .titre_1_line b {
  font-weight: 600;
}
.titre_1 span, .titre_1_line span {
  color: #000000;
  font-weight: 600;
}
.titre_1_line {
  margin: 4rem 0;
}
.titre_1_line .elementor-heading-title {
  line-height: 1.2;
  transform: translateY(-22px);
}
.titre_1_line .elementor-heading-title span {
  background: white;
  max-width: 80%;
  display: inline-block;
  padding: 0 20px !important;
}
.titre_1_line .elementor-heading-title:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateX(0%) translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .titre_1_line .elementor-heading-title span {
    padding: 0;
  }
}
.titre_1_line.txt_blanc .elementor-heading-title:before {
  background: #ffffff;
}
.titre_1_line.txt_blanc .elementor-heading-title:after {
  background: #ffffff;
}
.titre_2 {
  position: relative;
  font-size: calc(18px + (30 - 18) * ((100vw - 300px) / (1600 - 300)));
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.titre_2 .elementor-heading-title {
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  .titre_2 br {
    display: none;
  }
}
.titre_2 strong, .titre_2 b {
  font-weight: 600;
}
.titre_2 span {
  color: #446686;
  font-weight: 600;
}
.titre_3 {
  position: relative;
  font-size: calc(18px + (25 - 18) * ((100vw - 300px) / (1600 - 300)));
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.titre_3 .elementor-heading-title {
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  .titre_3 br {
    display: none;
  }
}
.titre_3 strong, .titre_3 b {
  font-weight: 600;
}
.titre_3 span {
  color: #446686;
  font-weight: 600;
}
.titre_4 {
  position: relative;
  font-size: calc(14px + (22 - 14) * ((100vw - 300px) / (1600 - 300)));
  color: #000000;
  font-family: "Montserrat", sans-serif;
}
.titre_4 .elementor-heading-title {
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .titre_4 br {
    display: none;
  }
}
.titre_4 strong, .titre_4 b {
  font-weight: 600;
}
.titre_4 span {
  color: #446686;
  font-weight: 600;
}
.sous_titre {
  font-size: 20px;
}
/******************************
* Titres spe
******************************/
.titre_spe_1 {
  position: relative;
  font-size: calc(22px + (38 - 22) * ((100vw - 300px) / (1600 - 300)));
  color: #3b414c;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
.titre_spe_1 .elementor-heading-title {
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .titre_spe_1 br {
    display: none;
  }
}
.titre_spe_1 strong, .titre_spe_1 b {
  font-weight: 600;
}
.titre_spe_1 span {
  color: #446686;
  font-weight: 600;
}
/******************************
* Padding / margin spe
******************************/
.p_margin_0 p {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}
/******************************
* Couleur
******************************/
.txt_blanc {
  color: #ffffff;
}
/******************************
* BG - Couleurs
******************************/
.bg_top_color1:after, .bg_top_color2:after, .bg_top_color3:after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  top: -50px;
  left: -50px;
  background-color: #e2b773;
  z-index: -1;
}
.bg_top_color2:after {
  background-color: #446686;
}
.bg_top_color3:after {
  background-color: #afc59f;
}
.bg_topL_color1:after, .bg_topL_color2:after, .bg_topL_color3:after {
  content: "";
  width: 54%;
  height: 70%;
  position: absolute;
  top: -30px;
  left: 0;
  background-color: #e2b773;
  z-index: -1;
}
.bg_topL_color2:after {
  background-color: #446686;
}
.bg_topL_color3:after {
  background-color: #afc59f;
}
.bg_topR_color1:after, .bg_topR_color2:after {
  content: "";
  width: 54%;
  height: 70%;
  position: absolute;
  top: -50px;
  right: 0;
  background-color: #e2b773;
  z-index: -1;
}
.bg_topR_color2:after {
  background-color: #446686;
}
.bg_topR_color3:after {
  content: "";
  width: 54%;
  height: 70%;
  position: absolute;
  top: -30px;
  right: 0;
  background-color: #afc59f;
  z-index: -1;
}
.bg_mid_color1:after, .bg_mid_color2:after, .bg_mid_color3:after {
  content: "";
  width: 54%;
  height: 70%;
  position: absolute;
  top: 38%;
  left: 0;
  background-color: #e2b773;
  z-index: -1;
}
.bg_mid_color2:after {
  background-color: #446686;
}
.bg_mid_color3:after {
  background-color: #446686;
}
/******************************
* link Couleur
******************************/
.link_color1 a {
  transition: all 0.3s ease-in-out;
  color: #e2b773;
}
.link_color1 a:hover {
  color: #3b414c;
  transition: all 0.3s ease-in-out;
}
.link_color2 a {
  transition: all 0.3s ease-in-out;
  color: #446686;
}
.link_color2 a:hover {
  color: #3b414c;
  transition: all 0.3s ease-in-out;
}
.link_color3 a {
  transition: all 0.3s ease-in-out;
  color: #AFC59F;
}
.link_color3 a:hover {
  color: #3b414c;
  transition: all 0.3s ease-in-out;
}
/******************************
* BLOCS
******************************/
.bloc_icon .elementor-icon-box-content {
  text-transform: uppercase;
}
.bg_degrad_1 {
  background: linear-gradient(0deg, #eeeded 0%, #f8f8f8 100%);
}
.bg_degrad_2 {
  background: linear-gradient(0deg, #eeeded 0%, #f8f8f8 100%);
}
.bg_spe_1 {
  background-color: #3b414c;
}
/******************************
* images
******************************/
svg {
  min-height: 20px;
  min-width: 20px;
}
.img_radius {
  border-radius: 3rem 0px 3rem 0px;
  overflow: hidden;
}
/******************************
* Liste
******************************/
.liste_puce ul {
  list-style: none;
}
.liste_puce ul li {
  padding-left: 15px;
  position: relative;
}
.liste_puce ul li:before {
  content: "";
  position: absolute;
  display: block;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  top: 10px;
  left: 0%;
  background-color: #3b414c;
}
/******************************
* Bloc txt img full
******************************/
.bloc_txt_imgD {
  position: relative;
}
.bloc_txt_imgD .colG {
  height: 100%;
}
.bloc_txt_imgD .colG .elementor-widget-container {
  padding-right: 55%;
}
@media screen and (max-width: 960px) {
  .bloc_txt_imgD .colG .elementor-widget-container {
    padding-right: 0%;
  }
}
.bloc_txt_imgD .colD {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 50%;
}
@media screen and (max-width: 960px) {
  .bloc_txt_imgD .colD {
    width: 100%;
    position: relative;
    transform: translateY(0%);
  }
}
.bloc_txt_imgD .colD .elementor-widget {
  height: 100%;
}
.bloc_txt_imgD .colD .elementor-widget-container {
  height: 100%;
}
.bloc_txt_imgD .colD .elementor-widget-container picture {
  height: 100%;
}
.bloc_txt_imgD .colD img {
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: 100% 50%;
  object-position: 100% 50%;
  font-family: "object-fit: cover; object-position: 100% 50%";
  width: 100%;
  height: 100%;
  display: block;
}
.bloc_txt_imgG {
  position: relative;
}
.bloc_txt_imgG .colG {
  height: 100%;
}
.bloc_txt_imgG .colG .elementor-widget-container {
  padding-left: 55%;
}
@media screen and (max-width: 960px) {
  .bloc_txt_imgG .colG .elementor-widget-container {
    padding-left: 0%;
  }
}
.bloc_txt_imgG .colD {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 50%;
}
@media screen and (max-width: 960px) {
  .bloc_txt_imgG .colD {
    width: 100%;
    position: relative;
    transform: translateY(0%);
  }
}
.bloc_txt_imgG .colD .elementor-widget {
  height: 100%;
}
.bloc_txt_imgG .colD .elementor-widget-container {
  height: 100%;
}
.bloc_txt_imgG .colD .elementor-widget-container picture {
  height: 100%;
}
.bloc_txt_imgG .colD img {
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: 0% 50%;
  object-position: 0% 50%;
  font-family: "object-fit: cover; object-position: 0% 50%";
  width: 100%;
  height: 100%;
  display: block;
}
/******************************
* Filtres
******************************/
.filtre {
  position: relative;
}
.filtre:before {
  content: "" !important;
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
}
.filtre_noir:before {
  background-color: rgba(0, 0, 0, 0.35);
}
.filtre_color1:before {
  background-color: rgba(226, 183, 115, 0.35);
}
.filtre_color2:before {
  background-color: rgba(68, 102, 134, 0.35);
}
.filtre_color3:before {
  background-color: rgba(175, 197, 159, 0.35);
}
.filtre_color4:before {
  background-color: rgba(225, 197, 202, 0.35);
}
.filtre_color5:before {
  background-color: rgba(34, 34, 34, 0.35);
}
.filtre_color6:before {
  background-color: rgba(226, 183, 115, 0.35);
}
/******************************
* hero / ban home
******************************/
.ban_home .e-con-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  min-height: 460px;
}
.ban_home .e-con-inner .ban_titre {
  text-align: center;
  color: #ffffff;
}
.ban_home .e-con-inner .breadcrumbs {
  text-align: center;
  color: #ffffff;
}
.ban_home .e-con-inner .breadcrumbs a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.ban_home .e-con-inner .breadcrumbs a:hover {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
/************************
* Page divers
*************************/
.ban_inte {
  height: 450px !important;
}
.ban_inte .breadcrumb {
  top: 100px;
  padding: 0rem 2rem;
  display: flex;
  justify-content: center;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.2);
}
.ban_inte .breadcrumb a {
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.ban_inte .breadcrumb a:hover {
  color: #AFC59F;
  transition: all 0.3s ease-in-out;
}
/************************
* Page remerciement contact
*************************/
.ban_inte_remerciement .breadcrumb {
  margin-top: 100px;
  padding: 0rem 2rem;
  display: flex;
  justify-content: center;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.2);
}
.ban_inte_remerciement .breadcrumb a {
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.ban_inte_remerciement .breadcrumb a:hover {
  color: #AFC59F;
  transition: all 0.3s ease-in-out;
}
/************************
* Page Erreur 404
*************************/
#page404_content {
  padding: 6rem 0rem;
}
/************************
* Page de résultat de recherche
*************************/
.search_result_bloc {
  padding: 2rem 0rem;
}
/************************
* Page archive
*************************/
/*****************************************************************************************************************************
  * swiper
******************************************************************************************************************************/
.elementor-swiper-button {
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.elementor-swiper-button svg {
  fill: #000000 !important;
  width: 40px !important;
  height: 14px !important;
  transition: all 0.3s ease-in-out;
}
.elementor-swiper-button:hover {
  transition: all 0.3s ease-in-out;
}
.elementor-swiper-button:hover svg {
  fill: #AFC59F !important;
  transition: all 0.3s ease-in-out;
}
.elementor-swiper-button.swiper-button-lock {
  display: none !important;
}
/*****************************************************************************************************************************
  * pagination
******************************************************************************************************************************/
.elementor-post-navigation .elementor-post-navigation__prev a, .elementor-post-navigation .elementor-post-navigation__next a {
  color: #3b414c;
  transition: all 0.3s ease-in-out;
}
.elementor-post-navigation .elementor-post-navigation__prev a:hover, .elementor-post-navigation .elementor-post-navigation__next a:hover {
  color: #e2b773;
  transition: all 0.3s ease-in-out;
}
.elementor-post-navigation .post-navigation__arrow-prev i, .elementor-post-navigation .post-navigation__arrow-next i {
  color: #3b414c;
  transition: all 0.3s ease-in-out;
}
.elementor-post-navigation .post-navigation__arrow-prev i:hover, .elementor-post-navigation .post-navigation__arrow-next i:hover {
  color: #e2b773;
  transition: all 0.3s ease-in-out;
}
.elementor-pagination {
  padding: 3rem 1rem;
}
.elementor-pagination .page-numbers {
  background-color: #ffffff;
  color: #3b414c;
  width: 36px;
  height: 36px;
  display: inline-block;
  border: 1px solid #eeeeee;
  border-radius: 25px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.8;
}
.elementor-pagination .prev, .elementor-pagination .next {
  padding: 5px 10px;
  width: auto;
}
.elementor-pagination a.page-numbers {
  transition: all 0.3s ease-in-out;
}
.elementor-pagination a.page-numbers:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
  transition: all 0.3s ease-in-out;
  border: 1px solid #e2b773;
}
.elementor-pagination .current {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #000000;
  transition: all 0.3s ease-in-out;
}
/*****************************************************************************************************************************
  * loop
******************************************************************************************************************************/
/************************
  * loop actu
*************************/
.loop_actu {
  position: relative;
  background-color: #f3f3f1;
}
.loop_actu .filtre_articles_name {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #446686;
  color: #3b414c;
  padding: 4px 8px;
  font-weight: 600;
  font-size: 12px;
}
.loop_actu .info_publication {
  margin-top: -40px;
}
.loop_actu .loop_date {
  font-size: 12px;
  font-weight: 500;
  background-color: #446686;
  color: #3b414c;
  padding: 4px 8px;
}
.loop_actu .loop_cat {
  font-size: 12px;
  font-weight: 500;
  background-color: #446686;
  color: #3b414c;
  padding: 4px 8px;
}
.loop_actu .loop_cat a {
  color: #3b414c;
  transition: all 0.3s ease-in-out;
}
.loop_actu .loop_img {
  overflow: hidden;
}
.loop_actu .loop_titre {
  margin-left: 10px;
}
.loop_actu .loop_titre a {
  position: relative;
  font-size: 22px !important;
  color: #000000 !important;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.loop_actu .loop_desc {
  color: #3b414c;
  font-size: 16px;
  font-weight: 400;
  margin-left: 10px !important;
  line-height: 1.2;
}
.loop_actu .btn_lirelasuite {
  margin: 10px !important;
}
.loop_actu .btn_lirelasuite .elementor-button {
  background-color: #000000;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 20px !important;
  border: 1px solid #000000;
  border-radius: 0;
  text-transform: uppercase;
}
.loop_actu .btn_lirelasuite .elementor-button:visited {
  color: #ffffff;
}
.loop_actu .btn_lirelasuite .elementor-button:visited svg {
  fill: #ffffff;
}
.loop_actu .btn_lirelasuite .elementor-button:hover {
  transition: all 0.3s ease-in-out;
  background-color: #000000;
  border: 1px solid #446686;
  color: #ffffff;
}
.loop_actu .btn_lirelasuite .elementor-button:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #ffffff !important;
  transition: all 0.3s ease-in-out;
}
.loop_actu:hover .loop_titre {
  transition: all 0.3s ease-in-out;
}
.loop_actu:hover .loop_titre a {
  color: #446686 !important;
  transition: all 0.3s ease-in-out;
}
.loop_actu:hover .btn_lirelasuite .elementor-button-link {
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  color: #000000 !important;
  border: 1px solid #000000;
}
.loop_actu:hover .btn_lirelasuite .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: !important;
  transition: all 0.3s ease-in-out;
}
/************************
  * Page archives
*************************/
#ban_inte_archive > .e-con-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  min-height: 460px;
}
#ban_inte_archive .ban_titre {
  text-align: center;
  color: #ffffff;
}
#ban_inte_archive .breadcrumbs {
  text-align: center;
  color: #ffffff;
}
#ban_inte_archive .breadcrumbs a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
#ban_inte_archive .breadcrumbs a:hover {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
#archive_post_grid .ue-post-grid .ue-item .uc_content .uc_post_title:hover a {
  color: #e2b773;
}
/************************
* Page article
*************************/
.elementor-location-single {
  min-height: 75vh;
}
.ban_inte_actu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  min-height: 360px;
}
.ban_inte_actu .ban_bloc_meta .ban_cat_article {
  color: #ffffff;
  font-size: 16px;
  background-color: #3b414c;
  padding: 6px 0px 6px 12px;
  text-transform: uppercase;
}
.ban_inte_actu .ban_bloc_meta .ban_date_article {
  color: #ffffff;
  font-size: 16px;
  background-color: #3b414c;
  padding: 6px 12px 6px 6px;
  text-transform: uppercase;
}
.ban_inte_actu .ban_titre {
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.ban_inte_actu .ban_titre .elementor-heading-title {
  line-height: 1.2 !important;
}
.ban_inte_actu .ban_titre span {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
}
.ban_inte_actu .breadcrumbs {
  text-align: center;
  color: #ffffff;
}
.ban_inte_actu .breadcrumbs a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.ban_inte_actu .breadcrumbs a:hover {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
#row_totop {
  width: 50px;
  height: 50px;
  z-index: 999;
  position: fixed;
  bottom: 30px;
  right: 30px;
}
#totop {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background-color: #a8b3a5;
  border-radius: 50%;
  z-index: 999;
  cursor: pointer;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  #totop {
    position: relative !important;
    margin: 0px auto 20px auto;
  }
}
#totop:before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50.8%);
  z-index: 2;
  background-color: #ffffff;
  mask-image: url("../icons/dropdown-up.svg");
  mask-size: 50%;
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  -webkit-mask-image: url("../icons/dropdown-up.svg");
  -webkit-mask-size: 50%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
}
#totop:hover {
  background-color: #02415d;
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
#totop i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(180deg);
  opacity: 1;
}
.btn_cta_1 .elementor-button-link {
  background-color: #446686;
  color: #ffffff;
  font-size: 14px;
  padding: 5px 20px;
  min-width: 150px;
  border: 1px solid #446686;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.btn_cta_1 .elementor-button-link .elementor-button-content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  height: 30px;
}
.btn_cta_1 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon {
  margin-right: 10px;
}
.btn_cta_1 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg {
  height: 18px;
  width: 40px;
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_cta_1 .elementor-button-link:visited {
  color: #ffffff;
}
.btn_cta_1 .elementor-button-link:visited svg {
  fill: #ffffff;
}
.btn_cta_1 .elementor-button-link:hover {
  transition: all 0.3s ease-in-out;
  background-color: #ffffff !important;
  color: #446686 !important;
}
.btn_link_1 .elementor-button-link, .btn_link_2 .elementor-button-link {
  background-color: #ffffff;
  color: #000000;
  font-size: 14px;
  padding: 5px 20px;
  min-width: 150px;
  border: 1px solid #000000;
  border-radius: 0;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.btn_link_1 .elementor-button-link .elementor-button-content-wrapper, .btn_link_2 .elementor-button-link .elementor-button-content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  height: 30px;
}
.btn_link_1 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon, .btn_link_2 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon {
  margin-right: 10px;
}
.btn_link_1 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg, .btn_link_2 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg {
  height: 18px;
  width: 40px;
  fill: #000000;
  transition: all 0.3s ease-in-out;
}
.btn_link_1 .elementor-button-link:visited, .btn_link_2 .elementor-button-link:visited {
  color: #000000;
}
.btn_link_1 .elementor-button-link:visited svg, .btn_link_2 .elementor-button-link:visited svg {
  fill: #000000;
}
.btn_link_1 .elementor-button-link:hover, .btn_link_2 .elementor-button-link:hover {
  transition: all 0.3s ease-in-out;
  background-color: #446686;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
}
.btn_link_1 .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg, .btn_link_2 .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #ffffff !important;
  transition: all 0.3s ease-in-out;
}
.btn_link_2 .elementor-button-link {
  color: #ffffff;
  border: 1px solid #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_link_2 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_link_2 .elementor-button-link:visited {
  color: #ffffff;
}
.btn_link_2 .elementor-button-link:visited svg {
  fill: #ffffff;
}
.btn_link_2 .elementor-button-link:hover {
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
}
.btn_link_2 .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #000000 !important;
  transition: all 0.3s ease-in-out;
}
.btn_acf .elementor-button-link {
  color: #3b414c;
  background-color: transparent;
  padding: 0px;
  transition: all 0.3s ease-in-out;
}
.btn_acf .elementor-button-link:visited, .btn_acf .elementor-button-link:focus {
  color: #3b414c;
}
.btn_acf .elementor-button-link:hover {
  color: #AFC59F;
}
.btn_lirelasuite .elementor-button-link {
  background-color: #000000;
  color: #ffffff;
  font-size: 14px;
  padding: 5px 20px;
  min-width: 150px;
  border: 1px solid #000000;
  border-radius: 0;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.btn_lirelasuite .elementor-button-link .elementor-button-content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
}
.btn_lirelasuite .elementor-button-link:visited, .btn_lirelasuite .elementor-button-link:focus {
  color: #ffffff;
}
.btn_lirelasuite .elementor-button-link:visited svg, .btn_lirelasuite .elementor-button-link:focus svg {
  fill: #ffffff;
}
.btn_lirelasuite .elementor-button-link:hover {
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  border: 0px;
  color: #000000;
}
.bloc_fix {
  position: fixed !important;
  top: 50%;
  padding: 0px !important;
  margin: 0px !important;
  width: 200px !important;
  z-index: 99999 !important;
  right: 0px !important;
}
@media screen and (max-width: 767px) {
  .bloc_fix {
    top: 80%;
  }
}
.btn_fix {
  right: -153px !important;
  transition-delay: 0s;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.btn_fix:hover {
  right: 0px !important;
  transition-delay: 1s;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.btn_fix .elementor-button-link {
  background-color: #e2b773;
  color: #ffffff;
  font-size: 14px;
  padding: 0px;
  min-width: 200px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px 0px 0px 4px;
  overflow: hidden;
}
.btn_fix .elementor-button-link .elementor-button-content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 44px;
}
.btn_fix .elementor-button-link .elementor-button-content-wrapper .elementor-button-text {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  height: 44px;
  width: 100%;
  z-index: 2;
}
.btn_fix .elementor-button-link .elementor-button-content-wrapper .elementor-button-text:before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 0%;
  top: 0%;
  left: 0%;
  transform: translateX(0%) translateY(0%);
  background-color: #e2b773;
  z-index: -1;
  transition-delay: 3s;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.btn_fix .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  margin-right: 0px;
  height: 44px;
  width: 64px;
  background-color: #000000;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.btn_fix .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon:before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 0%;
  top: 0%;
  left: 0%;
  transform: translateX(0%) translateY(0%);
  background-color: #e2b773;
  z-index: 1;
  transition-delay: 2s;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.btn_fix .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg {
  height: 18px;
  width: 20px;
  fill: #ffffff;
  z-index: 2;
}
.btn_fix .elementor-button-link:visited {
  color: #ffffff;
}
.btn_fix .elementor-button-link:visited svg {
  fill: #ffffff;
}
.btn_fix .elementor-button-link:hover {
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.btn_fix .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-text {
  position: relative;
  overflow: hidden;
}
.btn_fix .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-text:before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
  transform: translateX(0%) translateY(0%);
  background-color: #000000;
  transition-delay: 1s;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.btn_fix .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #ffffff !important;
}
.btn_fix .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon:before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
  transform: translateX(0%) translateY(0%);
  background-color: #e2b773;
  transition-delay: 1s;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.form_elementor .form-field-name {
  border: 1px solid #e2b773;
  height: 50px;
  border-radius: 0px;
}
.form_elementor .elementor-field-textual {
  border: 1px solid #e2b773;
  padding: 10px;
  background-color: transparent;
  color: 1px solid #3b414c;
  border-radius: 0px;
}
.form_elementor .elementor-field-label {
  color: #000000;
  font-size: 16px;
}
.form_elementor .elementor-field-type-acceptance a {
  color: #e2b773;
  transition: all 0.3s ease-in-out;
  text-decoration: underline;
}
.form_elementor .elementor-field-type-acceptance a:hover {
  transition: all 0.3s ease-in-out;
}
.form_elementor .elementor-field-option {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-shrink: 3;
}
.form_elementor input[type="checkbox"] {
  height: 20px !important;
  width: 20px !important;
  border: 1px solid #e2b773;
  display: inline-block !important;
  margin-right: 10px;
  border-radius: 50% !important;
}
.form_elementor input[type="checkbox"]:checked {
  position: relative;
}
.form_elementor input[type="checkbox"]:checked:before {
  content: "";
  height: 20px;
  width: 20px;
  background-image: url("../icons/contact-circle-solid.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 12px;
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  text-align: center;
}
.form_elementor .elementor-button {
  text-align: center;
  background: #000000;
  border: 0px solid #3b414c;
  color: #3b414c;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.form_elementor .elementor-button:hover {
  background-color: #e2b773;
  color: #ffffff;
  border: 0px solid #3b414c;
  transition: all 0.3s ease-in-out;
}
.form_elementor .elementor-button .elementor-button-text {
  font-size: 24px;
}
.form_elementor input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}
.form_elementor input::-webkit-input-placeholder, .form_elementor textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000000 !important;
  opacity: 1;
}
.form_elementor input::-moz-placeholder, .form_elementor textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #000000 !important;
  opacity: 1;
}
.form_elementor input::-ms-input-placeholder, .form_elementor textarea::-ms-input-placeholder {
  /* IE 10+ */
  color: #000000 !important;
  opacity: 1;
}
.form_elementor input::-moz-placeholder, .form_elementor textarea::-moz-placeholder {
  /* Firefox 18- */
  color: #000000 !important;
  opacity: 1;
}
.form_elementor input::placeholder, .form_elementor textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000000 !important;
  opacity: 1;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: 0px;
}
.input-hidden {
  height: 0;
  width: 0;
  overflow: hidden;
}
/******	 Radio - checkbox
************************************/
input[type="radio"] {
  height: 20px !important;
  width: 20px !important;
  border: 1px solid #3b414c;
  display: inline-block;
  margin-right: 10px;
  border-radius: 0px !important;
}
input[type="radio"]:checked {
  margin: 0px 10px 0px 0px;
  position: relative;
}
input[type="radio"]:checked:before {
  content: "";
  height: 20px;
  width: 20px;
  background-image: url("../icons/contact-circle-solid.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 16px;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
}
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}
/************************
* PLAN DU SITE
*************************/
#plan_du_site {
  margin-bottom: 2rem !important;
}
#plan_du_site .elementor-sitemap-wrap .elementor-sitemap-section {
  padding: 1rem;
}
#plan_du_site .elementor-sitemap-wrap .elementor-sitemap-title {
  border-bottom: 1px solid #3b414c;
  color: #3b414c;
  font-size: 32px;
  text-transform: uppercase;
  padding: 8px;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}
#plan_du_site .elementor-sitemap-wrap .elementor-sitemap-list {
  list-style: none;
}
@media screen and (min-width: 1024px) {
  #plan_du_site .elementor-sitemap-wrap .elementor-sitemap-list {
    column-count: 3;
    column-gap: 30px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1024px) {
  #plan_du_site .elementor-sitemap-wrap .elementor-sitemap-list {
    column-count: 2;
    column-gap: 30px;
  }
}
#plan_du_site .elementor-sitemap-wrap .elementor-sitemap-list li {
  padding-left: 15px;
  margin-bottom: 10px;
  position: relative;
}
#plan_du_site .elementor-sitemap-wrap .elementor-sitemap-list li:before {
  content: "";
  position: absolute;
  display: block;
  height: 8px;
  width: 8px;
  top: 11px;
  left: 3px;
  border-radius: 2px 0px 2px 2px;
  transform: translateX(-50%) translateY(-50%);
  background-color: #3b414c;
  transition: all 0.3s ease-in-out;
}
#plan_du_site .elementor-sitemap-wrap .elementor-sitemap-list li a {
  transition: all 0.3s ease-in-out;
  color: #3b414c;
}
#plan_du_site .elementor-sitemap-wrap .elementor-sitemap-list li:hover a {
  color: #3b414c;
  letter-spacing: 0.4px;
}
#plan_du_site .elementor-sitemap-wrap .elementor-sitemap-list li:hover:before {
  border-radius: 50%;
  background-color: #3b414c;
  transition: all 0.3s ease-in-out;
}
/**Skip link - Lien raPide Accessibilité**/
.SkipLinks-item a {
  height: 1px;
  left: -999px;
  position: absolute;
  width: 1px;
}
.SkipLinks-item a:focus, .SkipLinks-item a:active {
  background: #e2b773;
  color: #ffffff;
  display: block;
  font-size: 1.2em;
  font-weight: 500;
  height: auto;
  left: 0;
  padding: 5px;
  position: absolute;
  width: auto;
  z-index: 1111;
}
.bloc_articles_similaires .uc_overlay_image_carousel .owl-stage-outer {
  height: 100%;
}
.bloc_articles_similaires .uc_overlay_image_carousel .owl-stage-outer .owl-stage {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
}
.bloc_articles_similaires .uc_overlay_image_carousel .owl-stage-outer .owl-stage .owl-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-content: stretch;
}
.bloc_articles_similaires .uc_overlay_image_carousel .owl-stage-outer .owl-stage .owl-item .uc_carousel_item {
  height: 100%;
}
.bloc_articles_similaires .uc_overlay_image_carousel .owl-stage-outer .owl-stage .owl-item .uc_carousel_item .uc_image_carousel_content {
  padding: 20px 20px 50px 20px;
}
.bloc_articles_similaires .uc_overlay_image_carousel .owl-stage-outer .owl-stage .owl-item .uc_carousel_item .uc_image_carousel_content > div {
  padding-bottom: 10px;
}
.bloc_articles_similaires .uc_overlay_image_carousel .owl-stage-outer .owl-stage .owl-item .uc_carousel_item .uc_image_carousel_content .ue-item-btn-holder {
  position: absolute;
  bottom: 10px;
}
.bloc_articles_similaires .uc_overlay_image_carousel .owl-stage-outer .owl-stage .owl-item .uc_carousel_item .uc_image_carousel_content .ue-item-btn-holder .uc_more_btn {
  margin-top: 0px;
}
/******************************
* home select custom
******************************/
.select_custom_liste .for-dropdown {
  position: relative;
}
.select_custom_liste .for-dropdown:after {
  content: "";
  position: absolute;
  display: block;
  height: 50px;
  width: 100px;
  top: 0%;
  right: -110px;
  transform: translateX(0%) translateY(0%);
  background-image: url("../icons/dropdown-select-pointilles.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .select_custom_liste .for-dropdown:after {
    display: none;
  }
}
.select_custom_liste .sec-center {
  position: relative;
  max-width: 100%;
  z-index: 200;
}
.select_custom_liste [type="checkbox"]:checked, .select_custom_liste [type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.select_custom_liste .dropdown:checked + label, .select_custom_liste .dropdown:not(:checked) + label {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  height: 50px;
  transition: all 200ms linear;
  border-radius: 8px;
  width: 320px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -ms-flex-pack: center;
  text-align: center;
  border: none;
  background-color: #000000;
  cursor: pointer;
  color: #ffffff;
  box-shadow: 0 12px 35px 0 rgba(0, 0, 0, 0.15);
}
.select_custom_liste .dropdown:checked + label:before, .select_custom_liste .dropdown:not(:checked) + label:before {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  cursor: auto;
  pointer-events: none;
}
.select_custom_liste .dropdown:checked + label:before {
  pointer-events: auto;
}
.select_custom_liste .dropdown:not(:checked) + label .uil {
  background-color: #e2b773;
  margin-left: 10px;
  transition: transform 200ms linear;
  height: 16px;
  width: 10px;
  -webkit-mask-image: url("../icons/dropdown-select.svg");
  mask-image: url("../icons/dropdown-select.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 10px;
  -webkit-mask-size: 10px;
}
.select_custom_liste .dropdown:not(:checked) + label .uil a {
  color: #ffffff;
}
.select_custom_liste .dropdown:checked + label .uil {
  transform: rotate(90deg);
  background-color: #e2b773;
  margin-left: 10px;
  transition: transform 200ms linear;
  height: 16px;
  width: 10px;
  -webkit-mask-image: url("../icons/dropdown-select.svg");
  mask-image: url("../icons/dropdown-select.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 10px;
  -webkit-mask-size: 10px;
}
.select_custom_liste .section-dropdown {
  position: absolute;
  padding: 5px;
  background-color: #ffffff;
  color: #000000;
  top: 70px;
  left: 0;
  border-radius: 4px;
  display: block;
  box-shadow: 0 14px 35px 0 rgba(9, 9, 12, 0.4);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 200ms linear;
}
.select_custom_liste .section-dropdown a {
  color: #000000 !important;
}
.select_custom_liste .dropdown:checked ~ .section-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.select_custom_liste .section-dropdown:before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  content: "";
  display: block;
  z-index: 1;
}
.select_custom_liste .section-dropdown:after {
  position: absolute;
  top: -8px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #000000;
  content: "";
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}
.select_custom_liste a {
  position: relative;
  background-color: transparent;
  transition: all 200ms linear;
  font-weight: 500;
  font-size: 15px;
  border-radius: 4px;
  padding: 5px 0;
  padding-left: 20px;
  padding-right: 15px;
  margin: 2px 0;
  text-align: left;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -ms-flex-pack: distribute;
}
.select_custom_liste a:hover {
  color: #ffffff !important;
  background-color: #000000;
  transition: all 200ms linear;
}
.select_custom_liste a:hover .uil {
  transform: rotate(180deg);
  transition: all 200ms linear;
}
.select_custom_liste a .uil {
  background-color: #e2b773;
  margin-left: 10px;
  transition: transform 200ms linear;
  height: 16px;
  width: 10px;
  -webkit-mask-image: url("../icons/dropdown-select.svg");
  mask-image: url("../icons/dropdown-select.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 10px;
  -webkit-mask-size: 10px;
}
.select_custom_liste .dropdown-sub:checked + label {
  background-color: #e2b773;
  color: #ffffff;
}
.select_custom_liste .dropdown-sub:not(:checked) + label {
  background-color: #ffffff;
  color: #000000;
}
.select_custom_liste .dropdown-sub:checked + label, .select_custom_liste .dropdown-sub:not(:checked) + label {
  position: relative;
  transition: all 200ms linear;
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  padding: 5px 0;
  padding-left: 20px;
  padding-right: 15px;
  text-align: left;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -ms-flex-pack: distribute;
  cursor: pointer;
}
.select_custom_liste .dropdown-sub:checked + label .uil, .select_custom_liste .dropdown-sub:not(:checked) + label .uil {
  background-color: #e2b773;
  margin-left: 10px;
  transition: transform 200ms linear;
  height: 16px;
  width: 10px;
  -webkit-mask-image: url("../icons/dropdown-select.svg");
  mask-image: url("../icons/dropdown-select.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 10px;
  -webkit-mask-size: 10px;
}
.select_custom_liste .dropdown-sub:not(:checked) + label .uil {
  transition: transform 200ms linear;
}
.select_custom_liste .dropdown-sub:checked + label .uil {
  transform: rotate(180deg);
  background-color: #000000;
  margin-left: 10px;
  transition: transform 200ms linear;
  height: 16px;
  width: 10px;
  -webkit-mask-image: url("../icons/dropdown-select.svg");
  mask-image: url("../icons/dropdown-select.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 10px;
  -webkit-mask-size: 10px;
}
.select_custom_liste .dropdown-sub:checked + label:hover, .select_custom_liste .dropdown-sub:not(:checked) + label:hover {
  color: #ffffff;
  background-color: #e2b773;
}
.select_custom_liste .dropdown-sub:checked + label:hover .uil, .select_custom_liste .dropdown-sub:not(:checked) + label:hover .uil {
  background-color: #000000;
  transition: transform 200ms linear;
}
.select_custom_liste .section-dropdown-sub {
  position: relative;
  display: block;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  max-height: 0;
  padding-left: 10px;
  padding-right: 3px;
  overflow: hidden;
  transition: all 200ms linear;
}
.select_custom_liste .dropdown-sub:checked ~ .section-dropdown-sub {
  pointer-events: auto;
  opacity: 1;
  max-height: 999px;
}
.select_custom_liste .section-dropdown-sub a {
  font-size: 14px;
}
.select_custom_liste .section-dropdown-sub a .uil {
  background-color: #e2b773;
  margin-left: 10px;
  transition: transform 200ms linear;
  height: 16px;
  width: 10px;
  -webkit-mask-image: url("../icons/dropdown-select.svg");
  mask-image: url("../icons/dropdown-select.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 10px;
  -webkit-mask-size: 10px;
}
@media screen and (max-width: 767px) {
  #app .flex {
    flex-wrap: wrap;
  }
  #app .flex .flex-1 {
    flex: 1 1 100%;
    margin-left: 0 !important;
  }
  #app .p-10 {
    padding: 0.5rem !important;
  }
  #app .w-10 {
    width: 2rem !important;
  }
  #app .h-10 {
    height: 2rem !important;
  }
}
/******************************
* Replace font awesome
******************************/
.fa-angle-down {
  display: block !important;
}
.fa-angle-down:before {
  content: "" !important;
  mask-image: url(../icons/dropdown.svg);
  -webkit-mask-image: url(../icons/dropdown.svg);
  background-color: #ffffff;
  mask-position: center;
  -webkit-mask-position: center;
  mask-position: center;
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  -webkit-mask-size: containt;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  left: 5px;
}
@media screen and (max-width: 767px) {
  .fa-angle-down:before {
    top: 11px;
  }
}
.gm-mobile-menu-container .fa-angle-down:before {
  top: 11px;
}
