@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.2;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: flex-end;
  color: #7a7978;
  transition: all 0.3s ease-in-out;
}
body .elementor-location-footer {
  bottom: 0;
}
body .elementor-heading-title {
  line-height: inherit;
}
/* 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;
}
p:not(:only-child) {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
/* Set core body defaults */
h1 ~ p, h2 ~ p, h3 ~ p, h4 ~ p {
  margin-top: 1rem;
}
/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}
/**
*
*  color BG + TXT
*
****************/
.bg_primary {
  background-color: #7a7978;
}
.txt_primary {
  color: #7a7978;
}
.bg_noir {
  background-color: #000000;
}
.txt_noir {
  color: #000000;
}
.bg_blanc {
  background-color: #ffffff;
}
.txt_blanc {
  color: #ffffff;
}
.bg_gris1 {
  background-color: #f1f1f1;
}
.txt_gris1 {
  color: #f1f1f1;
}
.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: #344e41;
}
.txt_color1 {
  color: #344e41;
}
.bg_color2 {
  background-color: #3a5a40;
}
.txt_color2 {
  color: #3a5a40;
}
.bg_color3 {
  background-color: #d3ac7d;
}
.txt_color3 {
  color: #d3ac7d;
}
.bg_color4 {
  background-color: #f5d7bd;
}
.txt_color4 {
  color: #f5d7bd;
}
.bg_color5 {
  background-color: #344e41;
}
.txt_color5 {
  color: #344e41;
}
.bg_color6 {
  background-color: #d3ac7d;
}
.txt_color6 {
  color: #d3ac7d;
}
/**
*
* 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;
}
/**
*
* background color
*
****************/
.bg_primary {
  background-color: #7a7978;
}
.bg_noir {
  background-color: #000000;
}
.bg_blanc {
  background-color: #ffffff;
}
.bg_gris1 {
  background-color: #f1f1f1;
}
.bg_gris2 {
  background-color: #EEEEEE;
}
.bg_gris3 {
  background-color: #707070;
}
.bg_gris4 {
  background-color: #333333;
}
.bg_color1 {
  background-color: #344e41;
}
.bg_color2 {
  background-color: #3a5a40;
}
.bg_color3 {
  background-color: #d3ac7d;
}
.bg_color4 {
  background-color: #f5d7bd;
}
.bg_color5 {
  background-color: #344e41;
}
.bg_color6 {
  background-color: #d3ac7d;
}
/************************
* Header & fix header
*************************/
.header_m1 .gm-inner .gm-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  .header_m1 .gm-inner .gm-container {
    border-bottom: 1px solid #000000;
  }
}
.header_m1 .gm-inner .gm-container .gm-logo {
  position: relative;
  top: 0px;
  transform: none;
  padding: 10px 0px;
}
.header_m1 .gm-inner .gm-container .gm-logo a {
  position: relative;
}
.header_m1 .gm-inner .gm-container .gm-logo > a img {
  height: 90px !important;
  width: auto;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header_m1 .gm-inner .gm-container .gm-logo > a img {
    height: 50px !important;
    width: auto;
  }
}
@media screen and (max-width: 1023px) {
  .header_m1 .gm-inner .gm-container .gm-logo .gm-logo__img-default {
    display: none;
  }
}
.header_m1 .gm-inner .gm-container .gm-menu-btn {
  position: absolute;
  top: 26px;
  right: 30px;
  z-index: 111111;
}
.header_m1 .gm-inner .gm-container .gm-main-menu-wrapper {
  background-color: #000000;
  width: 100%;
}
.header_m1 .gm-inner .gm-container .gm-main-menu-wrapper #gm-main-menu {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}
.header_m1 .gm-inner .gm-container .gm-main-menu-wrapper #gm-main-menu ul li .gm-anchor {
  padding: 0 5px;
}
.header_m1 .gm-inner .gm-container .gm-main-menu-wrapper #gm-main-menu ul li .gm-dropdown-menu-wrapper li a {
  padding: 6px 5px;
}
@media screen and (min-width: 1024px) {
  .header_m1 .gm-inner .gm-container .gm-main-menu-wrapper #gm-main-menu #menu-menu-principal + li:first-child .gm-anchor {
    padding-left: 0px;
    margin-left: 0;
  }
}
.header_m1 .gm-inner .gm-container .gm-main-menu-wrapper .gm-inner {
  transition: none !important;
}
.header_m1.gm-navigation-drawer--open .hamburger .hamburger-inner {
  background-color: #ffffff;
}
.header_m1.gm-navigation-drawer--open .hamburger .hamburger-inner::after, .header_m1.gm-navigation-drawer--open .hamburger .hamburger-inner::before {
  background-color: #ffffff;
}
.header_m1.gm-drawer--open .gm-logo {
  opacity: 0.6;
}
aside.header_m1 .btn_rdv a {
  font-size: 11px;
}
aside.header_m1 li a {
  padding-left: 5px;
}
.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: #ffffff;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.header_m1.fixed-header .gm-inner .gm-container {
  height: 100px;
  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: 50px !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: 50px !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);
  }
}
.sup_footer {
  background-color: rgba(0, 0, 0, 0.85);
}
.sup_footer .sup_footer_content {
  font-size: 14px;
  color: #ffffff;
  fill: #ffffff;
  text-transform: uppercase;
}
.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_titre {
  text-transform: uppercase;
  font-weight: 500;
}
.footer_m1 p {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 0;
}
.footer_m1 a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.footer_m1 a:hover {
  color: #a57a46;
  transition: all 0.3s ease-in-out;
}
.footer_m1 .footer_liste {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  text-transform: uppercase;
}
.footer_m1 .footer_liste ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer_m1 .footer_btn .elementor-button-link {
  color: #ffffff;
  background-color: transparent;
  text-align: left;
  padding: 0px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  .footer_m1 .footer_btn .elementor-button-link {
    text-align: center;
  }
}
.footer_m1 .footer_btn .elementor-button-link:hover {
  color: #344e41;
}
.footer_m1 .elementor-social-icon {
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  font-size: 24px;
  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 {
  transition: all 0.3s ease-in-out;
}
.footer_m1 .elementor-social-icon:hover i {
  color: #344e41;
}
.footer_m1 .elementor-social-icon:hover svg {
  fill: #344e41;
  transition: all 0.3s ease-in-out;
}
.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: #a57a46;
  transition: all 0.3s ease-in-out;
}
body {
  font-family: "Outfit", sans-serif, sans-serif;
  font-size: 16px;
  color: #7a7978;
  font-weight: 400;
}
body main, body [data-elementor-type="archive"], body [data-elementor-type="single-post"] {
  min-height: 69vh;
}
body main #breadcrumbs a:hover, body [data-elementor-type="archive"] #breadcrumbs a:hover, body [data-elementor-type="single-post"] #breadcrumbs a:hover {
  color: #344e41 !important;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 960px) {
  body main, body [data-elementor-type="archive"], body [data-elementor-type="single-post"] {
    margin-top: 2.1rem;
  }
}
@media screen and (min-width: 767px) and (max-width: 960px) {
  body main, body [data-elementor-type="archive"], body [data-elementor-type="single-post"] {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  body main, body [data-elementor-type="archive"], body [data-elementor-type="single-post"] {
    margin-top: 0;
  }
}
body #content a:not([class]) {
  transition: color 300ms ease;
  color: #000000;
}
body #content a:not([class]):hover {
  color: #a57a46;
}
.gm-nav-content-wrapper {
  will-change: inherit !important;
}
body.home main {
  margin-top: 2.3rem;
}
/******************************
* Titres principaux
******************************/
.sup_titre_1 {
  color: #000000;
  text-align: center;
  text-transform: uppercase;
}
.sup_titre_1_blanc {
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}
.titre_1, .titre_1l, .titre_1r, .titre_1c, .titre_1_blanc {
  position: relative;
  font-size: calc(32px + (45 - 32) * ((100vw - 300px) / (1600 - 300)));
  color: #000000;
  font-family: "Abril Fatface", cursive;
}
@media screen and (max-width: 960px) {
  .titre_1 br, .titre_1l br, .titre_1r br, .titre_1c br, .titre_1_blanc br {
    display: none;
  }
}
.titre_1 strong, .titre_1 b, .titre_1l strong, .titre_1l b, .titre_1r strong, .titre_1r b, .titre_1c strong, .titre_1c b, .titre_1_blanc strong, .titre_1_blanc b {
  font-weight: 600;
}
.titre_1 span, .titre_1l span, .titre_1r span, .titre_1c span, .titre_1_blanc span {
  color: #344e41;
  font-weight: 600;
}
.titre_1_blanc {
  color: #ffffff;
}
.sup_titre_2 {
  color: #344e41;
  text-align: center;
  text-transform: uppercase;
}
.sup_titre {
  text-transform: uppercase;
}
.titre_2, .titre_2l, .titre_2r, .titre_2c, .titre_2_sm {
  position: relative;
  font-size: calc(32px + (45 - 32) * ((100vw - 300px) / (1600 - 300)));
  color: #000000;
  font-family: "Abril Fatface", cursive;
}
@media screen and (max-width: 960px) {
  .titre_2 br, .titre_2l br, .titre_2r br, .titre_2c br, .titre_2_sm br {
    display: none;
  }
}
.titre_2 strong, .titre_2 b, .titre_2l strong, .titre_2l b, .titre_2r strong, .titre_2r b, .titre_2c strong, .titre_2c b, .titre_2_sm strong, .titre_2_sm b {
  font-weight: 600;
}
.titre_2 span, .titre_2l span, .titre_2r span, .titre_2c span, .titre_2_sm span {
  color: #344e41;
  font-weight: 600;
}
.titre_2c {
  text-align: center;
}
.titre_2c::after {
  content: "" !important;
  height: 55px;
  background-color: #344e41;
  width: 3px;
  display: inline-block;
  margin-top: 10px;
}
.titre_2_sm {
  font-size: calc(18px + (26 - 18) * ((100vw - 300px) / (1600 - 300)));
}
.titre_3, .titre_3l, .titre_3r, .titre_3c {
  position: relative;
  font-size: calc(16px + (22 - 16) * ((100vw - 300px) / (1600 - 300)));
  color: #7a7978;
  font-family: "Abril Fatface", cursive;
}
@media screen and (max-width: 960px) {
  .titre_3 br, .titre_3l br, .titre_3r br, .titre_3c br {
    display: none;
  }
}
.titre_3 strong, .titre_3 b, .titre_3l strong, .titre_3l b, .titre_3r strong, .titre_3r b, .titre_3c strong, .titre_3c b {
  font-weight: 600;
}
.titre_3 span, .titre_3l span, .titre_3r span, .titre_3c span {
  color: #344e41;
  font-weight: 600;
}
.titre_4, .titre_4l, .titre_4r, .titre_4c {
  position: relative;
  font-size: 18px;
  color: #7a7978;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 960px) {
  .titre_4 br, .titre_4l br, .titre_4r br, .titre_4c br {
    display: none;
  }
}
.titre_4 strong, .titre_4 b, .titre_4l strong, .titre_4l b, .titre_4r strong, .titre_4r b, .titre_4c strong, .titre_4c b {
  font-weight: 600;
}
.titre_4 span, .titre_4l span, .titre_4r span, .titre_4c span {
  color: #344e41;
  font-weight: 600;
}
/******************************
* Titres spe
******************************/
.titre_spe_1, .titre_spe_1_blanc {
  color: #000000;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
}
.titre_spe_1 strong, .titre_spe_1 b, .titre_spe_1_blanc strong, .titre_spe_1_blanc b {
  font-weight: 600;
}
.titre_spe_1 span, .titre_spe_1_blanc span {
  font-family: "Abril Fatface", cursive;
  display: block;
  font-size: calc(30px + (45 - 30) * ((100vw - 300px) / (2560 - 300)));
  text-transform: none;
}
.titre_spe_1_blanc {
  color: #ffffff;
}
/******************************
* Textes
******************************/
/******************************
* Padding / margin spe
******************************/
.p_margin_0 p {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}
/******************************
* Couleur
******************************/
.txt_blanc {
  color: #ffffff;
}
.color1 {
  color: #344e41;
}
/******************************
* link Couleur
******************************/
.link_color1 a {
  transition: all 0.3s ease-in-out;
  color: #344e41;
}
.link_color1 a:hover {
  color: #7a7978;
  transition: all 0.3s ease-in-out;
}
.link_color2 a {
  transition: all 0.3s ease-in-out;
  color: #3a5a40;
}
.link_color2 a:hover {
  color: #7a7978;
  transition: all 0.3s ease-in-out;
}
.link_color3 a {
  transition: all 0.3s ease-in-out;
  color: #d3ac7d;
}
.link_color3 a:hover {
  color: #7a7978;
  transition: all 0.3s ease-in-out;
}
/******************************
* BLOCS
******************************/
.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: #7a7978;
}
.bloc_reassurance {
  text-align: center;
}
.bloc_reassurance .bloc_reassurance_icon {
  fill: #000000;
  max-height: 82px;
  text-align: center;
  margin-bottom: 60px !important;
}
.bloc_reassurance .bloc_reassurance_icon::after {
  content: "" !important;
  height: 40px;
  background-color: #7a7978;
  width: 1px;
  display: inline-block;
  margin-top: 20px;
}
.bloc_reassurance .bloc_reassurance_txt {
  text-transform: uppercase;
  font-weight: 300;
}
/******************************
* images
******************************/
svg {
  min-height: 6px;
  min-width: 6px;
}
.img_radius {
  border-radius: 3rem 0px 3rem 0px;
  overflow: hidden;
}
.img_corner {
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: -100px !important;
}
.img_corner::before {
  content: "" !important;
  display: block;
  width: 4px;
  background: white;
  position: absolute;
  bottom: -24px;
  right: -20px;
  height: 125px;
}
.img_corner::after {
  content: "" !important;
  display: block;
  width: 125px;
  background: white;
  position: absolute;
  bottom: -24px;
  right: -20px;
  height: 5px;
}
/******************************
* Liste
******************************/
.liste_puce ul {
  margin: 0;
  padding: 0;
  list-style-type: 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: #7a7978;
}
/******************************
* 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(52, 78, 65, 0.35);
}
.filtre_color2:before {
  background-color: rgba(58, 90, 64, 0.35);
}
.filtre_color3:before {
  background-color: rgba(211, 172, 125, 0.35);
}
.filtre_color4:before {
  background-color: rgba(245, 215, 189, 0.35);
}
.filtre_color5:before {
  background-color: rgba(52, 78, 65, 0.35);
}
.filtre_color6:before {
  background-color: rgba(211, 172, 125, 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_home_contact {
  max-width: 260px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px 20px;
}
.ban_home .e-con-inner .ban_home_contact .ban_titre {
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
}
.ban_home .e-con-inner .ban_home_contact .ban_titre span {
  font-size: 30px;
}
.ban_home .e-con-inner .ban_home_contact .btn_cta_1 a {
  width: 100%;
}
.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;
}
/******************************
* Titres home
******************************/
.titre_home_1 {
  position: relative;
  font-size: 32px;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .titre_home_1 {
    font-size: 26px;
  }
}
/******************************
* Bloc Coordonnées
******************************/
.ban_coordonnee .texte_coordonnee {
  text-align: center;
  color: #7a7978;
  font-size: 20px;
}
.ban_coordonnee .texte_coordonnee a {
  color: #7a7978;
}
.ban_coordonnee .texte_coordonnee a:hover {
  color: #344e41;
}
.ban_coordonnee .texte_coordonnee.btn_none a {
  color: #7a7978;
  background: transparent;
  font-size: 20px;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.ban_coordonnee .texte_coordonnee.btn_none a:hover {
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
/******************************
* Bloc Produits
******************************/
.bloc_produits {
  text-align: center;
}
.bloc_produits .bloc_produits_ref {
  display: block;
  font-size: 34px;
  font-weight: 100;
}
.bloc_produits .bloc_produits_prix {
  display: block;
  font-size: 24px;
  color: #000000;
}
/******************************
* Carousel COLLECTIONS
******************************/
.carousel_collections .collections_item {
  position: relative;
}
.carousel_collections .collections_item:before {
  content: "";
  display: block;
  position: absolute;
  top: auto !important;
  bottom: -1px !important;
  left: auto !important;
  right: -1px !important;
  height: 80px;
  width: 110px;
  border-right: 9px solid #ffffff;
  border-bottom: 9px solid #ffffff;
}
.carousel_collections .collections_item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  .carousel_collections .collections_item:after {
    background-color: rgba(0, 0, 0, 0.65);
  }
}
.carousel_collections .collections_item .collections_content {
  transform: translateY(100px);
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  .carousel_collections .collections_item .collections_content {
    transform: translateY(0px);
  }
}
.carousel_collections .collections_item .collections_content .btn_link_blanc {
  transform: translateY(200px);
  opacity: 0;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  .carousel_collections .collections_item .collections_content .btn_link_blanc {
    transform: translateY(0px);
    opacity: 1;
  }
}
.carousel_collections .collections_item:hover:after {
  background-color: rgba(0, 0, 0, 0.65);
  transition: all 0.3s ease-in-out;
}
.carousel_collections .collections_item:hover .collections_content {
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}
.carousel_collections .collections_item:hover .collections_content .btn_link_blanc {
  transform: translateY(0px);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
/******************************
* BlocRDV
******************************/
.bloc_rdv .bloc_rdv_content {
  background: rgba(255, 255, 255, 0.92);
  max-width: 700px;
  margin: 8rem auto;
  text-align: center;
  padding: 2rem 4rem;
}
/******************************
* Bloc Actus
******************************/
.carousel_actus .carousel_actus_img {
  transition: all 0.7s ease-in-out;
}
.carousel_actus .carousel_actus_img .carousel_actus_content {
  max-width: 80%;
  margin: 26px auto;
  text-align: center;
  min-height: 190px;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  background-color: rgba(58, 90, 64, 0.9);
  z-index: 2;
  transition: all 0.7s ease-in-out;
}
@media screen and (max-width: 960px) {
  .carousel_actus .carousel_actus_img .carousel_actus_content {
    opacity: 1;
  }
}
.carousel_actus .carousel_actus_img .carousel_actus_content .carousel_actus_titre {
  font-family: "Abril Fatface", cursive;
  font-size: 22px;
  line-height: 1.2em;
}
.carousel_actus .carousel_actus_img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  transition: all 0.7s ease-in-out;
}
.carousel_actus .carousel_actus_img:hover .carousel_actus_content {
  opacity: 1;
  transition: all 0.7s ease-in-out;
}
.carousel_actus .carousel_actus_img:hover:after {
  background-color: rgba(0, 0, 0, 0.65);
  transition: all 0.7s ease-in-out;
}
/************************
* Page divers
*************************/
.ban_inte, .ban_inte_small {
  position: relative;
  margin-top: 0;
  padding-bottom: 2rem !important;
}
.ban_inte .breadcrumb, .ban_inte_small .breadcrumb {
  background-color: rgba(52, 78, 65, 0.1);
  color: #ffffff;
}
.ban_inte .breadcrumb #breadcrumbs, .ban_inte_small .breadcrumb #breadcrumbs {
  color: #ffffff;
  margin-top: 0.5rem;
}
.ban_inte .breadcrumb #breadcrumbs a, .ban_inte_small .breadcrumb #breadcrumbs a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.ban_inte .breadcrumb #breadcrumbs a:hover, .ban_inte_small .breadcrumb #breadcrumbs a:hover {
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
.ban_inte .ban_contenu, .ban_inte .ban_contenu_blanc, .ban_inte_small .ban_contenu, .ban_inte_small .ban_contenu_blanc {
  min-height: 350px !important;
  font-weight: 300;
  padding: 2rem 1rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
}
.ban_inte .ban_contenu .sup_titre_1, .ban_inte .ban_contenu_blanc .sup_titre_1, .ban_inte_small .ban_contenu .sup_titre_1, .ban_inte_small .ban_contenu_blanc .sup_titre_1 {
  color: #000000;
}
.ban_inte .ban_contenu .titre_1, .ban_inte .ban_contenu_blanc .titre_1, .ban_inte_small .ban_contenu .titre_1, .ban_inte_small .ban_contenu_blanc .titre_1 {
  text-align: center;
  color: #000000;
}
.ban_inte .ban_contenu .titre_1 .elementor-heading-title, .ban_inte .ban_contenu_blanc .titre_1 .elementor-heading-title, .ban_inte_small .ban_contenu .titre_1 .elementor-heading-title, .ban_inte_small .ban_contenu_blanc .titre_1 .elementor-heading-title {
  line-height: 1.2;
}
.ban_inte .ban_contenu .titre_1 strong, .ban_inte .ban_contenu_blanc .titre_1 strong, .ban_inte_small .ban_contenu .titre_1 strong, .ban_inte_small .ban_contenu_blanc .titre_1 strong {
  font-weight: 900;
}
.ban_inte .ban_contenu .titre_1 span, .ban_inte .ban_contenu_blanc .titre_1 span, .ban_inte_small .ban_contenu .titre_1 span, .ban_inte_small .ban_contenu_blanc .titre_1 span {
  color: #344e41;
}
.ban_inte .ban_contenu .ban_desc, .ban_inte .ban_contenu_blanc .ban_desc, .ban_inte_small .ban_contenu .ban_desc, .ban_inte_small .ban_contenu_blanc .ban_desc {
  color: #000000;
  font-size: 15px;
  margin-top: 0px;
  text-align: center;
}
.ban_inte .ban_contenu .ban_desc p, .ban_inte .ban_contenu_blanc .ban_desc p, .ban_inte_small .ban_contenu .ban_desc p, .ban_inte_small .ban_contenu_blanc .ban_desc p {
  margin-bottom: 0;
}
.ban_inte .ban_contenu_blanc, .ban_inte_small .ban_contenu_blanc {
  background-color: rgba(52, 78, 65, 0.3);
}
.ban_inte .ban_contenu_blanc .titre_1, .ban_inte_small .ban_contenu_blanc .titre_1 {
  color: #ffffff;
}
.ban_inte .ban_contenu_blanc .sup_titre_1, .ban_inte_small .ban_contenu_blanc .sup_titre_1 {
  color: #ffffff;
}
.ban_inte .ban_contenu_blanc .ban_desc, .ban_inte_small .ban_contenu_blanc .ban_desc {
  color: #ffffff;
}
/************************
  * Page Marques
  *************************/
