@charset "UTF-8";
/*!
 * Copyright (c) 2021.
 *
 * @file front.scss
 * @author ENOS
 * @site https://www.enos5.com
 * @date 2022-01-24 at 11:55:50
 */
button.ico-loupe, button.ico-loupe-pseudo:after, button.ico-loupe-masked, button.ico-loupe-masked-pseudo:after, .bouton.ico-loupe, .bouton.ico-loupe-pseudo:after, .bouton.ico-loupe-masked, .bouton.ico-loupe-masked-pseudo:after, .button.ico-loupe, .button.ico-loupe-pseudo:after, .button.ico-loupe-masked, .button.ico-loupe-masked-pseudo:after, .ico-loupe, .ico-loupe-pseudo:after, .ico-loupe-masked, .ico-loupe-masked-pseudo:after {
  color: inherit;
  display: inline-block;
  border-width: 0px;
  appearance: none;
  padding: 0px;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 0px;
  margin: 0px;
  outline: none;
  -webkit-transition: color 0.4s ease, background-color 0.4s ease;
  -ms-transition: color 0.4s ease, background-color 0.4s ease;
  transition: color 0.4s ease, background-color 0.4s ease;
}

.ico-loupe {
  background-image: url("/images/loupe.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.ico-loupe-pseudo {
  display: inline-block;
}
.ico-loupe-pseudo :after {
  content: "";
  background-image: url("/images/loupe.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.ico-loupe-masked {
  background-color: currentColor;
  -webkit-mask-image: url("/images/loupe.svg");
  mask: url("/images/loupe.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: center center;
  mask-repeat: no-repeat;
}

.ico-loupe-masked-pseudo {
  display: inline-block;
}
.ico-loupe-masked-pseudo :after {
  content: "";
  background-color: currentColor;
  -webkit-mask-image: url("/images/loupe.svg");
  mask: url("/images/loupe.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: center center;
  mask-repeat: no-repeat;
}

:root {
  --step--2: clamp(0.79rem, 0.87rem + -0.38vw, 0.56rem);
  --step--1: clamp(0.89rem, 0.94rem + -0.23vw, 0.75rem);
  --step-0: clamp(1.00rem, 1.00rem + 0.00vw, 1.00rem);
  --step-1: clamp(1.13rem, 1.06rem + 0.35vw, 1.33rem);
  --step-2: clamp(1.27rem, 1.10rem + 0.85vw, 1.78rem);
  --step-3: clamp(1.42rem, 1.11rem + 1.58vw, 2.37rem);
  --step-4: clamp(1.60rem, 1.08rem + 2.59vw, 3.16rem);
  --step-5: clamp(1.80rem, 1.00rem + 4.01vw, 4.21rem);
  --step-6: clamp(2.03rem, 0.83rem + 5.97vw, 5.61rem);
  --colGap: 20px;
  --sectionGap: 20px;
  --rowGap: 20px;
  --spacingBgTop:0px;
  --spacingBgBottom:0px;
  --paddingTop:0px;
  --paddingBottom:0px;
}

* {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

html, body {
  font-size: 16px;
  /* line-height:1em; */
  line-height: 1.2em;
  margin: 0px;
  padding: 0px;
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

iframe, img {
  border: 0;
}

label {
  cursor: pointer;
}

button, a, .bouton {
  cursor: pointer;
  text-decoration: none;
  transition: color 0.4s ease;
}

.animate-on-screen {
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out !important;
}

.animate-on-screen:not(.on-screen) {
  transform: translateY(-80px);
  opacity: 0;
  transform-origin: top;
  pointer-events: none;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out !important;
}

.animate-on-screen.noAnimation {
  transform: none;
  opacity: 1;
}

h1, .titre-h1, h2, .titre-h2, h3, .titre-h3, h4, .titre-h4, h5, .titre-h5, h6, .titre-h6 {
  margin: 0px;
  line-height: 1.2em;
  font-weight: bold;
}
h1:not(:last-child), .titre-h1:not(:last-child), h2:not(:last-child), .titre-h2:not(:last-child), h3:not(:last-child), .titre-h3:not(:last-child), h4:not(:last-child), .titre-h4:not(:last-child), h5:not(:last-child), .titre-h5:not(:last-child), h6:not(:last-child), .titre-h6:not(:last-child) {
  margin-bottom: 0.5em;
}

h1, .titre-h1 {
  font-size: var(--step-6);
}

h2, .titre-h2 {
  font-size: var(--step-4);
}

h3, .titre-h3 {
  font-size: var(--step-4);
}

h4, .titre-h4 {
  font-size: var(--step-3);
}

h5, .titre-h5 {
  font-size: var(--step-2);
}

h6, .titre-h6 {
  font-size: var(--step-1);
}

body:not(.page-accueil):not(.page-produits) .section-titre-page {
  background-color: #000000;
  width: calc(50% - 20px);
  margin-right: 20px;
  padding-inline: 40px 40px !important;
  padding: 80px 0 40px 54px;
  margin-left: 10px;
  min-width: 240px !important;
}
body:not(.page-accueil):not(.page-produits) .section-titre-page .titre-page h1 {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  position: relative;
  border-top: 2px solid;
  padding-top: 10px;
  font-weight: 800;
  display: inline-block;
  color: #ffffff;
  border-top-color: #ffffff;
}

.margeficheP {
  padding-bottom: 237px;
}
.margeficheP .sous-titre-bloc {
  letter-spacing: 2.25px !important;
  font-size: 30px !important;
  line-height: 28px !important;
}

.grille .colTitres {
  grid-column-end: span 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.grille .colTitres .titreContenu {
  letter-spacing: 2.25px;
  color: #000000;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  width: auto;
  margin-bottom: 30px;
  cursor: pointer;
  border-bottom: solid 2px transparent;
  transition: all 0.4s ease;
  font-size: 15px;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  .grille .colTitres .titreContenu:hover {
    color: #B67238;
    transition: all 0.4s ease;
  }
}
.grille .colTitres .titreContenu.active {
  border-bottom: solid 2px #B67238;
}
.grille .colTitres .titreContenu:first-of-type {
  padding: 0 0 10px 0;
}
.grille .colTitres .titreContenu:not(:first-of-type) {
  padding: 30px 0 10px 0;
}
.grille .colContenu {
  grid-column-end: span 8;
}
.grille .colContenu > .contenuDetailsProduit:not(:first-of-type) {
  display: none;
}

.titre-bloc.titreTheme, .titre-bloc + .sous-titre-bloc {
  color: #B67238;
  line-height: 60px;
  letter-spacing: 0px;
  font-weight: 200;
}
.titre-bloc.titreNoir, .titre-bloc.titreBlanc {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  position: relative;
  border-top: 2px solid;
  padding-top: 10px;
  margin-bottom: 40px;
  font-weight: 800;
  display: inline-block;
}
.titre-bloc.titreNoir {
  color: #000000;
  border-top-color: #000000;
}
.titre-bloc.titreBlanc {
  color: #ffffff;
  border-top-color: #ffffff;
}

/* .sous-titre-bloc{
  color: #B67238;
  line-height: 60px;
  letter-spacing: 0px;
  font-weight: 200;
} */
.pannelRecherche {
  height: 100%;
}
.pannelRecherche > div {
  display: flex;
  height: 100%;
}
.pannelRecherche > div form {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: solid 1px #ffffff;
  width: 50%;
  margin: auto;
  padding-bottom: 15px;
}
.pannelRecherche > div form input[type=text] {
  background-color: #000000;
  color: #ffffff;
  border: 0;
  padding: 0;
  height: 1.5rem;
}
.pannelRecherche > div form input[type=text]::placeholder {
  color: #ffffff;
}
.pannelRecherche > div form input[type=text]::-webkit-input-placeholder {
  color: #ffffff;
}
.pannelRecherche > div form input[type=text]::-moz-placeholder {
  opacity: 0.99;
  color: #ffffff;
}
.pannelRecherche > div form input[type=text]:-ms-input-placeholder {
  color: #ffffff;
}
.pannelRecherche > div form input[type=submit] {
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.pannelRecherche > div form input[type=submit]:hover {
  background-color: #B67238;
}

header > div:not(.zoneFermer) {
  grid-row-start: 1;
}
header .pannelRecherche, header.section > .wrap.pannelRecherche {
  z-index: 20;
}
header .pannelRecherche {
  overflow: hidden;
  transform: translateY(-100%);
  transition: transform 0.2s ease-in-out;
  transition-delay: 0.2s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
header .pannelRecherche > div {
  transform: translateY(-100%);
  transition: transform 0.2s ease-in-out;
  transition-delay: 0s;
}
header .pannelRecherche > div:before {
  content: "";
  width: 100%;
  height: 200%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  background: linear-gradient(to bottom, black, black, transparent);
}
header .zoneFermer {
  height: 100%;
  width: 100%;
  z-index: 5;
  transform: translateY(-100%);
  transition: transform 0.2s ease-in-out;
  transition-delay: 0s;
}
header .zoneFermer > div {
  height: 100%;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}
header .zoneFermer > div a.fermer {
  background-color: #ffffff;
  margin-right: 88px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: currentColor;
  transition: all 0.4s ease;
  -webkit-mask-image: url("/images/btnFermer.svg");
  mask: url("/images/btnFermer.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: center center;
  mask-repeat: no-repeat;
}
header .zoneFermer > div a.fermer:hover {
  background-color: #B67238;
}
header.zone-recherche-ouverte .pannelRecherche {
  transform: translateY(0%);
  transition-delay: 0s;
}
header.zone-recherche-ouverte .pannelRecherche > div {
  transform: translateY(0%);
  transition-delay: 0.2s;
}
header.zone-recherche-ouverte .zoneFermer {
  transform: translateY(0px);
  transition-delay: 0.2s;
}

p, ul, ol {
  margin: 0px;
}
p:not(:last-child), ul:not(:last-child), ol:not(:last-child) {
  margin-bottom: 1em;
}

ul, ol {
  padding: 0px;
  list-style-type: none;
  font-weight: 500;
  line-height: 1em;
}
ul li, ol li {
  position: relative;
  padding-left: 20px;
}
ul li:not(:last-child), ol li:not(:last-child) {
  margin-bottom: 0.6em;
}
ul li:before, ol li:before {
  content: "–";
  position: absolute;
  top: 0px;
  left: 0px;
}

ol {
  counter-reset: section;
}
ol li:before {
  counter-increment: section;
  content: counters(section, ".") ". ";
}

input, select, textarea, .btn-action {
  outline: none;
  /*padding: 6px 10px;*/
  padding: 6px 0px;
  /*border:1px solid $couleurAccent;*/
  /*border-radius: 1px;*/
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  height: calc(1.5rem + 12px);
  /*display:inline-block;*/
  color: #000000;
  border: 0;
  border-bottom: solid 1px #B67238;
}
input:not([type=radio]):not([type=checkbox]), select:not([type=radio]):not([type=checkbox]), textarea:not([type=radio]):not([type=checkbox]), .btn-action:not([type=radio]):not([type=checkbox]) {
  width: 100%;
}
input[type=radio], input[type=checkbox], select[type=radio], select[type=checkbox], textarea[type=radio], textarea[type=checkbox], .btn-action[type=radio], .btn-action[type=checkbox] {
  padding: 0px;
}
input::placeholder, select::placeholder, textarea::placeholder, .btn-action::placeholder {
  color: #000000;
}
input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, .btn-action::-webkit-input-placeholder {
  color: #000000;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder, .btn-action::-moz-placeholder {
  opacity: 0.99;
  color: #000000;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder, .btn-action:-ms-input-placeholder {
  color: #000000;
}

textarea {
  height: calc(10.5rem + 12px);
  resize: none;
  vertical-align: top;
  margin-top: 12px;
  padding: 6px 10px;
  border: solid 1px #B67238;
}

select {
  background-image: url(../images/selectDropdown2.svg);
  /* background-image: url(../images/select.svg); */
  background-size: 1.5em;
  background-position: center right;
  background-repeat: no-repeat;
}

.btn-action {
  text-align: center;
  background-color: #FFFFFF;
  color: #0F273A;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  -ms-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  .btn-action:hover {
    color: #FFFFFF;
    background-color: #0F273A;
  }
}

.btn, .bouton, button {
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  color: black;
  font-size: 12px;
  letter-spacing: 1.8px;
  line-height: 18px;
  padding: 18px 38px;
  background: transparent;
  font-weight: bold;
  border: 1px solid #B67238;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.2s ease, box-shadow 0.4s ease;
}
.dark-bg .btn, .dark-bg .bouton, .dark-bg button {
  color: white;
}
.btn:hover, .bouton:hover, button:hover {
  background: #B67238;
  box-shadow: 0px 0px 10px 0px rgba(47, 47, 47, 0.4);
  color: white;
}
.btn:active, .bouton:active, button:active {
  transform: scale(0.95);
}

.admin-preview {
  border-width: 2px;
  border-style: dashed;
  border-color: rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  position: relative;
}
.admin-preview::after {
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(-45deg, #AEAEAD 0%, #AEAEAD 25%, white 25%, white 50%, #AEAEAD 50%, #AEAEAD 75%, white 75%, white 100%);
  background-image: -webkit-linear-gradient(-45deg, #AEAEAD 0%, #AEAEAD 25%, white 25%, white 50%, #AEAEAD 50%, #AEAEAD 75%, white 75%, white 100%);
  background-size: 20px 20px;
  z-index: 10;
  opacity: 0.3;
  pointer-events: none;
}

.slick-slider {
  overflow: hidden;
}
.slick-slider .slick-track {
  display: flex;
}
.slick-slider .slick-dots {
  display: flex;
  column-gap: 5px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.slick-slider .slick-dots > li {
  margin: 0px;
  padding: 0px;
}
.slick-slider .slick-dots > li:before, .slick-slider .slick-dots > li:after {
  display: none;
}
.slick-slider .slick-dots > li button {
  font-size: 0px;
  line-height: 0px;
  width: 20px;
  height: 20px;
  background: #0F273A;
  border: 5px solid #0F273A;
  padding: 0px;
  margin: 0px;
  border-radius: 50%;
  transition: background 0.4s ease;
}
.slick-slider .slick-dots > li.slick-active button {
  background: white;
}

.contenu.esp_debut_petit {
  padding-top: 20px;
}

.contenu.esp_debut_moyen {
  padding-top: 40px;
}

.contenu.esp_debut_grand {
  padding-top: 80px;
}

.contenu.esp_fin_petit {
  padding-bottom: 20px;
}

.contenu.esp_fin_moyen {
  padding-bottom: 40px;
}

.contenu.esp_fin_grand {
  padding-bottom: 80px;
}

.contenu.esp_fin_tgrand {
  padding-bottom: 160px;
}

.contenu > .section {
  padding-top: var(--paddingTop);
  padding-bottom: var(--paddingBottom);
}
.contenu > .section:not(:last-child).margin_1 {
  margin-bottom: 0px;
}
.contenu > .section:not(:last-child).margin_2 {
  margin-bottom: 100px;
}
.contenu > .section:not(:last-child).margin_3 {
  margin-bottom: 135px;
}
.contenu > .section:not(:last-child).margin_4 {
  margin-bottom: 155px;
}
.contenu .paragraphe.paragraphe-blanc {
  color: white;
}
.contenu .paragraphe.paragraphe-blanc a {
  color: inherit;
}

.logo-fier-can header + .entete-image:before {
  content: "";
  background-image: url(/images/icons/fier-fabriquant-canadien-fr.svg);
  background-size: contain;
  width: 100px;
  height: 100px;
  position: absolute;
  grid-column: 2/2;
  right: 30px;
  top: 30px;
  z-index: 5;
  background-repeat: no-repeat;
}

.logo-fier-can header.sans-images + .entete-image:before {
  filter: invert(1);
}

[lang=en] .logo-fier-can header + .entete-image:before {
  background-image: url(/images/icons/proudly-made-in-canada-en.svg);
}

@media screen and (max-width: 960px) {
  .logo-fier-can header + .entete-image:before {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 760px) and (min-width: 601px) {
  .logo-fier-can header + .section.entete-image > .wrap.flex {
    padding-right: 120px;
  }
}
@media screen and (min-width: 1281px) {
  header .zoneFermer {
    position: absolute;
  }
}
@media screen and (min-width: 961px) {
  .section {
    width: 100%;
    display: grid;
    grid-template-columns: calc((100% - 1400px) / 2) minmax(0, 1fr) calc((100% - 1400px) / 2);
    grid-row-gap: var(--rowGap);
    grid-column-gap: var(--sectionGap);
  }
  .section .wrap {
    max-width: unset;
    grid-column-start: 2;
    grid-column-end: span 1;
  }
  .section > .full, .section > .paragraphe0, .section > .d-full, .section > .fullw {
    grid-column-start: 1;
    grid-column-end: span 3;
  }
  .formulaire-auto-largeur1 {
    width: calc(100% - 20px);
  }
  .formulaire-auto-largeur2 {
    width: calc(50% - 20px);
  }
  .formulaire-auto-largeur3 {
    width: calc(33.3333333333% - 20px);
  }
  .formulaire-auto-largeur4 {
    width: calc(25% - 20px);
  }
  .formulaire-auto-largeur5 {
    width: calc(20% - 20px);
  }
  .formulaire-auto-largeur1,
  .formulaire-auto-largeur2,
  .formulaire-auto-largeur3,
  .formulaire-auto-largeur4,
  .formulaire-auto-largeur5 {
    margin-left: 10px;
    margin-right: 10px;
  }
  header .zoneFermer {
    width: auto;
    right: 0;
    top: 0;
  }
}
@media screen and (max-width: 1281px) {
  .contenu > .section:not(:last-child).margin_4 {
    margin-bottom: 60px;
  }
  .margeficheP .grille {
    row-gap: 20px;
  }
  .grille .colTitres {
    grid-column-end: span 12;
  }
  .grille .colTitres .titreContenu {
    margin-bottom: 10px;
  }
  .grille .colTitres .titreContenu:first-of-type {
    padding: 10px;
    /* padding: 0 0 10px 0; */
  }
  .grille .colTitres .titreContenu:not(:first-of-type) {
    /* padding: 10px 0 10px 0; */
    padding: 10px;
  }
  .grille .colContenu {
    grid-column-end: span 12;
  }
}
.message {
  border-left: solid 2px #B67238;
  padding: 10px 15px;
  margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
  .contenu > .section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-row-gap: var(--rowGap);
    grid-column-gap: var(--sectionGap);
  }
  .titre-bloc.titreNoir, .titre-bloc.titreBlanc {
    margin-bottom: 40px;
  }
  .titre-bloc.titreTheme, .titre-bloc + .sous-titre-bloc {
    line-height: 54px;
    font-size: 45px;
  }
}
@media screen and (max-width: 601px) {
  body:not(.page-accueil):not(.page-produits) .section-titre-page {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 481px) {
  .grille .colTitres .titreContenu:first-of-type {
    padding: 10px;
    padding-right: 34px;
    /* padding: 0 0 10px 0; */
  }
  .grille .colTitres .titreContenu:not(:first-of-type) {
    /* padding: 10px 0 10px 0; */
    padding: 10px;
    padding-right: 34px;
  }
}
header {
  background: black;
  height: 137px;
}
header + .entete-image {
  margin-top: 137px;
}
@media screen and (max-width: 1280px) {
  header {
    height: 137px;
  }
  header + .entete-image {
    margin-top: 137px;
  }
}
@media screen and (max-width: 960px) {
  header {
    height: 120px;
  }
  header + .entete-image {
    margin-top: 120px;
  }
}
@media screen and (max-width: 600px) {
  header {
    height: 86px;
  }
  header + .entete-image {
    margin-top: 86px;
  }
}

.entete-image {
  display: grid;
}
.entete-image .main-slider {
  width: 100%;
  clip: auto;
  -webkit-mask-image: linear-gradient(to top, #ffffff 0%, #ffffff 100%);
  mask-image: linear-gradient(to top, #ffffff 0%, #ffffff 100%);
  overflow: hidden;
  grid-column-end: -1;
}
.entete-image .main-slider .slick-list, .entete-image .main-slider .slick-track, .entete-image .main-slider .slick-slide > div, .entete-image .main-slider .entete-slider-slide {
  height: 100% !important;
}
.entete-image .main-slider .slick-slide, .entete-image .main-slider .slick-slide .entete-slider-slide {
  height: 100% !important;
}
.entete-image .main-slider.fixed .slick-list, .entete-image .main-slider.fixed > .entete-slider-slide {
  max-height: 100%;
  position: fixed;
  width: 100%;
}
.entete-image .main-slider .entete-slide-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.entete-image .main-slider {
  grid-row-start: 1;
  grid-column-start: 1;
  align-self: stretch;
}
.entete-image .main-slider .entete-slider {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.entete-image .main-slider .entete-slider video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.liens-menu {
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
           supported by Chrome, Edge, Opera and Firefox */
  /* a, a:visited {
    color: inherit;
  } */
}
.liens-menu .lien {
  display: inline-block;
  text-decoration: none;
  letter-spacing: 1.95px;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  .liens-menu .lien:hover {
    color: #B67238;
  }
}
.liens-menu .lien-avec-sousmenu:not(.ouvert) > .lien:not(.always-opened) + .sous-menu {
  display: none;
}
.liens-menu .lien.always-opened:not([href]) {
  cursor: default;
}
.liens-menu .lien-avec-sousmenu {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.liens-menu .lien-avec-sousmenu > .lien:not(.always-opened) {
  padding-right: 32px;
  position: relative;
}
.liens-menu .lien-avec-sousmenu > .lien:not(.always-opened):after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 9px;
  height: 9px;
  -webkit-mask-image: url("/images/icons/triangle.svg");
  mask: url("/images/icons/triangle.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: center center;
  mask-repeat: no-repeat;
  rotate: 90deg;
  background-color: currentColor;
  -webkit-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
}
.liens-menu .lien-avec-sousmenu.ouvert > .lien:not(.always-opened):after {
  transform: rotate(180deg);
}
.liens-menu .cacher-titre-sniveau + .sous-menu > .titre-menu-parent {
  display: none;
}

a.lien.cacher-titre-sniveau.underlined.always-opened.lien-sans-sousmenu {
  margin-bottom: 15px;
}

.liste-menus {
  font-size: 13px;
  line-height: 1.4em;
  /* font-weight: bold; */
  font-weight: 500;
}
.liste-menus .menu-header .liens-menu {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  column-gap: 1rem;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
           supported by Chrome, Edge, Opera and Firefox */
}
.liste-menus .menu-header .liens-menu .lien:not(.always-opened), .liste-menus .menu-header .liens-menu .lien[href].always-opened {
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  .liste-menus .menu-header .liens-menu .lien:not(.always-opened):hover, .liste-menus .menu-header .liens-menu .lien[href].always-opened:hover {
    color: #B67238;
    -webkit-transition: color 0.4s ease;
    -ms-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
}
.liste-menus .menu-header .liens-menu .lien:not([href]).always-opened {
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  .liste-menus .menu-header .liens-menu .lien:not([href]).always-opened:hover {
    color: inherit;
  }
}
.liste-menus .menu-header .liens-menu .lien:not(.always-opened).underlined, .liste-menus .menu-header .liens-menu .lien[href].always-opened.underlined {
  padding-top: 2px;
  padding-bottom: 2px;
  position: relative;
  letter-spacing: 2.25px;
  /* &:before {
    content: "";
    background-color: $couleurTheme;
    height: 1px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0px;
    @include transition(width 0.4s ease-in-out);
  } */
  /*@media(hover: none) {
    &:active { @content; }
  }*/
  /* &.actif:before {
    width: calc(100% - 20px);
  } */
  /* @include hover(){
    color: inherit;

    &:before{
      width: calc(100% - 20px);
    }
  } */
}
.liste-menus .menu-header .liens-menu .lien:not(.always-opened).underlined span, .liste-menus .menu-header .liens-menu .lien[href].always-opened.underlined span {
  position: relative;
  line-height: 18px;
}
.liste-menus .menu-header .liens-menu .lien:not(.always-opened).underlined span:before, .liste-menus .menu-header .liens-menu .lien[href].always-opened.underlined span:before {
  content: "";
  background-color: #B67238;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0px;
  -webkit-transition: width 0.4s ease-in-out;
  -ms-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .liste-menus .menu-header .liens-menu .lien:not(.always-opened).underlined:hover, .liste-menus .menu-header .liens-menu .lien[href].always-opened.underlined:hover {
    color: inherit;
  }
  .liste-menus .menu-header .liens-menu .lien:not(.always-opened).underlined:hover span:before, .liste-menus .menu-header .liens-menu .lien[href].always-opened.underlined:hover span:before {
    width: 100%;
    /* width: calc(100% - 20px); */
  }
}
.liste-menus .menu-header .liens-menu .lien:not(.always-opened).underlined.lien-sans-sousmenu:hover span:before, .liste-menus .menu-header .liens-menu .lien[href].always-opened.underlined.lien-sans-sousmenu:hover span:before {
  width: 100%;
}
.liste-menus .menu-header .liens-menu.menu-niveau-0 {
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  /*> .lien-avec-sousmenu:hover {
    > .sous-menu {
      display:block;
    }
  }*/
}
.liste-menus .menu-header .liens-menu.menu-niveau-0 .sous-menu {
  overflow-y: hidden;
}
.liste-menus .menu-header .liens-menu.menu-niveau-0 .lien-avec-sousmenu.ouvert > .lien:not(.cacher-titre-sniveau) {
  color: #B67238;
}
.liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu > .sous-menu {
  overflow-y: auto;
  max-height: calc(100vh - 100%);
  overflow-x: hidden;
  background: black;
  color: white;
}
.liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu > .lien {
  padding-right: 20px;
}
.liste-menus .menu-header .liens-menu .sous-menu {
  /*background: $couleurMenu;
  color: white;*/
  position: absolute;
  top: 100%;
  left: 0px;
  width: max-content;
  max-width: 300px;
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 {
  /*.titre-menu-parent {
    padding-inline: $addedPadding;
  }*/
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 > :not(:last-child) {
  border-bottom: 1px solid black;
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 .lien {
  padding-left: 0px;
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 .lien-avec-sousmenu:not(.ouvert) > .lien:not(.always-opened) + .sous-menu {
  padding-block: 0px;
  height: 0px;
  display: block;
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 .lien-avec-sousmenu {
  flex-direction: column;
  align-items: stretch;
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 .lien-avec-sousmenu > .lien:not(.always-opened) {
  padding-right: calc(32px + 2rem);
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 .lien-avec-sousmenu > .lien:not(.always-opened):hover:before, .liste-menus .menu-header .liens-menu .menu-niveau-1 .lien-avec-sousmenu > .lien:not(.always-opened).actif:before {
  width: calc(100% - 32px);
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 .lien-avec-sousmenu > .lien:not(.always-opened):after {
  right: 1rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 .sous-menu {
  /*background:white;
  color:$couleurMenu;*/
  min-width: 100%;
  position: initial;
}
.liste-menus .menu-header .liens-menu .menu-niveau-2 {
  /*.sous-menu {
    background-color: #E8E8E8;
    color: #363636;
  }*/
}
.liste-menus .menu-header .liens-menu .menu-niveau-2 .lien {
  padding-left: 0rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-2 .titre-menu-parent {
  padding-inline: 0rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-3 .lien {
  position: relative;
}
.liste-menus .menu-header .liens-menu .menu-niveau-3 .lien:before {
  content: "";
  background-color: black;
  height: 2px;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}
.liste-menus .menu-header .liens-menu .menu-niveau-3 .sous-menu {
  background-color: "black";
  color: "white";
}
.liste-menus .menu-header .liens-menu .menu-niveau-3 .lien:before {
  display: block;
}
.liste-menus .menu-header .liens-menu .menu-niveau-3 .lien {
  padding-left: 0.75rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-3 .lien:before {
  width: 0rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-3 .titre-menu-parent {
  padding-left: 0.75rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-4 .sous-menu {
  background-color: "black";
  color: "white";
}
.liste-menus .menu-header .liens-menu .menu-niveau-4 .lien:before {
  display: none;
}
.liste-menus .menu-header .liens-menu .menu-niveau-4 .lien {
  padding-left: 1rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-4 .lien:before {
  width: 0.25rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-4 .titre-menu-parent {
  padding-left: 1rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-5 .sous-menu {
  background-color: "black";
  color: "white";
}
.liste-menus .menu-header .liens-menu .menu-niveau-5 .lien:before {
  display: block;
}
.liste-menus .menu-header .liens-menu .menu-niveau-5 .lien {
  padding-left: 1.25rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-5 .lien:before {
  width: 0.5rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-5 .titre-menu-parent {
  padding-left: 1.25rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-6 .sous-menu {
  background-color: "black";
  color: "white";
}
.liste-menus .menu-header .liens-menu .menu-niveau-6 .lien:before {
  display: none;
}
.liste-menus .menu-header .liens-menu .menu-niveau-6 .lien {
  padding-left: 1.5rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-6 .lien:before {
  width: 0.75rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-6 .titre-menu-parent {
  padding-left: 1.5rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-7 .sous-menu {
  background-color: "black";
  color: "white";
}
.liste-menus .menu-header .liens-menu .menu-niveau-7 .lien:before {
  display: block;
}
.liste-menus .menu-header .liens-menu .menu-niveau-7 .lien {
  padding-left: 1.75rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-7 .lien:before {
  width: 1rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-7 .titre-menu-parent {
  padding-left: 1.75rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-8 .sous-menu {
  background-color: "black";
  color: "white";
}
.liste-menus .menu-header .liens-menu .menu-niveau-8 .lien:before {
  display: none;
}
.liste-menus .menu-header .liens-menu .menu-niveau-8 .lien {
  padding-left: 2rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-8 .lien:before {
  width: 1.25rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-8 .titre-menu-parent {
  padding-left: 2rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-9 .sous-menu {
  background-color: "black";
  color: "white";
}
.liste-menus .menu-header .liens-menu .menu-niveau-9 .lien:before {
  display: block;
}
.liste-menus .menu-header .liens-menu .menu-niveau-9 .lien {
  padding-left: 2.25rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-9 .lien:before {
  width: 1.5rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-9 .titre-menu-parent {
  padding-left: 2.25rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-10 .sous-menu {
  background-color: "black";
  color: "white";
}
.liste-menus .menu-header .liens-menu .menu-niveau-10 .lien:before {
  display: none;
}
.liste-menus .menu-header .liens-menu .menu-niveau-10 .lien {
  padding-left: 2.5rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-10 .lien:before {
  width: 1.75rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-10 .titre-menu-parent {
  padding-left: 2.5rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-11 .sous-menu {
  background-color: "black";
  color: "white";
}
.liste-menus .menu-header .liens-menu .menu-niveau-11 .lien:before {
  display: block;
}
.liste-menus .menu-header .liens-menu .menu-niveau-11 .lien {
  padding-left: 2.75rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-11 .lien:before {
  width: 2rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-11 .titre-menu-parent {
  padding-left: 2.75rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-12 .sous-menu {
  background-color: "black";
  color: "white";
}
.liste-menus .menu-header .liens-menu .menu-niveau-12 .lien:before {
  display: none;
}
.liste-menus .menu-header .liens-menu .menu-niveau-12 .lien {
  padding-left: 3rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-12 .lien:before {
  width: 2.25rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-12 .titre-menu-parent {
  padding-left: 3rem;
}
.liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu > .sous-menu {
  position: fixed;
  display: block;
  top: 137px;
  left: 0px;
  right: 0px;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  transform: translateX(-100%);
  -webkit-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  /* padding: 40px calc((max(0px, 100% - ($largeurWrap - ($hSpacing * 2))) / 2) + ($hSpacing / 2)); */
  padding: 40px calc(max(0px, 100% - 1360px) / 2 + 10px) 80px;
  /*@each $m in $medias {

  }*/
}
.liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu.ouvert > .lien:not(.always-opened) + .sous-menu {
  transform: translateX(0%);
}
@media screen and (max-width: 1280px) {
  .liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu .sous-menu {
    top: 137px;
  }
}
@media screen and (max-width: 960px) {
  .liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu .sous-menu {
    top: 120px;
  }
}
@media screen and (max-width: 600px) {
  .liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu .sous-menu {
    top: 86px;
  }
}
@media screen and (max-width: 480px) {
  .liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu .sous-menu {
    top: 86px;
  }
}
.liste-menus .menu-liste.type-lg {
  text-transform: uppercase;
  display: inline-block;
}
.liste-menus .menu-liste.type-lg .lien-lg {
  cursor: pointer;
  color: inherit;
  letter-spacing: 1.95px;
  -webkit-transition: color 0.4s ease;
  -ms-transition: color 0.4s ease;
  transition: color 0.4s ease;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  .liste-menus .menu-liste.type-lg .lien-lg:hover {
    color: #B67238;
  }
}
.liste-menus .menu-liste.type-lg a.lien-lg {
  color: inherit;
  position: relative;
}
.liste-menus .menu-liste.type-lg .select-lg-menu {
  position: relative;
  transform-style: preserve-3d;
  perspective: 200px;
}
.liste-menus .menu-liste.type-lg .select-lg-menu > .lien-lg {
  position: relative;
  padding-right: 20px;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
           supported by Chrome, Edge, Opera and Firefox */
}
.liste-menus .menu-liste.type-lg .select-lg-menu > .lien-lg:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  margin: auto;
  -webkit-mask-image: url("/images/icons/fleche-bas.svg");
  mask: url("/images/icons/fleche-bas.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: center center;
  mask-repeat: no-repeat;
  background-color: currentColor;
  -webkit-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  width: 9px;
  height: 9px;
  rotate: 90deg;
}
.liste-menus .menu-liste.type-lg .select-lg-menu > .lien-lg.ouvert + .dropdown-lg {
  transform: scaleY(1);
}
.liste-menus .menu-liste.type-lg .select-lg-menu .dropdown-lg {
  position: absolute;
  top: calc(100% + 10px);
  right: 0px;
  min-width: max-content;
  display: flex;
  padding: 10px 20px;
  border: none;
  flex-direction: column;
  row-gap: 6px;
  background: black;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.2s ease;
}
.liste-menus .menu-liste.type-page:not(:last-child) {
  margin-bottom: 70px;
}
.liste-menus .menu-liste.type-page .liens-menu {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  column-gap: 1rem;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
           supported by Chrome, Edge, Opera and Firefox */
  row-gap: 30px;
}
.liste-menus .menu-liste.type-page .liens-menu.menu-niveau-1 {
  row-gap: 10px;
  padding-left: 32px;
  padding-block: 20px;
}
.liste-menus .menu-liste.type-page .liens-menu.menu-niveau-2 {
  padding-left: 10px;
  padding-top: 10px;
  row-gap: 10px;
  text-transform: initial;
}
.liste-menus .menu-liste.type-page .liens-menu .lien:hover {
  color: #F6C93B;
}
.liste-menus .menu-liste.type-page .liens-menu .lien-avec-sousmenu {
  align-items: flex-start;
  flex-direction: column;
}
.liste-menus .menu-liste.type-page .liens-menu .lien-avec-sousmenu .sous-menu {
  display: block;
  max-height: 0px;
  overflow: hidden;
  padding-block: 0px;
  transition: max-height 0.4s ease;
}
.liste-menus .menu-liste.type-page .liens-menu .lien-avec-sousmenu.ouvert > .sous-menu {
  max-height: 100vh;
}
.liste-menus .menu-liste.type-page .liens-menu .lien-avec-sousmenu > .lien {
  padding-right: 0px;
}
.liste-menus .menu-liste.type-page .liens-menu .lien-avec-sousmenu > .lien:after {
  left: -24px;
  right: unset;
  transform: rotate(-90deg);
  width: 0.6em;
  height: 0.6em;
}
.liste-menus .menu-liste.type-page .liens-menu .lien-avec-sousmenu.ouvert > .lien:after {
  transform: rotate(0deg);
}
.liste-menus .menu-liste.type-piedpage .liens-menu {
  row-gap: 30px;
}
.liste-menus .menu-liste.type-piedpage .liens-menu > :first-child {
  border: 4px solid #F6C93B;
  border-radius: 14px;
  padding: 16px 26px;
  align-self: start;
  margin-left: -26px;
}

.liste-menus .menu-header .liens-menu .menu-niveau-1 > .lien-sans-sousmenu span {
  font-size: 15px;
}

.liste-menus .menu-header .liens-menu .menu-niveau-1 > .lien-sans-sousmenu {
  grid-column-end: span 3;
}

header {
  align-items: start;
}
header .menu-gauche {
  align-self: flex-end;
}

header .reseauxSociaux {
  display: none;
}

.entete-image {
  position: relative;
}
.entete-image:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.2);
}
.entete-image .main-slider {
  aspect-ratio: 1920/670;
}

.section-titre-page {
  grid-row-start: 1;
  position: relative;
  z-index: 2;
  color: white;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 200px;
  align-self: end;
}
.section-titre-page .titre-page h1, .section-titre-page .titre-page h2 {
  font-size: inherit;
  line-height: 1em;
}
.section-titre-page .titre-page h1 {
  font-weight: normal;
}

.type-recherche.menu-liste {
  margin-right: 4px;
}

.liste-menus {
  display: grid;
  grid-template-columns: 1fr repeat(3, min-content);
  row-gap: 25px;
  align-items: end;
  column-gap: 14px;
}
.liste-menus:after {
  content: "";
  grid-column-start: 2;
  grid-row-start: 2;
  width: 80px;
}
.liste-menus .type-haut_top {
  grid-column-start: 1;
  grid-column-end: -1;
  grid-row-start: 1;
  justify-self: end;
  padding: 0px 1px 1px 1px;
  overflow: hidden;
}
.liste-menus .type-haut_top .single-level {
  color: white;
  padding: 14px 30px;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0px 0px 0px 1px #6A6A6A;
  position: relative;
  letter-spacing: 1.95px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
.liste-menus .type-haut_top .single-level:not(:last-child) {
  margin-right: 1px;
}
@media (hover: hover) and (pointer: fine) {
  .liste-menus .type-haut_top .single-level:hover {
    color: white;
    background: #B67238;
    z-index: 2;
    box-shadow: 0px 0px 0px 1px #B67238;
  }
}
.liste-menus .menu-liste {
  display: inline-block;
}
.liste-menus .menu-header .liens-menu .titre-menu-parent {
  font-size: 22px;
  line-height: 1em;
  margin-bottom: 1.8em;
  letter-spacing: 3.3px;
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 {
  display: grid;
  grid-column-gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 > .lien-avec-sousmenu > .lien {
  font-size: 15px;
  line-height: 1em;
  margin-bottom: 20px;
  letter-spacing: 2.25px;
}
.liste-menus .menu-header .liens-menu .menu-niveau-2 {
  text-transform: initial;
  font-weight: normal;
  font-size: 15px;
  line-height: 1em;
  row-gap: 15px;
  align-items: flex-start;
}
.liste-menus .ico-loupe, .liste-menus .ico-loupe-masked {
  font-size: 26px;
  vertical-align: top;
}

@media screen and (max-width: 1322px) {
  header.section > .wrap.flex:not(.nowrap) {
    flex-wrap: nowrap;
  }
  .liste-menus:after {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  header.section > .wrap.flex:not(.nowrap) {
    flex-wrap: nowrap;
  }
  header .menu-gauche {
    flex-shrink: 0;
  }
  .liste-menus {
    grid-column-end: span 2;
    grid-column-start: 1;
  }
}
header .zoneFermer {
  width: 20px;
  right: 0px;
  flex-shrink: 0;
  grid-column-end: -1;
  grid-column-start: 1;
  grid-row-start: 1;
  margin-right: 88px;
  margin-left: auto;
}

header .zoneFermer > div a.fermer {
  margin-right: 0px;
}

@media screen and (max-width: 1160px) {
  body header .menu-toggle {
    display: block;
    margin-bottom: 42px;
  }
  .entete-image .section-titre-page {
    grid-column-start: 1;
    grid-column-end: -1;
    padding-top: 60px;
  }
  .entete-image .main-slider {
    aspect-ratio: 1920/900;
  }
  .liste-menus {
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    background: black;
    height: calc(100vh - 100%);
    color: white;
    display: flex;
    flex-direction: column;
    overflow: scroll;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overscroll-behavior: contain;
  }
  header.section > .wrap.flex:not(.nowrap) {
    width: 100%;
    grid-column-start: 1;
    grid-column-end: -1;
    height: 100%;
    align-items: center;
  }
  header:before {
    display: none;
  }
  header > div:not(.zoneFermer) {
    grid-column-start: 1;
    grid-column-end: -1;
  }
  header .zoneFermer {
    display: none;
  }
  header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
  }
  body header .menu-toggle {
    margin-right: 0px;
    height: 16px;
  }
  body header .menu-toggle span, body header .menu-toggle:before, body header .menu-toggle:after {
    height: 2px;
  }
  body header .menu-toggle span {
    height: auto;
    position: absolute;
    right: calc(100% + 10px);
    background: unset;
    display: inline-block;
    top: 0px;
    left: 0px;
    text-transform: uppercase;
    font-weight: bold;
    left: unset;
    transform: unset;
    width: auto;
    margin: unset;
    font-size: 13px;
    line-height: 13px;
    vertical-align: top;
  }
  body header .menu-toggle span:before {
    content: attr(title);
    vertical-align: middle;
    display: inline-block;
  }
  html.menu-ouvert header .menu-toggle span {
    width: auto;
  }
  body header .menu-gauche {
    align-self: center;
  }
  body .liste-menus .menu-header .liens-menu.menu-niveau-0 {
    flex-direction: column;
  }
  .menu-header {
    width: 100%;
    flex-shrink: 0;
  }
  .liste-menus .menu-header .liens-menu > .lien-avec-sousmenu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu > .sous-menu {
    position: initial;
    transform: unset;
    max-height: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    transition: all 0.4s ease;
  }
  .liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu.ouvert > .lien:not(.always-opened) + .sous-menu {
    max-height: 100vh;
    padding: 20px 0px;
    background: unset;
    padding-left: 10px;
  }
  .liste-menus .menu-header .liens-menu > .lien {
    padding: 10px 30px;
    margin-bottom: unset;
  }
  .liste-menus .menu-header .liens-menu .titre-menu-parent {
    display: none;
  }
  .liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu, .liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien {
    border-bottom: 1px solid #363636;
    width: 100%;
    font-weight: bold;
    font-size: 15px;
    line-height: 22px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 70px;
  }
  .liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu > .lien {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu.ouvert {
    background: #222222;
  }
  .liste-menus .menu-header .liens-menu .menu-niveau-1 {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    row-gap: 15px;
  }
  .liste-menus .menu-header .liens-menu .menu-niveau-1 > :not(:last-child) {
    border-bottom: unset;
  }
  .liste-menus .menu-header .liens-menu.menu-niveau-0 > .lien-avec-sousmenu .sous-menu {
    padding-left: 10px;
    background: unset;
  }
  .liste-menus .menu-header .liens-menu .menu-niveau-1 > .lien-avec-sousmenu > .lien {
    font-size: 12px;
    margin-bottom: unset;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    position: relative;
  }
  .liste-menus .menu-header .liens-menu .menu-niveau-2 {
    font-size: 12px;
    font-weight: normal;
  }
  .liste-menus .menu-header .liens-menu .menu-niveau-1 > .lien-avec-sousmenu > .lien:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    width: 9px;
    height: 9px;
    -webkit-mask-image: url(/images/icons/fleche-bas.svg);
    mask: url(/images/icons/fleche-bas.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    background-color: currentColor;
    -webkit-transition: transform 0.4s ease;
    -ms-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
  }
  .liste-menus .menu-header .liens-menu .menu-niveau-1 > .lien-avec-sousmenu.ouvert > .lien:after {
    /* transform: rotate(180deg); */
    transform: rotate(-90deg);
  }
  .liste-menus .menu-header .liens-menu.menu-niveau-0 .lien-avec-sousmenu > .sous-menu {
    max-height: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    transition: all 0.4s ease;
  }
  .liste-menus .menu-header .liens-menu.menu-niveau-0 .lien-avec-sousmenu.ouvert > .sous-menu {
    max-height: 100vh;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .liste-menus .menu-header .liens-menu .menu-niveau-1 > .lien-avec-sousmenu > .lien, .liste-menus .menu-header .liens-menu .menu-niveau-1 > .lien-sans-sousmenu {
    border-bottom: 1px solid #363636;
  }
  .liste-menus .menu-header .liens-menu .menu-niveau-1 > .lien-sans-sousmenu span {
    font-size: 12px;
  }
  .liste-menus .menu-header .liens-menu.menu-niveau-2 .lien {
    padding-right: 0px;
  }
  html.menu-ouvert .liste-menus {
    transform: translateX(0%);
    row-gap: 0px;
    width: 100vw;
  }
  .liste-menus .menu-liste.type-recherche {
    display: none;
  }
  .liste-menus .menu-liste {
    flex-shrink: 0;
    align-self: stretch;
  }
  .liste-menus .type-haut_top .single-level {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    margin-bottom: unset;
    border-bottom: 1px solid #363636;
    width: 100%;
    font-weight: bold;
    font-size: 15px;
    line-height: 22px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 70px;
    margin-right: unset;
    box-shadow: unset;
  }
  .liste-menus .type-haut_top .single-level:not(:last-child) {
    margin-right: 0px;
  }
  .liste-menus .menu-liste.type-lg .select-lg-menu > .lien-lg {
    display: none;
  }
  .liste-menus .menu-liste.type-lg .select-lg-menu .dropdown-lg {
    position: initial;
    transform: unset;
    background: unset;
    border: unset;
  }
  .liste-menus .menu-liste.type-lg a.lien-lg.actif {
    display: none;
  }
  .liste-menus .menu-liste.type-lg {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-weight: bold;
    font-size: 10px;
    padding: 0px 30px;
    align-items: center;
    order: 10;
    padding-right: 50px;
    padding-bottom: 20px;
  }
  header .reseauxSociaux {
    display: flex;
    order: 2;
  }
  .liste-menus .menu-liste.type-lg .select-lg-menu .dropdown-lg {
    padding: 10px 0px;
  }
  header .pannelRecherche {
    position: initial;
    transform: unset;
    height: auto;
    padding: 30px;
    margin-top: 30px;
    padding-right: 50px;
  }
  header .pannelRecherche > div {
    transform: unset;
    width: 100%;
  }
  header .pannelRecherche > div:before {
    display: none;
  }
  .pannelRecherche > div form {
    width: 100%;
    border: 1px solid #B67238;
    padding: 5px;
    position: relative;
  }
  .pannelRecherche > div form .envoiMobile {
    display: none;
  }
  .pannelRecherche > div form input[type=text] {
    padding: 5px 40px 5px 45px;
    height: auto;
  }
  .pannelRecherche > div form input[type=submit] {
    position: absolute;
    top: 0px;
    left: 20px;
    bottom: 0px;
    margin: auto;
    width: 20px;
    height: 20px;
  }
  /* .liens-menu .lien-avec-sousmenu > .lien:not(.always-opened):after{
    background-color: $couleurTheme;
  } */
  .pannelRecherche > div form:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    width: 9px;
    height: 9px;
    -webkit-mask-image: url(/images/icons/triangle.svg);
    mask: url(/images/icons/triangle.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    background-color: #B67238;
    -webkit-transition: transform 0.4s ease;
    -ms-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
  }
  .pannelRecherche > div form .envoiMobile {
    display: block;
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    right: 15px;
  }
  html.menu-ouvert .liste-menus > * {
    flex-shrink: 0;
  }
}
@media screen and (max-width: 600px) {
  .entete-image .section-titre-page {
    font-size: 32px;
    padding-bottom: 65px;
  }
  .entete-image .main-slider {
    aspect-ratio: 480/540;
  }
  body header .menu-toggle {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .entete-image .section-titre-page {
    font-size: 28px;
  }
}
@media screen and (min-width: 961px) and (max-width: 1160px) {
  body header .menu-toggle {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .liste-menus .menu-header .liens-menu .lien:not(.always-opened).underlined span::before, .liste-menus .menu-header .liens-menu .lien[href].always-opened.underlined span::before {
    background-color: transparent;
  }
}
.carte-succursales {
  aspect-ratio: 7/2;
}

.pos-container .btn.afficher-plus {
  margin-inline: auto;
  margin-top: 130px;
  display: block;
  width: fit-content;
}

.pos-recherche {
  background-color: #000000;
  color: #FFFFFF;
  max-width: 700px;
  /* height: 185px; */
  display: flex;
  align-items: center;
}
.pos-recherche .titre {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 18px;
  margin: 0px;
  width: 100%;
  letter-spacing: 2.28px;
}
.pos-recherche .container-recherche {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 45px;
  row-gap: 22px;
  column-gap: 32px;
}
.pos-recherche .pos-ligne-recherche {
  display: flex;
  width: 100%;
  column-gap: 32px;
  align-items: flex-end;
}
.pos-recherche .pos-ligne-recherche .btn {
  width: auto;
  flex-shrink: 0;
  flex-grow: 0;
}
.pos-recherche input[type] {
  color: #FFFFFF;
  background-color: transparent;
  outline: none;
  border: unset;
  border-bottom: 1px solid currentColor;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  line-height: 25px;
}
.pos-recherche input[type]:focus {
  border-bottom-color: #cecece;
}
.pos-recherche input[type]::placeholder {
  color: inherit;
}
.pos-recherche input[type]::-webkit-input-placeholder {
  color: inherit;
}
.pos-recherche input[type]::-moz-placeholder {
  opacity: 0.99;
  color: inherit;
}
.pos-recherche input[type]:-ms-input-placeholder {
  color: inherit;
}
.pos-recherche ::selection {
  background-color: #FFFFFF;
  color: #464748;
}
.pos-recherche .btn {
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1em;
  font-weight: bold;
  background: transparent;
  color: #FFFFFF;
  padding: 12px 24px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.2s ease;
  letter-spacing: 2.25px;
}
.pos-recherche .btn:hover {
  background-color: #B67238;
  color: #FFFFFF;
}
.pos-recherche .btn:active {
  transform: scale(0.95);
}

.pos-liste {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 0 40px;
  margin-top: 50px;
}
.pos-liste .pos-single {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #000000;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  font-size: 16px;
  line-height: 2em;
  padding-block: 55px;
  padding-inline: 25px;
  border-bottom: 1px solid #000000;
  transition: background-color 0.4s ease;
  cursor: pointer;
}
.pos-liste .pos-single.actif {
  background-color: rgba(183, 181, 181, 0.2117647059);
}
.pos-liste .pos-single:hover {
  transition: background-color 0.4s ease;
  background-color: rgba(238, 238, 238, 0.4862745098);
}
.pos-liste .pos-single .salleDeMontre {
  color: #B67238;
}
.pos-liste .pos-single .pos-titre {
  font-family: inherit;
  font-size: 20px;
  line-height: 1.2em;
  font-weight: 600;
  margin: 0px;
}
.pos-liste .pos-single.hidden {
  display: none;
}
.pos-liste .pos-single a {
  color: inherit;
}
.pos-liste .pos-single a:hover {
  color: inherit;
}
.pos-liste .pos-single .pos-section-liens {
  display: flex;
  column-gap: 10px;
  flex-wrap: wrap;
}

.lien-icone {
  background-color: #B67238;
  transition: background-color 0.4s ease;
  width: 35px;
  height: 35px;
  display: inline-block;
}
.lien-icone:hover {
  background-color: #464748;
}

.lien-facebook {
  -webkit-mask-image: url("/images/icons/Icon_FB.svg");
  mask: url("/images/icons/Icon_FB.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: center center;
  mask-repeat: no-repeat;
}

.lien-siteweb {
  -webkit-mask-image: url("/images/icons/Icon_lien.svg");
  mask: url("/images/icons/Icon_lien.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: center center;
  mask-repeat: no-repeat;
}

.singlelint-carte-succursales + .singlelint-points-succursales {
  margin-top: calc((185px / 2 + 20px) * -1);
  z-index: 2;
  position: relative;
}

section.enTeteSite {
  padding-top: 80px;
  padding-bottom: 80px;
}
section.enTeteSite .titre-bloc {
  color: #B67238;
  /* font-size: 50px;
  line-height:60px; */
  letter-spacing: 0px;
  font-weight: 200;
}
section.enTeteSite .enTeteSuccursales {
  color: #FFFFFF;
}

@media screen and (max-width: 1281px) {
  .singlelint-carte-succursales + .singlelint-points-succursales {
    margin-top: 20px;
  }
  .singlelint-carte-succursales + .singlelint-points-succursales.wrap.grille {
    padding-inline: 0 !important;
  }
  .pos-recherche {
    margin: auto;
  }
  .pos-liste {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 0 20px;
  }
  .carte-succursales {
    aspect-ratio: 7/3;
  }
}
@media screen and (max-width: 961px) {
  .pos-liste {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 0 20px;
  }
}
@media screen and (max-width: 601px) {
  .pos-liste {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  section.enTeteSite .titre-bloc {
    font-size: 45px;
    line-height: 54px;
  }
  .carte-succursales {
    aspect-ratio: 1/1;
  }
  .pos-recherche .pos-ligne-recherche {
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
  }
}
@media screen and (max-width: 481px) {
  .pos-liste {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.carte-joindre {
  aspect-ratio: 7/1.9;
  min-height: 280px;
  max-height: 700px;
  max-width: 100%;
}

.singlelint-nous-joindre {
  margin-bottom: 200px;
}

.section-form-nj {
  position: relative;
  margin-top: -100px;
  /* margin-top: -130px; */
}
.section-form-nj > .section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 20px;
  grid-column-start: 2;
}
.section-form-nj > .section > .section-infos {
  background-color: #000000;
  color: #FFFFFF;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 105px 0;
  grid-column-end: span 4;
  grid-column-start: auto;
}
.section-form-nj > .section > .section-infos .infos-joindre .infos {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 23px;
  text-align: center;
  font-family: "Noto Sans Kannada", sans-serif;
  font-weight: 400;
}
.section-form-nj > .section > .section-infos .infos-joindre .infos a {
  color: #FFFFFF;
  transition: all 0.4s ease;
}
.section-form-nj > .section > .section-infos .infos-joindre .infos a:hover {
  color: #B67238;
  transition: all 0.4s ease;
}
.section-form-nj > .section > .wrap:not(.section-infos) {
  margin-top: 230px;
  grid-column-end: span 6;
  grid-column-start: 6;
  flex-direction: column;
}
.section-form-nj form.formulaire-ajaxv2 {
  /* margin-top: 25px; */
}
.section-form-nj form.formulaire-ajaxv2 .champs-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  row-gap: 65px;
}
.section-form-nj form.formulaire-ajaxv2 .champs-container > label {
  grid-column-end: span 2;
}
.section-form-nj button.btn.btn-form {
  margin-top: 25px;
}
.section-form-nj h4.titre {
  font-size: 15px;
  letter-spacing: 2.25px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  border-top: 2px solid #FFFFFF;
  padding-top: 10px;
  /* ANCIEN STYLE
   margin-top: 52px;
  margin-bottom: 17px; */
  margin-top: 30px;
  margin-bottom: 10px;
}
.section-form-nj h5.titreForm {
  display: block;
  color: #000000;
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: 3.15px;
  line-height: 25px;
  margin: 0;
}
.section-form-nj h6.sousTitreForm {
  letter-spacing: 1.95px;
  color: #000000;
  text-transform: uppercase;
  opacity: 1;
  line-height: 15px;
  font-size: 13px;
  /* margin: 23px 0; */
}
.section-form-nj .reseaux {
  display: flex;
  column-gap: 20px;
}
.section-form-nj .reseaux a {
  width: 21px;
  height: 21px;
  transition: all 0.4s ease;
  /* &:hover{
      opacity: 0.6;
      transition: all 0.4s ease;
  } */
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  .section-form-nj .reseaux a:hover img {
    transform: translateY(-25%);
    transition: all 0.4s ease;
  }
}
.section-form-nj .reseaux a img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1281px) {
  .carte-joindre {
    aspect-ratio: 7/4;
  }
  .singlelint-nous-joindre {
    margin-bottom: 10px;
  }
  .section-form-nj {
    margin-top: 0px;
    grid-column-gap: 0px;
  }
  .section-form-nj > .section > .section-infos {
    grid-column-end: span 12;
  }
  .section-form-nj > .section > .wrap:not(.section-infos) {
    margin-top: 100px;
    grid-column-end: span 12;
    grid-column-start: auto;
  }
}
@media screen and (max-width: 601px) {
  .carte-joindre {
    aspect-ratio: 1/1;
  }
  .section-form-nj form.formulaire-ajaxv2 .champs-container {
    row-gap: 25px;
  }
  .section-form-nj form.formulaire-ajaxv2 .champs-container > input {
    grid-column-end: span 2;
  }
}
.page-recherche header + .entete-image {
  height: 0;
  min-height: 0;
}
.page-recherche .resultats-recherche {
  margin-top: 93px;
}
.page-recherche .resultats-recherche .element_recherche {
  margin-bottom: 30px;
}
.page-recherche .resultats-recherche .element_recherche h3 {
  color: #000000;
  font-size: 25px;
  line-height: 30px;
  margin: 0;
  font-weight: normal;
}
.page-recherche .resultats-recherche .element_recherche h3 a {
  color: #000000;
  transition: all 0.4s ease;
}
.page-recherche .resultats-recherche .element_recherche h3 a:hover {
  color: #B67238;
  transition: all 0.4s ease;
}
.page-recherche .resultats-recherche .element_recherche p.description-texte {
  font-size: 18px;
  color: #000000;
  line-height: 22px;
  margin: 12px 0 7px 0;
}
.page-recherche .resultats-recherche .element_recherche a.lien-resultat {
  color: #B67238;
  margin: 0;
  transition: all 0.4s ease;
}
.page-recherche .resultats-recherche .element_recherche a.lien-resultat:hover {
  color: #000000;
  transition: all 0.4s ease;
}

/* EMPLOIS */
.postuler-mobile.bouton {
  display: none;
}

.colones-emplois {
  display: flex;
  justify-content: space-between;
  padding-top: 74px;
  align-items: start;
}

.formulaire-emplois input[type=text],
.formulaire-emplois input[type=email],
.formulaire-emplois select {
  padding-top: 4px;
  padding-bottom: 4px;
  margin-top: 30px;
}

.formulaire-emplois {
  width: calc(50% - 40px);
  padding: 55px 57px;
  border: 1px solid #B67238;
  background: #FFFFFF;
  position: sticky;
  top: 100px;
}

.formulaire-emplois .titre {
  letter-spacing: 2.25px;
  color: #000000;
  text-transform: uppercase;
  opacity: 1;
  font-size: 15px;
  /* line-height: 75px; */
}

.formulaire-emplois .titre + select {
  margin-top: 22px;
}

.formulaire-emplois textarea {
  margin-top: 5px;
}

.formulaire-emplois button {
  font-weight: bold;
  margin-top: 30px; /*padding: 7px 0;*/
  transition: all 0.4s ease;
}
.formulaire-emplois button:hover {
  transition: all 0.4s ease;
}

.colone-emplois-liste h4 {
  letter-spacing: 0px;
  color: #B67238;
  opacity: 1;
  font-weight: 200;
  margin-bottom: 40px;
  line-height: 61px;
}
.colone-emplois-liste p {
  letter-spacing: 0px;
  color: #464748;
  opacity: 1;
  font-size: 16px;
  line-height: 26px;
  font-family: "Noto Sans Kannada", sans-serif;
}

.formulaire-emplois .formulaire-ligne {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 0;
}
.formulaire-emplois .formulaire-ligne.ligneFichier {
  margin-top: 30px;
  align-items: flex-end;
}
.formulaire-emplois .formulaire-ligne.ligneFichier label {
  margin-top: 0 !important;
}
.formulaire-emplois .formulaire-ligne > input {
  flex: 1;
}
.formulaire-emplois .formulaire-ligne > input.double {
  width: 48%;
  flex: unset;
}

input.send-resume-input {
  margin-top: 0px !important;
  background-color: transparent;
}

/*.formulaire-ligne > input {
    flex: 1;
}

.formulaire-ligne > input.double {
    width: 48%;
    flex: unset;
}*/
.formulaire-ligne .bouton {
  font-weight: bold;
  padding: 9px 27px;
  font-size: 16px;
  margin-left: 24px;
}

.formulaire-ligne .bouton-lien {
  margin-left: 24px;
  font-size: 12px;
  line-height: 14px;
  border: 1px solid;
  font-weight: bold;
  padding: 20px 38px;
  letter-spacing: 1.8px;
  display: block;
  margin-top: 0;
  text-transform: uppercase;
  color: #000000;
  border: solid 1px #B67238;
  transition: all 0.4s ease;
}
.formulaire-ligne .bouton-lien:hover {
  transition: all 0.4s ease;
  color: #FFFFFF;
  background-color: #B67238;
}

.formulaire-emplois label {
  margin-top: 30px;
  display: block;
}

.formulaire-emplois .formulaire-ligne label {
  margin-top: 26px;
}

.formulaire-emplois .label-titre {
  display: block;
}

.page-emplois, .page-blog {
  width: 100%;
}

.page-emplois .titre {
  position: initial;
}

.page-emplois .titre:before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  bottom: 0;
  left: 0;
}

.page-emplois .resultat-section .resultat-titre {
  font-size: 19px;
  font-weight: normal;
  padding: 6px 0;
}

.page-emplois .resultat-section .resultat-liste {
  flex-wrap: wrap;
  width: 100%;
}

.page-emplois .resultat-liste article {
  width: 100%;
  text-align: left;
  min-height: 0;
  margin-top: 37px;
  padding-bottom: 37px;
  border-bottom: 1px solid #A9C1B4;
}

.page-emplois .resultat-details .detail {
  margin-top: 6px;
}
.page-emplois .resultat-details .titre {
  font-weight: bold;
  font-size: 15px;
  text-transform: none;
  margin: 0;
  letter-spacing: 2.25px;
  color: #000000;
  text-transform: uppercase;
  opacity: 1;
  transition: all 0.4s ease;
}
.page-emplois .resultat-details .titre:hover {
  color: #B67238;
  transition: all 0.4s ease;
}
.page-emplois .resultat-details .resultat-arrow {
  margin-left: 12px;
  color: #B67238;
}

.page-emplois .ico-localisation {
  padding: 11px 8px;
  background: url(../images/localisation_rouge.svg) center no-repeat;
  background-size: 15px auto;
  display: inline-block;
  margin-left: 0;
  margin-right: 7px;
  vertical-align: middle;
}

.ico-temps {
  padding: 11px 8px;
  background: url(../images/temps.svg) center no-repeat;
  background-size: 15px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}

.page-emplois .resultat-section {
  padding: 2px 0 0;
}

.colone-emplois-liste {
  width: calc(50% - 40px);
}
.colone-emplois-liste ul {
  list-style-type: disc;
  padding-left: 20px;
  font-weight: initial;
  color: #464748;
  line-height: 26px;
}
.colone-emplois-liste ul li {
  padding-left: 0;
}
.colone-emplois-liste ul li:before {
  content: "";
}

.colone-emplois-liste .titre {
  font-size: 36px;
}

.select-positions {
  display: flex;
  margin: 46px 0 36px;
  column-gap: 63px;
}

.select-positions select {
  flex: 1;
}

.select-positions-titre {
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 30px;
  letter-spacing: 3.75px;
}

.page-emplois-details .sous-titre {
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
}

.page-emplois-details .ico-temps,
.page-emplois-details .ico-localisation {
  margin-right: 8px;
}

.emplois-liste-options {
  display: flex;
  margin-bottom: 32px;
  font-size: 14px;
  color: #354b58;
  justify-content: space-evenly;
}

.emplois-liste-options > div {
  flex: 1;
}

.formulaire-emplois input:focus:required:invalid,
.section-joindre input:focus:required:invalid {
  box-shadow: none;
  border-bottom-color: #dd1335;
}

.formulaire-emplois input:-moz-submit-invalid,
.section-joindre input:-moz-submit-invalid {
  box-shadow: none;
  border-bottom-color: #dd1335;
}

.formulaire-emplois input:-moz-ui-invalid,
.section-joindre input:-moz-ui-invalid {
  box-shadow: none;
  border-bottom-color: #dd1335;
}

.formulaire-emplois textarea:focus:required:invalid,
.section-joindre textarea:focus:required:invalid {
  box-shadow: none;
  border-color: #dd1335;
}

.formulaire-emplois textarea:-moz-submit-invalid,
.section-joindre textarea:-moz-submit-invalid {
  box-shadow: none;
  border-color: #dd1335;
}

.formulaire-emplois textarea:-moz-ui-invalid,
.section-joindre textarea:-moz-ui-invalid {
  box-shadow: none;
  border-color: #dd1335;
}

.resultat-section {
  padding: 38px 0 0;
}

.resultat-section .resultat-titre {
  font-weight: normal;
  border-bottom: 1px solid #344b57;
  text-transform: uppercase;
  font-size: 24px;
  padding: 9px 0;
}

.resultat-liste {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.resultat-liste article {
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
}

.resultat-liste .vide {
  width: 24%;
  border: 0;
  min-height: 0;
  padding: 0;
}

.resultat-liste .image {
  min-height: 216px;
}

.resultat-liste .best {
  background: #e1052d;
  position: absolute;
  top: 207px;
  right: -12px;
  z-index: 2;
  padding: 8px 27px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
}

.resultat-liste .titre { /*text-transform: uppercase;*/
  font-size: 18px;
  margin-top: 20px;
}

.resultat-liste .stitre {
  font-size: 16px;
  margin-top: 0;
}

.resultat-liste .sous-titre {
  text-transform: uppercase;
  font-size: 16px;
}

.resultat-liste .description { /*text-transform: uppercase;*/
  font-size: 14px;
}

.en-tete-site-general { /*padding-top: 146px;*/
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.en-tete-site-general h1 {
  text-transform: uppercase; /*margin-bottom: 80px;*/ /* font-weight: 900; */ /* text-shadow: #0f273a 10px 10px 10px; */
}

.en-tete-page-general { /* color: #fff; */
  width: 100%;
  height: 214px;
  margin-top: 115px;
  display: flex;
  justify-content: center;
  align-items: center; /* background: url(../images/motif_banane.png); background-position: top -907px left -10px; background-color: #6cc4c8; background-attachment: fixed; */
}

.titre-carrieres {
  font-size: 3em;
}

.lien-blog {
  transform: translateY(-40px);
}

.contenu-introuvable {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-centrer-blog {
  justify-content: center;
}

.titre-alt-blog {
  height: 42px;
}

.formulaire-contact .alert {
  margin-left: 0px;
  width: auto;
  max-width: 100%;
}

.message-erreur-candidature {
  color: #B67238;
  border-left: 2px solid #B67238;
  padding: 10px 0 10px 10px;
}

.avantages ul li {
  padding-left: 64px;
  /* line-height: 50px; */
  line-height: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
  /* font-size: 20px; */
  font-size: 18px;
}
.avantages ul li::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 0px;
  border: solid 1px #B67238;
  top: 50%;
  transform: translateY(-50%);
}
.avantages ul li::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-right: solid 2px #B67238;
  border-bottom: solid 2px #B67238;
  transform: rotate(-45deg) translateY(-50%);
  top: 12px;
  left: 32px;
}
.avantages ul li:not(:last-child) {
  margin-bottom: 0.4em;
}
.avantages ul li p {
  letter-spacing: initial;
}

.message-erreur-candidature:before {
  margin-right: 5px;
  font-weight: bold;
}

@media screen and (max-width: 1281px) {
  .select-positions {
    flex-direction: column;
    row-gap: 25px;
  }
}
@media screen and (max-width: 961px) {
  .select-positions {
    flex-direction: column;
    row-gap: 25px;
  }
  /* .avantages{
      margin-bottom: -50px;
  } */
  .colones-emplois {
    flex-direction: column;
    row-gap: 40px;
    padding-top: 0px;
  }
  .formulaire-emplois, .colone-emplois-liste {
    width: 100%;
  }
  .page-emplois .resultat-liste article {
    margin-top: 10px;
    padding-bottom: 10px;
  }
  .colone-emplois-liste h4 {
    line-height: 2em;
  }
  .formulaire-emplois {
    padding: 32px;
  }
}
@media screen and (max-width: 601px) {
  .formulaire-emplois {
    padding: 55px 20px;
  }
  .formulaire-emplois .formulaire-ligne {
    flex-direction: column;
  }
  .formulaire-emplois .formulaire-ligne > input.double {
    width: 100%;
  }
  .page-emplois .resultat-details .titre {
    font-size: 13px;
  }
  .select-positions-titre {
    font-size: 18px;
    line-height: 25px;
  }
  .avantages ul li {
    font-size: 15px;
    line-height: 20px;
  }
  .formulaire-ligne .bouton-lien {
    padding: 20px;
    padding: 12px 20px;
    margin-left: 12px;
  }
}
.page-realisations .overlay section > div.wrap {
  width: 100%;
}
.page-realisations .overlay section > div.wrap img {
  width: 100%;
}
.page-realisations .btn-container {
  display: flex;
  margin-top: 56px;
  padding-bottom: 2px;
}
.page-realisations .btnFiltrer {
  background: #B67238;
  border: 1px solid #B67238;
  padding: 18px 38px;
  margin: auto;
  display: none;
  font-weight: 800;
  text-transform: uppercase;
}
.page-realisations .entete-image {
  display: none;
}
.page-realisations .contenu {
  margin-top: 137px;
}
.page-realisations .titre-page {
  margin-top: 97px;
  margin-bottom: 103px;
}
.page-realisations .titre-page h1 {
  letter-spacing: 0px;
  color: #B67238;
  opacity: 1;
  line-height: 61px;
  font-size: 50px;
  font-weight: 200;
}
.page-realisations .categorie {
  grid-column-end: span 6;
}
.page-realisations .filtres {
  margin-bottom: 90px;
}
.page-realisations .filtres .titreCategorie {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.page-realisations .filtres .titreCategorie h3 {
  margin-bottom: 0px;
  padding-top: 10px;
  border-top: solid 3px #000000;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 18px;
}
.page-realisations .filtres .titreCategorie .flecheOuverture {
  display: none;
  width: 30px;
  height: 30px;
  border: solid 1px #B67238;
}
.page-realisations .filtres .contenuCategories {
  display: flex;
  column-gap: 16px;
  row-gap: 13px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.page-realisations .filtres .contenuCategories label span {
  position: relative;
}
.page-realisations .filtres .contenuCategories label span .croixFermer {
  opacity: 0;
  width: 15px;
  height: 15px;
  font-weight: 100;
  top: 7px;
  right: 7px;
  position: absolute;
  color: #FFFFFF;
  border: solid 1px #FFFFFF;
  border-radius: 50%;
}
.page-realisations .filtres .contenuCategories label span .croixFermer:before, .page-realisations .filtres .contenuCategories label span .croixFermer:after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: calc(100% - 2px);
  height: 1px;
  background: white;
  margin: auto;
  transform: rotate(45deg);
}
.page-realisations .filtres .contenuCategories label span .croixFermer:after {
  transform: rotate(-45deg);
}
.page-realisations .filtres .contenuCategories label input {
  display: none;
}
.page-realisations .filtres .contenuCategories label input:checked + span {
  background-color: #B67238;
  color: #FFFFFF;
}
.page-realisations .filtres .contenuCategories label input:checked + span .croixFermer {
  opacity: 1;
}
.page-realisations .filtres .contenuCategories label .btn.filtreReal {
  padding: 12px 24px;
}
.page-realisations .grille-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 100px;
}
.page-realisations .realisationsNouveau .grille-12 {
  column-gap: 32px;
  row-gap: 32px;
}
.page-realisations .realisationsNouveau .grille-12 .item {
  margin-bottom: 0px !important;
  overflow: hidden;
  /* &.grid-pc{
      grid-column-end: span 4;
  }
  &.grid-gc{
      grid-column-end: span 8;
      grid-row-end: span 2;
  }
  &.grid-dh{
      grid-column-end: span 4;
      grid-row-end: span 2;
  } */
}
.page-realisations .realisationsNouveau .grille-12 .item:not([href]) {
  cursor: default;
}
.page-realisations .realisationsNouveau .grille-12 .item > img {
  transition: transform 0.4s ease;
}
.page-realisations .realisationsNouveau .grille-12 .item:hover > img {
  transform: scale(1.1);
}
.page-realisations .realisationsNouveau .grille-12 .item:hover .details {
  opacity: 1;
  transition: all 0.5s ease;
}
.page-realisations .realisationsNouveau .grille-12 .item.grid-pc, .page-realisations .realisationsNouveau .grille-12 .item.grid-gc, .page-realisations .realisationsNouveau .grille-12 .item.grid-dh {
  height: 100%;
  transition: all 0.4s ease;
}
.page-realisations .realisationsNouveau .grille-12 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-realisations .realisationsNouveau .grille-12 .item .details {
  background: url("../images/btnAjouter.svg");
  background-repeat: no-repeat;
  width: 51px;
  height: 51px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: initial;
  opacity: 0;
  transition: all 0.5s ease;
}
.page-realisations [data-cols="1"] {
  grid-column-end: span 1;
}
.page-realisations [data-rows="1"] {
  grid-row-end: span 1;
}
.page-realisations [data-cols="2"] {
  grid-column-end: span 2;
}
.page-realisations [data-rows="2"] {
  grid-row-end: span 2;
}
.page-realisations [data-cols="3"] {
  grid-column-end: span 3;
}
.page-realisations [data-rows="3"] {
  grid-row-end: span 3;
}
.page-realisations [data-cols="4"] {
  grid-column-end: span 4;
}
.page-realisations [data-rows="4"] {
  grid-row-end: span 4;
}
.page-realisations [data-cols="5"] {
  grid-column-end: span 5;
}
.page-realisations [data-rows="5"] {
  grid-row-end: span 5;
}
.page-realisations [data-cols="6"] {
  grid-column-end: span 6;
}
.page-realisations [data-rows="6"] {
  grid-row-end: span 6;
}
.page-realisations [data-cols="7"] {
  grid-column-end: span 7;
}
.page-realisations [data-rows="7"] {
  grid-row-end: span 7;
}
.page-realisations [data-cols="8"] {
  grid-column-end: span 8;
}
.page-realisations [data-rows="8"] {
  grid-row-end: span 8;
}
.page-realisations [data-cols="9"] {
  grid-column-end: span 9;
}
.page-realisations [data-rows="9"] {
  grid-row-end: span 9;
}
.page-realisations [data-cols="10"] {
  grid-column-end: span 10;
}
.page-realisations [data-rows="10"] {
  grid-row-end: span 10;
}
.page-realisations [data-cols="11"] {
  grid-column-end: span 11;
}
.page-realisations [data-rows="11"] {
  grid-row-end: span 11;
}
.page-realisations [data-cols="12"] {
  grid-column-end: span 12;
}
.page-realisations [data-rows="12"] {
  grid-row-end: span 12;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8509803922);
  z-index: 100;
  overflow: hidden;
  display: none;
}
.overlay .section {
  margin-top: 25%;
  transform: translateY(-50%);
}
.overlay .section .wrap {
  color: #FFFFFF;
}
.overlay .section .wrap .contenuOverlay {
  position: relative;
}
.overlay .section .wrap .contenuOverlay .fermer {
  position: absolute;
  right: 0;
  top: -50px;
  background-image: url("../images/fermer.svg");
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.overlay .section .wrap .contenuOverlay img {
  background-color: #000000;
  grid-column-end: span 12;
  max-height: 90vh;
  object-fit: contain;
}
.overlay .section .wrap .contenuOverlay .detailsOverlay {
  background-color: #000000;
  grid-column-end: span 6;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  row-gap: 60px;
  padding-bottom: 80px;
}
.overlay .section .wrap .contenuOverlay .detailsOverlay .sousTitre {
  letter-spacing: 1.95px;
  color: #FFFFFF;
  text-transform: uppercase;
  opacity: 1;
  padding-top: 7.5px;
  border-top: solid 3px #FFFFFF;
  display: inline-block;
  font-size: 13px;
  line-height: 15px;
}
.overlay .section .wrap .contenuOverlay .detailsOverlay .titre {
  letter-spacing: 0px;
  color: #B67238;
  opacity: 1;
  font-size: 30px;
  font-weight: 200;
  line-height: 37px;
}
.overlay .section .wrap .contenuOverlay.alternatif.grille-12 {
  background-color: transparent;
}
.overlay .section .wrap .contenuOverlay.alternatif img {
  width: 100%;
  background-color: #000000;
  grid-column-end: span 10;
  grid-column-start: 2;
}
.overlay .section .wrap .contenuOverlay.alternatif .detailsOverlay {
  background-color: #000000;
  padding: 50px 85px;
  flex-direction: row;
  column-gap: 60px;
  grid-column-end: span 10;
  grid-column-start: 2;
  justify-content: flex-start;
}
.overlay .section .wrap .contenuOverlay.alternatif .fermer {
  right: 10%;
  top: 15px;
}

.overlay .section .wrap .contenuOverlay .fermer {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: sticky;
  grid-column-start: 1;
  grid-column-end: -1;
  grid-row-start: 1;
  justify-self: end;
  margin-right: 0px;
  top: 20px;
  margin-top: -50px;
  z-index: 5;
}

@supports not (position: sticky) {
  .overlay .section .wrap .contenuOverlay .fermer {
    position: absolute;
    right: 0px;
    top: 0px;
  }
}
.overlay .section .wrap .contenuOverlay:not(.alternatif) > * {
  grid-row-start: 1;
}

.overlay .section .wrap .contenuOverlay img {
  grid-column-start: 1;
  grid-row-start: 1;
}

.overlay .section .wrap .contenuOverlay .detailsOverlay {
  grid-column-start: 7;
}

.overlay {
  overflow: auto;
}

.overlay .section {
  margin-top: 0px;
  transform: unset;
  min-height: 100%;
  padding: 80px 0px;
  align-items: center;
}

html.overlay-visible, html.overlay-visible body {
  overflow: hidden;
}

.overlay .section .wrap .contenuOverlay.alternatif .fermer {
  grid-column-end: -2;
}

@media screen and (max-width: 1800px) {
  .overlay .section .wrap .contenuOverlay.alternatif img {
    grid-column-end: span 8;
    grid-column-start: 3;
  }
  .overlay .section .wrap .contenuOverlay.alternatif .detailsOverlay {
    grid-column-end: span 8;
    grid-column-start: 3;
  }
  .overlay .section .wrap .contenuOverlay.alternatif .fermer {
    grid-column-end: -3;
  }
}
@media screen and (max-width: 1281px) {
  .overlay .section .wrap .contenuOverlay {
    column-gap: 10px;
  }
  .overlay .section .wrap .contenuOverlay.grille-12 {
    column-gap: 10px;
  }
  .overlay .section .wrap .contenuOverlay.alternatif .detailsOverlay {
    flex-direction: column;
    padding: 25px 42px;
  }
  .overlay .section .wrap .contenuOverlay .detailsOverlay {
    row-gap: 30px;
    padding: 25px 42px;
  }
  .overlay .section .wrap .contenuOverlay .detailsOverlay .titre {
    font-size: 18px;
    line-height: 20px;
  }
  .page-realisations :not(.overlay) .grille-12:not(.contenuOverlay) {
    column-gap: 20px;
    row-gap: 25px;
  }
  .page-realisations .btnFiltrer {
    display: block;
  }
  .page-realisations .categorie {
    grid-column-end: span 12;
    border-bottom: solid 1px #B67238;
    padding-bottom: 24px;
  }
  .page-realisations .filtres .titreCategorie {
    margin-bottom: 22px;
  }
  .page-realisations .filtres .titreCategorie h3 {
    border-top: none;
  }
  .page-realisations .filtres .titreCategorie .flecheOuverture {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-realisations .filtres .cacherMobile {
    display: none;
  }
  .page-realisations .filtres .contenuCategories {
    flex-direction: column;
  }
  .page-realisations .filtres .contenuCategories label {
    display: flex;
    align-items: center;
  }
  .page-realisations .filtres .contenuCategories label input {
    width: 22px;
    height: 22px;
    border: 1px solid #B67238;
    opacity: 1;
    display: inline-block;
    position: relative;
    margin-right: 12px;
  }
  .page-realisations .filtres .contenuCategories label input:after {
    position: absolute;
    opacity: 0;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    top: -1px;
    content: "✓";
    text-align: center;
    font-weight: bold;
    color: #B67238;
  }
  .page-realisations .filtres .contenuCategories label input:checked:after {
    opacity: 1;
  }
  .page-realisations .filtres .contenuCategories label input:checked + span {
    color: #000000;
    background-color: transparent;
  }
  .page-realisations .filtres .contenuCategories label .btn.filtreReal {
    padding: 0;
    border: 0;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    text-transform: none;
  }
  .page-realisations .filtres .contenuCategories label span .croixFermer {
    display: none;
  }
}
@media screen and (max-width: 961px) {
  .page-realisations .titre-page {
    padding: 0 !important;
  }
  .page-realisations .overlay {
    overflow-y: auto !important;
  }
  .page-realisations .overlay .section {
    margin-top: 0px;
    display: flex;
  }
  .page-realisations .overlay .section .wrap .contenuOverlay {
    /* column-gap: 10px; */
  }
  .page-realisations .overlay .section .wrap .contenuOverlay:not(.alternatif) {
    background-color: transparent;
    /* .fermer{
        right: 15px;
    }
    img{
        grid-column-start: 1;
        grid-column-end: span 12;
    }
    .detailsOverlay{
        grid-column-start: 1;
        grid-column-end: span 12;
    } */
  }
  .page-realisations .overlay .section .wrap .contenuOverlay:not(.alternatif) .fermer {
    grid-column-end: -3;
    margin-top: 20px;
    margin-right: 20px;
  }
  .page-realisations .overlay .section .wrap .contenuOverlay:not(.alternatif) img {
    grid-column-start: 3;
    grid-column-end: span 8;
  }
  .page-realisations .overlay .section .wrap .contenuOverlay:not(.alternatif) .detailsOverlay {
    padding: 25px 42px !important;
    grid-column-start: 3;
    grid-column-end: span 8;
    grid-row-start: 2;
  }
}
@media screen and (max-width: 601px) {
  .page-realisations .overlay {
    background-color: #000000;
  }
  .page-realisations .overlay .section .wrap .contenuOverlay.alternatif .fermer, .page-realisations .overlay .section .wrap .contenuOverlay:not(.alternatif) .fermer {
    grid-column-end: -1;
  }
  .page-realisations .overlay .section .wrap .contenuOverlay.alternatif img, .page-realisations .overlay .section .wrap .contenuOverlay:not(.alternatif) img {
    grid-column-start: 1;
    grid-column-end: span 12;
  }
  .page-realisations .overlay .section .wrap .contenuOverlay.alternatif .detailsOverlay, .page-realisations .overlay .section .wrap .contenuOverlay:not(.alternatif) .detailsOverlay {
    grid-column-start: 1;
    grid-column-end: span 12;
  }
  .page-realisations .realisationsNouveau .grille-12 {
    row-gap: 20px;
  }
  .page-realisations .realisationsNouveau .grille-12 .item {
    /* &.grid-pc, &.grid-dh{
        grid-column-end: span 6;
    }
    &.grid-gc{
        grid-column-end: span 12;
    } */
  }
  [data-cols="1"] {
    grid-column-end: auto;
  }
  [data-cols-small="1"] {
    grid-column-end: span 1 !important;
  }
  [data-cols="2"] {
    grid-column-end: auto;
  }
  [data-cols-small="2"] {
    grid-column-end: span 2 !important;
  }
  [data-cols="3"] {
    grid-column-end: auto;
  }
  [data-cols-small="3"] {
    grid-column-end: span 3 !important;
  }
  [data-cols="4"] {
    grid-column-end: auto;
  }
  [data-cols-small="4"] {
    grid-column-end: span 4 !important;
  }
  [data-cols="5"] {
    grid-column-end: auto;
  }
  [data-cols-small="5"] {
    grid-column-end: span 5 !important;
  }
  [data-cols="6"] {
    grid-column-end: auto;
  }
  [data-cols-small="6"] {
    grid-column-end: span 6 !important;
  }
  [data-cols="7"] {
    grid-column-end: auto;
  }
  [data-cols-small="7"] {
    grid-column-end: span 7 !important;
  }
  [data-cols="8"] {
    grid-column-end: auto;
  }
  [data-cols-small="8"] {
    grid-column-end: span 8 !important;
  }
  [data-cols="9"] {
    grid-column-end: auto;
  }
  [data-cols-small="9"] {
    grid-column-end: span 9 !important;
  }
  [data-cols="10"] {
    grid-column-end: auto;
  }
  [data-cols-small="10"] {
    grid-column-end: span 10 !important;
  }
  [data-cols="11"] {
    grid-column-end: auto;
  }
  [data-cols-small="11"] {
    grid-column-end: span 11 !important;
  }
  [data-cols="12"] {
    grid-column-end: auto;
  }
  [data-cols-small="12"] {
    grid-column-end: span 12 !important;
  }
}
.entete-fiche-produit .titre-produit {
  border-top: none !important;
}

.imgMaxRatio .quincailDiv img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.imgMaxRatio img {
  height: auto;
}
.imgMaxRatio .texte {
  line-height: 22px;
}

.contenuDetailsProduit p {
  line-height: 22px;
}

.fondBois:after {
  content: "";
  position: absolute;
  right: 0px;
  /* left: calc(100% - (clamp(400px, calc(100vw - min(100vw, 1360px)), 896px) / 2.7)); */
  left: calc(100% - clamp(400px, 100vw - min(100vw, 1360px), 750px) / 1.1);
  /* top: 50px; */
  margin: auto;
  /* width: clamp(400px, calc(100vw - min(100vw, 1360px)), 896px);
  aspect-ratio: 896/464;
  -webkit-mask-image: url(/images/woodTexture.svg);
  -webkit-mask: url(/images/woodTexture.svg);
  mask: url(/images/woodTexture.svg); */
  width: clamp(400px, 100vw - min(100vw, 1360px), 750px);
  aspect-ratio: 750/580;
  -webkit-mask-image: url(/images/bois_element.gif);
  -webkit-mask: url(/images/bois_element.gif);
  mask: url(/images/bois_element.gif);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: center center;
  mask-repeat: no-repeat;
  background-color: #B67238;
}
.fondBois div p {
  margin-bottom: 34px;
}

.iphone .reals .grille-12 img {
  height: auto;
}

.safari .reals .grille-12 img {
  height: auto;
}

.reals {
  background-color: #000000;
  padding: 0 0;
  color: #FFFFFF;
}
.reals .wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.reals .sous-titre {
  letter-spacing: 2.25px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 18px;
  font-weight: 800;
  padding-top: 2px;
  border-top: solid 2px #FFFFFF;
  display: inline-block;
  padding-top: 9.5px;
}
.reals .btn {
  color: #FFFFFF;
  margin: auto;
}
.reals .grille-12 {
  padding: 52px 0 65px 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.reals .grille-12 .solo {
  grid-column-start: 3;
}
.reals .grille-12 img {
  height: 100%;
  grid-column-end: span 4;
  grid-row-end: span 1;
  object-fit: cover;
}
.reals .grille-12 img:first-of-type {
  grid-column-end: span 8;
  grid-row-end: span 2;
}
.reals .grille-12 [data-cols="1"] {
  grid-column-end: span 1;
}
.reals .grille-12 [data-rows="1"] {
  grid-row-end: span 1;
}
.reals .grille-12 [data-cols="2"] {
  grid-column-end: span 2;
}
.reals .grille-12 [data-rows="2"] {
  grid-row-end: span 2;
}
.reals .grille-12 [data-cols="3"] {
  grid-column-end: span 3;
}
.reals .grille-12 [data-rows="3"] {
  grid-row-end: span 3;
}
.reals .grille-12 [data-cols="4"] {
  grid-column-end: span 4;
}
.reals .grille-12 [data-rows="4"] {
  grid-row-end: span 4;
}
.reals .grille-12 [data-cols="5"] {
  grid-column-end: span 5;
}
.reals .grille-12 [data-rows="5"] {
  grid-row-end: span 5;
}
.reals .grille-12 [data-cols="6"] {
  grid-column-end: span 6;
}
.reals .grille-12 [data-rows="6"] {
  grid-row-end: span 6;
}
.reals .grille-12 [data-cols="7"] {
  grid-column-end: span 7;
}
.reals .grille-12 [data-rows="7"] {
  grid-row-end: span 7;
}
.reals .grille-12 [data-cols="8"] {
  grid-column-end: span 8;
}
.reals .grille-12 [data-rows="8"] {
  grid-row-end: span 8;
}
.reals .grille-12 [data-cols="9"] {
  grid-column-end: span 9;
}
.reals .grille-12 [data-rows="9"] {
  grid-row-end: span 9;
}
.reals .grille-12 [data-cols="10"] {
  grid-column-end: span 10;
}
.reals .grille-12 [data-rows="10"] {
  grid-row-end: span 10;
}
.reals .grille-12 [data-cols="11"] {
  grid-column-end: span 11;
}
.reals .grille-12 [data-rows="11"] {
  grid-row-end: span 11;
}
.reals .grille-12 [data-cols="12"] {
  grid-column-end: span 12;
}
.reals .grille-12 [data-rows="12"] {
  grid-row-end: span 12;
}

.optPr .contenu-opts {
  /* padding-bottom: 20px; */
  border-bottom: solid 1px #ACACAC;
}
.optPr .contenu-opts .opts-module .opts-question-conteneur {
  border-top: solid 1px #ACACAC;
  padding: 42px 25px;
  letter-spacing: 2.25px;
  color: #000000;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 18px;
  font-weight: 800;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  .optPr .contenu-opts .opts-module .opts-question-conteneur:hover {
    color: #B67238;
    transition: all 0.4s ease;
  }
}
.optPr .contenu-opts .opts-module .opts-question-conteneur .opts-titre {
  margin-left: 57px;
}
.optPr .contenu-opts .opts-module .opts-question-conteneur:before, .optPr .contenu-opts .opts-module .opts-question-conteneur:after {
  position: absolute;
  content: "";
  background-color: #B67238;
  width: 20px;
  height: 0px;
  border: solid 1px #B67238;
  transition: all 0.4s ease;
  top: 50%;
  left: 25px;
}
.optPr .contenu-opts .opts-module .opts-question-conteneur:before {
  transform: rotate(90deg);
}
.optPr .contenu-opts .opts-module .opts-question-conteneur.ouvert {
  transition: all 0.4s ease;
}
.optPr .contenu-opts .opts-module .opts-question-conteneur.ouvert:before {
  transition: all 0.4s ease;
  transform: rotate(0deg);
}
.optPr .contenu-opts .opts-module .opts-reponse-conteneur {
  display: none;
  margin-left: 57px;
  padding: 0 0 20px 25px;
  margin-bottom: 40px;
}
.optPr .contenu-opts a {
  text-decoration: underline;
}
.optPr .contenu-opts p:not(:last-child) {
  margin-bottom: 1em;
}
.optPr .contenu-opts ul {
  padding-left: 20px;
}
.optPr .contenu-opts ul:not(:last-child) {
  margin-bottom: 2.5em;
}
.optPr .contenu-opts ul li {
  padding-left: 0;
  font-weight: initial;
}
.optPr .contenu-opts ul li::before {
  content: "•";
  color: #B67238;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.optPr .contenu-opts h1, .optPr .contenu-opts h2, .optPr .contenu-opts h3, .optPr .contenu-opts h4, .optPr .contenu-opts h5 {
  letter-spacing: 2.25px;
  color: #000000;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 20px;
}
.optPr .contenu-opts table {
  width: auto !important;
  border: solid 0px transparent !important;
}
.optPr .contenu-opts table:not(.mobileFlex) td {
  width: auto !important;
  padding: 5px 5px 5px 0;
}
.optPr .contenu-opts table:not(.mobileFlex) td:first-child {
  padding-right: 20px;
}
.optPr .contenu-opts table:not(.mobileFlex) tr:first-of-type {
  font-weight: 800;
  color: #B67238;
}
.optPr .contenu-opts table:not(.mobileFlex) td:has(img) {
  text-align: center;
  height: auto !important;
}
.optPr .contenu-opts table td {
  width: auto !important;
}
.optPr .contenu-opts .grand, .optPr .contenu-opts .moyen, .optPr .contenu-opts .petit {
  margin-bottom: 20px;
}

.contenuDetailsProduit .youtube {
  z-index: 1;
}
.contenuDetailsProduit .grid-images-slides {
  margin-top: 2.2em;
}
.contenuDetailsProduit .contenu-opts {
  /* padding-bottom: 20px; */
  border-bottom: solid 1px #ACACAC;
}
.contenuDetailsProduit .contenu-opts .opts-module .opts-question-conteneur {
  border-top: solid 1px #ACACAC;
  padding: 42px 25px;
  letter-spacing: 2.25px;
  color: #000000;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 18px;
  font-weight: 800;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  .contenuDetailsProduit .contenu-opts .opts-module .opts-question-conteneur:hover {
    color: #B67238;
    transition: all 0.4s ease;
  }
}
.contenuDetailsProduit .contenu-opts .opts-module .opts-question-conteneur .opts-titre {
  margin-left: 57px;
}
.contenuDetailsProduit .contenu-opts .opts-module .opts-question-conteneur:before, .contenuDetailsProduit .contenu-opts .opts-module .opts-question-conteneur:after {
  position: absolute;
  content: "";
  background-color: #B67238;
  width: 20px;
  height: 0px;
  border: solid 1px #B67238;
  transition: all 0.4s ease;
  top: 50%;
  left: 25px;
}
.contenuDetailsProduit .contenu-opts .opts-module .opts-question-conteneur:before {
  transform: rotate(90deg);
}
.contenuDetailsProduit .contenu-opts .opts-module .opts-question-conteneur.ouvert {
  transition: all 0.4s ease;
}
.contenuDetailsProduit .contenu-opts .opts-module .opts-question-conteneur.ouvert:before {
  transition: all 0.4s ease;
  transform: rotate(0deg);
}
.contenuDetailsProduit .contenu-opts .opts-module .opts-reponse-conteneur {
  display: none;
  margin-left: 57px;
  padding: 0 0 20px 25px;
}
.contenuDetailsProduit .texte a, .contenuDetailsProduit .contenu-opts a {
  text-decoration: underline;
}
.contenuDetailsProduit .texte p:not(:last-child), .contenuDetailsProduit .contenu-opts p:not(:last-child) {
  margin-bottom: 1em;
}
.contenuDetailsProduit .texte ul, .contenuDetailsProduit .contenu-opts ul {
  padding-left: 20px;
}
.contenuDetailsProduit .texte ul:not(:last-child), .contenuDetailsProduit .contenu-opts ul:not(:last-child) {
  margin-bottom: 2.5em;
}
.contenuDetailsProduit .texte ul li, .contenuDetailsProduit .contenu-opts ul li {
  padding-left: 0;
  font-weight: initial;
  line-height: 20px;
  margin-bottom: 0.6em;
}
.contenuDetailsProduit .texte ul li::before, .contenuDetailsProduit .contenu-opts ul li::before {
  content: "•";
  color: #B67238;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.contenuDetailsProduit .texte h1, .contenuDetailsProduit .texte h2, .contenuDetailsProduit .texte h3, .contenuDetailsProduit .texte h4, .contenuDetailsProduit .texte h5, .contenuDetailsProduit .contenu-opts h1, .contenuDetailsProduit .contenu-opts h2, .contenuDetailsProduit .contenu-opts h3, .contenuDetailsProduit .contenu-opts h4, .contenuDetailsProduit .contenu-opts h5 {
  letter-spacing: 2.25px;
  color: #000000;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 20px;
}
.contenuDetailsProduit .texte table, .contenuDetailsProduit .contenu-opts table {
  width: auto !important;
  border: solid 0px transparent !important;
  /* td{
      width: auto!important;
  } */
}
.contenuDetailsProduit .texte table:not(.mobileFlex) td, .contenuDetailsProduit .contenu-opts table:not(.mobileFlex) td {
  width: auto !important;
  padding: 5px 5px 5px 0;
}
.contenuDetailsProduit .texte table:not(.mobileFlex) td:first-child, .contenuDetailsProduit .contenu-opts table:not(.mobileFlex) td:first-child {
  padding-right: 20px;
}
.contenuDetailsProduit .texte table:not(.mobileFlex) tr:first-of-type, .contenuDetailsProduit .contenu-opts table:not(.mobileFlex) tr:first-of-type {
  font-weight: 800;
  color: #B67238;
}
.contenuDetailsProduit .texte table:not(.mobileFlex) td:has(img), .contenuDetailsProduit .contenu-opts table:not(.mobileFlex) td:has(img) {
  text-align: center;
  height: auto !important;
}
.contenuDetailsProduit .texte .grand, .contenuDetailsProduit .texte .moyen, .contenuDetailsProduit .texte .petit, .contenuDetailsProduit .contenu-opts .grand, .contenuDetailsProduit .contenu-opts .moyen, .contenuDetailsProduit .contenu-opts .petit {
  margin-bottom: 20px;
}

.page-fiche-produit {
  background: black;
}
.page-fiche-produit .opts-module p {
  line-height: 24px;
}
.page-fiche-produit .contenu-produit {
  padding-left: calc(max(((100% - min(100%, 1360px)) / 2 + 10px), 20px));
  padding-top: 100px;
  padding-bottom: 60px;
  padding-right: max(40px, 5%);
}
.page-fiche-produit .titre-produit {
  color: #B67238;
  font-weight: 200;
  font-size: 50px;
  line-height: 1em;
  text-transform: initial;
}
.page-fiche-produit .texte {
  line-height: 25px;
}
.page-fiche-produit .rond-produit {
  width: fit-content;
  max-width: 200px;
  border: 2px solid #3B3B3B;
  border-radius: 50%;
  overflow: hidden;
}
.page-fiche-produit .rond-produit:not(:last-child) {
  margin-bottom: 65px;
}
.page-fiche-produit .section-slider-images {
  position: relative;
}
.page-fiche-produit .section-slider-images .slick-slider {
  position: relative;
  z-index: 1;
}
.page-fiche-produit .section-slider-images .div-slide-image-produit img {
  width: 100%;
}
.page-fiche-produit .section-slider-images .slider-nav {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  column-gap: 10px;
  z-index: 2;
}
.page-fiche-produit .section-slider-images .slider-nav .prev-arrow, .page-fiche-produit .section-slider-images .slider-nav .next-arrow {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  width: 40px;
  height: 40px;
  position: initial;
  transform: unset;
  border-radius: unset;
  background-color: unset;
  z-index: unset;
}
.page-fiche-produit .section-slider-images .slider-nav .prev-arrow {
  background-image: url(/images/slider-prev.svg);
}
.page-fiche-produit .section-slider-images .slider-nav .next-arrow {
  background-image: url(/images/slider-next.svg);
}

@media screen and (max-width: 601px) {
  .reals .sous-titre {
    font-size: 12px;
    line-height: 15px;
  }
  .reals .grille-12 {
    gap: 20px;
  }
  .fondBois {
    padding-top: 100px;
  }
}
@media screen and (max-width: 961px) {
  .page-fiche-produit .section-slider-images .div-slide-image-produit img {
    margin-bottom: 100px;
  }
  .reals .grille-12 .solo {
    grid-column-start: 1;
  }
  .reals .grille-12 img {
    grid-column-end: span 12;
  }
  .reals .grille-12 img:first-of-type {
    grid-column-end: span 12;
  }
  .contenuDetailsProduit .texte table.mobileFlex {
    margin: auto;
    height: auto !important;
  }
  .contenuDetailsProduit .texte table.mobileFlex tr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-columns: minmax(0, 1fr);
    gap: 0px;
    height: auto !important;
  }
  .contenuDetailsProduit .texte table.mobileFlex tr td {
    border: 0;
    width: 100% !important;
    height: auto !important;
  }
}
@media screen and (max-width: 1281px) {
  .contenu > .section.fondBois {
    padding-top: 120px;
  }
  .grille .colTitres {
    height: 51px;
    max-height: 51px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 0;
    /* background-color: black;
    color: #FFFFFF;
    position: absolute; */
    left: 0px;
    right: 0px;
    /* top: 120px;
    position: fixed; */
    width: 100%;
    z-index: 10;
    transition: max-height 0.5s ease;
  }
  .grille .colTitres .titreContenu {
    order: 2;
    width: 100%;
    /* padding-left: 60px !important; 
    padding-bottom: 12px !important; */
    /* color: white; */
  }
  .grille .colTitres .titreContenu.active {
    order: 1;
    position: relative;
    cursor: pointer;
    font-weight: bold;
    border: solid 2px #B67238;
  }
  .grille .colTitres .titreContenu.active:after {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    right: 20px;
    border-bottom: solid 2px #B67238;
    border-right: solid 2px #B67238;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
    transition: 0.2s all ease;
  }
  .grille .colTitres.ouvert {
    height: auto;
    max-height: 1500px;
    /* transition: max-height .5s ease; */
  }
  .grille .colTitres.ouvert .titreContenu.actif:after {
    transition: 0.2s all ease;
    transform: rotate(225deg);
    /* border-bottom: 0;
    border-right: 0;
    border-top: solid 2px $ComplementCouleurAccent;
    border-left: solid 2px $ComplementCouleurAccent; */
  }
}
@media screen and (max-width: 600px) {
  .page-fiche-produit .titre-produit {
    font-size: 36px;
  }
}
@media screen and (max-width: 1281px) {
  .fondBois:after {
    display: none;
  }
}
@media screen and (max-width: 481px) {
  .grille .colTitres {
    height: 71px;
    max-height: 71px;
  }
  .titre-bloc.titreTheme, .titre-bloc + .sous-titre-bloc {
    line-height: 45px;
    font-size: 40px;
  }
  .grille .colTitres .titreContenu {
    margin-bottom: 16px;
  }
}
.reseauxSociaux {
  display: flex;
  align-items: flex-end;
  column-gap: 20px;
  padding-bottom: 4px;
}
.reseauxSociaux a img {
  width: 20px;
  height: 20px;
}
.reseauxSociaux a.single-level:hover {
  opacity: 1 !important;
}

.piedLogo {
  padding-bottom: 4px;
}

footer {
  background-color: #000000 !important;
  box-sizing: border-box;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  margin-top: 50px;
  font-size: 13px;
}
footer.section {
  grid-row-gap: 0;
}
footer.wrap {
  align-items: flex-end;
}
footer a {
  transition: all 0.4s ease;
  font-weight: 500;
  letter-spacing: 1.95px;
}
footer a:not(.single-level) {
  /* @include hover(){
      color: $ComplementCouleurAccent;
      opacity: 0.6;
      transition: all .4s ease;
  } */
}
footer a.single-level {
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  footer a.single-level:hover {
    color: #B67238 !important;
    transition: all 0.4s ease;
  }
}
footer .footerHaut {
  margin-top: 50px;
  display: flex;
  margin-bottom: 60px;
  justify-content: space-between;
}
footer .footerHaut .menuPied {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  align-items: flex-end;
  text-transform: uppercase;
  column-gap: 20px;
}
footer .footerBas {
  color: #9B9B9B;
  margin-bottom: 0;
}
footer .footerBas.wrap {
  grid-column-start: 1;
  grid-column-end: span 3;
  background-color: #2F2F2F;
  width: 100%;
  display: grid;
  grid-template-columns: calc((100% - 1400px) / 2) minmax(0, 1fr) calc((100% - 1400px) / 2);
  grid-row-gap: 20px;
  grid-column-gap: 20px;
}
footer .footerBas.wrap .contenuFooterBas {
  max-width: unset;
  grid-column-start: 2;
  grid-column-end: span 1;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
  height: 47px;
}
footer .footerBas.wrap .contenuFooterBas > div > span {
  margin-right: 10px;
  font-weight: bold;
}
footer .footerBas.wrap .contenuFooterBas a {
  color: #9B9B9B !important;
}
footer .footerBas.wrap .contenuFooterBas a.single-level:hover {
  opacity: 0.6;
}
footer .footerBas.wrap .contenuFooterBas a:not(:last-of-type) {
  margin-right: 20px;
}
footer .footerBas div {
  margin-right: 10px;
}
footer .contenuFooterBas a:not(.single-level):not(:has(img)) {
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  footer .contenuFooterBas a:not(.single-level):not(:has(img)):hover {
    color: #FFFFFF;
    opacity: 0.6;
    transition: all 0.4s ease;
  }
}

@media screen and (max-width: 1281px) {
  footer {
    margin-top: 0px !important;
  }
  footer .footerHaut {
    align-items: flex-start;
    margin-top: 70px;
    margin-bottom: 40px;
  }
  footer .footerHaut.wrap {
    flex-direction: column;
    padding: 40px 40px 0 40px;
  }
  footer .footerHaut .piedLogo {
    margin-bottom: 50px;
  }
  footer .footerHaut .menuPied {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footerHaut .menuPied a {
    line-height: 40px;
  }
  footer .footerHaut .reseauxSociaux {
    margin: auto;
    margin-top: 60px;
  }
  footer .footerBas.wrap {
    padding: 20px 40px;
    grid-column-gap: 0;
  }
  footer .footerBas.wrap .contenuFooterBas {
    flex-direction: column;
    height: auto;
  }
  footer .footerBas.wrap .contenuFooterBas > div {
    line-height: 15px;
    text-align: center;
  }
  footer .footerBas.wrap .contenuFooterBas a {
    line-height: 15px;
  }
  footer .footerBas.wrap .contenuFooterBas a:not(:last-of-type) {
    margin-right: 0px;
  }
}
@media screen and (max-width: 961px) {
  footer .footerHaut.wrap {
    padding: 0 40px;
  }
}
.section > .wrap, .section > .fullw {
  z-index: 2;
}
.section > .wrap.grille, .section > .fullw.grille {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-column-gap: var(--colGap);
  grid-row-gap: var(--rowGap);
}
.section > .wrap.grille.v-start, .section > .fullw.grille.v-start {
  align-items: start;
}
.section > .wrap.grille.v-end, .section > .fullw.grille.v-end {
  align-items: end;
}
.section > .wrap.grille.v-stretch, .section > .fullw.grille.v-stretch {
  align-items: stretch;
}
.section > .wrap.grille.v-center, .section > .fullw.grille.v-center {
  align-items: center;
}
.section > .wrap.grille.h-start, .section > .fullw.grille.h-start {
  justify-content: start;
}
.section > .wrap.grille.h-end, .section > .fullw.grille.h-end {
  justify-content: end;
}
.section > .wrap.grille.h-space-between, .section > .fullw.grille.h-space-between {
  justify-content: space-between;
}
.section > .wrap.grille.h-center, .section > .fullw.grille.h-center {
  justify-content: center;
}
.section > .wrap.grille > .h-center, .section > .fullw.grille > .h-center {
  justify-self: center;
}
.section > .wrap.flex, .section > .fullw.flex {
  display: flex;
  column-gap: var(--colGap);
  row-gap: var(--rowGap);
}
.section > .wrap.flex:not(.nowrap), .section > .fullw.flex:not(.nowrap) {
  flex-wrap: wrap;
}
.section > .wrap.flex.v-start, .section > .fullw.flex.v-start {
  align-items: flex-start;
}
.section > .wrap.flex.v-end, .section > .fullw.flex.v-end {
  align-items: flex-end;
}
.section > .wrap.flex.v-stretch, .section > .fullw.flex.v-stretch {
  align-items: stretch;
}
.section > .wrap.flex.v-center, .section > .fullw.flex.v-center {
  align-items: center;
}
.section > .wrap.flex.h-start, .section > .fullw.flex.h-start {
  justify-content: flex-start;
}
.section > .wrap.flex.h-end, .section > .fullw.flex.h-end {
  justify-content: flex-end;
}
.section > .wrap.flex.h-space-between, .section > .fullw.flex.h-space-between {
  justify-content: space-between;
}
.section > .wrap.flex.h-center, .section > .fullw.flex.h-center {
  justify-content: center;
}
.section > .wrap.flex .d-equal, .section > .fullw.flex .d-equal {
  flex-basis: 100%;
  flex-grow: 1;
  flex-shrink: 1;
}

@media screen and (min-width: 961px) {
  .section > .wrap.grille, .section > .fullw.grille {
    padding-inline: 30px;
  }
  .section > .wrap.grille > .d-full,
  .section > .wrap.grille > .paragraphe0,
  .section > .wrap.grille > .paragraphe1, .section > .fullw.grille > .d-full,
  .section > .fullw.grille > .paragraphe0,
  .section > .fullw.grille > .paragraphe1 {
    grid-column-end: span 12;
  }
  .section > .wrap.grille .d1-2, .section > .wrap.grille .paragraphe2, .section > .fullw.grille .d1-2, .section > .fullw.grille .paragraphe2 {
    grid-column-end: span 6;
    box-sizing: border-box;
  }
  .section > .wrap.grille .d1-3, .section > .wrap.grille .paragraphe3, .section > .fullw.grille .d1-3, .section > .fullw.grille .paragraphe3 {
    grid-column-end: span 4;
    box-sizing: border-box;
  }
  .section > .wrap.grille .d2-3, .section > .fullw.grille .d2-3 {
    grid-column-end: span 8;
    box-sizing: border-box;
  }
  .section > .wrap.grille .d1-4, .section > .wrap.grille .paragraphe4, .section > .fullw.grille .d1-4, .section > .fullw.grille .paragraphe4 {
    grid-column-end: span 3;
    box-sizing: border-box;
  }
  .section > .wrap.grille .d3-4, .section > .fullw.grille .d3-4 {
    grid-column-end: span 9;
    box-sizing: border-box;
  }
  .section > .wrap.grille .d1-6, .section > .wrap.grille .paragraphe6, .section > .fullw.grille .d1-6, .section > .fullw.grille .paragraphe6 {
    grid-column-end: span 2;
    box-sizing: border-box;
  }
  .section > .wrap.grille .d4-6, .section > .fullw.grille .d4-6 {
    grid-column-end: span 8;
    box-sizing: border-box;
  }
  .section > .wrap.grille .d5-6, .section > .fullw.grille .d5-6 {
    grid-column-end: span 10;
    box-sizing: border-box;
  }
  .section > .wrap.flex, .section > .fullw.flex {
    padding-inline: 30px;
  }
  .section > .wrap.flex .d-auto, .section > .fullw.flex .d-auto {
    width: auto;
    max-width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .d-full,
  .section > .wrap.flex .paragraphe0,
  .section > .wrap.flex .paragraphe1, .section > .fullw.flex .d-full,
  .section > .fullw.flex .paragraphe0,
  .section > .fullw.flex .paragraphe1 {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .d1-2, .section > .wrap.flex .paragraphe2, .section > .fullw.flex .d1-2, .section > .fullw.flex .paragraphe2 {
    width: calc((100% - (1 * var(--colGap))) / 2);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .d1-3, .section > .wrap.flex .paragraphe3, .section > .fullw.flex .d1-3, .section > .fullw.flex .paragraphe3 {
    width: calc((100% - (2 * var(--colGap))) / 3);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .d2-3, .section > .fullw.flex .d2-3 {
    width: calc((((100% - (2 * var(--colGap))) / 3) * 2) + (1 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .d1-4, .section > .wrap.flex .paragraphe4, .section > .fullw.flex .d1-4, .section > .fullw.flex .paragraphe4 {
    width: calc((100% - (3 * var(--colGap))) / 4);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .d3-4, .section > .fullw.flex .d3-4 {
    width: calc((((100% - (3 * var(--colGap))) / 4) * 3) + (2 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .d1-5, .section > .wrap.flex .paragraphe5, .section > .fullw.flex .d1-5, .section > .fullw.flex .paragraphe5 {
    width: calc((100% - (4 * var(--colGap))) / 5);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .d2-5, .section > .fullw.flex .d2-5 {
    width: calc((((100% - (4 * var(--colGap))) / 5) * 2) + (1 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .d3-5, .section > .fullw.flex .d3-5 {
    width: calc((((100% - (4 * var(--colGap))) / 5) * 3) + (2 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .d4-5, .section > .fullw.flex .d4-5 {
    width: calc((((100% - (4 * var(--colGap))) / 5) * 4) + (3 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .d1-6, .section > .wrap.flex .paragraphe6, .section > .fullw.flex .d1-6, .section > .fullw.flex .paragraphe6 {
    width: calc((100% - (5 * var(--colGap))) / 6);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .d4-6, .section > .fullw.flex .d4-6 {
    width: calc((((100% - (5 * var(--colGap))) / 6) * 4) + (3 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .d5-6, .section > .fullw.flex .d5-6 {
    width: calc((((100% - (5 * var(--colGap))) / 6) * 5) + (4 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1280px) {
  body:not(.page-accueil):not(.page-produits) .section-titre-page {
    margin-left: 30px;
  }
}
@media screen and (min-width: 481px) and (max-width: 960px) {
  .section > .wrap.grille, .section > .fullw.grille {
    padding-inline: 60px;
  }
  .section > .wrap.grille > .t-full,
  .section > .wrap.grille > .paragraphe0,
  .section > .wrap.grille > .paragraphe1, .section > .fullw.grille > .t-full,
  .section > .fullw.grille > .paragraphe0,
  .section > .fullw.grille > .paragraphe1 {
    grid-column-end: span 12;
  }
  .section > .wrap.grille .t1-2, .section > .wrap.grille .paragraphe2, .section > .fullw.grille .t1-2, .section > .fullw.grille .paragraphe2 {
    grid-column-end: span 6;
    box-sizing: border-box;
  }
  .section > .wrap.grille .t1-3, .section > .wrap.grille .paragraphe3, .section > .fullw.grille .t1-3, .section > .fullw.grille .paragraphe3 {
    grid-column-end: span 4;
    box-sizing: border-box;
  }
  .section > .wrap.grille .t2-3, .section > .fullw.grille .t2-3 {
    grid-column-end: span 8;
    box-sizing: border-box;
  }
  .section > .wrap.grille .t1-4, .section > .wrap.grille .paragraphe4, .section > .fullw.grille .t1-4, .section > .fullw.grille .paragraphe4 {
    grid-column-end: span 3;
    box-sizing: border-box;
  }
  .section > .wrap.grille .t3-4, .section > .fullw.grille .t3-4 {
    grid-column-end: span 9;
    box-sizing: border-box;
  }
  .section > .wrap.grille .t1-6, .section > .wrap.grille .paragraphe6, .section > .fullw.grille .t1-6, .section > .fullw.grille .paragraphe6 {
    grid-column-end: span 2;
    box-sizing: border-box;
  }
  .section > .wrap.grille .t4-6, .section > .fullw.grille .t4-6 {
    grid-column-end: span 8;
    box-sizing: border-box;
  }
  .section > .wrap.grille .t5-6, .section > .fullw.grille .t5-6 {
    grid-column-end: span 10;
    box-sizing: border-box;
  }
  .section > .wrap.flex, .section > .fullw.flex {
    padding-inline: 60px;
  }
  .section > .wrap.flex .t-auto, .section > .fullw.flex .t-auto {
    width: auto;
    max-width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .t-full,
  .section > .wrap.flex .paragraphe0,
  .section > .wrap.flex .paragraphe1, .section > .fullw.flex .t-full,
  .section > .fullw.flex .paragraphe0,
  .section > .fullw.flex .paragraphe1 {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .t1-2, .section > .wrap.flex .paragraphe2, .section > .fullw.flex .t1-2, .section > .fullw.flex .paragraphe2 {
    width: calc((100% - (1 * var(--colGap))) / 2);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .t1-3, .section > .wrap.flex .paragraphe3, .section > .fullw.flex .t1-3, .section > .fullw.flex .paragraphe3 {
    width: calc((100% - (2 * var(--colGap))) / 3);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .t2-3, .section > .fullw.flex .t2-3 {
    width: calc((((100% - (2 * var(--colGap))) / 3) * 2) + (1 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .t1-4, .section > .wrap.flex .paragraphe4, .section > .fullw.flex .t1-4, .section > .fullw.flex .paragraphe4 {
    width: calc((100% - (3 * var(--colGap))) / 4);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .t3-4, .section > .fullw.flex .t3-4 {
    width: calc((((100% - (3 * var(--colGap))) / 4) * 3) + (2 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .t1-5, .section > .wrap.flex .paragraphe5, .section > .fullw.flex .t1-5, .section > .fullw.flex .paragraphe5 {
    width: calc((100% - (4 * var(--colGap))) / 5);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .t2-5, .section > .fullw.flex .t2-5 {
    width: calc((((100% - (4 * var(--colGap))) / 5) * 2) + (1 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .t3-5, .section > .fullw.flex .t3-5 {
    width: calc((((100% - (4 * var(--colGap))) / 5) * 3) + (2 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .t4-5, .section > .fullw.flex .t4-5 {
    width: calc((((100% - (4 * var(--colGap))) / 5) * 4) + (3 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .t1-6, .section > .wrap.flex .paragraphe6, .section > .fullw.flex .t1-6, .section > .fullw.flex .paragraphe6 {
    width: calc((100% - (5 * var(--colGap))) / 6);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .t4-6, .section > .fullw.flex .t4-6 {
    width: calc((((100% - (5 * var(--colGap))) / 6) * 4) + (3 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .t5-6, .section > .fullw.flex .t5-6 {
    width: calc((((100% - (5 * var(--colGap))) / 6) * 5) + (4 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .contenu.esp_fin_tgrand {
    padding-bottom: 100px;
  }
  body:not(.page-accueil):not(.page-produits) .section-titre-page {
    margin-left: 60px;
  }
}
@media screen and (max-width: 600px) {
  .section > .wrap.grille, .section > .fullw.grille {
    padding-inline: 30px;
  }
  .section > .wrap.flex, .section > .fullw.flex {
    padding-inline: 30px;
  }
  body:not(.page-accueil):not(.page-produits) .section-titre-page {
    margin-left: 30px;
  }
}
@media screen and (max-width: 480px) {
  .section > .wrap.grille, .section > .fullw.grille {
    padding-inline: 20px;
  }
  .section > .wrap.grille > .m-full,
  .section > .wrap.grille > .paragraphe0,
  .section > .wrap.grille > .paragraphe1, .section > .fullw.grille > .m-full,
  .section > .fullw.grille > .paragraphe0,
  .section > .fullw.grille > .paragraphe1 {
    grid-column-end: span 12;
  }
  .section > .wrap.grille .m1-2, .section > .wrap.grille .paragraphe2, .section > .fullw.grille .m1-2, .section > .fullw.grille .paragraphe2 {
    grid-column-end: span 6;
    box-sizing: border-box;
  }
  .section > .wrap.grille .m1-3, .section > .wrap.grille .paragraphe3, .section > .fullw.grille .m1-3, .section > .fullw.grille .paragraphe3 {
    grid-column-end: span 4;
    box-sizing: border-box;
  }
  .section > .wrap.grille .m2-3, .section > .fullw.grille .m2-3 {
    grid-column-end: span 8;
    box-sizing: border-box;
  }
  .section > .wrap.grille .m1-4, .section > .wrap.grille .paragraphe4, .section > .fullw.grille .m1-4, .section > .fullw.grille .paragraphe4 {
    grid-column-end: span 3;
    box-sizing: border-box;
  }
  .section > .wrap.grille .m3-4, .section > .fullw.grille .m3-4 {
    grid-column-end: span 9;
    box-sizing: border-box;
  }
  .section > .wrap.grille .m1-6, .section > .wrap.grille .paragraphe6, .section > .fullw.grille .m1-6, .section > .fullw.grille .paragraphe6 {
    grid-column-end: span 2;
    box-sizing: border-box;
  }
  .section > .wrap.grille .m4-6, .section > .fullw.grille .m4-6 {
    grid-column-end: span 8;
    box-sizing: border-box;
  }
  .section > .wrap.grille .m5-6, .section > .fullw.grille .m5-6 {
    grid-column-end: span 10;
    box-sizing: border-box;
  }
  .section > .wrap.flex, .section > .fullw.flex {
    padding-inline: 20px;
  }
  .section > .wrap.flex .m-auto, .section > .fullw.flex .m-auto {
    width: auto;
    max-width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .m-full,
  .section > .wrap.flex .paragraphe0,
  .section > .wrap.flex .paragraphe1, .section > .fullw.flex .m-full,
  .section > .fullw.flex .paragraphe0,
  .section > .fullw.flex .paragraphe1 {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .m1-2, .section > .wrap.flex .paragraphe2, .section > .fullw.flex .m1-2, .section > .fullw.flex .paragraphe2 {
    width: calc((100% - (1 * var(--colGap))) / 2);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .m1-3, .section > .wrap.flex .paragraphe3, .section > .fullw.flex .m1-3, .section > .fullw.flex .paragraphe3 {
    width: calc((100% - (2 * var(--colGap))) / 3);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .m2-3, .section > .fullw.flex .m2-3 {
    width: calc((((100% - (2 * var(--colGap))) / 3) * 2) + (1 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .m1-4, .section > .wrap.flex .paragraphe4, .section > .fullw.flex .m1-4, .section > .fullw.flex .paragraphe4 {
    width: calc((100% - (3 * var(--colGap))) / 4);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .m3-4, .section > .fullw.flex .m3-4 {
    width: calc((((100% - (3 * var(--colGap))) / 4) * 3) + (2 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .m1-5, .section > .wrap.flex .paragraphe5, .section > .fullw.flex .m1-5, .section > .fullw.flex .paragraphe5 {
    width: calc((100% - (4 * var(--colGap))) / 5);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .m2-5, .section > .fullw.flex .m2-5 {
    width: calc((((100% - (4 * var(--colGap))) / 5) * 2) + (1 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .m3-5, .section > .fullw.flex .m3-5 {
    width: calc((((100% - (4 * var(--colGap))) / 5) * 3) + (2 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .m4-5, .section > .fullw.flex .m4-5 {
    width: calc((((100% - (4 * var(--colGap))) / 5) * 4) + (3 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .m1-6, .section > .wrap.flex .paragraphe6, .section > .fullw.flex .m1-6, .section > .fullw.flex .paragraphe6 {
    width: calc((100% - (5 * var(--colGap))) / 6);
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .m4-6, .section > .fullw.flex .m4-6 {
    width: calc((((100% - (5 * var(--colGap))) / 6) * 4) + (3 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .section > .wrap.flex .m5-6, .section > .fullw.flex .m5-6 {
    width: calc((((100% - (5 * var(--colGap))) / 6) * 5) + (4 * var(--colGap)));
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;
  }
  body:not(.page-accueil):not(.page-produits) .section-titre-page {
    margin-left: 20px;
  }
}
.titre-produit {
  color: white;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-size: 15px;
  letter-spacing: 2.25px;
  /* text-align: center; */
  border-top: 2px solid white;
  padding-top: 9.5px;
}

.div-bouton-sc .titre-produit {
  padding-top: 12.5px;
}

.produit-zone {
  position: relative;
  background-color: black;
}
.produit-zone:before {
  content: "";
  width: 100vw;
  left: 50%;
  top: 0px;
  height: 100%;
  transform: translateX(-50%);
  background: black;
  display: block;
  position: absolute;
}

.affichage-produit {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  box-sizing: border-box;
  grid-column-gap: 32px;
  padding: 100px 0;
  grid-row-gap: 120px;
  position: relative;
}

.div-produit {
  display: flex;
  align-items: center;
  flex-direction: column;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
.div-produit > div {
  transition: filter 0.4s ease;
}
.div-produit img {
  transition: transform 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .div-produit:hover img {
    transform: scale(0.95);
  }
  .div-produit:hover > div {
    filter: brightness(0.7);
  }
}

.div-sc {
  background: #B7B5B5;
  padding: 32px 60px;
  height: auto;
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  flex: 1 1 0px;
  white-space: nowrap;
}

.div-bouton-sc {
  display: inline-block;
}

.zone-btn-sc {
  margin-bottom: -18px;
}

.section.section-categorie {
  margin-top: 100px;
  margin-bottom: 2px;
}

.section-categorie h2 {
  color: #B67238;
  font-weight: 200;
}

.section-categorie .texte {
  margin-bottom: 80px;
}

.affichage-produit div.produit {
  display: none;
}

.page-produits .contenu {
  flex-grow: 1;
}

.page-produits footer {
  margin-top: 0;
}

.noProduit {
  grid-column-start: 1;
  grid-column-end: -1;
  text-align: center;
}
.noProduit .titre.titre-produit {
  white-space: nowrap;
  border-top: 0px;
}

.div-sc {
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  .div-sc:hover {
    background-color: #5f5e5e !important;
    transition: 0.6s ease;
  }
}

@media (max-width: 960px) {
  .affichage-produit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 12px;
    padding-left: 12px;
  }
  .zone-btn-sc {
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .affichage-produit {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .div-sc {
    white-space: normal;
  }
}
@media (max-width: 360px) {
  .div-bouton-sc {
    margin-right: 30px;
    margin-left: 30px;
  }
  .div-sc {
    padding: 32px 20px;
  }
}
html, select, input, textarea, button, .texte {
  font-family: "halcom", sans-serif;
}

header {
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  color: white;
  z-index: 10;
  /*&.scroll:before {
    backdrop-filter: blur(10px);
  }*/
}
header:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: -1;
  transition: backdrop-filter 0.4s ease;
}
header a {
  color: white;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  header a:hover {
    color: #B67238;
  }
}
header .menu-gauche {
  display: flex;
  column-gap: 30px;
  align-items: center;
  padding-bottom: 3px;
}
header .menu-toggle {
  width: 35px;
  aspect-ratio: 1/1;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  margin: auto;
}
header .menu-toggle span, header .menu-toggle:before, header .menu-toggle:after {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
  left: 0px;
  right: 0px;
  transition: width 0.2s ease, top 0.2s ease, bottom 0.2s ease, transform 0.2s ease;
  transition-delay: 0.2s, 0.2s, 0.2s, 0s;
  background-color: currentColor;
  margin: auto;
}
header .menu-toggle span {
  top: 0px;
  bottom: 0px;
}
header .menu-toggle:before {
  top: 0px;
  bottom: calc(100% - 5px);
}
header .menu-toggle:after {
  bottom: 0px;
  top: calc(100% - 5px);
}
@media screen and (min-width: 961px) {
  header .menu-toggle {
    display: none;
  }
}
header .logo-site {
  max-width: 190px;
  max-height: 80px;
  display: inline-block;
  flex-shrink: 1;
}
header .liste-menus > .close-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
header .submenu-container {
  background-color: #464748;
  color: white;
  padding: 130px 0px 40px 110px;
  box-sizing: border-box;
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  overscroll-behavior: contain;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  transform: translateX(calc(-100% - 20px));
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
header .submenu-container .close-menu {
  position: absolute;
  top: 35px;
  right: 35px;
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: transform 0.4s ease;
}
header .submenu-container .close-menu:before, header .submenu-container .close-menu:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 100%;
  height: 2px;
  background-color: white;
}
header .submenu-container .close-menu:before {
  transform: rotate(45deg);
}
header .submenu-container .close-menu:after {
  transform: rotate(-45deg);
}
header .submenu-container .close-menu:hover {
  transform: rotate(90deg);
}
header .submenu-container .submenu-content {
  height: 100%;
  overflow-y: auto;
  padding-right: 130px;
  padding-left: 20px;
  overscroll-behavior: contain;
}
.menu-ouvert header .menu-toggle span, .menu-ouvert header .menu-toggle:before, .menu-ouvert header .menu-toggle:after {
  transition-delay: 0s, 0s, 0s, 0.2s;
}
.menu-ouvert header .menu-toggle span {
  width: 5px;
}
.menu-ouvert header .menu-toggle:before {
  transform: rotate(45deg);
  bottom: 0px;
}
.menu-ouvert header .menu-toggle:after {
  transform: rotate(-45deg);
  top: 0px;
}
.menu-ouvert header .liste-menus > .close-menu {
  opacity: 1;
  pointer-events: all;
}
.menu-ouvert header .submenu-container {
  transform: translateX(0px);
  opacity: 1;
}

.contenu > .section.having-bg > :not(.background).videoAccueilMom {
  z-index: 1;
}

.section > .wrap.flex .paragraphe1.videoAccueil {
  position: absolute;
  bottom: 530px;
  right: 0px;
  left: calc(100% - clamp(400px, 100vw - min(100vw, 1360px), 950px) / 1.25);
  transform: translateY(50%);
  margin: auto;
  width: clamp(440px, 100vw - min(100vw, 1190px), 950px);
  aspect-ratio: 950/680;
  z-index: 1;
}

.page-accueil .wrap_2_blocs > .paragraphe.img + .std {
  padding-left: 11%;
}
.page-accueil .wrap_2_blocs > div:first-of-type.paragraphe.std {
  padding-right: 11%;
}

.grid-images-slides {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  justify-items: stretch;
  align-items: stretch;
  width: 100%;
}
.grid-images-slides > .bloc-images {
  width: 100%;
  height: 0px;
  padding-bottom: 66%;
  overflow: hidden;
  position: relative;
  grid-row-end: span 2;
}
@media screen and (min-width: 961px) {
  .grid-images-slides.type_5 > .bloc-images:nth-of-type(5), .grid-images-slides.type_6 > .bloc-images:nth-of-type(5), .grid-images-slides.type_7 > .bloc-images:nth-of-type(5), .grid-images-slides.type_8 > .bloc-images:nth-of-type(5) {
    display: none;
  }
  .grid-images-slides.type_1.nb_blocs_5 > .bloc-images:nth-of-type(3) {
    grid-row-end: span 4;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_1.nb_blocs_3 > .bloc-images:nth-of-type(1) {
    grid-row-end: span 4;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_2.nb_blocs_4 > .bloc-images:nth-of-type(4) {
    grid-column-end: span 2;
  }
  .grid-images-slides.type_2.nb_blocs_3 > .bloc-images:nth-of-type(1), .grid-images-slides.type_2.nb_blocs_4 > .bloc-images:nth-of-type(1), .grid-images-slides.type_2.nb_blocs_5 > .bloc-images:nth-of-type(1) {
    grid-row-end: span 4;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_3.nb_blocs_4 > .bloc-images:nth-of-type(4) {
    grid-column-end: span 2;
  }
  .grid-images-slides.type_3.nb_blocs_3 > .bloc-images:nth-of-type(2), .grid-images-slides.type_3.nb_blocs_4 > .bloc-images:nth-of-type(2), .grid-images-slides.type_3.nb_blocs_5 > .bloc-images:nth-of-type(2) {
    grid-row-end: span 4;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_4.nb_blocs_5 > .bloc-images:nth-of-type(4) {
    grid-row-end: span 4;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_4.nb_blocs_3 > .bloc-images:nth-of-type(2) {
    grid-row-end: span 4;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_5.nb_blocs_4 > .bloc-images:nth-of-type(2), .grid-images-slides.type_5.nb_blocs_5 > .bloc-images:nth-of-type(2) {
    grid-row-end: span 4;
    padding-bottom: calc(100% / 3 * 4);
  }
  .grid-images-slides.type_5.nb_blocs_4 > .bloc-images:nth-of-type(3), .grid-images-slides.type_5.nb_blocs_5 > .bloc-images:nth-of-type(3) {
    grid-row-end: span 4;
    padding-bottom: calc(100% / 3 * 4);
  }
  .grid-images-slides.type_5.nb_blocs_3 > .bloc-images:nth-of-type(2) {
    grid-row-end: span 4;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_6.nb_blocs_3 > .bloc-images:nth-of-type(1) {
    grid-row-end: span 4;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_6.nb_blocs_4 > .bloc-images:nth-of-type(1), .grid-images-slides.type_6.nb_blocs_5 > .bloc-images:nth-of-type(1) {
    grid-row-end: span 4;
    padding-bottom: calc(100% / 3 * 4);
  }
  .grid-images-slides.type_6.nb_blocs_3 > .bloc-images:nth-of-type(1), .grid-images-slides.type_6.nb_blocs_4 > .bloc-images:nth-of-type(1), .grid-images-slides.type_6.nb_blocs_5 > .bloc-images:nth-of-type(1) {
    grid-row-end: span 4;
    padding-bottom: calc(100% / 3 * 4);
  }
  .grid-images-slides.type_6.nb_blocs_4 > .bloc-images:nth-of-type(4), .grid-images-slides.type_6.nb_blocs_5 > .bloc-images:nth-of-type(4) {
    grid-row-end: span 4;
    grid-column-start: 2;
    grid-row-start: 3;
    padding-bottom: calc(100% / 3 * 4);
  }
  .grid-images-slides.type_7.nb_blocs_4 > .bloc-images:nth-of-type(1), .grid-images-slides.type_7.nb_blocs_5 > .bloc-images:nth-of-type(1) {
    grid-row-end: span 6;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_7.nb_blocs_3 > .bloc-images:nth-of-type(1) {
    grid-row-end: span 4;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_8.nb_blocs_4 > .bloc-images:nth-of-type(2), .grid-images-slides.type_8.nb_blocs_5 > .bloc-images:nth-of-type(2) {
    grid-row-end: span 6;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_8.nb_blocs_3 > .bloc-images:nth-of-type(2) {
    grid-row-end: span 4;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_9.nb_blocs_3 > .bloc-images:nth-of-type(1), .grid-images-slides.type_9.nb_blocs_5 > .bloc-images:nth-of-type(1) {
    grid-row-end: span 3;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_9.nb_blocs_3 > .bloc-images:nth-of-type(1) {
    grid-row-end: span 4;
  }
  .grid-images-slides.type_9.nb_blocs_5 > .bloc-images:nth-of-type(4) {
    grid-row-end: span 3;
    grid-column-start: 1;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_10.nb_blocs_3 > .bloc-images:nth-of-type(2), .grid-images-slides.type_10.nb_blocs_5 > .bloc-images:nth-of-type(2) {
    grid-row-end: span 3;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.type_10.nb_blocs_3 > .bloc-images:nth-of-type(2) {
    grid-row-end: span 4;
  }
  .grid-images-slides.type_10.nb_blocs_3 > .bloc-images:nth-of-type(4), .grid-images-slides.type_10.nb_blocs_5 > .bloc-images:nth-of-type(4) {
    grid-row-end: span 3;
    grid-column-start: 2;
    height: auto;
    align-self: stretch;
    padding: 0px;
  }
  .grid-images-slides.nb_blocs_1 > .bloc-images:nth-of-type(1) {
    grid-row-end: span 1 !important;
    grid-column-end: span 2 !important;
    align-self: stretch !important;
    height: 0px !important;
    padding-bottom: 66% !important;
  }
}
@media screen and (max-width: 960px) {
  .grid-images-slides {
    grid-template-columns: 1fr;
  }
  .grid-images-slides.type_5 > .bloc-images:nth-of-type(5), .grid-images-slides.type_6 > .bloc-images:nth-of-type(5), .grid-images-slides.type_7 > .bloc-images:nth-of-type(5), .grid-images-slides.type_8 > .bloc-images:nth-of-type(5) {
    display: none;
  }
  .grid-images-slides.type_1 > .bloc-images:nth-of-type(3) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 4);
  }
  .grid-images-slides.type_2 > .bloc-images:nth-of-type(1) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 4);
  }
  .grid-images-slides.type_3 > .bloc-images:nth-of-type(2) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 4);
  }
  .grid-images-slides.type_4 > .bloc-images:nth-of-type(5) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 4);
  }
  .grid-images-slides.type_5 > .bloc-images:nth-of-type(2) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 4);
  }
  .grid-images-slides.type_5 > .bloc-images:nth-of-type(3) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 4);
  }
  .grid-images-slides.type_6 > .bloc-images:nth-of-type(1) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 4);
  }
  .grid-images-slides.type_6 > .bloc-images:nth-of-type(4) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 4);
  }
  .grid-images-slides.type_7 > .bloc-images:nth-of-type(1) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 6);
  }
  .grid-images-slides.type_8 > .bloc-images:nth-of-type(2) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 6);
    order: 5;
  }
  .grid-images-slides.type_9 > .bloc-images:nth-of-type(1) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 3);
  }
  .grid-images-slides.type_9 > .bloc-images:nth-of-type(4) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 3);
  }
  .grid-images-slides.type_10 > .bloc-images:nth-of-type(2) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 3);
  }
  .grid-images-slides.type_10 > .bloc-images:nth-of-type(4) {
    height: 0px;
    padding-bottom: calc(100% / 3 * 3);
  }
}
.grid-images-slides .slider-images {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
}
.grid-images-slides .slider-images .slick-list, .grid-images-slides .slider-images .slick-track {
  width: 100%;
  height: 100%;
}
.grid-images-slides .slider-images .slick-track {
  display: flex;
}
.grid-images-slides .slider-images .slick-slide > div {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.grid-images-slides .slider-images .slick-slide a {
  cursor: url("/images/plus.png") 24.5 24.5, auto;
}
.grid-images-slides .slider-single-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.grid-images-slides .slider-single-image-container img, .grid-images-slides .slider-single-image-container video {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section > .wrap.flex .d1-3.paragraphe.std ul {
  font-weight: 400;
}

.single-nouvelle-bloc .contenu-liste-nouvelle {
  background-color: #0F273A;
}

.single-nouvelle-bloc {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
           supported by Chrome, Edge, Opera and Firefox */
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) and (pointer: fine) {
  .single-nouvelle-bloc:hover .image-container img {
    transform: scale(1.1);
  }
}
.single-nouvelle-bloc .titre-publication {
  font-size: 24px;
  line-height: calc(1em + 8px);
  font-weight: 500;
  padding-right: 25px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
}
@supports (-webkit-line-clamp: 2) {
  .single-nouvelle-bloc .titre-publication {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.section.fiche-nouvelle {
  margin-top: 60px;
}
.section.fiche-nouvelle .entete-nouvelle {
  font-size: 18px;
  font-weight: bold;
}
.section.fiche-nouvelle .entete-nouvelle > :not(:last-child) {
  margin-bottom: 20px;
}
.section.fiche-nouvelle .titre {
  font-size: 48px;
  line-height: 1em;
}
.section.fiche-nouvelle .soustitre {
  font-size: 32px;
  line-height: 1em;
}

.section.fiche-blogue .slider-blogue .vignette {
  padding: 0px 10px;
}
.section.fiche-blogue .retour-liste {
  width: auto;
  justify-self: end;
}
.section.fiche-blogue .commentaire:not(:last-child) {
  border-bottom: 1px solid #0F273A;
  padding-bottom: 10px;
}
.section.fiche-blogue .form-ajax .btn-action {
  margin-left: auto;
}

.formulaire-auto-ajax .question-matrice .titre-option-matrice {
  display: none;
}

.grecaptcha-badge {
  display: none !important;
}

.titre-section {
  grid-column-start: 2;
  grid-column-end: 3;
}

.colorDivCB {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.colorDivCB .colorCB .colorDiv {
  width: 150px;
  height: 45px;
}
.colorDivCB .colorCB .infoColorCB {
  margin-top: 16px;
  line-height: 1.5em;
}
.colorDivCB .colorCB .infoColorCB p {
  margin-bottom: 0;
}

.quincailDivQ {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 56px;
  column-gap: 40px;
  margin-bottom: 40px;
  margin-top: 56px;
}
.quincailDivQ .quincailDiv {
  width: 230px;
  height: 106px;
}
.quincailDivQ .infoquincailQ {
  margin-top: 16px;
  line-height: 1.5em;
}
.quincailDivQ .titreCol {
  font-weight: bold;
  margin-bottom: 0 !important;
}

h3.entrequincailcouleur {
  font-size: 15px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 2.25px;
  margin-bottom: 20px !important;
}

.saving {
  position: relative;
}

@keyframes show-loading {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.saving:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 10000;
  background-image: url(/images/chargement.svg);
  /* background-size: 40px; */
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(1px);
  animation-name: show-loading;
  animation-duration: 0.2s;
  animation-delay: 0.1s;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

body.saving:after {
  right: 0px;
  bottom: 0px;
  position: fixed;
}

@media screen and (min-width: 1921px) {
  .section > .wrap.flex .paragraphe1.videoAccueil {
    left: calc(100% - clamp(400px, 100vw - min(100vw, 1360px), 950px) / 2.75);
  }
}
@media screen and (max-width: 960px) {
  .section > .wrap.flex .paragraphe1.videoAccueil {
    display: none;
  }
  .distinction-noblesse .paragraphe.std:after {
    content: "";
    position: absolute;
    right: 0px;
    left: calc(100% - clamp(400px, 100vw - min(100vw, 1360px), 896px) / 2.7);
    top: 0px;
    transform: translateY(-80px);
    margin: auto;
    width: clamp(464px, 100vw - min(100vw, 1360px), 896px);
    aspect-ratio: 896/464;
    /*-webkit-mask-image: url(/images/woodTexture.svg);
    -webkit-mask: url(/images/woodTexture.svg);
    mask: url(/images/woodTexture.svg);*/
    -webkit-mask-image: url(/images/bois_element.gif);
    -webkit-mask: url(/images/bois_element.gif);
    mask: url(/images/bois_element.gif);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    background-color: #B67238;
    z-index: 0;
  }
}
@media screen and (max-width: 1000px) {
  .section > .wrap.flex .paragraphe1.videoAccueil {
    left: calc(100% - clamp(400px, 100vw - min(100vw, 1360px), 950px) / 1.3);
  }
}
@media screen and (max-width: 1389px) {
  .section > .wrap.flex .paragraphe1.videoAccueil {
    transform: translateY(0px);
  }
}
@media screen and (max-width: 350px) {
  .colorDivCB {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media screen and (max-width: 960px) {
  .section > .wrap > .paragraphe.img {
    width: calc(100% + 120px);
    margin-left: -60px;
    margin-right: -60px;
  }
  .section > .wrap.wrap_2_blocs > .img + .std, .section > .wrap.wrap_2_blocs > .vidf + .std {
    order: -1;
    padding: 60px 0px;
  }
}
@media screen and (max-width: 600px) {
  .section > .wrap > .paragraphe.img {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media screen and (max-width: 480px) {
  .section > .wrap > .paragraphe.img {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}
.contenu > .section:first-child > .wrap_cprod_only.rownb_0 {
  margin-top: -150px;
  position: relative;
  z-index: 3;
}

.paragraphe.cprod .titre-bloc.titreTheme, .paragraphe.cprod .titre-bloc.titreNoir, .paragraphe.cprod .titre-bloc.titreBlanc {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  position: relative;
  border-top: 2px solid;
  padding-top: 10px;
  margin-bottom: 0px;
  font-weight: 800;
  display: inline-block;
  color: #ffffff;
  border-top-color: #ffffff;
}
.paragraphe.cprod .bloc-image-cat {
  aspect-ratio: 664/450;
  background: black;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.paragraphe.cprod .bloc-image-cat img {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  max-width: unset;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.paragraphe.cprod a:hover .bloc-image-cat img {
  /*Valeur positive seulement*/
  --zoom:10px;
  top: calc(var(--zoom) * -1);
  left: calc(var(--zoom) * -1);
  right: calc(var(--zoom) * -1);
  bottom: calc(var(--zoom) * -1);
  max-width: unset;
  object-fit: cover;
  width: calc(100% + 2 * var(--zoom));
  height: calc(100% + 2 * var(--zoom));
}
.paragraphe.cprod .bloc-entete {
  min-height: 150px;
  padding: 40px 54px;
  display: flex;
  align-items: flex-end;
  background: black;
}

@media screen and (max-width: 960px) {
  .contenu > .section:first-child > .wrap_cprod_only.rownb_0 {
    padding: 0px;
  }
}
@media screen and (max-width: 600px) {
  .contenu > .section:first-child > .wrap_cprod_only.rownb_0 {
    margin-top: 0px;
  }
  .paragraphe.cprod .bloc-entete {
    padding: 20px 30px 40px;
  }
}
@media screen and (max-width: 480px) {
  .paragraphe.cprod .bloc-entete {
    padding: 20px 20px 30px;
  }
}
.paragraphe.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.paragraphe.cta .titre-bloc {
  text-align: center;
}
.paragraphe.cta .btn {
  margin: auto;
}

.paragraphe.dia {
  overflow: hidden;
}
.paragraphe.dia .diaporama-contenu img, .paragraphe.dia .diaporama-contenu video {
  width: 100%;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider {
  position: relative;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .slick-track, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .slick-track {
  align-items: stretch;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .slick-list, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .slick-list {
  position: relative;
  z-index: 1;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .slick-slide > div, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .slick-slide > div {
  height: 100%;
  display: flex;
  align-items: stretch;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide {
  position: relative;
  vertical-align: top;
  display: grid !important;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide > *, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide > * {
  grid-row-start: 1;
  grid-column-start: 1;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .image-container:after, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .video-container:after, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide .image-container:after, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide .video-container:after {
  /* background-color: rgba(70, 71, 72, 0.4); */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .image-container img, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide .image-container img {
  height: 100%;
  object-fit: cover;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .video-container, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide .video-container {
  overflow: hidden;
  position: relative;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .video-container video, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide .video-container video {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide .infos-slide {
  /* color:white; */
  /* text-shadow: 0px 3px 6px rgba(100,100,100,0.4); */
  width: 100%;
  max-width: 1420px;
  margin: auto;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  padding-block: 80px;
  z-index: 1;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
           supported by Chrome, Edge, Opera and Firefox */
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide .contenu-slide, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide .infos-slide .contenu-slide {
  max-width: min(100% - 52px, 700px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 20px;
}
header.premier-bloc-dia + .entete-image + .contenu > .section:first-child > .wrap_dia_only:first-child .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide, header.premier-bloc-dia + .entete-image + .contenu > .section:first-child > .wrap_dia_only:first-child .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide .infos-slide {
  padding-top: 150px;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide .titre-slide, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide .infos-slide .titre-slide {
  font-size: 45px;
  line-height: 50px;
  margin-bottom: 0px;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide span.titre-1, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide .infos-slide span.titre-1 {
  font-weight: 300;
  /* color: $ComplementCouleurAccent; */
  /* font-family: 'Inter', 'Noto Sans', sans-serif; */
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide .texte-diapo, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide .infos-slide .texte-diapo {
  font-size: 16px;
  line-height: 1.625em;
  font-weight: 400;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces {
  display: flex;
  padding: 0px;
  list-style-type: none;
  align-items: center;
  position: absolute;
  width: 100%;
  margin: auto;
  pointer-events: none;
  z-index: 2;
  column-gap: 20px;
  row-gap: 20px;
  padding-inline: 10px;
  /* Horizontal */
  /* Vertical */
  /* Format des boutons */
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces li, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces li {
  pointer-events: all;
  margin: 0px;
  line-height: 18px;
  padding: 0px;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces li:nth-child(-n+9) button:before, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces li:nth-child(-n+9) button:before {
  content: "0";
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces li:before, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces li:before {
  display: none;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces li button, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces li button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  color: black;
  background-color: white;
  border: none;
  box-shadow: 0px 3px 6px rgba(100, 100, 100, 0.4);
  font-size: 12px;
  font-weight: bold;
  font-family: "Noto Sans", sans-serif;
  line-height: 18px;
  height: 32px;
  width: 32px;
  padding: 0px;
  box-sizing: border-box;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
  -webkit-transition: color 0.4s ease, background-color 0.4s ease;
  -ms-transition: color 0.4s ease, background-color 0.4s ease;
  transition: color 0.4s ease, background-color 0.4s ease;
  vertical-align: top;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces li.slick-active button, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces li.slick-active button {
  color: black;
  background-color: #F6C93B;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hbg, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hhg, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hbg, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hhg {
  flex-direction: row;
  justify-content: flex-start;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hbc, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hhc, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hbc, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hhc {
  flex-direction: row;
  justify-content: center;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hbd, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hhd, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hbd, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hhd {
  flex-direction: row;
  justify-content: flex-end;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hhg, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hhc, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hhd, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hbg, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hbc, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hbd, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hhg, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hhc, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hhd, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hbg, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hbc, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hbd {
  max-width: 1400px;
  left: 0px;
  right: 0px;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hbg, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hbc, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hbd, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hbg, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hbc, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hbd {
  bottom: 40px;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hhg, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hhc, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hhd, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hhg, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hhc, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-hhd {
  top: 40px;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgh, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vdh, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vgh, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vdh {
  flex-direction: column;
  justify-content: flex-start;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgc, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vdc, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vgc, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vdc {
  flex-direction: column;
  justify-content: center;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgb, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vdb, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vgb, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vdb {
  flex-direction: column;
  justify-content: flex-end;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgh, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgc, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgb, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vdh, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vdc, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vdb, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vgh, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vgc, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vgb, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vdh, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vdc, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vdb {
  max-width: 1420px;
  top: 40px;
  bottom: 40px;
  margin: auto;
  left: 0px;
  right: 0px;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgh, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgc, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgb, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vgh, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vgc, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vgb {
  align-items: flex-start;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vdh, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vdc, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vdb, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vdh, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vdc, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.al-vdb {
  align-items: flex-end;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.puce_ronde button, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.puce_ronde_num button, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.puce_ronde button, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.puce_ronde_num button {
  border-radius: 50%;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.puce_ronde button, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.puce_carree button, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.puce_ronde button, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.puce_carree button {
  font-size: 0px;
  color: transparent;
  border: 4px solid white;
  background-color: white;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.puce_ronde li.slick-active button, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.puce_carree li.slick-active button, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.puce_ronde li.slick-active button, .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .liste-puces.puce_carree li.slick-active button {
  background-color: #F6C93B;
}
.paragraphe.dia .diaporama-contenu.mos {
  padding: 36px calc((100% / 3 / 2) - 20px);
}
.paragraphe.dia .diaporama-contenu.mos .diaporama-slider {
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: hidden;
}
.paragraphe.dia .diaporama-contenu.mos .slick-slide > div {
  height: 100%;
}
.paragraphe.dia .diaporama-contenu.mos .diapo-slide {
  position: relative;
  z-index: 1;
  background: white;
  box-sizing: border-box;
  border: 1px solid #DBDBDB;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  transition-delay: 0s;
  margin: 0px;
  height: 100%;
  width: 100%;
  display: flex !important;
  flex-direction: column;
}
.paragraphe.dia .diaporama-contenu.mos .diapo-slide .infos-slide {
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  transition-delay: 0s;
  text-align: center;
  padding: 20px 20px;
}
.paragraphe.dia .diaporama-contenu.mos .diapo-slide .infos-slide > :not(:last-child) {
  margin-bottom: 20px;
}
.paragraphe.dia .diaporama-contenu.mos .diapo-slide .infos-slide .titre-diapo {
  color: #F6C93B;
  font-weight: 500;
  font-size: 26px;
  line-height: 20px;
}
.paragraphe.dia .diaporama-contenu.mos .diapo-slide .infos-slide .texte-diapo {
  font-size: 14px;
  line-height: 24px;
  font-family: Arial, sans-serif;
  color: black;
}
.paragraphe.dia .diaporama-contenu.mos .diapo-slide:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: #DDDDDD;
  opacity: 0.74;
  -webkit-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  transition-delay: 0s;
  cursor: pointer;
}
.paragraphe.dia .diaporama-contenu.mos .slick-active.slick-center .diapo-slide {
  cursor: unset;
  display: inline-block;
  position: relative;
  z-index: 10;
  height: calc(100% + 80px);
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transition-delay: 0.2s;
}
.paragraphe.dia .diaporama-contenu.mos .slick-active.slick-center .diapo-slide .infos-slide {
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transition-delay: 0.2s;
}
.paragraphe.dia .diaporama-contenu.mos .slick-active.slick-center .diapo-slide:after {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  transition-delay: 0.2s;
  pointer-events: none;
}
.paragraphe.dia .diaporama-contenu.sla .diaporama-slider {
  height: auto !important;
}
.paragraphe.dia .diaporama-contenu.sla .diapo-slide {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}
.paragraphe.dia .diaporama-contenu.sla .diapo-slide .infos-slide {
  margin: initial !important;
  grid-column-start: 2;
  padding-left: 130px !important;
  padding-right: 0px !important;
  padding-top: 0px !important;
  padding-bottom: 120px !important;
}
.paragraphe.dia .diaporama-contenu.sla .diapo-slide .infos-slide .contenu-slide {
  text-align: left;
}
.paragraphe.dia .diaporama-contenu.sla .diapo-slide .infos-slide .texte-diapo {
  font-weight: bold;
}
.paragraphe.dia .diaporama-contenu.sla .diapo-slide .infos-slide .slider-nav {
  /* position:absolute;
  bottom:30px;
  right:40px; */
  display: flex;
  column-gap: 10px;
  z-index: 2;
  margin-top: 60px;
}
.paragraphe.dia .diaporama-contenu.sla .diapo-slide .infos-slide .slider-nav .prev-arrow, .paragraphe.dia .diaporama-contenu.sla .diapo-slide .infos-slide .slider-nav .next-arrow {
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  width: 40px;
  height: 40px;
  position: initial;
  transform: unset;
  border-radius: unset;
  background-color: unset;
  z-index: unset;
}
.paragraphe.dia .diaporama-contenu.sla .diapo-slide .infos-slide .slider-nav .prev-arrow {
  background-image: url(/images/slider-prev.svg);
}
.paragraphe.dia .diaporama-contenu.sla .diapo-slide .infos-slide .slider-nav .next-arrow {
  background-image: url(/images/slider-next.svg);
}

@media screen and (max-width: 1281px) {
  .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide .infos-slide {
    grid-column-start: 1;
    padding-left: 0 !important;
    grid-row-start: 2;
  }
  .paragraphe.dia .diaporama-contenu.sla .diaporama-slider .diapo-slide .infos-slide .contenu-slide {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 601px) {
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide .titre-slide {
    font-size: 28px;
    line-height: 1.2em;
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces li button {
    width: 24px;
    height: 24px;
    column-gap: 2px;
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces {
    column-gap: 10px;
    row-gap: 10px;
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgc, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vdc {
    flex-direction: row;
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgh, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgc, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgb, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vdh, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vdc, .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vdb {
    top: unset;
    bottom: 50px;
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide .contenu-slide {
    max-width: 100%;
  }
  header.premier-bloc-dia + .entete-image + .contenu > .section:first-child > .wrap_dia_only:first-child .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide {
    padding-bottom: 120px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 960px) {
  .formulaire-auto-ajax table, .formulaire-auto-ajax tbody {
    display: block;
  }
  .formulaire-auto-ajax .question-matrice {
    margin-top: 20px;
  }
  .formulaire-auto-ajax .question-matrice .titre-option-matrice {
    display: inline-block;
    flex-grow: 1;
    flex-shrink: 1;
    margin-right: 10px;
    text-align: left;
  }
  .formulaire-auto-ajax .question-matrice .entete-matrice {
    display: none;
  }
  .formulaire-auto-ajax .question-matrice tr:not(.entete-matrice) {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    width: 100%;
  }
  .formulaire-auto-ajax .question-matrice tr:not(.entete-matrice):not(:last-child) {
    margin-bottom: 40px;
  }
  .formulaire-auto-ajax .question-matrice tr:not(.entete-matrice) td:first-child {
    border-color: #0F273A;
    font-size: 18px;
    font-weight: bold;
    border-left: 5px solid;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .formulaire-auto-ajax .question-matrice tr:not(.entete-matrice) td:not(:first-child) {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
  }
  .formulaire-auto-ajax .question-matrice tr:not(.entete-matrice) td:not(:first-child) input {
    margin: 0px;
    flex-shrink: 0;
  }
  .formulaire-auto-ajax .question-matrice tr:not(.entete-matrice) td:not(:first-child):nth-child(even) {
    background: #EFEFEF;
  }
  .colorDivCB {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .colorDivCB {
    grid-template-columns: repeat(2, 1fr);
  }
  .quincailDivQ {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
}

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