.marques_gallery .e-gallery-item {
  -webkit-box-shadow: 3px 3px 8px 1px rgba(58, 90, 64, 0.5);
  box-shadow: 3px 3px 8px 1px rgba(58, 90, 64, 0.5);
}
.marques_gallery .e-gallery-item .e-gallery-image {
  background-size: 136px;
  background-repeat: no-repeat;
}
/************************
* Page contact
*************************/
.ban_inte_small .ban_contenu, .ban_inte_small .ban_contenu_blanc {
  min-height: 200px !important;
}
.bloc_map_img .bloc_map .elementor-widget {
  min-width: 100%;
}
.bloc_map_img .bloc_map .elementor-widget iframe {
  min-height: 200px;
  height: 100%;
}
.bloc_coordonnees {
  text-align: center;
}
.bloc_coordonnees .bloc_coordonnees_icon {
  fill: #7a7978;
  max-height: 82px;
  text-align: center;
  margin-bottom: 60px !important;
}
.bloc_coordonnees .bloc_coordonnees_icon::after {
  content: "" !important;
  height: 40px;
  background-color: #7a7978;
  width: 1px;
  display: inline-block;
  margin-top: 20px;
}
.bloc_coordonnees .bloc_coordonnees_txt {
  text-align: center;
  color: #7a7978;
  font-size: 20px;
}
.bloc_coordonnees .bloc_coordonnees_txt a {
  color: #7a7978;
  background: transparent;
  font-size: 20px;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.bloc_coordonnees .bloc_coordonnees_txt a:hover {
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
.titre_contact_2 {
  font-size: 32px;
  color: #000000;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .titre_contact_2 {
    font-size: 26px;
  }
}
/************************
* Page divers
*************************/
/************************
  * Page Nos produtis
  *************************/
.bloc_produits .uc_image_box {
  height: 700px !important;
}
.bloc_produits .uc_long_content_box_holder:hover .uc_overlay {
  background-color: #3a5a40;
  opacity: 85%;
}
.bloc_produits .carousel_two_titles {
  color: #ffffff;
  text-align: left;
  line-height: 1.8em;
}
.bloc_produits .carousel_two_titles .carousel_sup_title {
  display: block;
  text-transform: uppercase;
}
.bloc_produits .carousel_two_titles .carousel_title {
  font-family: "Abril Fatface", cursive;
  display: block;
  font-size: 45px;
  text-align: left;
}
.bloc_produits .carousel_two_titles.black_title {
  color: #000000;
}
.bloc_produits .uc_description {
  font-weight: 300;
}
.bloc_produits .uc_btn {
  font-weight: 500;
  background-color: #344e41;
  text-transform: uppercase;
  font-size: 14px;
  padding: 20px 24px;
  color: #ffffff !important;
  border: 1px solid #344e41;
  border-radius: 0;
}
.bloc_produits .uc_btn:hover {
  background-color: #ffffff;
  color: #344e41 !important;
}
.bloc_produits .bloc_produits_2 .uc_image_box {
  height: 400px !important;
}
.elementor-widget-ucaddon_produits_carousel_noiise .owl-nav .owl-prev:after, .elementor-widget-ucaddon_produits_carousel_noiise .owl-nav .owl-next:after {
  content: "" !important;
  height: 62px;
  width: 62px;
  background-image: url(/wp-content/uploads/2022/11/chevron-right.svg) !important;
  background-size: 14px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
}
.elementor-widget-ucaddon_produits_carousel_noiise .owl-nav .owl-prev:after {
  transform: rotate(180deg);
}
/************************
  * Page sous-produits
  *************************/
.bloc_tendances_moment {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.bloc_tendances_moment::before {
  content: "" !important;
  background-color: rgba(211, 172, 125, 0.95);
}
.bloc_tendances_moment::after {
  content: "";
  background: white;
  height: 200px;
  z-index: 0;
  bottom: -110px;
  width: 100%;
  left: 0;
  position: absolute;
}
.bloc_tendances_moment .small_titre {
  color: #ffffff;
  text-align: left;
}
.bloc_tendances_moment .big_titre {
  font-family: "Abril Fatface", cursive;
  line-height: 1.2em;
  font-size: 45px;
  color: #ffffff;
  text-align: left;
}
.bloc_tendances_moment .big_titre::after {
  content: none !important;
}
.bloc_tendances_moment .bloc_savoir_text {
  color: #ffffff;
  font-size: 16px;
  margin-top: 1rem;
}
.bloc_tendances_moment .bloc_savoir_text p {
  margin-top: 0;
  text-align: justify;
  font-size: 15px;
}
.bloc_tendances_moment .owl-item .uc_carousel_item {
  border-radius: 20px;
}
.bloc_tendances_moment .owl-item .uc_image_carousel_content {
  background-color: rgba(52, 78, 65, 0.3);
}
.bloc_tendances_moment .owl-item .uc_image_carousel_content .uc_post_title {
  color: #ffffff;
  font-family: "Abril Fatface", cursive;
  text-align: left;
}
.bloc_tendances_moment .owl-nav {
  color: #ffffff;
}
.bloc_tendances_moment .owl-nav .owl-prev, .bloc_tendances_moment .owl-nav .owl-next {
  background-color: rgba(255, 255, 255, 0.3) !important;
}
.bloc_tendances_moment .owl-nav .owl-prev .fa-arrow-left:before, .bloc_tendances_moment .owl-nav .owl-next .fa-arrow-left:before {
  content: "";
}
.bloc_tendances_moment .owl-nav .owl-prev .fa-arrow-right:before, .bloc_tendances_moment .owl-nav .owl-next .fa-arrow-right:before {
  content: "";
}
.bloc_tendances_moment .owl-nav .owl-prev {
  left: -40px !important;
}
@media screen and (max-width: 960px) {
  .bloc_tendances_moment .owl-nav .owl-prev {
    left: 0px !important;
  }
}
.bloc_tendances_moment .owl-nav .owl-next {
  right: -40px !important;
}
@media screen and (max-width: 960px) {
  .bloc_tendances_moment .owl-nav .owl-next {
    right: 0px !important;
  }
}
@media screen and (max-width: 767px) {
  .bloc_tendances_moment .uc_image_carousel_placeholder img {
    height: 400px !important;
    object-position: top center;
  }
}
/************************
* 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: #f1f1f1 !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: #7a7978 !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: #7a7978;
  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: #344e41;
  transition: all 0.3s ease-in-out;
}
.elementor-post-navigation .post-navigation__arrow-prev i, .elementor-post-navigation .post-navigation__arrow-next i {
  color: #7a7978;
  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: #344e41;
  transition: all 0.3s ease-in-out;
}
.elementor-pagination {
  padding: 3rem 1rem;
}
.elementor-pagination .page-numbers {
  background-color: #ffffff;
  color: #7a7978;
  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: #344e41 !important;
  color: #ffffff !important;
  transition: all 0.3s ease-in-out;
  border: 1px solid #344e41;
}
.elementor-pagination .current {
  background-color: #344e41 !important;
  color: #ffffff !important;
  border: 1px solid #344e41;
  transition: all 0.3s ease-in-out;
}
/*****************************************************************************************************************************
  * loop
******************************************************************************************************************************/
/************************
  * loop actu
*************************/
.loop_actu {
  position: relative;
}
.loop_actu .loop_img .elementor-widget-container {
  overflow: hidden;
}
.loop_actu .loop_img .elementor-widget-container img {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.loop_actu .loop_content {
  margin-top: -50px;
  height: 100%;
}
.loop_actu .loop_content > .e-con-inner {
  padding: 2rem;
  background-color: rgba(58, 90, 64, 0.9);
}
.loop_actu .loop_content > .e-con-inner .loop_date {
  font-size: 12px;
  line-height: 12px;
  color: #7a7978;
}
.loop_actu .loop_content > .e-con-inner .loop_date svg {
  fill: #7a7978;
}
.loop_actu .loop_content > .e-con-inner .loop_cat {
  font-size: 12px;
  font-weight: 400;
  background-color: #344e41;
  color: #ffffff;
  border-radius: 24px;
  padding: 4px 8px;
}
.loop_actu .loop_content > .e-con-inner .loop_titre {
  color: #000000;
  font-family: "Abril Fatface", cursive;
  font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1600 - 300))) !important;
  line-height: 1 !important;
  transition: all 0.3s ease-in-out;
}
.loop_actu .loop_content > .e-con-inner .loop_desc {
  padding: 0px 10px;
  color: #7a7978;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
.loop_actu .loop_content > .e-con-inner .btn_lirelasuite {
  color: #000000;
  text-transform: uppercase;
  font-size: 14px;
  padding: 8px 0px;
  border: 0px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.loop_actu .loop_content > .e-con-inner .btn_lirelasuite:before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0%;
  left: 0%;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.loop_actu .loop_content > .e-con-inner .btn_lirelasuite:hover {
  color: #344e41;
}
.loop_actu .loop_content > .e-con-inner .btn_lirelasuite:hover:before {
  background-color: #344e41;
}
.loop_actu:hover .loop_img img {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.loop_actu:hover .loop_titre {
  color: #344e41 !important;
  transition: all 0.3s ease-in-out;
}
/************************
  * loop tendances
*************************/
.loop_tendances {
  min-height: 250px !important;
  border-radius: 20px !important;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.loop_tendances > .e-con-inner {
  z-index: 2;
}
.loop_tendances:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.loop_tendances .loop_tendances_titre {
  position: relative;
  font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1600 - 300)));
  line-height: 1.2;
  color: #ffffff;
  font-family: "Abril Fatface", cursive;
  background-color: rgba(52, 78, 65, 0.4);
  border-radius: 0px 0px 20px 20px;
  padding: 8px;
  transition: all 0.3s ease-in-out;
}
.loop_tendances:hover:after {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
/************************
* Page article
*************************/
.ban_inte_actu .ban_bloc_meta .ban_cat_article {
  color: #ffffff;
  font-size: 16px;
  background-color: #7a7978;
  padding: 6px 0px 6px 12px;
  text-transform: uppercase;
}
.ban_inte_actu .ban_titre {
  position: relative;
  font-size: 40px;
  color: #7a7978;
  font-family: "Abril Fatface", cursive;
  margin-top: -15px;
  text-transform: uppercase;
}
.ban_inte_actu .ban_titre span {
  font-weight: 800;
}
.ban_inte_actu .ban_titre .elementor-heading-title {
  line-height: 1.2 !important;
}
.ban_inte_actu .ban_date_article {
  font-size: 14px;
  color: #707070;
  border-bottom: 1px solid #EEEEEE !important;
}
.ban_inte_actu .breadcrumbs #breadcrumbs {
  color: #7a7978;
}
.ban_inte_actu .breadcrumbs #breadcrumbs span span {
  border: 1px solid #EEEEEE;
  border-radius: 25px;
  padding: 5px 10px;
}
.ban_inte_actu .breadcrumbs a {
  color: #7a7978;
  transition: all 0.3s ease-in-out;
}
.ban_inte_actu .breadcrumbs a:hover {
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
.elementor-location-single {
  min-height: 75vh;
}
#row_totop {
  width: 50px;
  height: 50px;
  z-index: 999;
  position: fixed;
  bottom: 30px;
  right: 30px;
}
#totop {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  background-color: #a57a46;
  border-radius: 50%;
  z-index: 999;
  cursor: pointer;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
@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: #9f694f;
  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, .btn_cta_2 .elementor-button-link, .btn_cta_blanc .elementor-button-link {
  background-color: #344e41;
  border-radius: 0;
  border: 1px solid #344e41;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  min-width: 200px;
  padding: 20px 24px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.btn_cta_1 .elementor-button-link .elementor-button-icon, .btn_cta_2 .elementor-button-link .elementor-button-icon, .btn_cta_blanc .elementor-button-link .elementor-button-icon {
  margin-right: 10px;
}
.btn_cta_1 .elementor-button-link .elementor-button-icon svg, .btn_cta_2 .elementor-button-link .elementor-button-icon svg, .btn_cta_blanc .elementor-button-link .elementor-button-icon svg {
  height: 18px;
  width: 40px;
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_cta_1 .elementor-button-link:visited, .btn_cta_1 .elementor-button-link:focus, .btn_cta_2 .elementor-button-link:visited, .btn_cta_2 .elementor-button-link:focus, .btn_cta_blanc .elementor-button-link:visited, .btn_cta_blanc .elementor-button-link:focus {
  color: #ffffff;
}
.btn_cta_1 .elementor-button-link:visited svg, .btn_cta_1 .elementor-button-link:focus svg, .btn_cta_2 .elementor-button-link:visited svg, .btn_cta_2 .elementor-button-link:focus svg, .btn_cta_blanc .elementor-button-link:visited svg, .btn_cta_blanc .elementor-button-link:focus svg {
  fill: #ffffff;
}
.btn_cta_1 .elementor-button-link:hover, .btn_cta_2 .elementor-button-link:hover, .btn_cta_blanc .elementor-button-link:hover {
  background-color: transparent;
  border: 1px solid #344e41;
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
.btn_cta_1 .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg, .btn_cta_2 .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg, .btn_cta_blanc .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #344e41 !important;
  transition: all 0.3s ease-in-out;
}
.btn_cta_2 .elementor-button-link {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_cta_2 .elementor-button-link:visited, .btn_cta_2 .elementor-button-link:focus {
  color: #ffffff;
}
.btn_cta_2 .elementor-button-link:visited svg, .btn_cta_2 .elementor-button-link:focus svg {
  fill: #ffffff;
}
.btn_cta_2 .elementor-button-link:hover {
  background-color: #344e41;
  border: 1px solid #344e41;
  color: #ffffff;
}
.btn_cta_2 .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #ffffff !important;
  transition: all 0.3s ease-in-out;
}
.btn_cta_blanc .elementor-button-link {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #d3ac7d;
  transition: all 0.3s ease-in-out;
}
.btn_cta_blanc .elementor-button-link:visited, .btn_cta_blanc .elementor-button-link:focus {
  color: #d3ac7d;
}
.btn_cta_blanc .elementor-button-link:visited svg, .btn_cta_blanc .elementor-button-link:focus svg {
  fill: #d3ac7d;
}
.btn_cta_blanc .elementor-button-link:hover {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn_rdv_1 .elementor-button-link, .btn_rdv_2 .elementor-button-link {
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  border-radius: 0;
  border: 1px solid #344e41;
  background-color: #344e41;
  color: #ffffff;
  padding-left: 48px;
  text-transform: uppercase;
  max-width: 250px;
}
.btn_rdv_1 .elementor-button-link .elementor-button-content-wrapper, .btn_rdv_2 .elementor-button-link .elementor-button-content-wrapper {
  position: relative;
}
.btn_rdv_1 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon, .btn_rdv_2 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon {
  font-size: 1.8em;
  position: absolute;
  left: -38px;
  top: -7px;
  transition: all 0.3s ease-in-out;
}
.btn_rdv_1 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg, .btn_rdv_2 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  .btn_rdv_1 .elementor-button-link, .btn_rdv_2 .elementor-button-link {
    width: 100%;
    max-width: none;
  }
}
.btn_rdv_1 .elementor-button-link:visited, .btn_rdv_1 .elementor-button-link:focus, .btn_rdv_2 .elementor-button-link:visited, .btn_rdv_2 .elementor-button-link:focus {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_rdv_1 .elementor-button-link:visited svg, .btn_rdv_1 .elementor-button-link:focus svg, .btn_rdv_2 .elementor-button-link:visited svg, .btn_rdv_2 .elementor-button-link:focus svg {
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_rdv_1 .elementor-button-link:hover, .btn_rdv_2 .elementor-button-link:hover {
  background-color: transparent;
  border: 1px solid #344e41;
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
.btn_rdv_1 .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg, .btn_rdv_2 .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #344e41 !important;
  transition: all 0.3s ease-in-out;
}
.btn_rdv_2 .elementor-button-link {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #d3ac7d;
}
.btn_rdv_2 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #d3ac7d !important;
  transition: all 0.3s ease-in-out;
}
.btn_rdv_2 .elementor-button-link:visited, .btn_rdv_2 .elementor-button-link:focus {
  color: #d3ac7d;
}
.btn_rdv_2 .elementor-button-link:visited svg, .btn_rdv_2 .elementor-button-link:focus svg {
  fill: #d3ac7d;
}
.btn_rdv_2 .elementor-button-link:hover {
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
}
.btn_rdv_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_1 .elementor-button-link, .btn_link_2 .elementor-button-link, .btn_link_blanc .elementor-button-link {
  background-color: #344e41;
  border-radius: 0;
  border: 1px solid #344e41;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  min-width: 200px;
  padding: 20px 24px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.btn_link_1 .elementor-button-link .elementor-button-icon, .btn_link_2 .elementor-button-link .elementor-button-icon, .btn_link_blanc .elementor-button-link .elementor-button-icon {
  margin-right: 10px;
}
.btn_link_1 .elementor-button-link .elementor-button-icon svg, .btn_link_2 .elementor-button-link .elementor-button-icon svg, .btn_link_blanc .elementor-button-link .elementor-button-icon svg {
  height: 18px;
  width: 40px;
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_link_1 .elementor-button-link:visited, .btn_link_1 .elementor-button-link:focus, .btn_link_2 .elementor-button-link:visited, .btn_link_2 .elementor-button-link:focus, .btn_link_blanc .elementor-button-link:visited, .btn_link_blanc .elementor-button-link:focus {
  color: #ffffff;
}
.btn_link_1 .elementor-button-link:visited svg, .btn_link_1 .elementor-button-link:focus svg, .btn_link_2 .elementor-button-link:visited svg, .btn_link_2 .elementor-button-link:focus svg, .btn_link_blanc .elementor-button-link:visited svg, .btn_link_blanc .elementor-button-link:focus svg {
  fill: #ffffff;
}
.btn_link_1 .elementor-button-link:hover, .btn_link_2 .elementor-button-link:hover, .btn_link_blanc .elementor-button-link:hover {
  background-color: transparent;
  border: 1px solid #344e41;
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
.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, .btn_link_blanc .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #344e41 !important;
  transition: all 0.3s ease-in-out;
}
.btn_link_2 .elementor-button-link {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_link_2 .elementor-button-link:visited, .btn_link_2 .elementor-button-link:focus {
  color: #ffffff;
}
.btn_link_2 .elementor-button-link:visited svg, .btn_link_2 .elementor-button-link:focus svg {
  fill: #ffffff;
}
.btn_link_2 .elementor-button-link:hover {
  background-color: #344e41;
  border: 1px solid #344e41;
  color: #ffffff;
}
.btn_link_blanc .elementor-button-link {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #d3ac7d;
  transition: all 0.3s ease-in-out;
}
.btn_link_blanc .elementor-button-link:visited, .btn_link_blanc .elementor-button-link:focus {
  color: #d3ac7d;
}
.btn_link_blanc .elementor-button-link:visited svg, .btn_link_blanc .elementor-button-link:focus svg {
  fill: #d3ac7d;
}
.btn_link_blanc .elementor-button-link:hover {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn_lirelasuite .elementor-button-link {
  background-color: transparent;
  color: #000000;
  text-transform: uppercase;
  font-size: 14px;
  padding: 0px 0px;
  border: 0px;
  font-weight: 400;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.btn_lirelasuite .elementor-button-link:before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0%;
  left: 0%;
  background-color: #000000;
  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;
  height: 35px;
}
.btn_lirelasuite .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon {
  margin-left: 10px;
}
.btn_lirelasuite .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg {
  height: 9px;
  width: 20px;
  fill: #344e41;
  transition: all 0.3s ease-in-out;
}
.btn_lirelasuite .elementor-button-link:visited, .btn_lirelasuite .elementor-button-link:focus {
  color: #000000;
}
.btn_lirelasuite .elementor-button-link:visited svg, .btn_lirelasuite .elementor-button-link:focus svg {
  fill: #000000;
}
.btn_lirelasuite .elementor-button-link:hover {
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  border: 0px;
  color: #344e41;
}
.btn_lirelasuite .elementor-button-link:hover:before {
  width: 2%;
  background-color: #344e41;
  transition: all 0.3s ease-in-out;
}
.btn_lirelasuite .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #344e41 !important;
  transition: all 0.3s ease-in-out;
}
.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: #344e41;
  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;
  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: #344e41;
  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: 44px;
  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: #344e41;
  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: #344e41;
  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 #344e41;
  height: 50px;
  border-radius: 0px;
}
.form_elementor .elementor-field-textual {
  border: 1px solid #344e41;
  padding: 10px;
  background-color: transparent;
  color: 1px solid #7a7978;
  border-radius: 0px;
}
.form_elementor .elementor-field-label {
  color: #000000;
  font-size: 16px;
}
.form_elementor .elementor-field-type-acceptance a {
  color: #344e41;
  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 #344e41;
  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 #7a7978;
  color: #7a7978;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.form_elementor .elementor-button:hover {
  background-color: #344e41;
  color: #ffffff;
  border: 0px solid #7a7978;
  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 #7a7978;
  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;
}
/************************
* 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: 8px;
  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::marker {
  content: none !important;
}
#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.3px;
}
#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: #344e41;
  color: #ffffff;
  display: block;
  font-size: 1.2em;
  font-weight: 500;
  height: auto;
  left: 0;
  padding: 5px;
  position: absolute;
  width: auto;
  z-index: 1111;
}
/**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: #344e41;
  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;
}
/************************
*
* PLAN DES SCSS
*
01 => CONFIG
02 => LAYOUT
03 => PAGES
04 => COMPOSANTS
*
*
*************************/
/* Set core body defaults */
:root {
  color-scheme: unset;
}
body {
  min-height: 96vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.2;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: flex-end;
  color: #7a7978;
  transition: all 0.3s ease-in-out;
}
body .elementor-location-footer {
  bottom: 0;
}
body .elementor-heading-title {
  line-height: inherit;
}
/* 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;
}
p:not(:only-child) {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
/* Set core body defaults */
h1 ~ p, h2 ~ p, h3 ~ p, h4 ~ p {
  margin-top: 1rem;
}
/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}
/**
*
*  color BG + TXT
*
****************/
.bg_primary {
  background-color: #7a7978;
}
.txt_primary {
  color: #7a7978;
}
.bg_noir {
  background-color: #000000;
}
.txt_noir {
  color: #000000;
}
.bg_blanc {
  background-color: #ffffff;
}
.txt_blanc {
  color: #ffffff;
}
.bg_gris1 {
  background-color: #f1f1f1;
}
.txt_gris1 {
  color: #f1f1f1;
}
.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: #344e41;
}
.txt_color1 {
  color: #344e41;
}
.bg_color2 {
  background-color: #3a5a40;
}
.txt_color2 {
  color: #3a5a40;
}
.bg_color3 {
  background-color: #d3ac7d;
}
.txt_color3 {
  color: #d3ac7d;
}
.bg_color4 {
  background-color: #f5d7bd;
}
.txt_color4 {
  color: #f5d7bd;
}
.bg_color5 {
  background-color: #344e41;
}
.txt_color5 {
  color: #344e41;
}
.bg_color6 {
  background-color: #d3ac7d;
}
.txt_color6 {
  color: #d3ac7d;
}
/**
*
* 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;
}
/**
*
* background color
*
****************/
.bg_primary {
  background-color: #7a7978;
}
.bg_noir {
  background-color: #000000;
}
.bg_blanc {
  background-color: #ffffff;
}
.bg_gris1 {
  background-color: #f1f1f1;
}
.bg_gris2 {
  background-color: #EEEEEE;
}
.bg_gris3 {
  background-color: #707070;
}
.bg_gris4 {
  background-color: #333333;
}
.bg_color1 {
  background-color: #344e41;
}
.bg_color2 {
  background-color: #3a5a40;
}
.bg_color3 {
  background-color: #d3ac7d;
}
.bg_color4 {
  background-color: #f5d7bd;
}
.bg_color5 {
  background-color: #344e41;
}
.bg_color6 {
  background-color: #d3ac7d;
}
/************************
* Header & fix header
*************************/
.header_m1 .gm-inner .gm-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  .header_m1 .gm-inner .gm-container {
    border-bottom: 1px solid #000000;
  }
}
.header_m1 .gm-inner .gm-container .gm-logo {
  position: relative;
  top: 0px;
  transform: none;
  padding: 10px 0px;
}
.header_m1 .gm-inner .gm-container .gm-logo a {
  position: relative;
}
.header_m1 .gm-inner .gm-container .gm-logo > a img {
  height: 90px !important;
  width: auto;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header_m1 .gm-inner .gm-container .gm-logo > a img {
    height: 50px !important;
    width: auto;
  }
}
@media screen and (max-width: 1023px) {
  .header_m1 .gm-inner .gm-container .gm-logo .gm-logo__img-default {
    display: none;
  }
}
.header_m1 .gm-inner .gm-container .gm-menu-btn {
  position: absolute;
  top: 26px;
  right: 30px;
  z-index: 111111;
}
.header_m1 .gm-inner .gm-container .gm-main-menu-wrapper {
  background-color: #000000;
  width: 100%;
}
.header_m1 .gm-inner .gm-container .gm-main-menu-wrapper #gm-main-menu {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}
.header_m1 .gm-inner .gm-container .gm-main-menu-wrapper #gm-main-menu ul li .gm-anchor {
  padding: 0 5px;
}
.header_m1 .gm-inner .gm-container .gm-main-menu-wrapper #gm-main-menu ul li .gm-dropdown-menu-wrapper li a {
  padding: 6px 5px;
}
@media screen and (min-width: 1024px) {
  .header_m1 .gm-inner .gm-container .gm-main-menu-wrapper #gm-main-menu #menu-menu-principal + li:first-child .gm-anchor {
    padding-left: 0px;
    margin-left: 0;
  }
}
.header_m1 .gm-inner .gm-container .gm-main-menu-wrapper .gm-inner {
  transition: none !important;
}
.header_m1.gm-navigation-drawer--open .hamburger .hamburger-inner {
  background-color: #ffffff;
}
.header_m1.gm-navigation-drawer--open .hamburger .hamburger-inner::after, .header_m1.gm-navigation-drawer--open .hamburger .hamburger-inner::before {
  background-color: #ffffff;
}
.header_m1.gm-drawer--open .gm-logo {
  opacity: 0.6;
}
aside.header_m1 .btn_rdv a {
  font-size: 11px;
}
aside.header_m1 li a {
  padding-left: 5px;
}
.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: #ffffff;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.header_m1.fixed-header .gm-inner .gm-container {
  height: 100px;
  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: 50px !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: 50px !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;
}
.header_m1 li.current-menu-item, .header_m1 li.current-menu-parent {
  transition: all 0.3s ease-in-out;
  background-color: #344e41;
}
.header_m1 li.current-menu-item a, .header_m1 li.current-menu-parent a {
  color: #ffffff;
}
.header_m1 li {
  transition: all 0.3s ease-in-out;
}
.header_m1 li:hover {
  transition: all 0.3s ease-in-out;
  background-color: #344e41;
}
.sup_footer {
  background-color: rgba(0, 0, 0, 0.85);
}
.sup_footer .sup_footer_content {
  font-size: 14px;
  color: #ffffff;
  fill: #ffffff;
  text-transform: uppercase;
}
.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_titre {
  text-transform: uppercase;
  font-weight: 500;
}
.footer_m1 p {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 0;
}
.footer_m1 a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.footer_m1 a:hover {
  color: #a57a46;
  transition: all 0.3s ease-in-out;
}
.footer_m1 .footer_liste {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  text-transform: uppercase;
}
.footer_m1 .footer_liste ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer_m1 .footer_btn .elementor-button-link {
  color: #ffffff;
  background-color: transparent;
  text-align: left;
  padding: 0px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  .footer_m1 .footer_btn .elementor-button-link {
    text-align: center;
  }
}
.footer_m1 .footer_btn .elementor-button-link:hover {
  color: #344e41;
}
.footer_m1 .elementor-social-icon {
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  font-size: 24px;
  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 {
  transition: all 0.3s ease-in-out;
}
.footer_m1 .elementor-social-icon:hover i {
  color: #344e41;
}
.footer_m1 .elementor-social-icon:hover svg {
  fill: #344e41;
  transition: all 0.3s ease-in-out;
}
.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: #a57a46;
  transition: all 0.3s ease-in-out;
}
body {
  font-family: "Outfit", sans-serif, sans-serif;
  font-size: 16px;
  color: #7a7978;
  font-weight: 400;
}
body main, body [data-elementor-type="archive"], body [data-elementor-type="single-post"] {
  min-height: 69vh;
}
body main #breadcrumbs a:hover, body [data-elementor-type="archive"] #breadcrumbs a:hover, body [data-elementor-type="single-post"] #breadcrumbs a:hover {
  color: #344e41 !important;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 960px) {
  body main, body [data-elementor-type="archive"], body [data-elementor-type="single-post"] {
    margin-top: 2.1rem;
  }
}
@media screen and (min-width: 767px) and (max-width: 960px) {
  body main, body [data-elementor-type="archive"], body [data-elementor-type="single-post"] {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  body main, body [data-elementor-type="archive"], body [data-elementor-type="single-post"] {
    margin-top: 0;
  }
}
body #content a:not([class]) {
  transition: color 300ms ease;
  color: #000000;
}
body #content a:not([class]):hover {
  color: #a57a46;
}
.gm-nav-content-wrapper {
  will-change: inherit !important;
}
body.home main {
  margin-top: 2.3rem;
}
/******************************
* Titres principaux
******************************/
.sup_titre_1 {
  color: #000000;
  text-align: center;
  text-transform: uppercase;
}
.sup_titre_1_blanc {
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}
.titre_1, .titre_1l, .titre_1r, .titre_1c, .titre_1_blanc {
  position: relative;
  font-size: calc(32px + (45 - 32) * ((100vw - 300px) / (1600 - 300)));
  color: #000000;
  font-family: "Abril Fatface", cursive;
}
@media screen and (max-width: 960px) {
  .titre_1 br, .titre_1l br, .titre_1r br, .titre_1c br, .titre_1_blanc br {
    display: none;
  }
}
.titre_1 strong, .titre_1 b, .titre_1l strong, .titre_1l b, .titre_1r strong, .titre_1r b, .titre_1c strong, .titre_1c b, .titre_1_blanc strong, .titre_1_blanc b {
  font-weight: 600;
}
.titre_1 span, .titre_1l span, .titre_1r span, .titre_1c span, .titre_1_blanc span {
  color: #344e41;
  font-weight: 600;
}
.titre_1_blanc {
  color: #ffffff;
}
.sup_titre_2 {
  color: #344e41;
  text-align: center;
  text-transform: uppercase;
}
.sup_titre {
  text-transform: uppercase;
}
.titre_2, .titre_2l, .titre_2r, .titre_2c, .titre_2_sm {
  position: relative;
  font-size: calc(32px + (45 - 32) * ((100vw - 300px) / (1600 - 300)));
  color: #000000;
  font-family: "Abril Fatface", cursive;
}
@media screen and (max-width: 960px) {
  .titre_2 br, .titre_2l br, .titre_2r br, .titre_2c br, .titre_2_sm br {
    display: none;
  }
}
.titre_2 strong, .titre_2 b, .titre_2l strong, .titre_2l b, .titre_2r strong, .titre_2r b, .titre_2c strong, .titre_2c b, .titre_2_sm strong, .titre_2_sm b {
  font-weight: 600;
}
.titre_2 span, .titre_2l span, .titre_2r span, .titre_2c span, .titre_2_sm span {
  color: #344e41;
  font-weight: 600;
}
.titre_2c {
  text-align: center;
}
.titre_2c::after {
  content: "" !important;
  height: 55px;
  background-color: #344e41;
  width: 3px;
  display: inline-block;
  margin-top: 10px;
}
.titre_2_sm {
  font-size: calc(18px + (26 - 18) * ((100vw - 300px) / (1600 - 300)));
}
.titre_3, .titre_3l, .titre_3r, .titre_3c {
  position: relative;
  font-size: calc(16px + (22 - 16) * ((100vw - 300px) / (1600 - 300)));
  color: #7a7978;
  font-family: "Abril Fatface", cursive;
}
@media screen and (max-width: 960px) {
  .titre_3 br, .titre_3l br, .titre_3r br, .titre_3c br {
    display: none;
  }
}
.titre_3 strong, .titre_3 b, .titre_3l strong, .titre_3l b, .titre_3r strong, .titre_3r b, .titre_3c strong, .titre_3c b {
  font-weight: 600;
}
.titre_3 span, .titre_3l span, .titre_3r span, .titre_3c span {
  color: #344e41;
  font-weight: 600;
}
.titre_4, .titre_4l, .titre_4r, .titre_4c {
  position: relative;
  font-size: 18px;
  color: #7a7978;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 960px) {
  .titre_4 br, .titre_4l br, .titre_4r br, .titre_4c br {
    display: none;
  }
}
.titre_4 strong, .titre_4 b, .titre_4l strong, .titre_4l b, .titre_4r strong, .titre_4r b, .titre_4c strong, .titre_4c b {
  font-weight: 600;
}
.titre_4 span, .titre_4l span, .titre_4r span, .titre_4c span {
  color: #344e41;
  font-weight: 600;
}
/******************************
* Titres spe
******************************/
.titre_spe_1, .titre_spe_1_blanc {
  color: #000000;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
}
.titre_spe_1 strong, .titre_spe_1 b, .titre_spe_1_blanc strong, .titre_spe_1_blanc b {
  font-weight: 600;
}
.titre_spe_1 span, .titre_spe_1_blanc span {
  font-family: "Abril Fatface", cursive;
  display: block;
  font-size: calc(30px + (45 - 30) * ((100vw - 300px) / (2560 - 300)));
  text-transform: none;
}
.titre_spe_1_blanc {
  color: #ffffff;
}
/******************************
* Textes
******************************/
/******************************
* Padding / margin spe
******************************/
.p_margin_0 p {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}
/******************************
* Couleur
******************************/
.txt_blanc {
  color: #ffffff;
}
.color1 {
  color: #344e41;
}
/******************************
* link Couleur
******************************/
.link_color1 a {
  transition: all 0.3s ease-in-out;
  color: #344e41;
}
.link_color1 a:hover {
  color: #7a7978;
  transition: all 0.3s ease-in-out;
}
.link_color2 a {
  transition: all 0.3s ease-in-out;
  color: #3a5a40;
}
.link_color2 a:hover {
  color: #7a7978;
  transition: all 0.3s ease-in-out;
}
.link_color3 a {
  transition: all 0.3s ease-in-out;
  color: #d3ac7d;
}
.link_color3 a:hover {
  color: #7a7978;
  transition: all 0.3s ease-in-out;
}
/******************************
* BLOCS
******************************/
.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: #7a7978;
}
.bloc_reassurance {
  text-align: center;
}
.bloc_reassurance .bloc_reassurance_icon {
  fill: #000000;
  max-height: 82px;
  text-align: center;
  margin-bottom: 60px !important;
}
.bloc_reassurance .bloc_reassurance_icon::after {
  content: "" !important;
  height: 40px;
  background-color: #7a7978;
  width: 1px;
  display: inline-block;
  margin-top: 20px;
}
.bloc_reassurance .bloc_reassurance_txt {
  text-transform: uppercase;
  font-weight: 300;
}
/******************************
* images
******************************/
svg {
  min-height: 6px;
  min-width: 6px;
}
.img_radius {
  border-radius: 3rem 0px 3rem 0px;
  overflow: hidden;
}
.img_corner {
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: -100px !important;
}
.img_corner::before {
  content: "" !important;
  display: block;
  width: 4px;
  background: white;
  position: absolute;
  bottom: -24px;
  right: -20px;
  height: 125px;
}
.img_corner::after {
  content: "" !important;
  display: block;
  width: 125px;
  background: white;
  position: absolute;
  bottom: -24px;
  right: -20px;
  height: 5px;
}
/******************************
* Liste
******************************/
.liste_puce ul {
  margin: 0;
  padding: 0;
  list-style-type: 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: #7a7978;
}
/******************************
* 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(52, 78, 65, 0.35);
}
.filtre_color2:before {
  background-color: rgba(58, 90, 64, 0.35);
}
.filtre_color3:before {
  background-color: rgba(211, 172, 125, 0.35);
}
.filtre_color4:before {
  background-color: rgba(245, 215, 189, 0.35);
}
.filtre_color5:before {
  background-color: rgba(52, 78, 65, 0.35);
}
.filtre_color6:before {
  background-color: rgba(211, 172, 125, 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_home_contact {
  max-width: 260px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px 20px;
}
.ban_home .e-con-inner .ban_home_contact .ban_titre {
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
}
.ban_home .e-con-inner .ban_home_contact .ban_titre span {
  font-size: 30px;
}
.ban_home .e-con-inner .ban_home_contact .btn_cta_1 a {
  width: 100%;
}
.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;
}
/******************************
* Titres home
******************************/
.titre_home_1 {
  position: relative;
  font-size: 32px;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .titre_home_1 {
    font-size: 26px;
  }
}
/******************************
* Bloc Coordonnées
******************************/
.ban_coordonnee .texte_coordonnee {
  text-align: center;
  color: #7a7978;
  font-size: 20px;
}
.ban_coordonnee .texte_coordonnee a {
  color: #7a7978;
}
.ban_coordonnee .texte_coordonnee a:hover {
  color: #344e41;
}
.ban_coordonnee .texte_coordonnee.btn_none a {
  color: #7a7978;
  background: transparent;
  font-size: 20px;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.ban_coordonnee .texte_coordonnee.btn_none a:hover {
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
/******************************
* Bloc Produits
******************************/
.bloc_produits {
  text-align: center;
}
.bloc_produits .bloc_produits_ref {
  display: block;
  font-size: 34px;
  font-weight: 100;
}
.bloc_produits .bloc_produits_prix {
  display: block;
  font-size: 24px;
  color: #000000;
}
/******************************
* Carousel COLLECTIONS
******************************/
.carousel_collections .collections_item {
  position: relative;
}
.carousel_collections .collections_item:before {
  content: "";
  display: block;
  position: absolute;
  top: auto !important;
  bottom: -1px !important;
  left: auto !important;
  right: -1px !important;
  height: 80px;
  width: 110px;
  border-right: 9px solid #ffffff;
  border-bottom: 9px solid #ffffff;
}
.carousel_collections .collections_item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  .carousel_collections .collections_item:after {
    background-color: rgba(0, 0, 0, 0.65);
  }
}
.carousel_collections .collections_item .collections_content {
  transform: translateY(100px);
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  .carousel_collections .collections_item .collections_content {
    transform: translateY(0px);
  }
}
.carousel_collections .collections_item .collections_content .btn_link_blanc {
  transform: translateY(200px);
  opacity: 0;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  .carousel_collections .collections_item .collections_content .btn_link_blanc {
    transform: translateY(0px);
    opacity: 1;
  }
}
.carousel_collections .collections_item:hover:after {
  background-color: rgba(0, 0, 0, 0.65);
  transition: all 0.3s ease-in-out;
}
.carousel_collections .collections_item:hover .collections_content {
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}
.carousel_collections .collections_item:hover .collections_content .btn_link_blanc {
  transform: translateY(0px);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
/******************************
* BlocRDV
******************************/
.bloc_rdv .bloc_rdv_content {
  background: rgba(255, 255, 255, 0.92);
  max-width: 700px;
  margin: 8rem auto;
  text-align: center;
  padding: 2rem 4rem;
}
/******************************
* Bloc Actus
******************************/
.carousel_actus .carousel_actus_img {
  transition: all 0.7s ease-in-out;
}
.carousel_actus .carousel_actus_img .carousel_actus_content {
  max-width: 80%;
  margin: 26px auto;
  text-align: center;
  min-height: 190px;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  background-color: rgba(58, 90, 64, 0.9);
  z-index: 2;
  transition: all 0.7s ease-in-out;
}
@media screen and (max-width: 960px) {
  .carousel_actus .carousel_actus_img .carousel_actus_content {
    opacity: 1;
  }
}
.carousel_actus .carousel_actus_img .carousel_actus_content .carousel_actus_titre {
  font-family: "Abril Fatface", cursive;
  font-size: 22px;
  line-height: 1.2em;
}
.carousel_actus .carousel_actus_img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  transition: all 0.7s ease-in-out;
}
.carousel_actus .carousel_actus_img:hover .carousel_actus_content {
  opacity: 1;
  transition: all 0.7s ease-in-out;
}
.carousel_actus .carousel_actus_img:hover:after {
  background-color: rgba(0, 0, 0, 0.65);
  transition: all 0.7s ease-in-out;
}
/************************
* Page divers
*************************/
.ban_inte, .ban_inte_small {
  position: relative;
  margin-top: 0;
  padding-bottom: 2rem !important;
}
.ban_inte .breadcrumb, .ban_inte_small .breadcrumb {
  background-color: rgba(52, 78, 65, 0.1);
  color: #ffffff;
}
.ban_inte .breadcrumb #breadcrumbs, .ban_inte_small .breadcrumb #breadcrumbs {
  color: #ffffff;
  margin-top: 0.5rem;
}
.ban_inte .breadcrumb #breadcrumbs a, .ban_inte_small .breadcrumb #breadcrumbs a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.ban_inte .breadcrumb #breadcrumbs a:hover, .ban_inte_small .breadcrumb #breadcrumbs a:hover {
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
.ban_inte .ban_contenu, .ban_inte .ban_contenu_blanc, .ban_inte_small .ban_contenu, .ban_inte_small .ban_contenu_blanc {
  min-height: 350px !important;
  font-weight: 300;
  padding: 2rem 1rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
}
.ban_inte .ban_contenu .sup_titre_1, .ban_inte .ban_contenu_blanc .sup_titre_1, .ban_inte_small .ban_contenu .sup_titre_1, .ban_inte_small .ban_contenu_blanc .sup_titre_1 {
  color: #000000;
}
.ban_inte .ban_contenu .titre_1, .ban_inte .ban_contenu_blanc .titre_1, .ban_inte_small .ban_contenu .titre_1, .ban_inte_small .ban_contenu_blanc .titre_1 {
  text-align: center;
  color: #000000;
}
.ban_inte .ban_contenu .titre_1 .elementor-heading-title, .ban_inte .ban_contenu_blanc .titre_1 .elementor-heading-title, .ban_inte_small .ban_contenu .titre_1 .elementor-heading-title, .ban_inte_small .ban_contenu_blanc .titre_1 .elementor-heading-title {
  line-height: 1.2;
}
.ban_inte .ban_contenu .titre_1 strong, .ban_inte .ban_contenu_blanc .titre_1 strong, .ban_inte_small .ban_contenu .titre_1 strong, .ban_inte_small .ban_contenu_blanc .titre_1 strong {
  font-weight: 900;
}
.ban_inte .ban_contenu .titre_1 span, .ban_inte .ban_contenu_blanc .titre_1 span, .ban_inte_small .ban_contenu .titre_1 span, .ban_inte_small .ban_contenu_blanc .titre_1 span {
  color: #344e41;
}
.ban_inte .ban_contenu .ban_desc, .ban_inte .ban_contenu_blanc .ban_desc, .ban_inte_small .ban_contenu .ban_desc, .ban_inte_small .ban_contenu_blanc .ban_desc {
  color: #000000;
  font-size: 15px;
  margin-top: 0px;
  text-align: center;
}
.ban_inte .ban_contenu .ban_desc p, .ban_inte .ban_contenu_blanc .ban_desc p, .ban_inte_small .ban_contenu .ban_desc p, .ban_inte_small .ban_contenu_blanc .ban_desc p {
  margin-bottom: 0;
}
.ban_inte .ban_contenu_blanc, .ban_inte_small .ban_contenu_blanc {
  background-color: rgba(52, 78, 65, 0.3);
}
.ban_inte .ban_contenu_blanc .titre_1, .ban_inte_small .ban_contenu_blanc .titre_1 {
  color: #ffffff;
}
.ban_inte .ban_contenu_blanc .sup_titre_1, .ban_inte_small .ban_contenu_blanc .sup_titre_1 {
  color: #ffffff;
}
.ban_inte .ban_contenu_blanc .ban_desc, .ban_inte_small .ban_contenu_blanc .ban_desc {
  color: #ffffff;
}
/************************
  * Page Marques
  *************************/
.marques_gallery .e-gallery-item {
  -webkit-box-shadow: 3px 3px 8px 1px rgba(58, 90, 64, 0.5);
  box-shadow: 3px 3px 8px 1px rgba(58, 90, 64, 0.5);
}
.marques_gallery .e-gallery-item .e-gallery-image {
  background-size: 136px;
  background-repeat: no-repeat;
}
/************************
* Page contact
*************************/
.ban_inte_small .ban_contenu, .ban_inte_small .ban_contenu_blanc {
  min-height: 200px !important;
}
.bloc_map_img .bloc_map .elementor-widget {
  min-width: 100%;
}
.bloc_map_img .bloc_map .elementor-widget iframe {
  min-height: 200px;
  height: 100%;
}
.bloc_coordonnees {
  text-align: center;
}
.bloc_coordonnees .bloc_coordonnees_icon {
  fill: #7a7978;
  max-height: 82px;
  text-align: center;
  margin-bottom: 60px !important;
}
.bloc_coordonnees .bloc_coordonnees_icon::after {
  content: "" !important;
  height: 40px;
  background-color: #7a7978;
  width: 1px;
  display: inline-block;
  margin-top: 20px;
}
.bloc_coordonnees .bloc_coordonnees_txt {
  text-align: center;
  color: #7a7978;
  font-size: 20px;
}
.bloc_coordonnees .bloc_coordonnees_txt a {
  color: #7a7978;
  background: transparent;
  font-size: 20px;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.bloc_coordonnees .bloc_coordonnees_txt a:hover {
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
.titre_contact_2 {
  font-size: 32px;
  color: #000000;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .titre_contact_2 {
    font-size: 26px;
  }
}
/************************
* Page divers
*************************/
/************************
  * Page Nos produtis
  *************************/
.bloc_produits .uc_image_box {
  height: 700px !important;
}
.bloc_produits .uc_long_content_box_holder:hover .uc_overlay {
  background-color: #3a5a40;
  opacity: 85%;
}
.bloc_produits .carousel_two_titles {
  color: #ffffff;
  text-align: left;
  line-height: 1.8em;
}
.bloc_produits .carousel_two_titles .carousel_sup_title {
  display: block;
  text-transform: uppercase;
}
.bloc_produits .carousel_two_titles .carousel_title {
  font-family: "Abril Fatface", cursive;
  display: block;
  font-size: 45px;
  text-align: left;
}
.bloc_produits .carousel_two_titles.black_title {
  color: #000000;
}
.bloc_produits .uc_description {
  font-weight: 300;
}
.bloc_produits .uc_btn {
  font-weight: 500;
  background-color: #344e41;
  text-transform: uppercase;
  font-size: 14px;
  padding: 20px 24px;
  color: #ffffff !important;
  border: 1px solid #344e41;
  border-radius: 0;
}
.bloc_produits .uc_btn:hover {
  background-color: #ffffff;
  color: #344e41 !important;
}
.bloc_produits .bloc_produits_2 .uc_image_box {
  height: 400px !important;
}
.elementor-widget-ucaddon_produits_carousel_noiise .owl-nav .owl-prev:after, .elementor-widget-ucaddon_produits_carousel_noiise .owl-nav .owl-next:after {
  content: "" !important;
  height: 62px;
  width: 62px;
  background-image: url(/wp-content/uploads/2022/11/chevron-right.svg) !important;
  background-size: 14px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
}
.elementor-widget-ucaddon_produits_carousel_noiise .owl-nav .owl-prev:after {
  transform: rotate(180deg);
}
/************************
  * Page sous-produits
  *************************/
.bloc_tendances_moment {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.bloc_tendances_moment::before {
  content: "" !important;
  background-color: rgba(211, 172, 125, 0.95);
}
.bloc_tendances_moment::after {
  content: "";
  background: white;
  height: 200px;
  z-index: 0;
  bottom: -110px;
  width: 100%;
  left: 0;
  position: absolute;
}
.bloc_tendances_moment .small_titre {
  color: #ffffff;
  text-align: left;
}
.bloc_tendances_moment .big_titre {
  font-family: "Abril Fatface", cursive;
  line-height: 1.2em;
  font-size: 45px;
  color: #ffffff;
  text-align: left;
}
.bloc_tendances_moment .big_titre::after {
  content: none !important;
}
.bloc_tendances_moment .bloc_savoir_text {
  color: #ffffff;
  font-size: 16px;
  margin-top: 1rem;
}
.bloc_tendances_moment .bloc_savoir_text p {
  margin-top: 0;
  text-align: justify;
  font-size: 15px;
}
.bloc_tendances_moment .owl-item .uc_carousel_item {
  border-radius: 20px;
}
.bloc_tendances_moment .owl-item .uc_image_carousel_content {
  background-color: rgba(52, 78, 65, 0.3);
}
.bloc_tendances_moment .owl-item .uc_image_carousel_content .uc_post_title {
  color: #ffffff;
  font-family: "Abril Fatface", cursive;
  text-align: left;
}
.bloc_tendances_moment .owl-nav {
  color: #ffffff;
}
.bloc_tendances_moment .owl-nav .owl-prev, .bloc_tendances_moment .owl-nav .owl-next {
  background-color: rgba(255, 255, 255, 0.3) !important;
}
.bloc_tendances_moment .owl-nav .owl-prev .fa-arrow-left:before, .bloc_tendances_moment .owl-nav .owl-next .fa-arrow-left:before {
  content: "";
}
.bloc_tendances_moment .owl-nav .owl-prev .fa-arrow-right:before, .bloc_tendances_moment .owl-nav .owl-next .fa-arrow-right:before {
  content: "";
}
.bloc_tendances_moment .owl-nav .owl-prev {
  left: -40px !important;
}
@media screen and (max-width: 960px) {
  .bloc_tendances_moment .owl-nav .owl-prev {
    left: 0px !important;
  }
}
.bloc_tendances_moment .owl-nav .owl-next {
  right: -40px !important;
}
@media screen and (max-width: 960px) {
  .bloc_tendances_moment .owl-nav .owl-next {
    right: 0px !important;
  }
}
@media screen and (max-width: 767px) {
  .bloc_tendances_moment .uc_image_carousel_placeholder img {
    height: 400px !important;
    object-position: top center;
  }
}
/************************
* Page 404
*************************/
#page404 {
  min-height: 75vh;
}
#page404 .titre_404 {
  margin-top: 2rem;
}
#page404 .text_404 {
  font-size: 10em;
  filter: blur(8px);
  font-weight: 800;
}
#page404 #btn_404 {
  background-color: #7a7978;
  transition: all 0.3s ease-in-out;
  padding: 5px 10px;
}
#page404 #btn_404 .elementor-button-content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
#page404 #btn_404 .elementor-button-icon {
  height: 30px;
  width: 30px;
  font-size: 30px;
  margin-right: 20px;
}
#page404 #btn_404 .elementor-button-icon svg {
  height: 100% !important;
  width: 100% !important;
}
#page404 #btn_404:hover {
  background-color: #a57a46;
}
/************************
* 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: #f1f1f1 !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: #7a7978 !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: #7a7978;
  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: #344e41;
  transition: all 0.3s ease-in-out;
}
.elementor-post-navigation .post-navigation__arrow-prev i, .elementor-post-navigation .post-navigation__arrow-next i {
  color: #7a7978;
  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: #344e41;
  transition: all 0.3s ease-in-out;
}
.elementor-pagination {
  padding: 3rem 1rem;
}
.elementor-pagination .page-numbers {
  background-color: #ffffff;
  color: #7a7978;
  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: #344e41 !important;
  color: #ffffff !important;
  transition: all 0.3s ease-in-out;
  border: 1px solid #344e41;
}
.elementor-pagination .current {
  background-color: #344e41 !important;
  color: #ffffff !important;
  border: 1px solid #344e41;
  transition: all 0.3s ease-in-out;
}
/*****************************************************************************************************************************
  * loop
******************************************************************************************************************************/
/************************
  * loop actu
*************************/
.loop_actu {
  position: relative;
}
.loop_actu .loop_img .elementor-widget-container {
  overflow: hidden;
}
.loop_actu .loop_img .elementor-widget-container img {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.loop_actu .loop_content {
  margin-top: -50px;
  height: 100%;
}
.loop_actu .loop_content > .e-con-inner {
  padding: 2rem;
  background-color: rgba(58, 90, 64, 0.9);
}
.loop_actu .loop_content > .e-con-inner .loop_date {
  font-size: 12px;
  line-height: 12px;
  color: #7a7978;
}
.loop_actu .loop_content > .e-con-inner .loop_date svg {
  fill: #7a7978;
}
.loop_actu .loop_content > .e-con-inner .loop_cat {
  font-size: 12px;
  font-weight: 400;
  background-color: #344e41;
  color: #ffffff;
  border-radius: 24px;
  padding: 4px 8px;
}
.loop_actu .loop_content > .e-con-inner .loop_titre {
  color: #000000;
  font-family: "Abril Fatface", cursive;
  font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1600 - 300))) !important;
  line-height: 1 !important;
  transition: all 0.3s ease-in-out;
}
.loop_actu .loop_content > .e-con-inner .loop_desc {
  padding: 0px 10px;
  color: #7a7978;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
.loop_actu .loop_content > .e-con-inner .btn_lirelasuite {
  color: #000000;
  text-transform: uppercase;
  font-size: 14px;
  padding: 8px 0px;
  border: 0px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.loop_actu .loop_content > .e-con-inner .btn_lirelasuite:before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0%;
  left: 0%;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.loop_actu .loop_content > .e-con-inner .btn_lirelasuite:hover {
  color: #344e41;
}
.loop_actu .loop_content > .e-con-inner .btn_lirelasuite:hover:before {
  background-color: #344e41;
}
.loop_actu:hover .loop_img img {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.loop_actu:hover .loop_titre {
  color: #344e41 !important;
  transition: all 0.3s ease-in-out;
}
/************************
  * loop tendances
*************************/
.loop_tendances {
  min-height: 250px !important;
  border-radius: 20px !important;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.loop_tendances > .e-con-inner {
  z-index: 2;
}
.loop_tendances:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.loop_tendances .loop_tendances_titre {
  position: relative;
  font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1600 - 300)));
  line-height: 1.2;
  color: #ffffff;
  font-family: "Abril Fatface", cursive;
  background-color: rgba(52, 78, 65, 0.4);
  border-radius: 0px 0px 20px 20px;
  padding: 8px;
  transition: all 0.3s ease-in-out;
}
.loop_tendances:hover:after {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
/************************
* Page article
*************************/
.ban_inte_actu .ban_bloc_meta .ban_cat_article {
  color: #ffffff;
  font-size: 16px;
  background-color: #7a7978;
  padding: 6px 0px 6px 12px;
  text-transform: uppercase;
}
.ban_inte_actu .ban_titre {
  position: relative;
  font-size: 40px;
  color: #7a7978;
  font-family: "Abril Fatface", cursive;
  margin-top: -15px;
  text-transform: uppercase;
}
.ban_inte_actu .ban_titre span {
  font-weight: 800;
}
.ban_inte_actu .ban_titre .elementor-heading-title {
  line-height: 1.2 !important;
}
.ban_inte_actu .ban_date_article {
  font-size: 14px;
  color: #707070;
  border-bottom: 1px solid #EEEEEE !important;
}
.ban_inte_actu .breadcrumbs #breadcrumbs {
  color: #7a7978;
}
.ban_inte_actu .breadcrumbs #breadcrumbs span span {
  border: 1px solid #EEEEEE;
  border-radius: 25px;
  padding: 5px 10px;
}
.ban_inte_actu .breadcrumbs a {
  color: #7a7978;
  transition: all 0.3s ease-in-out;
}
.ban_inte_actu .breadcrumbs a:hover {
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
.elementor-location-single {
  min-height: 75vh;
}
#row_totop {
  width: 50px;
  height: 50px;
  z-index: 999;
  position: fixed;
  bottom: 30px;
  right: 30px;
}
#totop {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  background-color: #a57a46;
  border-radius: 50%;
  z-index: 999;
  cursor: pointer;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
@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: #9f694f;
  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, .btn_cta_2 .elementor-button-link, .btn_cta_blanc .elementor-button-link {
  background-color: #344e41;
  border-radius: 0;
  border: 1px solid #344e41;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  min-width: 200px;
  padding: 20px 24px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.btn_cta_1 .elementor-button-link .elementor-button-icon, .btn_cta_2 .elementor-button-link .elementor-button-icon, .btn_cta_blanc .elementor-button-link .elementor-button-icon {
  margin-right: 10px;
}
.btn_cta_1 .elementor-button-link .elementor-button-icon svg, .btn_cta_2 .elementor-button-link .elementor-button-icon svg, .btn_cta_blanc .elementor-button-link .elementor-button-icon svg {
  height: 18px;
  width: 40px;
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_cta_1 .elementor-button-link:visited, .btn_cta_1 .elementor-button-link:focus, .btn_cta_2 .elementor-button-link:visited, .btn_cta_2 .elementor-button-link:focus, .btn_cta_blanc .elementor-button-link:visited, .btn_cta_blanc .elementor-button-link:focus {
  color: #ffffff;
}
.btn_cta_1 .elementor-button-link:visited svg, .btn_cta_1 .elementor-button-link:focus svg, .btn_cta_2 .elementor-button-link:visited svg, .btn_cta_2 .elementor-button-link:focus svg, .btn_cta_blanc .elementor-button-link:visited svg, .btn_cta_blanc .elementor-button-link:focus svg {
  fill: #ffffff;
}
.btn_cta_1 .elementor-button-link:hover, .btn_cta_2 .elementor-button-link:hover, .btn_cta_blanc .elementor-button-link:hover {
  background-color: transparent;
  border: 1px solid #344e41;
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
.btn_cta_1 .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg, .btn_cta_2 .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg, .btn_cta_blanc .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #344e41 !important;
  transition: all 0.3s ease-in-out;
}
.btn_cta_2 .elementor-button-link {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_cta_2 .elementor-button-link:visited, .btn_cta_2 .elementor-button-link:focus {
  color: #ffffff;
}
.btn_cta_2 .elementor-button-link:visited svg, .btn_cta_2 .elementor-button-link:focus svg {
  fill: #ffffff;
}
.btn_cta_2 .elementor-button-link:hover {
  background-color: #344e41;
  border: 1px solid #344e41;
  color: #ffffff;
}
.btn_cta_2 .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #ffffff !important;
  transition: all 0.3s ease-in-out;
}
.btn_cta_blanc .elementor-button-link {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #d3ac7d;
  transition: all 0.3s ease-in-out;
}
.btn_cta_blanc .elementor-button-link:visited, .btn_cta_blanc .elementor-button-link:focus {
  color: #d3ac7d;
}
.btn_cta_blanc .elementor-button-link:visited svg, .btn_cta_blanc .elementor-button-link:focus svg {
  fill: #d3ac7d;
}
.btn_cta_blanc .elementor-button-link:hover {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn_rdv_1 .elementor-button-link, .btn_rdv_2 .elementor-button-link {
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  border-radius: 0;
  border: 1px solid #344e41;
  background-color: #344e41;
  color: #ffffff;
  padding-left: 48px;
  text-transform: uppercase;
  max-width: 250px;
}
.btn_rdv_1 .elementor-button-link .elementor-button-content-wrapper, .btn_rdv_2 .elementor-button-link .elementor-button-content-wrapper {
  position: relative;
}
.btn_rdv_1 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon, .btn_rdv_2 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon {
  font-size: 1.8em;
  position: absolute;
  left: -38px;
  top: -7px;
  transition: all 0.3s ease-in-out;
}
.btn_rdv_1 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg, .btn_rdv_2 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  .btn_rdv_1 .elementor-button-link, .btn_rdv_2 .elementor-button-link {
    width: 100%;
    max-width: none;
  }
}
.btn_rdv_1 .elementor-button-link:visited, .btn_rdv_1 .elementor-button-link:focus, .btn_rdv_2 .elementor-button-link:visited, .btn_rdv_2 .elementor-button-link:focus {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_rdv_1 .elementor-button-link:visited svg, .btn_rdv_1 .elementor-button-link:focus svg, .btn_rdv_2 .elementor-button-link:visited svg, .btn_rdv_2 .elementor-button-link:focus svg {
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_rdv_1 .elementor-button-link:hover, .btn_rdv_2 .elementor-button-link:hover {
  background-color: transparent;
  border: 1px solid #344e41;
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
.btn_rdv_1 .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg, .btn_rdv_2 .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #344e41 !important;
  transition: all 0.3s ease-in-out;
}
.btn_rdv_2 .elementor-button-link {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #d3ac7d;
}
.btn_rdv_2 .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #d3ac7d !important;
  transition: all 0.3s ease-in-out;
}
.btn_rdv_2 .elementor-button-link:visited, .btn_rdv_2 .elementor-button-link:focus {
  color: #d3ac7d;
}
.btn_rdv_2 .elementor-button-link:visited svg, .btn_rdv_2 .elementor-button-link:focus svg {
  fill: #d3ac7d;
}
.btn_rdv_2 .elementor-button-link:hover {
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
}
.btn_rdv_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_1 .elementor-button-link, .btn_link_2 .elementor-button-link, .btn_link_blanc .elementor-button-link {
  background-color: #344e41;
  border-radius: 0;
  border: 1px solid #344e41;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  min-width: 200px;
  padding: 20px 24px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.btn_link_1 .elementor-button-link .elementor-button-icon, .btn_link_2 .elementor-button-link .elementor-button-icon, .btn_link_blanc .elementor-button-link .elementor-button-icon {
  margin-right: 10px;
}
.btn_link_1 .elementor-button-link .elementor-button-icon svg, .btn_link_2 .elementor-button-link .elementor-button-icon svg, .btn_link_blanc .elementor-button-link .elementor-button-icon svg {
  height: 18px;
  width: 40px;
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_link_1 .elementor-button-link:visited, .btn_link_1 .elementor-button-link:focus, .btn_link_2 .elementor-button-link:visited, .btn_link_2 .elementor-button-link:focus, .btn_link_blanc .elementor-button-link:visited, .btn_link_blanc .elementor-button-link:focus {
  color: #ffffff;
}
.btn_link_1 .elementor-button-link:visited svg, .btn_link_1 .elementor-button-link:focus svg, .btn_link_2 .elementor-button-link:visited svg, .btn_link_2 .elementor-button-link:focus svg, .btn_link_blanc .elementor-button-link:visited svg, .btn_link_blanc .elementor-button-link:focus svg {
  fill: #ffffff;
}
.btn_link_1 .elementor-button-link:hover, .btn_link_2 .elementor-button-link:hover, .btn_link_blanc .elementor-button-link:hover {
  background-color: transparent;
  border: 1px solid #344e41;
  color: #344e41;
  transition: all 0.3s ease-in-out;
}
.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, .btn_link_blanc .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #344e41 !important;
  transition: all 0.3s ease-in-out;
}
.btn_link_2 .elementor-button-link {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn_link_2 .elementor-button-link:visited, .btn_link_2 .elementor-button-link:focus {
  color: #ffffff;
}
.btn_link_2 .elementor-button-link:visited svg, .btn_link_2 .elementor-button-link:focus svg {
  fill: #ffffff;
}
.btn_link_2 .elementor-button-link:hover {
  background-color: #344e41;
  border: 1px solid #344e41;
  color: #ffffff;
}
.btn_link_blanc .elementor-button-link {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #d3ac7d;
  transition: all 0.3s ease-in-out;
}
.btn_link_blanc .elementor-button-link:visited, .btn_link_blanc .elementor-button-link:focus {
  color: #d3ac7d;
}
.btn_link_blanc .elementor-button-link:visited svg, .btn_link_blanc .elementor-button-link:focus svg {
  fill: #d3ac7d;
}
.btn_link_blanc .elementor-button-link:hover {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn_lirelasuite .elementor-button-link {
  background-color: transparent;
  color: #000000;
  text-transform: uppercase;
  font-size: 14px;
  padding: 0px 0px;
  border: 0px;
  font-weight: 400;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.btn_lirelasuite .elementor-button-link:before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0%;
  left: 0%;
  background-color: #000000;
  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;
  height: 35px;
}
.btn_lirelasuite .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon {
  margin-left: 10px;
}
.btn_lirelasuite .elementor-button-link .elementor-button-content-wrapper .elementor-button-icon svg {
  height: 9px;
  width: 20px;
  fill: #344e41;
  transition: all 0.3s ease-in-out;
}
.btn_lirelasuite .elementor-button-link:visited, .btn_lirelasuite .elementor-button-link:focus {
  color: #000000;
}
.btn_lirelasuite .elementor-button-link:visited svg, .btn_lirelasuite .elementor-button-link:focus svg {
  fill: #000000;
}
.btn_lirelasuite .elementor-button-link:hover {
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  border: 0px;
  color: #344e41;
}
.btn_lirelasuite .elementor-button-link:hover:before {
  width: 2%;
  background-color: #344e41;
  transition: all 0.3s ease-in-out;
}
.btn_lirelasuite .elementor-button-link:hover .elementor-button-content-wrapper .elementor-button-icon svg {
  fill: #344e41 !important;
  transition: all 0.3s ease-in-out;
}
#form_contact {
  margin: 1rem 0rem;
}
#form_contact .form_titre {
  font-size: 16px;
  font-weight: 600;
  margin: 1rem 0rem;
  color: #7a7978;
}
#form_contact input:not([type="checkbox"]):not([type="submit"]), #form_contact textarea {
  border: 1px solid #7a7978;
  width: 100%;
  padding: 10px;
  background-color: transparent;
  color: 1px solid #7a7978;
  border-radius: 0px;
}
#form_contact input:focus-visible, #form_contact textarea:focus-visible {
  outline: 2px solid #7a7978;
}
#form_contact .intl-tel-input {
  width: 100%;
}
#form_contact input[type="text"], #form_contact input[type="tel"], #form_contact input[type="email"] {
  font-weight: 400;
  border: 1px solid #7a7978;
  height: 50px;
  border-radius: 0px;
}
#form_contact input[type="email"] {
  background-color: transparent;
  border: 1px solid #7a7978;
  color: 1px solid #7a7978;
  height: 50px;
  border-radius: 0px;
}
#form_contact textarea {
  margin-top: 0.5rem;
}
#form_contact select {
  width: 100%;
  padding: 10px 2.5rem 10px 20px;
  /* accommodate with the pseudo elements for the dropdown arrow */
  border: 0;
  border-radius: 0px;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: center;
  line-height: 22px;
  background-image: url("../icons/contact-down-solid.svg");
  background-repeat: no-repeat;
  background-position: 98% 50%;
  background-size: 18px;
  width: 100%;
  color: #7a7978;
  padding-right: 2.5em;
  border: 1px solid #7a7978;
  padding-top: 5px;
  padding-bottom: 5px;
  height: 50px;
}
#form_contact .liste_checkbox .wpcf7-form-control-wrap .wpcf7-form-control {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-shrink: 3;
}
#form_contact .liste_checkbox .wpcf7-list-item label {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 4px 8px 4px 0px;
  color: #7a7978;
}
#form_contact .liste_checkbox .wpcf7-list-item label span {
  flex: 1 1;
  padding-left: 10px;
}
#form_contact .row_submit .form-column {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
}
#form_contact .row_submit .form-column p {
  margin: 0px;
}
@media screen and (max-width: 767px) {
  #form_contact .row_submit .form-column {
    flex-direction: column;
    justify-content: center;
  }
}
#form_contact .form_contact_submit_pop input[type="submit"] {
  padding: 10px 0px;
  text-align: center;
  min-width: 280px;
  background-color: transparent;
  border: 1px solid #7a7978;
  color: #7a7978;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
#form_contact .form_contact_submit_pop input[type="submit"]:hover {
  background-color: #7a7978;
  color: #ffffff;
  border: 1px solid #7a7978;
  transition: all 0.3s ease-in-out;
}
#form_contact .form_contact_submit_pop .wpcf7-spinner {
  position: absolute;
  left: 0;
  bottom: 0;
}
#form_contact .wpcf7-acceptance .wpcf7-list-item {
  margin-top: 1rem;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#form_contact .wpcf7-acceptance a {
  color: #7a7978;
  transition: all 0.3s ease-in-out;
  text-decoration: underline;
}
#form_contact .wpcf7-acceptance a:hover {
  transition: all 0.3s ease-in-out;
}
#form_contact input::-webkit-input-placeholder, #form_contact textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7a7978 !important;
  opacity: 1;
}
#form_contact input::-moz-placeholder, #form_contact textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #7a7978 !important;
  opacity: 1;
}
#form_contact input::-ms-input-placeholder, #form_contact textarea::-ms-input-placeholder {
  /* IE 10+ */
  color: #7a7978 !important;
  opacity: 1;
}
#form_contact input::-moz-placeholder, #form_contact textarea::-moz-placeholder {
  /* Firefox 18- */
  color: #7a7978 !important;
  opacity: 1;
}
#form_contact input::placeholder, #form_contact textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #7a7978 !important;
  opacity: 1;
}
#form_contact input[type="checkbox"] {
  height: 20px !important;
  width: 20px !important;
  border: 1px solid #7a7978;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50% !important;
}
#form_contact input[type="checkbox"]:checked {
  position: relative;
}
#form_contact 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_contact input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: 0px;
}
.input-hidden {
  height: 0;
  width: 0;
  overflow: hidden;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
  font-size: 14px;
  line-height: 1.2;
}
.wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.wpcf7-acceptance .wpcf7-list-item label input[type="checkbox"] {
  height: 20px !important;
  border-radius: 50% !important;
  flex: 0 1 20px;
  margin: 5px 10px;
}
.wpcf7-acceptance .wpcf7-list-item label > span {
  flex: 1 1;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .wpcf7-acceptance .wpcf7-list-item label {
    justify-content: center;
    margin-bottom: 1rem;
  }
  .wpcf7-acceptance .wpcf7-list-item label > span {
    padding-left: 0;
  }
}
.form_contact_submit_pop {
  position: relative;
}
.form_contact_submit_pop .popit {
  position: absolute;
  background-color: white;
  bottom: 0;
  transform: translateY(calc(100% + 20px)) translateX(calc(-50% - 0px));
  left: 50%;
  width: 100%;
  color: #000;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0px -4px 24px #00000020;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease;
  z-index: 99;
}
.form_contact_submit_pop .popit::before {
  content: "";
  position: absolute;
  display: inline-block;
  height: 0;
  width: 0;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #fff;
  border-left: 6px solid transparent;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
#form_contact .form_contact_submit_pop .popit {
  transform: translateY(calc(100% + 0px)) translateX(calc(-50% - 0%));
}
/************************************************************************
*   Autres styles
*---------------------------------------------------------------------------------------------------------------------*/
.wpcf7 .ajax-loader {
  position: absolute;
  right: 0px;
}
/******	 Radio - checkbox
************************************/
input[type="radio"] {
  height: 20px !important;
  width: 20px !important;
  border: 1px solid #7a7978;
  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;
}
/************************************************************************
*   Grid form
*---------------------------------------------------------------------------------------------------------------------*/
.form_row {
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .form_row {
    flex-direction: column;
  }
}
.form_row .form-column {
  display: flex;
  flex-direction: column;
  padding: 0rem 1rem;
}
@media screen and (max-width: 767px) {
  .form_row .form-column {
    padding: 0rem;
  }
}
.form_row .form-col-100 {
  width: 100%;
}
.form_row .form-col-90 {
  width: 90%;
}
@media screen and (max-width: 767px) {
  .form_row .form-col-90 {
    width: 100%;
  }
}
.form_row .form-col-80 {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .form_row .form-col-80 {
    width: 100%;
  }
}
.form_row .form-col-70 {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .form_row .form-col-70 {
    width: 100%;
  }
}
.form_row .form-col-60 {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .form_row .form-col-60 {
    width: 100%;
  }
}
.form_row .form-col-50 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .form_row .form-col-50 {
    width: 100%;
  }
}
.form_row .form-col-40 {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .form_row .form-col-40 {
    width: 100%;
  }
}
.form_row .form-col-30 {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .form_row .form-col-30 {
    width: 100%;
  }
}
.form_row .form-col-20 {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .form_row .form-col-20 {
    width: 100%;
  }
}
.form_row .form-col-33 {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .form_row .form-col-33 {
    width: 100%;
  }
}
.form_row .form-col-25 {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .form_row .form-col-25 {
    width: 100%;
  }
}
#form_contact {
  margin: 1rem 0rem;
}
#form_contact .form_titre {
  font-size: 16px;
  font-weight: 600;
  margin: 1rem 0rem;
  color: #d3ac7d;
}
#form_contact input:not([type="checkbox"]):not([type="submit"]), #form_contact textarea {
  border: 1px solid #d3ac7d;
  width: 100%;
  padding: 10px;
  background-color: transparent;
  color: 1px solid #d3ac7d;
  border-radius: 0px;
}
#form_contact input:focus-visible, #form_contact textarea:focus-visible {
  outline: 2px solid #d3ac7d;
}
#form_contact .intl-tel-input {
  width: 100%;
}
#form_contact input[type="text"], #form_contact input[type="tel"], #form_contact input[type="email"] {
  font-weight: 400;
  border: 1px solid #d3ac7d;
  height: 50px;
  border-radius: 0px;
}
#form_contact input[type="email"] {
  background-color: transparent;
  border: 1px solid #d3ac7d;
  color: 1px solid #d3ac7d;
  height: 50px;
  border-radius: 0px;
}
#form_contact textarea {
  margin-top: 0.5rem;
}
#form_contact select {
  width: 100%;
  padding: 10px 2.5rem 10px 20px;
  /* accommodate with the pseudo elements for the dropdown arrow */
  border: 0;
  border-radius: 0px;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 22px;
  background-image: url("../icons/contact-down-solid.svg");
  background-repeat: no-repeat;
  background-position: 93% 50%;
  background-size: 18px;
  width: 100%;
  color: #d3ac7d;
  padding-right: 2.5em;
  border: 1px solid #d3ac7d;
  padding-top: 5px;
  padding-bottom: 5px;
  height: 50px;
}
#form_contact .liste_checkbox .wpcf7-form-control-wrap .wpcf7-form-control {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-shrink: 3;
}
#form_contact .liste_checkbox .wpcf7-list-item label {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 4px 8px 4px 0px;
  color: #d3ac7d;
}
#form_contact .liste_checkbox .wpcf7-list-item label span {
  flex: 1 1;
  padding-left: 10px;
}
#form_contact .row_submit .form-column {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
}
#form_contact .row_submit .form-column p {
  margin: 0px;
  font-size: 14px;
  color: #000000;
}
#form_contact .row_submit .form-column p a {
  color: #344e41;
}
@media screen and (max-width: 767px) {
  #form_contact .row_submit .form-column {
    flex-direction: column;
    justify-content: center;
  }
}
#form_contact .form_contact_submit_pop input[type="submit"] {
  padding: 10px 0px;
  text-align: center;
  min-width: 280px;
  background-color: #344e41;
  border: 1px solid #344e41;
  color: #ffffff;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
#form_contact .form_contact_submit_pop input[type="submit"]:hover {
  background-color: transparent;
  color: #344e41;
  border: 1px solid #344e41;
  transition: all 0.3s ease-in-out;
}
#form_contact .form_contact_submit_pop .wpcf7-spinner {
  position: absolute;
  left: 0;
  bottom: 0;
}
#form_contact .wpcf7-acceptance .wpcf7-list-item {
  font-size: 14px;
  line-height: 1.2;
}
#form_contact .wpcf7-acceptance a {
  color: #d3ac7d;
  transition: all 0.3s ease-in-out;
  text-decoration: underline;
}
#form_contact .wpcf7-acceptance a:hover {
  transition: all 0.3s ease-in-out;
}
#form_contact input::-webkit-input-placeholder, #form_contact textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #d3ac7d !important;
  opacity: 1;
}
#form_contact input::-moz-placeholder, #form_contact textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #d3ac7d !important;
  opacity: 1;
}
#form_contact input::-ms-input-placeholder, #form_contact textarea::-ms-input-placeholder {
  /* IE 10+ */
  color: #d3ac7d !important;
  opacity: 1;
}
#form_contact input::-moz-placeholder, #form_contact textarea::-moz-placeholder {
  /* Firefox 18- */
  color: #d3ac7d !important;
  opacity: 1;
}
#form_contact input::placeholder, #form_contact textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #d3ac7d !important;
  opacity: 1;
}
#form_contact input[type="checkbox"] {
  height: 20px !important;
  width: 20px !important;
  border: 1px solid #d3ac7d;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50% !important;
}
#form_contact input[type="checkbox"]:checked {
  position: relative;
}
#form_contact 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_contact input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: 0px;
}
.input-hidden {
  height: 0;
  width: 0;
  overflow: hidden;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
  font-size: 14px;
  line-height: 1.2;
}
.wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.wpcf7-acceptance .wpcf7-list-item label input[type="checkbox"] {
  height: 20px !important;
  border-radius: 50% !important;
  flex: 0 1 20px;
  margin: 5px 10px;
}
.wpcf7-acceptance .wpcf7-list-item label > span {
  flex: 1 1;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .wpcf7-acceptance .wpcf7-list-item label {
    justify-content: center;
    margin-bottom: 1rem;
  }
  .wpcf7-acceptance .wpcf7-list-item label > span {
    padding-left: 0;
  }
}
.form_contact_submit_pop {
  position: relative;
}
.form_contact_submit_pop .popit {
  position: absolute;
  background-color: white;
  bottom: 0;
  transform: translateY(calc(100% + 20px)) translateX(calc(-50% - 0px));
  left: 50%;
  width: 100%;
  color: #000;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0px -4px 24px #00000020;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease;
  z-index: 99;
}
.form_contact_submit_pop .popit::before {
  content: "";
  position: absolute;
  display: inline-block;
  height: 0;
  width: 0;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #fff;
  border-left: 6px solid transparent;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
#form_contact .form_contact_submit_pop .popit {
  transform: translateY(calc(100% + 0px)) translateX(calc(-50% - 0%));
}
/************************************************************************
*   Autres styles
*---------------------------------------------------------------------------------------------------------------------*/
.wpcf7 .ajax-loader {
  position: absolute;
  right: 0px;
}
/******	 Radio - checkbox
************************************/
input[type="radio"] {
  height: 20px !important;
  width: 20px !important;
  border: 1px solid #d3ac7d;
  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;
}
/************************************************************************
*   Grid form
*---------------------------------------------------------------------------------------------------------------------*/
.form_row {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .form_row {
    flex-direction: column;
  }
}
.form_row .form-column {
  display: flex;
  flex-direction: column;
  padding: 0rem 1rem;
}
@media screen and (max-width: 767px) {
  .form_row .form-column {
    padding: 0rem;
  }
}
.form_row .form-col-100 {
  width: 100%;
}
.form_row .form-col-50 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .form_row .form-col-50 {
    width: 100%;
  }
}
.form_row .form-col-33 {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .form_row .form-col-33 {
    width: 100%;
  }
}
.form_row .form-col-25 {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .form_row .form-col-25 {
    width: 100%;
  }
}
.form_elementor .form-field-name {
  border: 1px solid #344e41;
  height: 50px;
  border-radius: 0px;
}
.form_elementor .elementor-field-textual {
  border: 1px solid #344e41;
  padding: 10px;
  background-color: transparent;
  color: 1px solid #7a7978;
  border-radius: 0px;
}
.form_elementor .elementor-field-label {
  color: #000000;
  font-size: 16px;
}
.form_elementor .elementor-field-type-acceptance a {
  color: #344e41;
  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 #344e41;
  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 #7a7978;
  color: #7a7978;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.form_elementor .elementor-button:hover {
  background-color: #344e41;
  color: #ffffff;
  border: 0px solid #7a7978;
  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 #7a7978;
  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;
}
/************************
* 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: 8px;
  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::marker {
  content: none !important;
}
#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.3px;
}
#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: #344e41;
  color: #ffffff;
  display: block;
  font-size: 1.2em;
  font-weight: 500;
  height: auto;
  left: 0;
  padding: 5px;
  position: absolute;
  width: auto;
  z-index: 1111;
}
/**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: #344e41;
  color: #ffffff;
  display: block;
  font-size: 1.2em;
  font-weight: 500;
  height: auto;
  left: 0;
  padding: 5px;
  position: absolute;
  width: auto;
  z-index: 1111;
}
@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: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: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  -webkit-mask-size: containt;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  left: 10px;
}
@media screen and (max-width: 767px) {
  .fa-angle-down:before {
    top: 11px;
  }
}
.gm-mobile-menu-container .fa-angle-down:before {
  top: 11px;
}
