@charset "UTF-8";
/*!
 * Copyright (c) 2021.
 *
 * @file front.scss
 * @author ENOS
 * @site https://www.enos5.com
 * @date 2022-01-24 at 11:55:50
 */
: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;
  margin: 0px;
  padding: 0px;
  /* font-family:"Roc Grotesk",Arial, sans-serif; */
  font-family: "arboria", sans-serif;
}

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-5);
}

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

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: 26px;
}
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;
  border: none;
  border-bottom: 1px solid;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  height: calc(1.5rem + 12px);
  /*display:inline-block;*/
  color: #464748;
}
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: #464748;
}
input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, .btn-action::-webkit-input-placeholder {
  color: #464748;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder, .btn-action::-moz-placeholder {
  opacity: 0.99;
  color: #464748;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder, .btn-action:-ms-input-placeholder {
  color: #464748;
}

textarea {
  height: calc(7.5rem + 12px);
  resize: none;
  vertical-align: top;
}

select {
  background-image: url(../images/select.svg);
  background-size: 1em;
  background-position: center right 10px;
  background-repeat: no-repeat;
}

.btn-action {
  text-align: center;
  background-color: #464748;
  color: white;
  -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) {
  .btn-action:hover {
    color: #464748;
    background-color: #464748;
  }
}

.btn {
  text-transform: none !important;
  display: inline-block;
  text-align: center;
  color: black;
  /* font-family: "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  font-size: 16px;
  line-height: normal;
  padding: 16px 24px calc(16px - 0.1em);
  background: #FFA92F;
  border-radius: 6px;
  font-weight: bold;
  border: 3px solid #FEA92E;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.2s ease, box-shadow 0.4s ease;
  -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 */
}
.btn:hover {
  background: transparent;
}
.btn:active {
  transform: scale(0.95);
}
.btn.btn-inverse {
  border-color: white;
  background-color: white;
  color: #464748;
}
.btn.btn-inverse:hover {
  color: #464748;
}
.btn.btn-contour {
  text-transform: uppercase;
  border: 3px solid #FFA92F;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  padding: 12px 24px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.2s ease;
}
.btn.btn-contour:hover {
  background-color: #FFA92F;
  box-shadow: none;
}
.btn.btn-contour:active {
  transform: scale(0.95);
}
.contenu .btn.btn-contour {
  text-transform: initial;
  font-weight: 500;
  padding-block: 16px;
}
.btn.btn-contour-gris {
  text-transform: uppercase;
  border: 3px solid #464748;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1em;
  font-weight: bold;
  /* font-family:"Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  background: transparent;
  color: inherit;
  padding: 12px 24px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.2s ease;
}
.btn.btn-contour-gris:hover {
  background-color: #464748;
  color: white;
}
.btn.btn-contour-gris:active {
  transform: scale(0.95);
}

.btn-jaune {
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  color: white;
  /* font-family: "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  background: #FFA92F;
  font-weight: bold;
  border: 3px solid #FFA92F;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.2s ease, box-shadow 0.4s ease;
  -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 */
}
.btn-jaune:hover {
  color: white;
}
.btn-jaune:active {
  transform: scale(0.95);
}
.btn-jaune.btn-inverse {
  border-color: white;
  background-color: white;
  color: #FFA92F;
}
.btn-jaune.btn-inverse:hover {
  color: #FFA92F;
}
.btn-jaune.btn-contour {
  text-transform: uppercase;
  border: 3px solid #FFA92F;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1em;
  font-weight: bold;
  /* font-family:"Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  background: transparent;
  color: inherit;
  padding: 12px 24px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.2s ease;
}
.btn-jaune.btn-contour:hover {
  background-color: #FFA92F;
  color: #FFA92F;
}
.btn-jaune.btn-contour:active {
  transform: scale(0.95);
}
.btn-jaune.btn-contour-gris {
  text-transform: uppercase;
  border: 3px solid #FFA92F;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1em;
  font-weight: bold;
  /* font-family:"Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  background: transparent;
  color: inherit;
  padding: 12px 24px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.2s ease;
}
.btn-jaune.btn-contour-gris:hover {
  background-color: #FFA92F;
  color: white;
}
.btn-jaune.btn-contour-gris:active {
  transform: scale(0.95);
}

.btn-resume-categorie {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.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: #F2B558;
  border: 5px solid #F2B558;
  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 > :not(:last-child).margin_1 {
  margin-bottom: 0px;
  margin-top: 0px;
}
.contenu > :not(:last-child).margin_2 {
  margin-bottom: 20px;
  margin-top: 0px;
}
.contenu > :not(:last-child).margin_3 {
  margin-bottom: 80px;
  margin-top: 0px;
}
.contenu > :not(:last-child).margin_4 {
  margin-bottom: 120px;
  margin-top: 0px;
}
.contenu > :not(:last-child).margin_5 {
  margin-bottom: 215px;
  margin-top: 0px;
}
.contenu .paragraphe.paragraphe-blanc {
  color: white;
}
.contenu .paragraphe.paragraphe-blanc a {
  color: inherit;
}

@media screen and (min-width: 961px) {
  .sectionMenu {
    width: 100%;
    display: grid;
    grid-row-gap: var(--rowGap);
    grid-column-gap: var(--colGap)/2;
  }
  .section {
    width: 100%;
    display: grid;
    grid-template-columns: calc((100% - 1920px) / 2) minmax(0, 1fr) calc((100% - 1920px) / 2);
    grid-row-gap: 20px;
    grid-column-gap: 120px;
  }
  .section .wrap {
    max-width: unset;
  }
  .section > .full, .section > .paragraphe0, .section > .d-full {
    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;
  }
}
@media screen and (max-width: 960px) {
  .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);
  }
}
@media screen and (max-width: 480px) {
  .formulaire-auto-largeur1,
  .formulaire-auto-largeur2,
  .formulaire-auto-largeur3,
  .formulaire-auto-largeur4,
  .formulaire-auto-largeur5 {
    width: 100%;
  }
}
header .zoneMenu {
  position: relative;
}
header .zoneMenu .menu-gauche {
  display: none;
}
header .zoneMenu .ligneHaute {
  height: 43px;
  background-color: #231F20;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: end;
}
header .zoneMenu .ligneHaute .liste-menus .type-lg {
  display: none;
}
header .zoneMenu .ligneHaute .menu-header .liens-menu .lien {
  font-weight: 500;
  text-transform: initial;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  header .zoneMenu .ligneHaute .menu-header .liens-menu .lien:hover {
    color: #FFA92F;
  }
}
header .zoneMenu .ligneHaute .zoneDroite {
  display: flex;
  align-items: center;
  column-gap: 25px;
  padding-right: 38px;
  padding-left: 50px;
}
header .zoneMenu .ligneHaute .zoneDroite a {
  transition: all 0.5s ease !important;
}
header .zoneMenu .ligneHaute .zoneDroite a.lien-lg {
  color: #fff;
  font-weight: 500;
}
header .zoneMenu .ligneHaute .zoneDroite a.lien-lg:hover {
  color: #FFA92F;
  transition: all 0.5s ease;
}
header .zoneMenu .ligneHaute .zoneDroite .recherche {
  padding-left: 20px;
}
header .zoneMenu .ligneBasse {
  height: 87px;
  background-color: #F0F1F1;
  color: #000;
  padding-left: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 18px;
  border-bottom: 1px solid #C5C5C5;
}
header .zoneMenu .ligneBasse .zoneDroite {
  display: flex;
  align-items: center;
  -moz-column-gap: 50px;
  column-gap: 50px;
}
header .zoneMenu .ligneBasse .zoneDroite .menu-header .liens-menu {
  column-gap: 50px;
  font-weight: bold !important;
  font-size: 18px;
}
header .zoneMenu .ligneBasse .zoneDroite .menu-header .liens-menu a {
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  header .zoneMenu .ligneBasse .zoneDroite .menu-header .liens-menu a:hover {
    color: #87898B;
  }
}
header .zoneMenu .ligneBasse .zoneDroite .btn {
  padding: 20px 28px calc(20px - 0.1em);
  background: #FFA92F;
  border: 3px solid #FFA92F;
  color: black;
  border-radius: 6px;
  font-size: 16px;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  header .zoneMenu .ligneBasse .zoneDroite .btn:hover {
    background: transparent;
  }
}

.liens-menu {
  /* font-family:"Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  user-select: none;
  /*a, a:visited {
    font-size: 0.6rem;
    color: inherit;
  }*/
}
.liens-menu a, .liens-menu a:visited {
  color: inherit;
}
.liens-menu .lien {
  display: inline-block;
  text-decoration: none;
}
.liens-menu .lien:hover {
  color: #FFA92F;
}
.liens-menu .lien-avec-sousmenu:not(.ouvert) > .sous-menu {
  display: none;
}
.liens-menu .lien-avec-sousmenu {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.liens-menu .lien-avec-sousmenu > .lien {
  padding-right: 32px;
  position: relative;
}
.liens-menu .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;
}
.liens-menu .lien-avec-sousmenu.ouvert > .lien:after {
  transform: rotate(180deg);
}

.liste-menus .menu-header .liens-menu {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  column-gap: 3.5rem;
  font-weight: bold;
  user-select: none;
}
.liste-menus .menu-header .liens-menu .lien:hover {
  color: #FFA92F;
}
.liste-menus .menu-header .liens-menu.menu-niveau-0 {
  flex-direction: row;
  align-items: center;
  font-weight: bold;
  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 > .sous-menu {
  overflow-y: auto;
  max-height: calc(100vh - 100%);
  overflow-x: hidden;
}
.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: #464748;
  color: white;
  position: absolute;
  top: 100%;
  left: 0px;
  width: max-content;
  max-width: 300px;
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 {
  font-weight: 500;
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 .lien-avec-sousmenu .lien, .liste-menus .menu-header .liens-menu .menu-niveau-1 .lien-avec-sousmenu .sous-menu, .liste-menus .menu-header .liens-menu .menu-niveau-1 .lien-sans-sousmenu {
  padding-block: 0.5rem;
}
.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-inline: 1rem;
  font-weight: 500;
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 .lien-avec-sousmenu:not(.ouvert) > .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 {
  padding-right: calc(32px + 2rem);
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 .lien-avec-sousmenu > .lien:after {
  right: 1rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-1 .sous-menu {
  background: white;
  color: #464748;
  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: 1.75rem;
}
.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: #464748;
  color: #FFF;
}
.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: 2.5rem;
}
.liste-menus .menu-header .liens-menu .menu-niveau-3 .lien:before {
  width: 1.75rem;
}
.liste-menus .menu-liste {
  padding-left: 24px;
}
.liste-menus .menu-liste.type-lg {
  color: white;
  font-size: 22px;
  /* font-family: "Roc Grotesk", "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  line-height: 1em;
  font-weight: bold;
  text-transform: uppercase;
}
.liste-menus .menu-liste.type-lg:not(:last-child) {
  margin-bottom: 70px;
}
.liste-menus .menu-liste.type-lg a.lien-lg {
  color: inherit;
  position: relative;
}
.liste-menus .menu-liste.type-lg a.lien-lg:hover {
  color: #FFA92F;
}
.liste-menus .menu-liste.type-lg a.lien-lg:before {
  content: "";
  position: absolute;
  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;
  left: -24px;
  transform: rotate(-90deg);
  width: 0.8em;
  height: 0.8em;
}
.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;
  font-weight: bold;
  user-select: none;
  font-size: 18px;
  line-height: 1em;
  row-gap: 30px;
  align-items: flex-start;
}
.liste-menus .menu-liste.type-page .liens-menu.menu-niveau-1 {
  row-gap: 10px;
  padding-left: 32px;
  padding-block: 20px;
  font-weight: normal;
  font-size: 16px;
}
.liste-menus .menu-liste.type-page .liens-menu.menu-niveau-2 {
  padding-left: 10px;
  font-weight: normal;
  padding-top: 10px;
  row-gap: 10px;
  text-transform: initial;
  font-size: 16px;
}
.liste-menus .menu-liste.type-page .liens-menu .lien:hover {
  color: #FFA92F;
}
.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: 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  align-items: flex-start;
  color: #BBB;
}
.liste-menus .menu-liste.type-piedpage .liens-menu .menuBold {
  font-size: 16px;
  font-weight: bold;
  color: white;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .liste-menus .menu-liste.type-piedpage .liens-menu .menuBold:hover {
    color: #FFA92F;
  }
}

@media screen and (max-width: 1400px) {
  header .zoneMenu .ligneBasse .zoneDroite .menu-header .liens-menu {
    column-gap: 20px;
  }
  header .zoneMenu .ligneBasse .zoneDroite .btn {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1280px) {
  header {
    height: 78px;
  }
  header::before {
    height: 78px;
  }
  header .zoneMenu .ligneBasse, header .zoneMenu .ligneHaute {
    display: none;
  }
  header .zoneMenu .menu-gauche {
    display: flex;
    height: 78px;
    padding-left: 30px;
    background: #231F20;
    justify-content: space-between;
    padding-right: 26px;
  }
  header .zoneMenu .menu-gauche .ico-loupe {
    width: 25px;
    height: 27px;
  }
  header .submenu-container .logo-site, header .submenu-container .recherche {
    display: none;
  }
}
.section > .wrap {
  grid-column-start: 2;
  grid-column-end: span 1;
}
.section > .wrap.grille {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.section > .wrap.grille.v-start {
  align-items: start;
}
.section > .wrap.grille.v-end {
  align-items: end;
}
.section > .wrap.grille.v-stretch {
  align-items: stretch;
}
.section > .wrap.grille.v-center {
  align-items: center;
}
.section > .wrap.grille.h-start {
  justify-content: start;
}
.section > .wrap.grille.h-end {
  justify-content: end;
}
.section > .wrap.grille.h-space-between {
  justify-content: space-between;
}
.section > .wrap.grille.h-center {
  justify-content: center;
}
.section > .wrap.grille > .h-center {
  justify-self: center;
}
.section > .wrap.flex {
  display: flex;
}
.section > .wrap.flex:not(.nowrap) {
  flex-wrap: wrap;
}
.section > .wrap.flex.v-start {
  align-items: flex-start;
}
.section > .wrap.flex.v-end {
  align-items: flex-end;
}
.section > .wrap.flex.v-stretch {
  align-items: stretch;
}
.section > .wrap.flex.v-center {
  align-items: center;
}
.section > .wrap.flex.h-start {
  justify-content: flex-start;
}
.section > .wrap.flex.h-end {
  justify-content: flex-end;
}
.section > .wrap.flex.h-space-between {
  justify-content: space-between;
}
.section > .wrap.flex.h-center {
  justify-content: center;
}
.section > .wrap.flex .d-equal {
  flex-basis: 100%;
  flex-grow: 1;
  flex-shrink: 1;
}

.section > .full.grille {
  display: grid;
  grid-template-columns: calc((100% - 1920px) / 2) repeat(12, minmax(0, 1fr)) calc((100% - 1920px) / 2);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

@media screen and (min-width: 961px) {
  .section > .wrap.grille {
    /*padding-inline:$hSpacingDesktopGlobal / 2;*/
    grid-column-gap: 20px;
  }
  .section > .wrap.grille > .d-full,
  .section > .wrap.grille > .paragraphe0,
  .section > .wrap.grille > .paragraphe1 {
    grid-column-end: span 12;
  }
  .section > .wrap.grille > .d1-2,
  .section > .wrap.grille > .paragraphe2 {
    grid-column-end: span 6;
  }
  .section > .wrap.grille > .d1-3,
  .section > .wrap.grille > .paragraphe3 {
    grid-column-end: span 4;
  }
  .section > .wrap.grille > .d1-4,
  .section > .wrap.grille > .paragraphe4 {
    grid-column-end: span 3;
  }
  .section > .wrap.grille > .d2-3 {
    grid-column-end: span 8;
  }
  .section > .wrap.grille > .d3-4 {
    grid-column-end: span 9;
  }
  .section > .wrap.grille > .d1-6 {
    grid-column-end: span 2;
  }
  .section > .wrap.grille > .d5-6 {
    grid-column-end: span 10;
  }
  .section > .wrap.grille > .paragraphe1 {
    grid-column-end: span 12;
  }
  .section > .wrap.flex {
    margin-inline: -10px;
    max-width: calc(1920px);
    width: calc(100% - (-20px));
  }
  .wrap > .section > .wrap.flex {
    margin-inline: -10px;
    width: calc(100% + 20px);
  }
  .section > .wrap.flex .d-auto {
    width: auto;
    max-width: calc(100% - 20px);
  }
  .section > .wrap.flex .d-full,
  .section > .wrap.flex .paragraphe0,
  .section > .wrap.flex .paragraphe1 {
    width: calc(100% - 20px);
  }
  .section > .wrap.flex .d-equal {
    max-width: calc(100% - 20px);
    flex: 1 1 0px;
    width: 0;
  }
  .section > .wrap.flex .d1-2,
  .section > .wrap.flex .paragraphe2 {
    width: calc(50% - 20px);
  }
  .section > .wrap.flex .d1-3,
  .section > .wrap.flex .paragraphe3 {
    width: calc((100% / 3) - 20px);
  }
  .section > .wrap.flex .d1-4,
  .section > .wrap.flex .paragraphe4 {
    width: calc(25% - 20px);
  }
  .section > .wrap.flex .d2-3 {
    width: calc((100% / 3 * 2) - 20px);
  }
  .section > .wrap.flex .d3-4 {
    width: calc(75% - 20px);
  }
  .section > .wrap.flex .d1-5,
  .section > .wrap.flex .paragraphe5 {
    width: calc(20% - 20px);
  }
  .section > .wrap.flex .d2-5 {
    width: calc(40% - 20px);
  }
  .section > .wrap.flex .d3-5 {
    width: calc(60% - 20px);
  }
  .section > .wrap.flex .d4-5 {
    width: calc(80% - 20px);
  }
  .section > .wrap.flex .d1-6 {
    width: calc((100% / 6) - 20px);
  }
  .section > .wrap.flex .d5-6 {
    width: calc((100% / 6 * 5) - 20px);
  }
  .section > .wrap.flex .d-auto, .section > .wrap.flex .d-full, .section > .wrap.flex .d1-2, .section > .wrap.flex .d1-3, .section > .wrap.flex .d1-4, .section > .wrap.flex .d2-3, .section > .wrap.flex .d3-4, .section > .wrap.flex .d1-5, .section > .wrap.flex .d2-5, .section > .wrap.flex .d3-5, .section > .wrap.flex .d4-5, .section > .wrap.flex .d1-6, .section > .wrap.flex .d5-6, .section > .wrap.flex .paragraphe0, .section > .wrap.flex .paragraphe1, .section > .wrap.flex .paragraphe2, .section > .wrap.flex .paragraphe3, .section > .wrap.flex .paragraphe4, .section > .wrap.flex .paragraphe5, .section > .wrap.flex .d-equal {
    margin-left: 10px;
    margin-right: 10px;
  }
  .section-selection-recherche > .wrap.grille {
    grid-row-gap: 20px;
  }
}
@media screen and (min-width: 961px) and (min-width: 1280px) {
  .section-selection-recherche > .wrap.grille {
    grid-column-gap: 46px;
    grid-row-gap: 42px;
  }
}
@media screen and (min-width: 481px) and (max-width: 960px) {
  .section > .wrap {
    padding-inline: 10px;
  }
  .section > .wrap.grille {
    padding-inline: 20px;
    grid-column-gap: 20px;
  }
  .section > .wrap.grille > .t-full,
  .section > .wrap.grille > .paragraphe0,
  .section > .wrap.grille > .paragraphe1 {
    grid-column-end: span 12;
  }
  .section > .wrap.grille > .t1-2,
  .section > .wrap.grille > .paragraphe2 {
    grid-column-end: span 6;
  }
  .section > .wrap.grille > .t1-3,
  .section > .wrap.grille > .paragraphe3 {
    grid-column-end: span 4;
  }
  .section > .wrap.grille > .t1-4,
  .section > .wrap.grille > .paragraphe4 {
    grid-column-end: span 3;
  }
  .section > .wrap.grille > .t2-3 {
    grid-column-end: span 8;
  }
  .section > .wrap.grille > .t3-4 {
    grid-column-end: span 9;
  }
  .section > .wrap.grille > .t1-6 {
    grid-column-end: span 2;
  }
  .section > .wrap.grille > .t5-6 {
    grid-column-end: span 10;
  }
  .section > .wrap.grille > .paragraphe1 {
    grid-column-end: span 12;
  }
  .section > .wrap.flex {
    padding-inline: 30px;
  }
  .wrap > .section > .wrap.flex {
    margin-inline: -10px;
    width: calc(100% + 20px);
  }
  .section > .wrap.flex .t-auto {
    width: auto;
    max-width: calc(100% - 20px);
  }
  .section > .wrap.flex .t-full,
  .section > .wrap.flex .paragraphe0,
  .section > .wrap.flex .paragraphe1 {
    width: calc(100% - 20px);
  }
  .section > .wrap.flex .t-equal {
    max-width: calc(100% - 20px);
    flex: 1 1 0px;
    width: 0;
  }
  .section > .wrap.flex .t1-2,
  .section > .wrap.flex .paragraphe2 {
    width: calc(50% - 20px);
  }
  .section > .wrap.flex .t1-3,
  .section > .wrap.flex .paragraphe3 {
    width: calc((100% / 3) - 20px);
  }
  .section > .wrap.flex .t1-4,
  .section > .wrap.flex .paragraphe4 {
    width: calc(25% - 20px);
  }
  .section > .wrap.flex .t2-3 {
    width: calc((100% / 3 * 2) - 20px);
  }
  .section > .wrap.flex .t3-4 {
    width: calc(75% - 20px);
  }
  .section > .wrap.flex .t1-5,
  .section > .wrap.flex .paragraphe5 {
    width: calc(20% - 20px);
  }
  .section > .wrap.flex .t2-5 {
    width: calc(40% - 20px);
  }
  .section > .wrap.flex .t3-5 {
    width: calc(60% - 20px);
  }
  .section > .wrap.flex .t4-5 {
    width: calc(80% - 20px);
  }
  .section > .wrap.flex .t1-6 {
    width: calc((100% / 6) - 20px);
  }
  .section > .wrap.flex .t5-6 {
    width: calc((100% / 6 * 5) - 20px);
  }
  .section > .wrap.flex .t-auto, .section > .wrap.flex .t-full, .section > .wrap.flex .t1-2, .section > .wrap.flex .t1-3, .section > .wrap.flex .t1-4, .section > .wrap.flex .t2-3, .section > .wrap.flex .t3-4, .section > .wrap.flex .t1-5, .section > .wrap.flex .t2-5, .section > .wrap.flex .t3-5, .section > .wrap.flex .t4-5, .section > .wrap.flex .t1-6, .section > .wrap.flex .t5-6, .section > .wrap.flex .paragraphe0, .section > .wrap.flex .paragraphe1, .section > .wrap.flex .paragraphe2, .section > .wrap.flex .paragraphe3, .section > .wrap.flex .paragraphe4, .section > .wrap.flex .paragraphe5, .section > .wrap.flex .t-equal {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 480px) {
  .section > .wrap.grille {
    padding-inline: 20px;
    grid-column-gap: 5px;
  }
  .section > .wrap.grille > .m-full,
  .section > .wrap.grille > .paragraphe0,
  .section > .wrap.grille > .paragraphe1 {
    grid-column-end: span 12;
  }
  .section > .wrap.grille > .m1-2,
  .section > .wrap.grille > .paragraphe2 {
    grid-column-end: span 6;
  }
  .section > .wrap.grille > .m1-3,
  .section > .wrap.grille > .paragraphe3 {
    grid-column-end: span 4;
  }
  .section > .wrap.grille > .m1-4,
  .section > .wrap.grille > .paragraphe4 {
    grid-column-end: span 3;
  }
  .section > .wrap.grille > .m2-3 {
    grid-column-end: span 8;
  }
  .section > .wrap.grille > .m3-4 {
    grid-column-end: span 9;
  }
  .section > .wrap.grille > .m1-6 {
    grid-column-end: span 2;
  }
  .section > .wrap.grille > .m5-6 {
    grid-column-end: span 10;
  }
  .section > .wrap.grille > .paragraphe1 {
    grid-column-end: span 12;
  }
  .section > .wrap.flex {
    padding-inline: 30px;
  }
  .wrap > .section > .wrap.flex {
    margin-inline: -10px;
    width: calc(100% + 20px);
  }
  .section > .wrap.flex .m-auto {
    width: auto;
    max-width: calc(100% - 20px);
  }
  .section > .wrap.flex .m-full,
  .section > .wrap.flex .paragraphe0,
  .section > .wrap.flex .paragraphe1 {
    width: calc(100% - 20px);
  }
  .section > .wrap.flex .m-equal {
    max-width: calc(100% - 20px);
    flex: 1 1 0px;
    width: 0;
  }
  .section > .wrap.flex .m1-2,
  .section > .wrap.flex .paragraphe2 {
    width: calc(50% - 20px);
  }
  .section > .wrap.flex .m1-3,
  .section > .wrap.flex .paragraphe3 {
    width: calc((100% / 3) - 20px);
  }
  .section > .wrap.flex .m1-4,
  .section > .wrap.flex .paragraphe4 {
    width: calc(25% - 20px);
  }
  .section > .wrap.flex .m2-3 {
    width: calc((100% / 3 * 2) - 20px);
  }
  .section > .wrap.flex .m3-4 {
    width: calc(75% - 20px);
  }
  .section > .wrap.flex .m1-5,
  .section > .wrap.flex .paragraphe5 {
    width: calc(20% - 20px);
  }
  .section > .wrap.flex .m2-5 {
    width: calc(40% - 20px);
  }
  .section > .wrap.flex .m3-5 {
    width: calc(60% - 20px);
  }
  .section > .wrap.flex .m4-5 {
    width: calc(80% - 20px);
  }
  .section > .wrap.flex .m1-6 {
    width: calc((100% / 6) - 20px);
  }
  .section > .wrap.flex .m5-6 {
    width: calc((100% / 6 * 5) - 20px);
  }
  .section > .wrap.flex .m-auto, .section > .wrap.flex .m-full, .section > .wrap.flex .m1-2, .section > .wrap.flex .m1-3, .section > .wrap.flex .m1-4, .section > .wrap.flex .m2-3, .section > .wrap.flex .m3-4, .section > .wrap.flex .m1-5, .section > .wrap.flex .m2-5, .section > .wrap.flex .m3-5, .section > .wrap.flex .m4-5, .section > .wrap.flex .m1-6, .section > .wrap.flex .m5-6, .section > .wrap.flex .paragraphe0, .section > .wrap.flex .paragraphe1, .section > .wrap.flex .paragraphe2, .section > .wrap.flex .paragraphe3, .section > .wrap.flex .paragraphe4, .section > .wrap.flex .paragraphe5, .section > .wrap.flex .m-equal {
    margin-left: 10px;
    margin-right: 10px;
  }
}
html.menu-ouvert, .menu-ouvert body {
  overflow: hidden;
}

header {
  width: 100%;
  height: 134px;
  background-color: rgba(70, 71, 72, 0.1);
  position: fixed;
  top: 0px;
  left: 0px;
  color: white;
  z-index: 10;
}
header:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: -1;
  transition: backdrop-filter 0.4s ease, background-color 0.4s ease;
}
header.sans-images:before {
  background-color: rgba(100, 100, 100, 0.4);
}
header.sans-images.premier-bloc-dia + .entete-image {
  display: none;
}
.scroll header:before {
  backdrop-filter: blur(10px);
  background-color: rgba(100, 100, 100, 0.4);
}
header .menu-gauche {
  display: flex;
  column-gap: 30px;
  align-items: center;
}
header .menu-toggle {
  width: 33px;
  aspect-ratio: 1/1;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}
header .menu-toggle span, header .menu-toggle:before, header .menu-toggle:after {
  content: "";
  position: absolute;
  height: 3px;
  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;
  background: #FFA92F;
  border-radius: 3px;
}
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);
}
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: #231F20;
  color: white;
  padding: 39px 71px 165px 21px;
  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;
  max-width: 40%;
  width: 100%;
  z-index: 1;
}
header .submenu-container .close-menu {
  position: absolute;
  top: 35px;
  right: 35px;
  width: 26px;
  height: 26px;
  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: 3px;
  background-color: white;
  border-radius: 3px;
}
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;
  overscroll-behavior: contain;
}
header .submenu-container .submenu-content .lien-lg {
  color: white;
  font-size: 15px;
  font-weight: 500;
}
header .submenu-container .submenu-content .liste-menus {
  margin-top: 45px;
}
header .submenu-container .submenu-content .liste-menus .liens-menu {
  row-gap: 26px;
  font-size: 18px;
}
header .submenu-container .submenu-content .btn.btn-localiser {
  border-radius: 6px;
  background: #FFA92F;
  border: none;
  margin-top: 35px;
  color: black;
  padding: 20px 28px;
}
.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;
}
header .ico-loupe {
  color: currentColor;
  margin-top: 5px;
}
header .ico-loupe:hover {
  color: #FFA92F;
}

.entete-image {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 160px;
}
.entete-image .main-slider {
  width: 100%;
  aspect-ratio: 4/1;
  clip: auto;
  -webkit-mask-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
  mask-image: linear-gradient(top, #ffffff 0%, #ffffff 100%);
  overflow: hidden;
}
.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%;
}
.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, .entete-image .section-titrepage {
  grid-row-start: 1;
  grid-column-start: 1;
  align-self: stretch;
}
.entete-image .section-titrepage {
  pointer-events: none;
  color: white;
  position: relative;
  background-color: rgba(70, 71, 72, 0.5);
}
.entete-image .section-titrepage .wrap {
  height: 100%;
  align-items: center;
  box-sizing: border-box;
  padding-block: 120px;
  padding-top: 240px;
  text-align: center;
}
.entete-image .section-titrepage h1 {
  text-transform: uppercase;
  /* font-family:"Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  font-weight: bold;
  font-size: 45px;
}

.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;
  }
  .grid_image_group.v-stretch .grid-images-slides {
    height: 100%;
  }
  .grid_image_group.v-stretch .grid-images-slides > .bloc-images {
    height: auto !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.having-bg {
  min-height: 680px;
  color: white;
}
.section.having-bg.bg-on-self:before, .section.having-bg.bg-on-child > .wrap.background:before {
  background-color: rgba(70, 71, 72, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
}
.section.having-bg > .wrap:not(.background), .section.having-bg .full {
  position: relative;
}

.paragraphe.dia {
  overflow: hidden;
  margin-top: 126px;
}
.paragraphe.dia .diaporama-contenu img, .paragraphe.dia .diaporama-contenu video {
  width: 100%;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider {
  /* font-family: "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  position: relative;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .slick-track {
  align-items: stretch;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .slick-list {
  position: relative;
  z-index: 1;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .slick-slide > div {
  height: 100%;
  display: flex;
  align-items: stretch;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide {
  position: relative;
  vertical-align: top;
  display: grid !important;
  max-height: 500px;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide > * {
  grid-row-start: 1;
  grid-column-start: 1;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .image-container {
  max-height: 500px;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .image-container:after, .paragraphe.dia .diaporama-contenu.sli .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 {
  height: 100%;
  object-fit: cover;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .video-container {
  overflow: hidden;
  position: relative;
}
.paragraphe.dia .diaporama-contenu.sli .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 {
  color: white;
  text-shadow: 0px 3px 6px rgba(100, 100, 100, 0.4);
  width: 100%;
  max-width: 1920px;
  box-sizing: border-box;
  padding-left: 90px;
  padding-right: 10px;
  padding-block: 80px;
  z-index: 1;
  margin-top: auto;
  margin-bottom: auto;
  -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 {
  max-width: min(100% - 52px, 450px);
  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 {
  padding-top: 85px;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide .titre-slide {
  font-size: 51px;
  line-height: 55px;
  margin-bottom: 0px;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide span.titre-1 {
  font-weight: 300;
  color: #FFA92F;
  /* font-family: "Roc Grotesk", "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide .texte-diapo {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  /* font-family: "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
}
.paragraphe.dia .diaporama-contenu.sli .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: 15px;
  padding-inline: 10px;
  /* Horizontal */
  /* Vertical */
  /* Format des boutons */
}
.paragraphe.dia .diaporama-contenu.sli .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::before {
  display: none;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces li:nth-child(-n+9) button:before {
  display: none;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces li button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  color: transparent;
  background-color: white;
  border: none;
  box-shadow: 0px 3px 6px rgba(100, 100, 100, 0.4);
  font-size: 12px;
  font-weight: bold;
  /* font-family:"Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  line-height: 18px;
  height: 13px;
  width: 13px;
  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;
  border-radius: 10000px;
  opacity: 0.5;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces li.slick-active button {
  opacity: 1;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-hbg, .paragraphe.dia .diaporama-contenu.sli .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 {
  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 {
  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 {
  max-width: 1900px;
  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 {
  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 {
  top: 40px;
}
.paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces.al-vgh, .paragraphe.dia .diaporama-contenu.sli .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 {
  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 {
  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 {
  max-width: 1920px;
  top: 50%;
  bottom: 50%;
  margin: auto;
  left: 0px;
  right: 0px;
  margin-right: 65px;
}
.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 {
  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 {
  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 {
  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 {
  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 {
  opacity: 1;
}
.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: #FFA92F;
  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:"Roc Grotesk", Arial, sans-serif; */
  font-family: "arboria", 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.cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  align-items: center;
  justify-content: center;
}
.paragraphe.cta .titre-bloc {
  margin-bottom: 0px;
  font-size: 34px;
  line-height: 48px;
  text-transform: uppercase;
}
.paragraphe.std .titre-bloc {
  font-size: 33px;
  margin-bottom: 0px;
  line-height: 48px;
}
.paragraphe.std .titre-bloc:not(:last-child) {
  margin-bottom: 1rem;
}
.paragraphe.std .texte {
  font-size: 16px;
  font-weight: 600;
}
.paragraphe.std.d1-2 .titre-bloc.txt-center:not(:last-child) {
  margin-bottom: 2rem;
}
.paragraphe.std .titre-bloc {
  color: #464748;
}
.paragraphe.std .titre-bloc:only-child {
  font-size: 3em;
  line-height: 1em;
  color: #464748;
}
.paragraphe.std .texte a:not(.btn) {
  color: #464748;
  text-decoration: underline;
}
.paragraphe.std .texte .btn:not(:first-child) {
  margin-top: 20px;
}
.paragraphe.std.variante1 .titre-bloc {
  font-size: max(16px, 0.8rem);
  line-height: max(1.2em, 1.2rem);
  font-weight: 500;
  color: black;
}
.paragraphe.std.variante1 .titre-bloc:only-child {
  color: black;
  font-size: 3rem;
  line-height: 1.5em;
  font-weight: 700;
}
.paragraphe.std.variante1 .texte {
  font-size: max(15px, 0.75rem);
  line-height: max(1.25em, 1.15rem);
  color: #7D7D7D;
  font-weight: normal;
}
.paragraphe.d1-2 + .paragraphe.std.variante1.d1-2 .titre-bloc:only-child {
  padding-inline: 2ch;
}
.paragraphe.std.variante2 .texte {
  font-size: max(16px, 0.8rem);
  line-height: max(1.2em, 1.2rem);
  font-weight: 500;
  color: #464748;
}
.paragraphe.std.variante3 .texte {
  font-size: max(15px, 0.75rem);
  line-height: max(1.25em, 1.15rem);
  color: #7D7D7D;
  font-weight: normal;
}

.wrap_dia_only + .wrap_lint_only.singlelint-cat-produits {
  margin-top: -100px;
  z-index: 2;
}

#liste-nouvelle {
  row-gap: 20px;
  margin-bottom: 40px;
}

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

.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) {
  .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 > .wrap {
  row-gap: 20px;
}
.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 #F2B558;
  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;
}

.section.sectionSuccursale {
  grid-column-gap: 0;
}

.singlelint-points-succursales:last-child {
  padding-inline: 120px;
  background: white;
  margin-top: -20px;
}

.paragraphe.std.revendeurProche {
  margin-bottom: 40px;
}
.paragraphe.std.revendeurProche .titre-bloc {
  color: rgba(35, 31, 32, 0.5019607843);
}

.slick-lightbox .slick-prev, .slick-lightbox .slick-next {
  top: 50%;
}

.page-404 h1 {
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  color: #87898B;
}
.page-404 h2 {
  /* font-family: "Roc Grotesk"; */
  font-family: "arboria", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.info-pos {
  /* row-gap: 20px; */
  row-gap: 10px;
  display: flex;
  flex-direction: column;
  padding: 14px;
  cursor: pointer;
  /*@include hover(){
    background: #F0F1F1;
  }*/
}

.titreListeSuccursales {
  font-size: 24px;
  line-height: 32px;
  color: #87898B;
  padding-top: 63px;
  margin-bottom: 0 !important;
}

.resultatRayonDiv {
  /* font-family: "Roc Grotesk"; */
  font-family: "arboria", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  color: #87898B;
  display: none;
}

.listePointsAR {
  display: none;
  justify-content: center;
  font-size: 24px;
  line-height: 32px;
  color: #87898B;
  padding-top: 63px;
}

.titreTypeEquipement {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 16px !important;
}

.pos-typeEquipement .btn.btn-full {
  border-radius: 30px;
  padding: 16px 22px;
  font-size: 14px;
  text-transform: initial;
  cursor: pointer;
  border: 2px solid #FEA92E;
  background: transparent;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
.pos-typeEquipement .btn.btn-full:not(:last-child) {
  margin-bottom: 11px;
}
.pos-typeEquipement .btn.btn-full.selected {
  background: #FEA92E;
}
@media (hover: hover) {
  .pos-typeEquipement .btn.btn-full:hover {
    color: black;
  }
}

.pos-typeBot {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.reinitilisation {
  display: flex;
  color: #87898B;
  text-decoration: underline;
  align-items: end;
  cursor: pointer;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
.reinitilisation:before {
  background: url("../images/icons/refresh-ccw.svg") center no-repeat;
  width: 20px;
  height: 20px;
  content: "";
  display: block;
  margin-right: 4px;
}
@media (hover: hover) {
  .reinitilisation:hover {
    color: #FEA92E;
  }
}

.range-slider {
  position: relative;
}

.dansUnRayonTxt {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 33px;
}

.rs-range {
  width: 200px;
  padding-bottom: 0;
  margin-bottom: -5px;
  -webkit-appearance: none;
}
.rs-range:focus {
  outline: none;
}
.rs-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  box-shadow: none;
  background: #D9D9D9;
  border-radius: 16px;
  border: 0px solid #D9D9D9;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}
.rs-range::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  box-shadow: none;
  background: #D9D9D9;
  border-radius: 16px;
  border: 0px solid #D9D9D9;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}
.rs-range::-webkit-slider-thumb {
  box-shadow: none;
  height: 16px;
  width: 16px;
  border-radius: 100%;
  background: #000;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -3.5px;
}
.rs-range::-moz-range-thumb {
  box-shadow: none;
  height: 16px;
  width: 16px;
  border-radius: 100%;
  background: #000;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  /*margin-top: -20px;*/
}
.rs-range::-moz-focus-outer {
  border: 0;
}

.rs-label {
  display: block;
  text-align: center;
  position: absolute;
  height: 30px;
  line-height: 26px;
  min-width: 32px;
  padding: 0 20px;
  top: 0px;
  left: 20px;
  transform: translate(-50%, -100%);
  border: 2px solid #F2B558;
  background: #F2F5F7;
  color: #464748;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 16px;
  transform-origin: 0 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}
.rs-label::before, .rs-label::after {
  border-width: 11px;
  border-style: solid;
  border-color: transparent;
  content: "";
  display: block;
  margin: auto;
  width: 1px;
  position: absolute;
  left: 0;
  right: 0;
  background: transparent !important;
}
.rs-label::before {
  border-top-color: #F2B558 !important;
  border-bottom-width: 0 !important;
  bottom: -11px;
}
.rs-label::after {
  border-top-color: #F2F5F7;
  border-bottom-width: 0;
  bottom: -10px;
}

.pos-localisation {
  background: url("../images/icons/location.svg") center no-repeat;
  background-size: 24px 24px;
  width: 32px;
  height: 24px;
  padding: 12px;
  cursor: pointer;
  margin-bottom: 10px;
}

.carte-succursales {
  aspect-ratio: 7/2;
  min-height: 300px;
}

.lint-points-succursales .pos-container .btn.afficher-plus {
  margin-bottom: 50px;
  margin-top: 50px;
  padding: 20px 28px;
  background: #FFA92F;
  border: 3px solid #FFA92F;
  color: black;
  border-radius: 6px;
  font-size: 16px;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .lint-points-succursales .pos-container .btn.afficher-plus:hover {
    background: transparent;
  }
}

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

.pos-liste .pos-single {
  /*font-family:"Integral CF", sans-serif;*/
  font-family: "arboria", sans-serif;
  font-weight: 500;
  color: #231F20;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  font-size: 16px;
  line-height: 2em;
  padding-block: 15px;
  border-bottom: 1px solid #A1A3A5;
}
.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 .pos-titre:not(:last-child) {
  padding-right: 64px;
}
.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: #FFA92F;
  transition: background-color 0.4s ease;
  width: 30px;
  height: 30px;
  display: inline-block;
}
.lien-icone:hover {
  background-color: #464748;
}

.lien-facebook {
  -webkit-mask-image: url("/images/icons/icone-facebook.svg");
  mask: url("/images/icons/icone-facebook.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/icone-lien.svg");
  mask: url("/images/icons/icone-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;
}

.faqSuccursales {
  margin-top: 80px !important;
}
.faqSuccursales .paragraphe.std .titre-bloc {
  opacity: 0.5;
  color: #231F20;
  font-size: 24px;
  line-height: 32px;
  border-bottom: 1px solid #C5C5C5;
  padding-bottom: 16px;
}
.faqSuccursales .paragraphe.std .texte {
  line-height: 26px;
  font-weight: 500;
  width: 75%;
  margin-bottom: 52px;
}
.faqSuccursales div.wrap:last-child {
  margin-bottom: 48px;
}

.carte-joindre {
  aspect-ratio: 7/2;
}

.section.section-entete-nj {
  color: #464748;
}
.section.section-entete-nj .titre-page-joindre {
  margin: 0px;
  font-size: 33px;
  line-height: 1.2em;
}
.section.section-entete-nj .soustitre-page-joindre {
  margin: 0px;
  font-size: 16px;
  line-height: 1.2em;
  color: black;
}
.section.section-entete-nj .titre-page-joindre:not(:last-child) {
  margin-bottom: 20px;
}
.section.section-entete-nj:not(:last-child) {
  margin-bottom: 40px;
}

.section-form-nj .champs-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  grid-row-gap: 40px;
  grid-column-gap: 45px;
}
.section-form-nj label {
  color: #797474;
  grid-column: 1/-1;
  font-size: 16px;
}
.section-form-nj textarea {
  border: 1px solid #A9C1B4;
  margin-top: 10px;
}
.section-form-nj input, .section-form-nj textarea {
  border-color: #A9C1B4;
  color: #797474;
}
.section-form-nj input::placeholder, .section-form-nj textarea::placeholder {
  color: #797474;
}
.section-form-nj input::-webkit-input-placeholder, .section-form-nj textarea::-webkit-input-placeholder {
  color: #797474;
}
.section-form-nj input::-moz-placeholder, .section-form-nj textarea::-moz-placeholder {
  opacity: 0.99;
  color: #797474;
}
.section-form-nj input:-ms-input-placeholder, .section-form-nj textarea:-ms-input-placeholder {
  color: #797474;
}
.section-form-nj .btn {
  width: auto;
  margin: auto;
  display: block;
  margin-top: 40px;
}
.section-form-nj .btn.btn-form {
  background: #FFA92F;
  border: 3px solid #FEA92E;
  color: black;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .section-form-nj .btn.btn-form:hover {
    background: transparent;
  }
}
.section-form-nj .section-infos {
  padding-block: 100px;
}

.infos-joindre {
  text-align: center;
}
.infos-joindre .titre {
  font-size: 16px;
  line-height: 1.2em;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  font-weight: 600;
}
.infos-joindre .titre:after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  background-color: #FFA92F;
  bottom: -1px;
  left: 0px;
  right: 0px;
  margin: auto;
}
.infos-joindre .infos {
  color: #7D7D7D;
  line-height: 23px;
  font-size: 15px;
}
.infos-joindre .infos .adresse > br:nth-child(2) {
  display: none;
}
.infos-joindre .infos.reseaux {
  color: #464748;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
}
.infos-joindre a {
  color: inherit;
}
.infos-joindre a:hover {
  color: inherit;
}

.ico-loupe {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-image: url("/images/icons/ico-recherche.svg");
  mask: url("/images/icons/ico-recherche.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;
}

.reseau {
  width: 1em;
  height: 1em;
  display: inline-block;
  background-color: currentColor;
}
.reseau.ico-twitter {
  -webkit-mask-image: url("/images/reseaux_sociaux/ico-twitter.svg");
  mask: url("/images/reseaux_sociaux/ico-twitter.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;
}
.reseau.ico-facebook {
  -webkit-mask-image: url("/images/reseaux_sociaux/ico-facebook.svg");
  mask: url("/images/reseaux_sociaux/ico-facebook.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;
}
.reseau.ico-instagram {
  -webkit-mask-image: url("/images/reseaux_sociaux/ico-instagram.svg");
  mask: url("/images/reseaux_sociaux/ico-instagram.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;
}
.reseau.ico-linkedin {
  -webkit-mask-image: url("/images/reseaux_sociaux/ico-linkedin.svg");
  mask: url("/images/reseaux_sociaux/ico-linkedin.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;
}

.cs-entete {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-entete:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #464748;
}
.cs-entete .cs-titre {
  position: relative;
  font-size: 30px;
  line-height: 1em;
  padding: 20px 60px;
  color: #464748;
  background-color: #F2B558;
  border-bottom-left-radius: 100vw;
  border-top-right-radius: 100vw;
  /* font-family: "Roc Grotesk", "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  -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 */
}

.bloc-info-produit {
  text-align: center;
  padding-top: 18px;
  padding-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px;
}
.bloc-info-produit div {
  margin: 0;
  font-weight: 500;
  line-height: 26px;
  /* font-family: "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
}
.bloc-info-produit div:first-child {
  /* font-size: 24px; */
  font-size: 18px;
  font-weight: bold;
  /* line-height: 32px; */
  line-height: 26px;
  /* font-family: "Roc Grotesk", Arial, sans-serif; */
  font-family: "arboria", sans-serif;
}

.div-carre-produits {
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .div-carre-produits:hover img {
    transform: scale(1.1);
    transition: all ease 0.4s;
  }
}

.bloc-carre-produits {
  position: relative;
  overflow: hidden;
  aspect-ratio: 350/365;
  display: flex;
  align-items: flex-end;
  border-radius: 20px;
}
.bloc-carre-produits input:checked + img {
  filter: brightness(0.75);
}
.bloc-carre-produits input:checked + img + .sc-titrecat-container {
  background-color: #464748;
}
.bloc-carre-produits img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  margin: auto;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
}
.bloc-carre-produits input {
  display: none;
}
.bloc-carre-produits:hover > img {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
}
.bloc-carre-produits .sc-titrecat-container {
  width: 100%;
  background-color: rgba(70, 71, 72, 0.7);
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  /* font-family: "Roc Grotesk", "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
}
.bloc-carre-produits .sc-titrecat {
  text-align: center;
  margin: auto;
  width: fit-content;
  padding: 18px 40px;
  font-size: 18px;
  line-height: 24px;
  position: relative;
}
.bloc-carre-produits .sc-titrecat:before, .bloc-carre-produits .sc-titrecat:after {
  height: 1px;
  position: absolute;
  content: "";
  width: 600px;
  background-color: white;
  top: 0px;
  bottom: 0;
  margin: auto;
}
.bloc-carre-produits .sc-titrecat:before {
  right: calc(100% - 20px);
}
.bloc-carre-produits .sc-titrecat:after {
  left: calc(100% - 20px);
}

.section-entete-resultats .nb-resultats-recherche {
  font-size: 18px;
  font-weight: bold;
  color: #464748;
}

.selection-categorie {
  padding-block: 60px;
  row-gap: 20px;
}
.selection-categorie .bloc-carre-produits {
  max-width: 350px;
}
.selection-categorie .bloc-carre-produits.checked {
  border: 4px solid #F2B558;
}

.selection-tracteur {
  padding-block: 60px;
  row-gap: 20px;
  column-gap: 70px;
}
.selection-tracteur .single-tracteur {
  width: 140px;
  position: relative;
}
.selection-tracteur .single-tracteur input {
  display: none;
}
.selection-tracteur .single-tracteur input:checked + .tracteur {
  border: 4px solid #F2B558;
  padding: 4px;
}
.selection-tracteur .tracteur {
  transition: background 0.4s ease;
  max-width: 100px;
}
.selection-tracteur .tracteur .nameTracteur {
  text-align: center;
}

.selection-scategorie {
  padding-block: 60px;
  row-gap: 20px;
}
.colones-emplois .selection-scategorie {
  padding-top: 0px;
}
.selection-scategorie .enos-checkbox {
  position: relative;
  margin-right: 6px;
  display: inline-block;
  cursor: pointer;
  vertical-align: baseline;
}
.selection-scategorie .enos-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
}
.selection-scategorie .enos-checkbox input[type=checkbox] + span {
  color: #F2B558;
  width: 28px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 4px;
  display: inline-block;
  vertical-align: top;
}
.selection-scategorie .enos-checkbox input[type=checkbox] + span:after {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  content: "";
  -webkit-mask-image: url("/images/icons/check.svg");
  mask: url("/images/icons/check.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;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.selection-scategorie .enos-checkbox input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.selection-scategorie .enos-checkbox-label {
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
}
.selection-scategorie .liste-checkbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 18px;
  width: 1090px;
  max-width: 100%;
}
.selection-scategorie .liste-checkbox li {
  padding: 0px;
  color: #464748;
}
.selection-scategorie .liste-checkbox li:before {
  display: none;
}
.selection-scategorie .liste-checkbox li:not(:last-child) {
  margin: 0px;
}

.lire-plus.btn-categorie-more {
  background: transparent;
  color: black;
  border: none;
  text-align: initial;
  padding: 0;
  text-decoration: underline;
  margin-bottom: 20px;
  align-self: center;
  transition: color 0.4s ease;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .lire-plus.btn-categorie-more:hover {
    color: #FFA92F;
  }
}

.faqSuccursales .paragraphe.std .texte:nth-child(2) {
  margin-bottom: 12px;
}

.section-selection-recherche .liste-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  column-gap: 20px;
}
.section-selection-recherche .liste-btns .btn {
  width: auto;
}

.section-selection-recherche .selection-tracteur.selection-hp-poids main > h2 {
  font-size: 18px;
  line-height: 1em;
  font-weight: bold;
  color: #464748;
}
.popup-container .section-selection-recherche .selection-tracteur.selection-hp-poids main {
  margin-top: 0px;
}

footer {
  color: #FFF;
  background-color: #231F20;
}
footer .liens-menu {
  text-transform: none;
}
footer .section-footer-infos {
  padding-top: 44px;
  padding-bottom: 70px;
  grid-column-gap: 129px;
}
footer .section-footer-infos .titre-formulaire {
  margin-bottom: 0px;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
}
footer .section-footer-infos .formulaire-ajaxv2 > :not(:last-child) {
  margin-bottom: 30px;
}
footer .section-footer-infos .champs-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-row-gap: 8px;
  grid-column-gap: 15px;
}
footer .section-footer-infos .champs-container textarea {
  grid-column-end: span 2;
}
footer .section-footer-infos input, footer .section-footer-infos textarea {
  background-color: transparent;
  border: 1px solid #87898B;
  border-radius: 3px;
  font-size: 14px;
  line-height: 26px;
  padding: 5px 10px;
  height: auto;
  font-weight: 500;
  color: white;
}
footer .section-footer-infos input::placeholder, footer .section-footer-infos textarea::placeholder {
  opacity: 0.6;
  color: #87898B;
}
footer .section-footer-infos input::-webkit-input-placeholder, footer .section-footer-infos textarea::-webkit-input-placeholder {
  opacity: 0.6;
  color: #87898B;
}
footer .section-footer-infos input::-moz-placeholder, footer .section-footer-infos textarea::-moz-placeholder {
  opacity: 0.99;
  opacity: 0.6;
  color: #87898B;
}
footer .section-footer-infos input:-ms-input-placeholder, footer .section-footer-infos textarea:-ms-input-placeholder {
  opacity: 0.6;
  color: #87898B;
}
footer .section-footer-infos textarea {
  line-height: 1.2em;
  height: calc(20px + 3.6em);
  resize: none;
}
footer .section-footer-infos input::selection, footer .section-footer-infos textarea::selection {
  background-color: #464748;
  color: white;
}
footer .section-footer-infos .btn-form {
  width: auto;
  background: #FFA92F;
  border: 3px solid #FFA92F;
  color: black;
}
footer .section-footer-infos .btn-form:hover {
  background-color: transparent;
  color: white;
}
footer .infos-adresse {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: flex-start;
}
footer .logo-site img {
  height: 30px;
}
footer .liens-joindre {
  display: flex;
  flex-direction: column;
  line-height: normal;
  font-size: 15px;
  font-weight: 500;
}
footer .liens-joindre a {
  color: #fff;
}
footer .liens-joindre a:hover {
  color: #FFA92F;
}
footer .adresse {
  font-size: 15px;
  line-height: normal;
  font-weight: 500;
}
footer .liste-menus {
  padding-top: 20px;
}
footer .section-footer-copyright {
  background-color: #464748;
  color: white;
  font-size: 10px;
  font-family: Arial, sans-serif;
}
footer .section-footer-copyright a {
  color: inherit;
}
footer .section-footer-copyright a:hover {
  color: #FFA92F;
}
footer .section-footer-copyright > .wrap {
  min-height: 50px;
}
footer .section-footer-copyright .reseaux-sociaux {
  font-size: 14px;
  display: flex;
  column-gap: 30px;
}

.section-liste-categories {
  grid-row-gap: 16px;
  grid-template-rows: auto;
}
.section-liste-categories .cats-cta {
  grid-column-end: span 8;
  background: #F2B558;
  color: #464748;
  height: 80px;
  padding-right: 50px;
  border-top-right-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.section-liste-categories .cats-cta a {
  color: inherit;
  position: relative;
  padding-right: 32px;
  font-weight: bold;
  font-size: 16px;
}
.section-liste-categories .cats-cta a:hover {
  color: inherit;
}
.section-liste-categories .cats-cta a:after {
  content: "";
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: currentColor;
  -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;
}
.section-liste-categories .categorie {
  align-items: stretch;
  overflow: hidden;
  border-radius: 20px;
  background: white;
  z-index: 1;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .section-liste-categories .categorie:hover .image-categorie img {
    transform: scale(1.1);
    transition: all ease 0.4s;
  }
}
.section-liste-categories .categorie .image-categorie, .section-liste-categories .categorie .resume-categorie, .section-liste-categories .categorie .section-infos-categorie {
  grid-row-start: 1;
  grid-row-end: span 1;
}
.section-liste-categories .categorie .image-categorie {
  overflow: hidden;
  grid-column-end: span 8;
}
.section-liste-categories .categorie .image-categorie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: all ease 0.4s;
}
.section-liste-categories .categorie .resume-categorie {
  grid-column-end: span 5;
  display: flex;
  flex-direction: column;
  padding: 64px 102px 64px 60px;
}
.section-liste-categories .categorie .resume-categorie .btn.btn-categorie-more {
  background: transparent;
  color: black;
  border: none;
  text-align: initial;
  padding: 0;
  text-decoration: underline;
  margin-bottom: 20px;
  align-self: flex-start;
}
.section-liste-categories .categorie .resume-categorie .btn.btn-jaune {
  background: transparent;
  color: black;
  text-align: start;
  align-self: flex-start;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .section-liste-categories .categorie .resume-categorie .btn.btn-jaune:hover {
    background: #FFA92F;
  }
}
.section-liste-categories .categorie .section-infos-categorie {
  grid-column-start: 1;
  grid-column-end: span 14;
  background-color: #464748;
  color: white;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 2;
}
.section-liste-categories .categorie .section-infos-categorie a:not(.btn), .section-liste-categories .categorie .section-infos-categorie a:not(.btn):hover {
  color: inherit;
}
.section-liste-categories .categorie .section-infos-categorie .close-categorie {
  z-index: 2;
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 20px;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.section-liste-categories .categorie .section-infos-categorie .close-categorie:before, .section-liste-categories .categorie .section-infos-categorie .close-categorie:after {
  content: "";
  width: 100%;
  height: 2px;
  display: inline-block;
  background-color: currentColor;
  position: absolute;
  margin: auto;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  transform: rotate(-45deg);
}
.section-liste-categories .categorie .section-infos-categorie .close-categorie:after {
  transform: rotate(45deg);
}
.section-liste-categories .categorie .section-infos-categorie .close-categorie:hover {
  transform: rotate(90deg);
}
.section-liste-categories .categorie .section-infos-categorie .container-infos-supp {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  padding-block: 80px;
}
.section-liste-categories .categorie .section-infos-categorie .texte-categorie {
  column-count: 3;
  column-gap: 80px;
  column-rule-width: 0px;
  color: white;
}
.section-liste-categories .categorie .section-infos-categorie a.btn.btn-inverse {
  align-self: flex-start;
  margin-left: calc((100% - 160px) / 3 * 2 + 160px);
}
.section-liste-categories .categorie.show-more-info .section-infos-categorie {
  transform: translateY(0px);
}
.section-liste-categories .categorie .titre-categorie-liste {
  font-size: 34px;
  font-weight: bold;
  line-height: 48px;
  margin: 0px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.section-liste-categories .categorie .titre-categorie-liste:after {
  content: "";
  display: inline-block;
  background-color: currentColor;
  height: 1px;
  position: absolute;
  bottom: 0px;
  width: 31.8vw;
  pointer-events: none;
  right: calc(100% + 20px);
  left: 0px;
  z-index: 0;
}
.section-liste-categories .categorie .texte-categorie, .section-liste-categories .categorie .resume-categorie-texte {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 7px;
}
.section-liste-categories > :first-child:not(.categorie) ~ .categorie:nth-child(even) .image-categorie, .section-liste-categories > .categorie:first-child ~ .categorie:nth-child(odd) .image-categorie, .section-liste-categories > .categorie:first-child .image-categorie {
  grid-column-start: 1;
}
.section-liste-categories > :first-child:not(.categorie) ~ .categorie:nth-child(even) .resume-categorie, .section-liste-categories > .categorie:first-child ~ .categorie:nth-child(odd) .resume-categorie, .section-liste-categories > .categorie:first-child .resume-categorie {
  grid-column-start: 9;
}
.section-liste-categories > :first-child:not(.categorie) ~ .categorie:nth-child(even) .resume-categorie .titre-categorie-liste:after, .section-liste-categories > .categorie:first-child ~ .categorie:nth-child(odd) .resume-categorie .titre-categorie-liste:after, .section-liste-categories > .categorie:first-child .resume-categorie .titre-categorie-liste:after {
  right: unset;
  left: -80px;
  width: 30.7vw;
}
.section-liste-categories > :first-child:not(.categorie) ~ .categorie:nth-child(odd) .image-categorie, .section-liste-categories > .categorie:first-child ~ .categorie:nth-child(even) .image-categorie {
  grid-column-start: 7;
}
.section-liste-categories > :first-child:not(.categorie) ~ .categorie:nth-child(odd) .resume-categorie, .section-liste-categories > .categorie:first-child ~ .categorie:nth-child(even) .resume-categorie {
  grid-column-start: 2;
  padding: 64px 68px 64px 58px;
}

.div-carre-produits {
  background: white;
  border-radius: 20px;
}

.page-fiche-produit .liste-images {
  row-gap: 20px;
  position: relative;
}
.page-fiche-produit .liste-images img {
  width: 100%;
  border-radius: 20px;
}
.page-fiche-produit .vignette {
  max-width: 304px !important;
  cursor: pointer;
}
.page-fiche-produit .vignette + .grande-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s ease;
}
.page-fiche-produit .vignette:hover + .grande-image, .page-fiche-produit .vignette:focus + .grande-image {
  opacity: 1;
  z-index: 2;
  pointer-events: all;
}
.page-fiche-produit .vignette:hover + .grande-image {
  z-index: 3;
}
.page-fiche-produit .infos-produits .titre-produit {
  /* font-size: 42px; */
  font-size: 32px;
  /* line-height: 48px; */
  line-height: 38px;
  margin-bottom: 12px;
  font-weight: bold;
  color: #353539;
  /* font-family: "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
}
.page-fiche-produit .infos-produits .specs {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  /* font-family: "Roc Grotesk", "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  display: flex;
  column-gap: 24px;
}
.page-fiche-produit .texte.texte-produit {
  font-size: 20px;
  line-height: 24px;
}
.page-fiche-produit .texte.texte-produit p:not(:last-child) {
  margin-bottom: 1em;
  /* font-family: "Roc Grotesk", Arial, sans-serif; */
  font-family: "arboria", sans-serif;
}
.page-fiche-produit .liste-images:not(:last-child) {
  margin-bottom: 124px;
}
.page-fiche-produit h3.titre-section-prod, .page-fiche-produit h2.titre-section-prod {
  font-size: 24px;
  color: #87898B;
  line-height: 32px;
  margin-bottom: 7px;
}
.page-fiche-produit .ligne-contenu {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.page-fiche-produit .entete-el {
  font-weight: bold;
  padding-bottom: 10px;
  font-size: 18px;
}
.page-fiche-produit .entete-el:not(:first-child) {
  text-align: center;
}
.page-fiche-produit .grille-specs:not(:last-child), .page-fiche-produit .dl-pdf:not(:last-child), .page-fiche-produit .liste-videos:not(:last-child) {
  margin-bottom: 78px;
}
.page-fiche-produit .dl-pdf a, .page-fiche-produit .liste-videos a {
  color: black;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 3px solid #231F20;
  align-self: flex-start;
  padding: 16px 24px;
  border-radius: 6px;
  min-width: 240px;
  justify-content: space-between;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .page-fiche-produit .dl-pdf a:hover, .page-fiche-produit .liste-videos a:hover {
    border-color: #FFA92F;
  }
}
.page-fiche-produit .dl-pdf, .page-fiche-produit .liste-videos {
  display: flex;
  flex-direction: column;
}
.page-fiche-produit .dl-pdf a:not(:last-child), .page-fiche-produit .liste-videos a:not(:last-child) {
  margin-bottom: 5px;
}
.page-fiche-produit .dl-pdf a:after, .page-fiche-produit .liste-videos a:after {
  content: "";
  width: 29px;
  height: 28px;
  background-size: 29px 28px;
  background: url("../images//icons/file-download.svg");
  margin-left: 12px;
}
.page-fiche-produit .dl-pdf a:before {
  background-image: url(/images/icons/ico-pdf.svg);
}
.page-fiche-produit .liste-videos a:before {
  background-image: url(/images/icons/ico-youtube.svg);
}

.to-top {
  background-image: url(/images/to-top.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 44px;
  height: 44px;
  position: fixed;
  z-index: 10;
  bottom: 52px;
  left: min(((100% - 1900px) / 2) + 1910px, 100% - 50px);
  transition: transform 0.4s ease, opacity 0.4s ease, bottom 0.2s ease;
  transform: translateY(calc(100% + 52px));
  opacity: 0;
}
.scroll .to-top {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (min-width: 2020px) {
  .to-top {
    bottom: 2px;
  }
}

.popup-container {
  position: fixed;
  z-index: 1000;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.popup-container .popup {
  max-width: 920px;
  width: calc(100% - 40px);
  position: relative;
  padding: 60px 40px 80px 40px;
  display: flex;
  flex-direction: column;
  max-height: calc(100% - 80px);
}
.popup-container .popup:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  bottom: -20px;
  right: -20px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px);
  z-index: -1;
  box-shadow: 2px 6px 5px rgba(0, 0, 0, 0.1607843137);
}
.popup-container .popup:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: white;
  z-index: 1;
}
.popup-container .popup .popup-entete, .popup-container .popup .popup-contenu {
  position: relative;
  z-index: 5;
}
.popup-container .popup .popup-entete {
  flex-shrink: 0;
  text-align: center;
  color: #464748;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 32px;
  /* font-family: "Roc Grotesk", "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
}
.popup-container .popup .popup-entete:empty {
  display: none;
}
.popup-container .popup .popup-contenu {
  flex-shrink: 1;
  overflow-y: auto;
}
.popup-container .popup .popup-contenu .cs-entete {
  display: none;
}
.popup-container .popup .popup-contenu .selection-categorie {
  padding-block: 0px 60px;
}
.popup-container .popup .popup-contenu .margin_1, .popup-container .popup .popup-contenu .margin_2, .popup-container .popup .popup-contenu .margin_3, .popup-container .popup .popup-contenu .margin_4, .popup-container .popup .popup-contenu .margin_5 {
  margin-top: 0px;
}
.popup-container .popup .popup-contenu .margin_1:last-child, .popup-container .popup .popup-contenu .margin_2:last-child, .popup-container .popup .popup-contenu .margin_3:last-child, .popup-container .popup .popup-contenu .margin_4:last-child, .popup-container .popup .popup-contenu .margin_5:last-child {
  margin-bottom: 0px;
}
.popup-container .popup-close {
  position: absolute;
  top: -40px;
  right: 0px;
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: transform 0.4s ease;
}
.popup-container .popup-close:before, .popup-container .popup-close:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 100%;
  height: 2px;
  background-color: white;
}
.popup-container .popup-close:before {
  transform: rotate(45deg);
}
.popup-container .popup-close:after {
  transform: rotate(-45deg);
}
.popup-container .popup-close:hover {
  transform: rotate(90deg);
}

.recherche .input-holder {
  width: 0px;
  overflow: hidden;
  position: absolute;
  right: 100%;
  top: 0px;
  bottom: 0px;
  margin: auto;
  transition: width 0.4s ease;
}

.recherche {
  position: relative;
}

.recherche .input-holder input {
  height: 100%;
  padding: 3px;
  width: 100%;
  min-width: 200px;
  margin: 0px;
  border: 0px solid transparent;
  border-bottom: 2px solid #87898B;
  background: #231F20;
  color: #87898B;
}

.recherche.ouvert .input-holder {
  width: 220px;
  padding-right: 20px;
}

.page-fiche-produit {
  margin-top: 16px !important;
}

@keyframes up-down {
  from {
    top: -5px;
  }
  to {
    top: 5px;
  }
}
.btn-filtres {
  display: none;
}

.liste-produit .aucun-resultat {
  grid-column: 1/-1;
}

body .formulaire-auto-ajax .formulaire-auto-conteneur {
  color: #797474;
}
body .formulaire-auto-ajax .formulaire-auto-conteneur label {
  width: 100%;
}
body .formulaire-auto-ajax .formulaire-auto-conteneur input:not([type=checkbox]):not([type=radio]), body .formulaire-auto-ajax .formulaire-auto-conteneur select, body .formulaire-auto-ajax .formulaire-auto-conteneur textarea {
  border-color: #464748;
}
body .formulaire-auto-ajax .formulaire-auto-conteneur textarea {
  border-width: 1px;
  border-style: solid;
}
body .formulaire-auto-ajax .formulaire-auto-conteneur .titre-question {
  font-weight: normal;
  color: #344b57;
  font-size: 16px;
  /* font-family: "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  border: unset;
  padding-left: 0;
}
body .formulaire-auto-ajax .btn {
  display: inline-block;
  width: auto;
}
body .formulaire-auto-ajax .joindre-fichier > label {
  display: flex;
  align-items: flex-end;
}
body .formulaire-auto-ajax .joindre-fichier input[type=text] {
  margin-right: 20px;
}

.findEquipement .btn-categorie-more {
  background: transparent;
  color: white;
  border: none;
  text-align: initial;
  padding: 0;
  text-decoration: underline;
  margin-bottom: 20px;
  align-self: center;
}
.findEquipement .section-infos-categorie {
  grid-column-start: 1;
  grid-column-end: span 14;
  background-color: #464748;
  color: white;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  row-gap: 24px;
  display: none;
}
.findEquipement .section-infos-categorie .close-categorie {
  z-index: 2;
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 20px;
  cursor: pointer;
  transition: transform 0.4s ease;
  color: inherit;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
.findEquipement .section-infos-categorie .close-categorie::after, .findEquipement .section-infos-categorie .close-categorie::before {
  content: "";
  width: 100%;
  height: 2px;
  display: inline-block;
  background-color: currentColor;
  position: absolute;
  margin: auto;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  transform: rotate(-45deg);
}
.findEquipement .section-infos-categorie .close-categorie::after {
  transform: rotate(45deg);
}
@media (hover: hover) {
  .findEquipement .section-infos-categorie .close-categorie:hover {
    transform: rotate(90deg);
  }
}
.findEquipement .section-infos-categorie .container-infos-supp {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  padding-block: 80px;
}
.findEquipement .section-infos-categorie .container-infos-supp .texte-categorie {
  column-count: 3;
  -moz-column-gap: 80px;
  column-gap: 80px;
  -moz-column-rule-width: 0px;
  column-rule-width: 0px;
  color: white;
}
.findEquipement.show-more-info .section-infos-categorie {
  display: grid;
  transform: translateX(0%);
}

html {
  background: #F0F1F1;
}

.paragraphe.dia .diaporama-contenu .infos-slide .contenu-slide .titre-slide .titre-1 {
  display: none;
}
.paragraphe.dia .diaporama-contenu .infos-slide .contenu-slide .titre-slide .titre-1 + br {
  display: none;
}
.paragraphe.dia .diaporama-contenu .infos-slide .contenu-slide .btn.btn-contour {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  border-radius: 8px;
}

.paragraphe.cotechAccueil {
  margin-top: 62px;
  margin-bottom: 66px;
  display: flex;
  column-gap: 24px;
  position: relative;
  font-weight: 500;
}
.paragraphe.cotechAccueil::before {
  background: url("../images/courbeAccueil.png") center no-repeat;
  content: "";
  position: absolute;
  width: 671px;
  height: 508px;
  right: 0;
  top: -120px;
  pointer-events: none;
}
.paragraphe.cotechAccueil .titre-bloc {
  font-size: 34px;
  line-height: 48px;
  text-transform: uppercase;
  color: #231F20;
  opacity: 0.5;
  flex: 0 0 40%;
}
.paragraphe.cotechAccueil .texte {
  font-weight: 500;
  line-height: 26px;
  flex: 1;
}

.btn.btn-full {
  background: #FFA92F;
  border: 3px solid #FEA92E;
  color: black;
  margin-right: 11px;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .btn.btn-full:hover {
    background: transparent;
    color: white;
  }
}

.contenu .btn.btn-contour {
  text-transform: initial;
  padding: 16px 28px;
  font-weight: bold;
  border-radius: 6px;
}

.paragraphe.cta .texte {
  font-weight: 700;
  /* font-family: "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
  max-width: 682px;
  line-height: 24px;
}

html.menu-ouvert body::after {
  content: "";
  content: "";
  width: 100%;
  height: 100%;
  max-width: 60%;
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  top: 0px;
  background: black;
  opacity: 0.4;
  z-index: 24;
}

.liste-infos {
  grid-column-gap: 70px !important;
}
.liste-infos .infos-produits .explication-produit {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  margin-top: 22px;
  margin-bottom: 31px;
}
.liste-infos .infos-produits .texte-produit {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 19px;
}
.liste-infos .infos-produits .texte-produit ul li {
  margin-bottom: 20px;
}
.liste-infos .infos-produits .texte-produit ul li::before {
  content: "";
  background: url(../images/icons/puce-pdt.svg) center no-repeat;
  background-size: 16px 11px;
  width: 16px;
  height: 11px;
  top: 7px;
}
.liste-infos .infos-produits .equipement-reco {
  background: white;
  padding: 23px 0 17px 23px;
  border-radius: 6px;
}
.liste-infos .infos-produits .equipement-reco .titre-reco {
  color: #87898B;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 17px;
}
.liste-infos .infos-produits .equipement-reco .img-reco-div {
  column-gap: 23px;
  display: flex;
}
.liste-infos .infos-produits .equipement-reco .img-reco-div .img-reco {
  width: 59px;
}
.liste-infos .infos-produits .section-btn-pdt {
  margin-top: 24px;
}
.liste-infos .infos-produits .section-btn-pdt .btn {
  padding: 20px 28px;
  border: 3px solid #FFA92F;
  color: black;
  border-radius: 6px;
  font-size: 16px;
}
.liste-infos .infos-produits .section-btn-pdt .btn.gauche-plein {
  background: #FFA92F;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .liste-infos .infos-produits .section-btn-pdt .btn.gauche-plein:hover {
    background: transparent;
  }
}
.liste-infos .infos-produits .section-btn-pdt .btn.droit-vide {
  margin-left: 13px;
  background: transparent;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .liste-infos .infos-produits .section-btn-pdt .btn.droit-vide:hover {
    background: #FFA92F;
  }
}

.desc-spec .titre-section-desc {
  margin-top: 70px;
}
.desc-spec .divMom-opt {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.desc-spec .divMom-opt:not(:first-child) {
  margin-top: 32px;
}
.desc-spec .divMom-opt .div-opt-titre-texte .titre.div-opt {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 12px;
}
.desc-spec .divMom-opt .div-opt-titre-texte .texte.div-opt {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 7px;
}
.desc-spec .divMom-opt .img-opt {
  width: 50%;
  margin-top: 30px;
  object-fit: cover;
}
.desc-spec .titre-section-desc {
  font-size: 24px;
  color: #87898B;
  line-height: 32px;
  margin-bottom: 7px;
}
.desc-spec .texte.div-desc {
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 71px;
}

.produitdiap .diaporama-sliderTop .video-container {
  padding-bottom: 0 !important;
}

.liste-produit-reco {
  grid-column-end: span 12;
  flex-direction: column;
  margin-bottom: 80px;
}
.liste-produit-reco::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #C5C5C5;
  margin-bottom: 80px;
  margin-top: 34px;
}
.liste-produit-reco .titre-pdt-reco {
  font-size: 34px;
  line-height: 48px;
  text-transform: uppercase;
  color: #87898B;
  margin-bottom: 33px;
}
.liste-produit-reco .liste-pdt {
  display: grid;
  grid-template-columns: repeat(4, 280px);
  width: 100%;
  column-gap: 26px;
  row-gap: 26px;
}
.liste-produit-reco .liste-pdt .pdt-reco {
  background: white;
  border-radius: 20px;
  width: 280px;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .liste-produit-reco .liste-pdt .pdt-reco:hover .img-pdt img {
    transform: scale(1.1);
    transition: all ease 0.4s;
  }
}
.liste-produit-reco .liste-pdt .pdt-reco .img-pdt {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.liste-produit-reco .liste-pdt .pdt-reco .img-pdt img {
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  height: 240px;
  width: auto;
  transition: all ease 0.4s;
}
.liste-produit-reco .liste-pdt .pdt-reco .info-pdt {
  text-align: center;
  padding-top: 18px;
  padding-bottom: 15px;
}
.liste-produit-reco .liste-pdt .pdt-reco .info-pdt p {
  margin: 0;
}
.liste-produit-reco .liste-pdt .pdt-reco .info-pdt .titre-pdt {
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
}
.liste-produit-reco .liste-pdt .pdt-reco .info-pdt .poids-pdt, .liste-produit-reco .liste-pdt .pdt-reco .info-pdt .puissance-pdt {
  font-weight: 500;
  line-height: 26px;
  /* font-family: "Roc Grotesk", sans-serif; */
  font-family: "arboria", sans-serif;
}

.section-btn-pdt.v-mobile {
  display: none;
}

.btn.btn-search-succursales.btn-contour.btn-mobile {
  display: none;
}

.paragraphe.cotechAccueil.cotechCateg {
  flex-direction: column;
  max-width: 70%;
}
.paragraphe.cotechAccueil.cotechCateg .titre-bloc {
  margin-bottom: 24px;
}
.paragraphe.cotechAccueil.cotechCateg .btn.btn-categorie-more {
  background: transparent;
  color: black;
  border: none;
  text-align: initial;
  padding: 0;
  text-decoration: underline;
  margin-top: 12px;
  z-index: 1;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .paragraphe.cotechAccueil.cotechCateg .btn.btn-categorie-more:hover {
    color: #FFA92F;
  }
}

.paragraphe.cotechAccueil.cotechCateg.cotechFiltreProduit {
  margin-top: 0;
}

.paragraphe.std.blocCategHaut {
  margin-top: 80px;
  margin-bottom: 56px;
  max-width: 70%;
}
.paragraphe.std.blocCategHaut .titre-bloc {
  font-size: 34px;
  line-height: 48px;
  text-transform: uppercase;
  opacity: 0.5;
}
.paragraphe.std.blocCategHaut .texte {
  line-height: 26px;
  font-weight: 500;
}
.paragraphe.std.blocCategHaut h4 {
  font-size: 24px;
  line-height: 32px;
  color: #231F20;
  opacity: 0.5;
}
.paragraphe.std.blocCategHaut ul li {
  margin-bottom: 20px;
  margin-left: 24px;
}
.paragraphe.std.blocCategHaut ul li::before {
  content: "";
  background: url(../images/icons/puce-pdt.svg) center no-repeat;
  background-size: 16px 11px;
  width: 16px;
  height: 11px;
  top: 7px;
  left: -24px;
}
.paragraphe.std.blocCategHaut ol {
  margin-top: 41px;
}
.paragraphe.std.blocCategHaut ol li {
  margin-bottom: 40px;
  padding-left: 60px;
}
.paragraphe.std.blocCategHaut ol li::before {
  content: "";
  background: url(../images/icons/puce-chiffre.svg) center no-repeat;
  background-size: 36px 36px;
  width: 51px;
  height: 51px;
  top: -12px;
  background-color: #FFA92F;
  border-radius: 1000px;
}

.paragraphe.std.blocCategBas {
  border-top: 1px solid #C5C5C5;
  padding-top: 56px;
  margin-bottom: 80px;
}
.paragraphe.std.blocCategBas .titre-bloc {
  font-size: 34px;
  line-height: 48px;
  text-transform: uppercase;
  opacity: 0.5;
  max-width: 70%;
}
.paragraphe.std.blocCategBas .texte {
  line-height: 26px;
  font-weight: 500;
  max-width: 70%;
}
.paragraphe.std.blocCategBas .texte p {
  margin-bottom: 8px;
}
.paragraphe.std.blocCategBas .btnBlocCategBas {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.paragraphe.std.blocCategBas .btn.btn-full {
  margin-top: 24px;
  max-width: 70%;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .paragraphe.std.blocCategBas .btn.btn-full:hover {
    color: black;
  }
}

.single-lg-menu {
  transition: all 0.4s ease;
}
.single-lg-menu.ouvert {
  margin-right: 220px;
}

.btn.filtreRecherche {
  display: none;
  width: 100%;
  background: #F0F1F1;
  border: 3px solid #F0F1F1;
  color: #444546;
  text-align: start;
  padding: 15px 28px;
  position: relative;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .btn.filtreRecherche:hover {
    background: transparent;
    box-shadow: none;
  }
}
.btn.filtreRecherche:before, .btn.filtreRecherche:after {
  content: "";
  width: 4.5px;
  height: 24px;
  background: #444546;
  display: block;
  z-index: 10;
  position: absolute;
  right: 28px;
  border-radius: 10000px;
  top: 16px;
}
.btn.filtreRecherche:after {
  transform: rotate(90deg);
}
.btn.filtreRecherche:before {
  transition: all 0.4s ease;
}
.btn.filtreRecherche.ouvert::before {
  transform: rotate(90deg);
}

.produitdiap .infos-slide {
  display: none;
}
.produitdiap .slick-arrow.slick-prev {
  left: -26px;
}
.produitdiap .slick-arrow {
  top: calc(50% - 25px);
  bottom: 50%;
  right: -26px;
}

.imgBasDiv {
  display: flex;
  margin-top: 14px;
  column-gap: 12px;
  overflow: hidden;
}
.imgBasDiv .imgBas img {
  width: 125px;
  height: 125px;
  object-fit: cover;
}

.produitdiap {
  position: relative;
}

.page-fiche-produit .liste-images .imgBas img {
  border-radius: 10px;
}

.wrap.breadcrumbs {
  max-width: unset;
  margin-inline: 120px;
}

.diaporama-contenuBot.produitdiap {
  width: calc(97% + max(22vw - 100%, 0px) / 2 + 20px);
  padding-right: calc(max(50vw - 100%, 0px) / 2 + 20px);
  overflow: hidden;
  margin-top: 13px;
}
.diaporama-contenuBot.produitdiap::after {
  content: "";
  position: absolute;
  right: -50px;
  background: linear-gradient(90deg, #F0F1F1 50%, rgba(217, 217, 217, 0) 90.53%);
  height: 100%;
  width: 100px;
  bottom: 0;
  transform: rotate(180deg);
}
.diaporama-contenuBot.produitdiap .slick-slider {
  overflow: visible;
}
.diaporama-contenuBot.produitdiap .slick-slider .slick-slide {
  margin-right: 11px;
  position: relative;
}
.diaporama-contenuBot.produitdiap .slick-slider .slick-slide .image-container {
  height: 125px;
  object-fit: cover;
  cursor: pointer;
}
.diaporama-contenuBot.produitdiap .slick-slider .slick-slide .image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.diaporama-contenuBot.produitdiap .slick-slider .slick-slide .video-container::before, .diaporama-contenuBot.produitdiap .slick-slider .slick-slide .videoYTBot::before {
  content: "";
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  bottom: 0;
  right: 0;
  border-radius: 10px;
  background-image: url("../images/icons/play-video.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.diaporama-contenuBot.produitdiap .slick-slider .slick-slide .video-container video {
  height: 125px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  cursor: pointer;
}

.page-fiche-produit .liste-images .diaporama-sliderTop img {
  height: 500px;
  object-fit: cover;
}

.page-fiche-produit .liste-images .diaporama-sliderBot .slick-list img {
  max-width: none;
}

.page-fiche-produit .liste-images .diaporama-sliderBot img {
  max-width: 125px;
}

.grille-specs {
  overflow: hidden;
}

.table-wrapper {
  max-width: 100%;
  overflow: auto;
}

/*.div-spec{
  table, tr, td{
    border: 1px solid #F0F1F1;
  }
  .grille-specs{
    thead{
      tr{
        font-weight: bold !important;
        padding-bottom: 10px;
        font-size: 18px !important;
        text-align: center !important;
        td{
          padding-bottom: 12px;
        }
      }
    }
    tbody{
      tr{
        text-align: center  !important;
        font-size: 14px !important;
        font-weight: bold !important;
      }
    }
  }
}*/
.texte.textePlus {
  display: none;
}

/*.pos-single.actif .info-pos {
  background: #F0F1F1;
}*/
a.btn.bouton-next {
  background: #FFA92F;
  border: 3px solid #FEA92E;
  color: black;
  margin-right: 11px;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  a.btn.bouton-next:hover {
    background: transparent;
  }
}

button.btn[name=resultats] {
  background: #FFA92F;
  border: 3px solid #FEA92E;
  color: black;
  margin-right: 11px;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  button.btn[name=resultats]:hover {
    background: transparent;
  }
}

.formulaire-carriere .formulaire-ligne.formulaire-ligne-cv input#documentEmploi {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.blocCategHaut .btn.btn-categorie-more, .blocCategBas .btn.btn-categorie-more {
  background: transparent;
  color: black;
  border: none;
  text-align: initial;
  padding: 0;
  text-decoration: underline;
  margin-top: 12px;
  z-index: 1;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .blocCategHaut .btn.btn-categorie-more:hover, .blocCategBas .btn.btn-categorie-more:hover {
    color: #FFA92F;
  }
}

.gm-style .controls {
  font-size: 28px; /* this adjusts the size of all the controls */
  box-sizing: border-box;
  font-weight: 300;
  text-align: center;
  background: rgb(255, 255, 255);
  border: 0px;
  margin: 10px;
  padding: 0px;
  text-transform: none;
  appearance: none;
  position: absolute;
  user-select: none;
  border-radius: 2px;
  height: 40px;
  width: 40px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  overflow: hidden;
}

.gm-style .controls button {
  border: 0;
  background-color: white;
  color: rgba(0, 0, 0, 0.6);
}

.gm-style .controls button:hover {
  color: rgba(0, 0, 0, 0.9);
}

.gm-style .controls.fullscreen-control {
  cursor: pointer !important;
}

.gm-style .controls.fullscreen-control button {
  display: block;
  font-size: 1em;
  height: 100%;
  width: 100%;
}

.gm-style .controls.fullscreen-control .fullscreen-control-icon {
  border-style: solid;
  height: 0.25em;
  position: absolute;
  width: 0.25em;
}

.gm-style .controls.fullscreen-control .fullscreen-control-icon.fullscreen-control-top-left {
  border-width: 2px 0 0 2px;
  left: 0.4em;
  top: 0.4em;
}

.gm-style .controls.fullscreen-control.is-fullscreen .fullscreen-control-icon.fullscreen-control-top-left {
  border-width: 0 2px 2px 0;
}

.gm-style .controls.fullscreen-control .fullscreen-control-icon.fullscreen-control-top-right {
  border-width: 2px 2px 0 0;
  right: 0.4em;
  top: 0.4em;
}

.gm-style .controls.fullscreen-control.is-fullscreen .fullscreen-control-icon.fullscreen-control-top-right {
  border-width: 0 0 2px 2px;
}

.gm-style .controls.fullscreen-control .fullscreen-control-icon.fullscreen-control-bottom-left {
  border-width: 0 0 2px 2px;
  left: 0.4em;
  bottom: 0.4em;
}

.gm-style .controls.fullscreen-control.is-fullscreen .fullscreen-control-icon.fullscreen-control-bottom-left {
  border-width: 2px 2px 0 0;
}

.gm-style .controls.fullscreen-control .fullscreen-control-icon.fullscreen-control-bottom-right {
  border-width: 0 2px 2px 0;
  right: 0.4em;
  bottom: 0.4em;
}

.gm-style .controls.fullscreen-control.is-fullscreen .fullscreen-control-icon.fullscreen-control-bottom-right {
  border-width: 2px 0 0 2px;
}

.titre-badge {
  position: relative;
}

.icon-grade {
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  height: 64px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 64px;
}
.icon-grade.icon-grade-or-fr {
  background-image: url("../images/badges/partenaire-or.png");
}
.icon-grade.icon-grade-argent-fr {
  background-image: url("../images/badges/partenaire-argent.png");
}
.icon-grade.icon-grade-bronze-fr {
  background-image: url("../images/badges/partenaire-bronze.png");
}
.icon-grade.icon-grade-or-en {
  background-image: url("../images/badges/gold-partner.png");
}
.icon-grade.icon-grade-argent-en {
  background-image: url("../images/badges/Silver-partner.png");
}
.icon-grade.icon-grade-bronze-en {
  background-image: url("../images/badges/bronze-partner.png");
}

.form-garantie {
  padding: 33px 34px 35px 38px;
  border-bottom: 1px solid #344b57;
  background: #fff;
  box-shadow: 1px 0 21px 0 rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
  border-radius: 20px;
}
.form-garantie .btn.btn-contour-gris {
  display: block;
  font-weight: bold;
  margin-top: 30px;
  border-radius: 5px;
  background: #FFA92F;
  border: 3px solid #FFA92F;
  color: white;
  /*@media(hover: none) {
    &:active { @content; }
  }*/
}
@media (hover: hover) {
  .form-garantie .btn.btn-contour-gris:hover {
    background: transparent;
    color: black;
  }
}

@media screen and (max-width: 1400px) {
  .liste-produit-reco .liste-pdt {
    grid-template-columns: repeat(2, 280px);
  }
}
@media screen and (max-width: 1280px) {
  .section-liste-categories .categorie .image-categorie {
    grid-column-end: span 14;
  }
  .section-liste-categories .categorie .resume-categorie, .section-liste-categories .categorie .section-infos-categorie {
    grid-row-start: 2;
  }
  .section-liste-categories > :first-child:not(.categorie) ~ .categorie:nth-child(even) .resume-categorie, .section-liste-categories > .categorie:first-child ~ .categorie:nth-child(odd) .resume-categorie, .section-liste-categories > .categorie:first-child .resume-categorie {
    grid-column-start: 1;
    grid-column-end: span 14;
  }
  .section-liste-categories .categorie .titre-categorie-liste:after {
    display: none;
  }
  .section-liste-categories .categorie .section-infos-categorie {
    padding-inline: 10px;
  }
  .section-liste-categories > :first-child:not(.categorie) ~ .categorie:nth-child(odd) .image-categorie, .section-liste-categories > .categorie:first-child ~ .categorie:nth-child(even) .image-categorie {
    grid-column-start: 1;
  }
  .section-liste-categories > :first-child:not(.categorie) ~ .categorie:nth-child(odd) .resume-categorie, .section-liste-categories > .categorie:first-child ~ .categorie:nth-child(even) .resume-categorie {
    grid-column-start: 1;
  }
  .section-liste-categories .categorie .resume-categorie {
    grid-column-end: span 14;
  }
  .wrap_dia_only + .wrap_lint_only.singlelint-cat-produits {
    position: relative;
    margin-top: -80px;
  }
  .section-liste-categories .cats-cta {
    grid-column-end: span 14;
    justify-self: start;
    padding-left: 10px;
    height: 60px;
    padding-right: 32px;
    border-top-right-radius: 60px;
  }
  .section-liste-categories .categorie .section-infos-categorie .texte-categorie {
    column-count: 2;
    column-gap: 40px;
  }
  .findEquipement .section-infos-categorie .container-infos-supp .texte-categorie {
    column-count: 2;
    column-gap: 40px;
  }
  .section-liste-categories .categorie .section-infos-categorie a.btn.btn-inverse {
    margin-left: calc((100% - 40px) / 2 + 40px);
  }
  body .fin-page-revenir, body .page-emplois {
    padding-inline: 10px;
  }
  body .colone-emplois-liste {
    width: 60%;
  }
  body .select-positions {
    margin-right: 32px;
  }
  body .page-emplois .resultat-section .resultat-liste {
    padding-right: 32px;
  }
  body .page-emplois .resultat-liste article {
    width: 100%;
  }
  body .page-emplois .resultat-details {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body .page-emplois .resultat-details .detail {
    margin-left: 0px;
  }
  body .page-emplois .resultat-section .resultat-liste article > a {
    width: 100%;
  }
  body .formulaire-carriere {
    padding: 28px;
    width: auto;
  }
  body .page-emplois-details .colone-emplois-liste .emplois-liste-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
  }
  body .selection-hp-poids {
    padding-block: 20px;
  }
  body .section-selection-recherche .selection-tracteur main {
    height: auto;
    margin-block: 0px;
  }
  body .selection-hp-poids > br {
    display: none;
  }
  .section-selection-recherche > .wrap.grille {
    grid-row-gap: 20px;
  }
  .paragraphe.std.blocCategHaut ol li::before {
    top: 0;
  }
  .carte-succursales {
    aspect-ratio: 7/5;
  }
  .singlelint-carte-succursales + .singlelint-points-succursales {
    margin-top: 0px;
  }
  body .grille-produit h1 {
    font-size: 22px;
    line-height: 1em;
  }
  body .grille-produit .selection-scategorie .liste-checkbox {
    row-gap: 10px;
  }
  body .grille-produit .selection-scategorie .enos-checkbox-label {
    font-size: 16px;
  }
  body .grille-produit main h3 {
    font-size: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
  }
  body .grille-produit main .range2 {
    top: 0px;
    margin-top: 60px;
  }
  body .grille-produit main .range2 .range .range-output {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1em;
    padding-inline: 10px;
    font-size: 14px;
  }
  .paragraphe.dia {
    margin-top: 78px;
  }
  header {
    height: 78px;
  }
  header::before {
    height: 78px;
  }
  .section-liste-categories {
    grid-auto-rows: unset;
    grid-template-rows: unset;
  }
  .section > .full.grille.categorie {
    grid-row-gap: 0;
  }
  .section-liste-categories .categorie .section-infos-categorie .container-infos-supp {
    row-gap: 0;
    padding-block: 40px;
  }
  footer .section-footer-infos {
    grid-column-gap: 30px;
  }
  .entete-image {
    min-height: 98px;
  }
  .section > .wrap.grille.liste-infos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .diaporama-contenuBot.produitdiap {
    padding-right: calc(max(60vw - 100%, 0px) / 2 + 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: #F2B558;
    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;
  }
  header {
    display: flex;
  }
  .scroll header {
    height: 70px;
  }
  .scroll header:before {
    height: 70px;
  }
  header .submenu-container .submenu-content {
    padding-right: 0;
  }
  header .zoneMenu {
    width: 100%;
  }
  header .submenu-container {
    max-width: 100%;
  }
  html.menu-ouvert body::after {
    max-width: 0;
  }
  .recherche {
    z-index: 0;
  }
  .liste-menus .menu-liste.type-lg:not(:last-child) {
    margin-bottom: 40px;
  }
  .liste-menus .menu-liste.type-page .liens-menu {
    row-gap: 20px;
    font-size: 16px;
  }
  .liste-menus .menu-liste.type-piedpage .liens-menu {
    font-size: 18px;
  }
  .liste-menus {
    z-index: 2;
  }
  .menu-header {
    display: none;
  }
  .section-form-nj .champs-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-row-gap: 20px;
    grid-column-end: span 2;
  }
  .section-form-nj label {
    grid-column-end: span 2;
  }
  .section-form-nj input {
    grid-column-end: span 2;
  }
  .section-form-nj .section-infos {
    padding-block: 40px;
    row-gap: 20px;
  }
  .carte-joindre {
    aspect-ratio: 7/4;
    min-height: 280px;
    max-width: 100%;
  }
  .infos-adresse {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  footer .liste-menus {
    padding-top: 0px;
  }
  footer .liste-menus .liste-menus .menu-liste {
    padding-left: 0;
  }
  .liste-menus .menu-liste.type-piedpage .liens-menu {
    row-gap: 16px;
  }
  footer .liens-joindre {
    font-size: 16px;
  }
  footer .infos-adresse {
    row-gap: 10px;
  }
  footer .section-footer-infos {
    padding-bottom: 40px;
  }
  .entete-image .section-titrepage .wrap {
    padding-block: 80px;
    padding-top: 120px;
    padding-inline: 0;
  }
  .entete-image .section-titrepage .wrap .titre-page {
    padding: 0;
  }
  .entete-image .section-titrepage h1 {
    font-size: 30px;
  }
  .contenu > .section > .wrap {
    row-gap: 20px;
  }
  .contenu > .section > .wrap:not(:last-child), .contenu > .section > .full:not(:last-child) {
    margin-bottom: 20px;
  }
  .contenu > :not(:last-child).section-selection-recherche {
    margin-bottom: 40px;
  }
  .bloc-carre-produits .sc-titrecat {
    font-size: 15px;
    line-height: 1.4em;
    padding-block: 12px;
    padding-inline: 20px;
  }
  .bloc-carre-produits .sc-titrecat:before {
    right: calc(100% - 10px);
  }
  .bloc-carre-produits .sc-titrecat:after {
    left: calc(100% - 10px);
  }
  .section-entete-resultats > .wrap {
    flex-direction: column;
  }
  .reinitilisation {
    justify-content: right;
    margin-top: 22px;
  }
  .gm-style .controls.fullscreen-control {
    cursor: pointer !important;
  }
  .pos-recherche .titre {
    font-size: 24px;
  }
  .lien-icone {
    width: 26px;
    height: 26px;
  }
  .pos-container .btn.afficher-plus {
    margin-top: 60px;
  }
  .cs-entete .cs-titre {
    font-size: 24px;
    padding-inline: 40px;
  }
  .selection-scategorie .enos-checkbox input[type=checkbox] + span {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
  }
  .selection-scategorie .enos-checkbox input[type=checkbox] + span:after {
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
  }
  body .range .range-output {
    height: 30px;
    line-height: 30px;
    font-size: 1em;
  }
  .section-liste-categories .categorie .section-infos-categorie .texte-categorie {
    column-count: 1;
    line-height: 1.5em;
  }
  .findEquipement .section-infos-categorie .container-infos-supp .texte-categorie {
    column-count: 1;
    line-height: 1.5em;
  }
  .findEquipement .section-infos-categorie {
    margin-inline: -20px;
    padding-inline: 20px;
  }
  .section-infos-categorie > .wrap {
    height: 100%; /* align-items: center; */
  }
  .section-liste-categories .categorie .section-infos-categorie .container-infos-supp {
    height: 100%;
    justify-content: center;
  }
  .section-liste-categories .categorie .section-infos-categorie a.btn.btn-inverse {
    margin-left: auto;
  }
  .section-liste-categories .categorie .section-infos-categorie .container-infos-supp {
    row-gap: 20px;
    padding-block: 20px;
  }
  .section-liste-categories .categorie .section-infos-categorie .titre-categorie-liste {
    padding-right: 30px;
  }
  .section-liste-categories .categorie .section-infos-categorie .close-categorie {
    right: 10px;
  }
  .section-liste-categories .categorie .section-infos-categorie {
    grid-row-start: 1;
    grid-row-end: span 2;
  }
  .section-liste-categories .categorie .resume-categorie {
    row-gap: 16px;
    padding-block: 80px;
  }
  body .page-emplois .colones-emplois {
    flex-direction: column;
  }
  body .colone-emplois-liste {
    width: 100%;
    margin-bottom: 40px;
  }
  body .formulaire-carriere {
    width: 100%;
  }
  body .fin-page-revenir {
    margin-top: 32px;
    text-align: center;
  }
  .contenu > .section.having-bg {
    display: flex;
    flex-direction: column;
  }
  body .liste-produit {
    gap: 32px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .btn-filtres {
    display: inline-block;
    align-self: center;
    background: #FFA92F;
    border: 3px solid #FEA92E;
  }
  .grille-produit .colones-emplois {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    position: relative;
  }
  .grille-produit form.selection-scategorie {
    transform: translateX(200%);
    position: absolute;
    display: grid;
    overflow: hidden;
    margin-left: auto;
    padding: 20px;
    border: 1px solid black;
    position: absolute;
    right: 0px;
    top: calc(100% + 20px);
    z-index: 12;
    background: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    column-gap: 60px;
    grid-auto-flow: dense;
    max-width: 100%;
    row-gap: 16px;
    transition: transform 0.4s ease;
  }
  .btn-filtres.ouvert + form {
    transform: translateX(0%);
  }
  .selection-scategorie .liste-checkbox {
    width: 100%;
  }
  body .grille-produit main .range2 {
    padding-inline: 60px;
    margin-top: 40px;
  }
  .grille-produit .range2 .rangeslider--horizontal {
    width: 100%;
  }
  header {
    z-index: 20;
  }
  body .grille-produit h1 {
    margin-bottom: 0px;
  }
  .grille-produit form h2 {
    padding: 0px;
    margin: 0px;
  }
  .btn-filtres + form > h1:first-child + ul {
    grid-column-start: 1;
  }
  body .grille-produit .selection-scategorie .liste-checkbox {
    margin-bottom: 0px;
  }
  .btn-filtres + form > br {
    display: none;
  }
  body .grille-produit .selection-scategorie .enos-checkbox-label {
    display: inline-flex;
    line-height: 1.2em;
    align-items: center;
    max-width: 100%;
  }
  body .grille-produit .selection-scategorie .enos-checkbox-label .enos-checkbox {
    display: inline-block;
  }
  body .grille-produit main h3 {
    padding-top: 0px;
  }
  body .grille-produit main .range2 .range .range-output {
    height: 20px;
    font-size: 12px;
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .slick-slide {
    height: 410px;
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .video-container {
    padding-bottom: 62.5% !important;
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .image-container {
    height: 410px;
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide {
    padding: 47px 0 110px 30px !important;
    margin-top: unset;
    margin-bottom: unset;
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide .contenu-slide {
    max-width: min(100% - 52px, 330px);
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide .contenu-slide .titre-slide {
    font-size: 32px;
    line-height: 40px;
    display: flex;
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide .contenu-slide .texte-diapo {
    font-size: 14px;
    line-height: normal;
  }
  .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 {
    margin-right: 20px;
  }
  .slick-arrow {
    width: 34px !important;
    height: 34px !important;
    right: -10px !important;
  }
  .slick-arrow.slick-prev {
    right: 80px !important;
  }
  /*.div-spec{
    overflow: auto;
  }
  .grille-specs{
    width: 660px;
    overflow: auto;
  }*/
  .paragraphe.cotechAccueil.cotechCateg.cotechFiltreProduit {
    margin-top: 0 !important;
  }
  .paragraphe.cotechAccueil {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .slick-lightbox .slick-prev, .slick-lightbox .slick-next {
    top: unset;
  }
  .full.grille.categorie {
    margin-bottom: 11px;
  }
  .section-liste-categories .categorie .resume-categorie {
    padding: 31px 31px 25px 25px;
  }
  .section-liste-categories > :first-child:not(.categorie) ~ .categorie:nth-child(2n+1) .resume-categorie, .section-liste-categories > .categorie:first-child ~ .categorie:nth-child(2n) .resume-categorie {
    padding: 31px 31px 25px 25px;
  }
  .paragraphe.cotechAccueil {
    flex-direction: column;
  }
  .btnEndAccueil {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .btnEndAccueil .btn.btn-full {
    margin-right: 0;
    margin-bottom: 14px;
  }
  .contenu > .section.having-bg.section_only_cta .paragraphe.cta {
    padding-block: 40px;
    padding-inline: 0;
  }
  footer .section-footer-infos {
    padding-top: 40px;
  }
  footer .section > .wrap.flex {
    padding-inline: 32px;
  }
  footer .section-footer-infos .champs-container {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  footer .section-footer-infos input, footer .section-footer-infos textarea {
    padding: 7px 10px;
  }
  footer .section > .wrap.flex.h-space-between {
    flex-direction: column-reverse;
  }
  .liste-menus .menu-liste {
    padding: 0;
  }
  footer .section > .wrap.flex.h-space-between.v-center {
    flex-direction: row;
  }
  .page-fiche-produit .infos-produits .titre-produit {
    font-size: 34px;
    line-height: 48px;
  }
  .liste-infos .infos-produits .explication-produit {
    margin-top: 4px;
    margin-bottom: 26px;
  }
  .liste-infos .infos-produits .texte-produit {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 14px;
  }
  .liste-infos .infos-produits .equipement-reco .titre-reco {
    font-size: 18px;
    margin-bottom: 13px;
  }
  .section > .wrap.grille.liste-doc-spec-desc {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .desc-spec {
    order: 1;
    display: grid;
  }
  .desc-spec .div-spec {
    display: grid;
  }
  .dl-pdf {
    order: 2;
    display: flex;
  }
  .desc-spec::before, .titre-section-desc::before, .dl-pdf::before, .section-btn-pdt.v-mobile::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #C5C5C5;
    margin-bottom: 24px;
    margin-top: 26px;
  }
  .liste-infos .infos-produits .section-btn-pdt.v-desktop {
    display: none;
  }
  .liste-infos .infos-produits .section-btn-pdt.v-mobile {
    display: flex;
  }
  .section-btn-pdt.v-mobile {
    order: 3;
    flex-direction: column;
    display: flex;
  }
  .section-btn-pdt.v-mobile .btn {
    padding: 20px 28px;
    border: 3px solid #FFA92F;
    color: black;
    border-radius: 6px;
    font-size: 16px;
  }
  .section-btn-pdt.v-mobile .btn.gauche-plein {
    background: #FFA92F;
    margin-bottom: 8px;
  }
  .section-btn-pdt.v-mobile .btn.droit-vide {
    margin-left: 0;
    background: transparent;
  }
  .page-fiche-produit .grille-specs:not(:last-child), .page-fiche-produit .dl-pdf:not(:last-child), .page-fiche-produit .liste-videos:not(:last-child) {
    margin-bottom: 0;
  }
  .paragraphe.cotechAccueil.cotechCateg {
    max-width: none;
  }
  .produitdiap .slick-arrow.slick-prev {
    left: -10px;
  }
  .paragraphe.std.blocCategHaut {
    margin-top: 50px;
    margin-bottom: 40px;
    max-width: none;
  }
  .paragraphe.std.blocCategHaut .titre-bloc {
    font-size: 28px;
    line-height: 38px;
  }
  .paragraphe.std.blocCategHaut .texte {
    font-size: 15px;
    line-height: 25PX;
  }
  .paragraphe.std.blocCategHaut h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .paragraphe.std.blocCategBas {
    padding-top: 40px;
    margin-bottom: 64px;
  }
  .paragraphe.std.blocCategBas .titre-bloc {
    font-size: 28px;
    line-height: 38px;
  }
  .paragraphe.std.blocCategBas .texte {
    font-size: 15px;
    line-height: 25PX;
  }
  .paragraphe.std.blocCategBas .btn.btn-full {
    margin-top: 24px;
  }
  .paragraphe.cotechAccueil.cotechCateg {
    margin-bottom: 30px;
  }
  .page-accueil .slick-arrow {
    right: 30px !important;
  }
  .page-accueil .slick-arrow.slick-prev {
    right: 90px !important;
  }
  .desc-spec .divMom-opt {
    flex-direction: column;
  }
  .desc-spec .divMom-opt .img-opt {
    width: 75%;
    margin-top: 20px;
  }
  .desc-spec .titre-section-desc {
    margin-top: 20px;
    display: grid;
  }
  .pos-localisation {
    margin-bottom: 6px;
  }
  .btn.filtreRecherche {
    display: block;
  }
  .pos-typeBot {
    display: none;
    overflow: visible !important;
  }
  .dansUnRayonDiv {
    margin-top: 12px;
  }
  .btn.btn-search-succursales.btn-contour.btn-mobile {
    display: block;
  }
  .paragraphe.std.revendeurProche .titre-bloc {
    line-height: 38px;
    font-size: 28px;
  }
  .paragraphe.std.revendeurProche .texte {
    font-size: 15px;
    line-height: normal;
  }
  .paragraphe.cotechAccueil {
    font-size: 15px;
    line-height: normal;
  }
  .page-fiche-produit .liste-images:not(:last-child) {
    margin-bottom: 23px;
  }
  .imgBasDiv .imgBas img {
    width: 62px;
    height: 62px;
  }
  .wrap.breadcrumbs {
    margin-inline: 20px;
  }
}
@media screen and (max-width: 960px) and (min-width: 601px) {
  .section-liste-categories .categorie.show-more-info .section-infos-categorie {
    align-self: end;
    min-height: 263px;
  }
}
@media screen and (max-width: 640px) {
  .liste-produit-reco .titre-pdt-reco {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 28px;
  }
  .liste-produit-reco .liste-pdt {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 8px;
  }
  .liste-produit-reco .liste-pdt .pdt-reco {
    width: 100%;
    margin-right: 0;
  }
  .liste-produit-reco .liste-pdt .pdt-reco .img-pdt img {
    height: 250px;
    width: 100%;
  }
  .paragraphe.std.blocCategHaut ol li::before {
    top: 12px;
  }
  .paragraphe.std.blocCategHaut ol li {
    padding-top: 10px;
  }
  .page-fiche-produit .liste-images .diaporama-sliderTop img {
    height: 252px;
  }
  .diaporama-contenuBot.produitdiap .slick-slider .slick-slide .image-container, .diaporama-contenuBot.produitdiap .slick-slider .slick-slide .video-container video {
    height: 62px;
  }
  .diaporama-contenuBot.produitdiap .slick-slider .slick-slide .video-container::before, .diaporama-contenuBot.produitdiap .slick-slider .slick-slide .videoYTBot::before {
    background-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  header .menu-toggle {
    height: 24px;
    aspect-ratio: unset;
    width: 28px;
    flex-shrink: 0;
  }
  header .menu-toggle span, header .menu-toggle:before, header .menu-toggle:after {
    height: 4px;
  }
  header .menu-toggle:after {
    top: calc(100% - 4px);
  }
  header .menu-toggle:before {
    bottom: calc(100% - 4px);
  }
  header .logo-site {
    max-height: 40px;
    max-width: 150px;
  }
  header .menu-gauche {
    flex-shrink: 1;
  }
  .section.section-entete > .wrap.flex {
    flex-wrap: nowrap;
  }
  .popup-container .popup {
    width: calc(100% - 40px);
    padding: 20px 10px;
  }
  .popup-container .popup .popup-entete {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.2em;
  }
  .popup-container .popup .popup-contenu .selection-categorie {
    padding-bottom: 40px;
  }
  .selection-scategorie {
    padding-block: 40px;
  }
  .selection-scategorie .enos-checkbox-label {
    font-size: 16px;
    line-height: 1em;
    display: flex;
    align-items: center;
  }
  .selection-scategorie .enos-checkbox {
    vertical-align: middle;
  }
  .selection-tracteur {
    padding-block: 20px;
  }
  .rangeslider--horizontal {
    max-width: 100%;
  }
  .section-selection-recherche main {
    margin-inline: 0px;
    width: 100%;
  }
  .range1 {
    max-width: calc(100% - 40px);
  }
  body .range .range-output {
    font-size: 12px;
    height: 20px;
    line-height: 12px;
    padding-inline: 10px;
    display: flex;
    align-items: center;
  }
  footer .section-footer-infos input {
    grid-column-end: span 2;
  }
  footer .section-footer-copyright .reseaux-sociaux {
    column-gap: 10px;
  }
  .to-top {
    width: 32px;
    height: 32px;
    bottom: 52px;
  }
  footer .section-footer-copyright > .wrap {
    min-height: 40px;
  }
  body .aucun-resultat {
    font-size: 24px;
    padding: 20px;
    line-height: 1em;
    font-weight: bold;
  }
  .section-form-nj input {
    grid-column-end: span 2;
  }
  .carte-succursales {
    max-width: 100%;
    min-height: 480px;
  }
  .liste-infos {
    grid-column-gap: 0 !important;
  }
  .desc-spec .divMom-opt .img-opt {
    width: 100%;
  }
  .cs-entete .cs-titre {
    font-size: 20px;
    padding-inline: 20px;
    padding-block: 10px;
    max-width: calc(100% - 20px);
    text-align: center;
  }
  .cs-entete .cs-titre {
    font-size: 20px;
    padding-inline: 20px;
    padding-block: 10px;
    max-width: calc(100% - 20px);
    text-align: center;
  }
  header .submenu-container .submenu-content {
    padding-right: 20px;
    padding-left: 0px;
  }
  header .submenu-container {
    padding-left: 20px;
    width: 100%;
    padding-bottom: 20px;
    padding-right: 20px;
  }
  header .submenu-container .close-menu {
    top: 20px;
    right: 20px;
  }
  .section-liste-categories .categorie .section-infos-categorie .container-infos-supp {
    overflow: hidden;
    max-height: 100%;
  }
  .section-liste-categories .categorie.show-more-info .section-infos-categorie {
    display: flex;
    overflow: hidden;
    flex-direction: column;
  }
  .section-liste-categories .categorie.show-more-info .section-infos-categorie > .wrap {
    flex-shrink: 1;
    max-height: 100%;
  }
  body .page-emplois h2.titre {
    line-height: 1.2em;
  }
  body .select-positions {
    margin-inline: 0px;
    flex-direction: column;
    row-gap: 10px;
  }
  body .select-positions-titre {
    margin-right: 0px;
  }
  body .select-positions form > select[name] {
    width: 100%;
  }
  body .page-emplois .resultat-section .resultat-liste {
    padding-right: 0px;
  }
  body .page-emplois .resultat-details {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  body .colone-emplois-liste article a .titre {
    margin-bottom: 10px;
  }
  body .formulaire-ligne > input.double {
    width: 100%;
  }
  body .formulaire-carriere input[type=text], body .formulaire-carriere input[type=email], body .formulaire-carriere select {
    margin-top: 16px;
  }
  body .formulaire-carriere .formulaire-ligne {
    flex-wrap: wrap;
  }
  body .formulaire-carriere .formulaire-ligne label {
    margin-top: 0px;
    display: inline-block;
    height: auto;
    align-self: flex-end;
  }
  body .formulaire-ligne a.bouton-lien {
    display: inline-block;
    margin-top: 0px;
    padding: 10px;
    font-size: 12px;
  }
  body .formulaire-carriere button {
    width: auto;
    margin: 20px 0px 0px auto;
    font-size: 16px;
    padding: 10px;
  }
  .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 {
    column-gap: 10px;
    row-gap: 10px;
  }
  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;
  }
  .section.having-bg {
    min-height: 400px;
    padding-block: 100px;
  }
  body .page-emplois-details .colone-emplois-liste .emplois-liste-options {
    grid-template-columns: minmax(0, 1fr);
  }
  .paragraphe.d1-2 + .paragraphe.std.variante1.d1-2 .titre-bloc:only-child {
    padding-inline: 0px;
  }
  .paragraphe.std.variante1 .titre-bloc:only-child {
    font-size: 2.25rem;
  }
  .colone-emplois-liste p {
    margin-right: 0px;
  }
  .section-liste-categories .cats-cta {
    width: 100%;
    text-align: left;
    height: auto;
    padding-block: 7px;
    border-top-right-radius: 80px;
  }
  .section-liste-categories .cats-cta a {
    font-size: 14px;
    padding-right: 20px;
  }
  .section-liste-categories .cats-cta a:after {
    display: none;
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide .titre-slide {
    font-size: 30px;
  }
  .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide {
    padding-left: 32px;
    padding-right: 32px;
  }
  .wrap_dia_only + .wrap_lint_only.singlelint-cat-produits {
    margin-top: -53px;
  }
  header .recherche {
    padding-right: 22px;
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: fit-content;
  }
  header .zoneMenu .menu-gauche {
    padding-inline: 60px;
    flex-grow: 1;
    position: relative;
    justify-content: center;
  }
  header .menu-toggle {
    position: absolute;
    left: 20px;
  }
  .section-liste-categories .categorie .section-infos-categorie a.btn.btn-inverse {
    margin-left: auto;
  }
  .section-liste-categories > .full.grille:not(.categorie) {
    z-index: 1;
    position: relative;
  }
  .section-liste-categories .categorie .section-infos-categorie {
    z-index: 10;
  }
  .wrap_dia_only + .wrap_lint_only.singlelint-cat-produits {
    z-index: unset;
  }
  .section-liste-categories .categorie .resume-categorie .titre-categorie-liste {
    color: #464748;
  }
  .section-liste-categories .categorie .titre-categorie-liste:after {
    display: inline-block;
  }
  .section-liste-categories.section .full.grille.categorie {
    row-gap: 0px;
  }
  .contenu > .section.having-bg.section_only_cta .paragraphe.cta {
    aspect-ratio: 9/13;
    width: 100%;
  }
  .contenu > .section.having-bg.section_only_cta {
    padding-block: 0px;
    padding-inline: 0;
  }
  .section-liste-categories .categorie .resume-categorie .btn {
    margin-top: 6px;
  }
  .paragraphe.cta h2.titre-bloc, .paragraphe.std h2.titre-bloc {
    font-size: 28px;
    line-height: 38px;
  }
  footer .section-footer-copyright .reseaux-sociaux {
    column-gap: 20px;
    padding-right: 20px;
  }
  .to-top {
    bottom: 4px;
  }
  footer .liste-menus {
    align-self: flex-start;
  }
  .btn-resume-categorie {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .section-liste-categories .categorie .section-infos-categorie .close-categorie {
    right: 20px;
  }
  .section-liste-categories .categorie .titre-categorie-liste::after, .section-liste-categories > :first-child:not(.categorie) ~ .categorie:nth-child(2n) .resume-categorie .titre-categorie-liste::after, .section-liste-categories > .categorie:first-child ~ .categorie:nth-child(2n+1) .resume-categorie .titre-categorie-liste::after, .section-liste-categories > .categorie:first-child .resume-categorie .titre-categorie-liste::after {
    left: -30px;
    width: 80vw;
  }
  .section-liste-categories .categorie .resume-categorie .btn.btn-jaune {
    margin-top: auto;
    margin-inline: auto;
    text-align: center;
  }
  .section-liste-categories .categorie .titre-categorie-liste {
    font-size: 28px;
    line-height: 38px;
  }
  .section-liste-categories .categorie .image-categorie {
    max-height: 242px;
  }
  .section-liste-categories .categorie .section-infos-categorie .texte-categorie {
    height: 200px;
    flex-grow: 1;
    overflow: auto;
    column-count: unset;
  }
}
@media screen and (max-width: 500px) {
  .paragraphe.dia .diaporama-contenu .infos-slide .contenu-slide .btn.btn-contour {
    padding: 14px 18px;
  }
  .diaporama-contenuBot.produitdiap {
    width: calc(97% + max(22vw - 100%, 0px) / 2 + 70px);
  }
  .diaporama-contenuBot.produitdiap::after {
    right: 10px;
  }
}
@media screen and (max-width: 480px) {
  .d1-2.t1-2.m-full.infos-produits {
    grid-column-end: span 6 !important;
  }
  .page-fiche-produit .infos-produits .specs {
    flex-direction: column;
  }
}
@media screen and (max-width: 960px) {
  .page-accueil .slick-arrow.slick-prev, .page-accueil .slick-arrow.slick-next {
    bottom: 20px;
  }
  .page-accueil .slick-arrow.slick-prev {
    right: 70px !important;
  }
  .page-accueil .slick-arrow.slick-next {
    right: 20px !important;
  }
  .page-accueil .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces li {
    line-height: 12px;
  }
  .page-accueil .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .liste-puces {
    gap: 8px;
    margin: auto;
    width: auto;
    left: unset;
    right: 10px;
    top: 10px;
    bottom: 64px;
  }
  .page-accueil .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide {
    padding: 20px 40px 70px 20px !important;
  }
  .page-accueil .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .slick-slide {
    height: auto;
  }
  .page-accueil .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .image-container {
    min-height: 100px;
    max-height: 100%;
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .page-accueil .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide {
    align-items: start;
    min-height: max(33vw, 180px);
    height: 100%;
    align-self: stretch;
  }
  .page-accueil .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .video-container {
    padding-bottom: 0px !important;
    position: relative;
    min-height: 100px;
    max-height: 100%;
    height: 100%;
  }
  .page-accueil .paragraphe.dia .diaporama-contenu .infos-slide .contenu-slide .titre-slide .titre-1 + br {
    display: none;
  }
  .page-accueil .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide .contenu-slide {
    max-width: min(100%, 330px);
  }
  .page-accueil .paragraphe.dia .diaporama-contenu.sli .diaporama-slider .diapo-slide .infos-slide .contenu-slide .titre-slide {
    font-size: 28px;
    line-height: 32px;
  }
  .page-accueil .paragraphe.dia .diaporama-contenu .infos-slide .contenu-slide .btn.btn-contour {
    padding: 8px 14px;
    font-size: 14px;
  }
}
/* .icon-grade {
  right: -15px;
  top: -30px;
} */
.pointVenteMobile, .detailsMobile {
  display: none;
}

.lint-carte-succursales {
  position: relative;
  height: 100%;
}

.emplacementVous {
  display: none;
}

.sectionSuccursale > .wrap {
  background-color: #ffffff;
}

.carte-succursales {
  /* aspect-ratio: 1/1; */
  min-height: 100%;
  width: 100%;
  /* aspect-ratio: 1/0.73; */
  aspect-ratio: 1/0.53;
  max-height: 1143px;
}

.pos-container {
  /* .pos-liste::-webkit-scrollbar-track {
      border: solid 1px darkgrey;
  } */
  /* .pos-liste::-webkit-scrollbar-track{
    border: solid 1px #8a8888;
  } */
}
.pos-container .btn.afficher-plus {
  margin-inline: auto;
  margin-top: 130px;
  display: block;
  width: fit-content;
}
.pos-container label.container-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1em;
}
.pos-container .pos-type-recherche {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #707070;
  margin-bottom: 20px;
}
.pos-container label.container-radio input[type=radio] {
  display: none;
}
.pos-container span.radio-btn {
  border: solid 1px #707070;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
  position: relative;
}
.pos-container .pos-liste::-webkit-scrollbar {
  width: 1em;
  background-color: rgb(240, 241, 241);
}
.pos-container .pos-liste::-webkit-scrollbar-thumb {
  background-color: #FFA92F;
  background-color: #707070;
  border-radius: 5px;
}
.pos-container span.radio-btn:after {
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background-color: #707070;
  position: absolute;
  margin: auto;
  border-radius: 50%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.pos-container :checked + span.radio-btn:after {
  opacity: 1;
}

.pos-recherche {
  position: sticky;
}
.pos-recherche .titre {
  font-size: 28px;
  line-height: 1.2em;
  margin: 0px;
  width: 100%;
  text-align: center;
}
.pos-recherche .container-recherche {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 80px;
  row-gap: 26px;
  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=text] {
  color: white;
  background-color: transparent;
  outline: none;
  border: unset;
  border-bottom: 1px solid currentColor;
}
.pos-recherche input[type=text]::placeholder {
  color: inherit;
}
.pos-recherche input[type=text]::-webkit-input-placeholder {
  color: inherit;
}
.pos-recherche input[type=text]::-moz-placeholder {
  opacity: 0.99;
  color: inherit;
}
.pos-recherche input[type=text]:-ms-input-placeholder {
  color: inherit;
}
.pos-recherche ::selection {
  /* background-color:white; */
  color: #464748;
}
.pos-recherche .btn {
  text-transform: uppercase;
  border: 4px solid #FFA92F;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1em;
  font-weight: bold;
  font-family: "Noto Sans", sans-serif;
  background: transparent;
  color: white;
  padding: 12px 24px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.2s ease;
}
.pos-recherche .btn:hover {
  background-color: #FFA92F;
  color: #464748;
}
.pos-recherche .btn:active {
  transform: scale(0.95);
}

.pos-liste {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 20px;
  margin-top: 45px;
}
.pos-liste .pos-single {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #084C61;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  font-size: 16px;
  line-height: 2em;
  padding-block: 55px;
  border-bottom: 1px solid #A1A3A5;
}
.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;
  transition: all 0.5s ease;
}
.pos-liste .pos-single a:hover {
  /* color:inherit;*/
  color: #FFA92F;
  /* font-weight: 600; */
  font-weight: initial;
  transition: all 0.5s ease;
}
.pos-liste .pos-single .pos-section-liens {
  display: flex;
  column-gap: 10px;
  flex-wrap: wrap;
}

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

.lien-facebook {
  -webkit-mask-image: url("/images/icons/icone-facebook.svg");
  mask: url("/images/icons/icone-facebook.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/icone-lien.svg");
  mask: url("/images/icons/icone-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;
}

.pos-adresse-infos {
  position: relative;
}

.sectionSuccursale {
  max-height: 1143px;
}
.sectionSuccursale .pos-container {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}
.sectionSuccursale .pos-container .pos-liste {
  /* max-height: 730px; */
  max-height: 605px;
  overflow-y: auto;
  height: calc(100vh - 312px);
}
.sectionSuccursale .wrap.grille, .sectionSuccursale .wrap.flex {
  max-width: 100vw !important;
  padding: 0 !important;
  grid-column-start: 1;
  grid-column-end: -1;
  margin-inline: 0px !important;
}
.sectionSuccursale .wrap.grille .d2-5, .sectionSuccursale .wrap.grille .d3-5, .sectionSuccursale .wrap.flex .d2-5, .sectionSuccursale .wrap.flex .d3-5 {
  margin-left: 0;
  margin-right: 16px;
}
.sectionSuccursale .wrap.grille .d2-5, .sectionSuccursale .wrap.flex .d2-5 {
  /* width: 31%!important; */
  width: 31.5% !important;
}
.sectionSuccursale .wrap.grille .d3-5, .sectionSuccursale .wrap.flex .d3-5 {
  width: 67% !important;
  padding-right: 40px;
}
.sectionSuccursale .wrap.grille .entete, .sectionSuccursale .wrap.grille .pos-recherche, .sectionSuccursale .wrap.grille .pos-single, .sectionSuccursale .wrap.flex .entete, .sectionSuccursale .wrap.flex .pos-recherche, .sectionSuccursale .wrap.flex .pos-single {
  padding-left: 40px;
  padding-right: 20px;
}
.sectionSuccursale h2.titre-bloc {
  text-transform: uppercase;
}

.pos-recherche {
  background-color: initial;
  max-width: initial;
  height: auto;
  display: block;
}
.pos-recherche .container-recherche {
  padding: 0;
  display: block;
}
.pos-recherche .pos-ligne-recherche {
  display: block;
  position: relative;
}
.pos-recherche .pos-ligne-recherche:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/noun-search.svg);
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
}
.pos-recherche .pos-ligne-recherche:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/noun-location.svg);
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
}
.pos-recherche input[type=text] {
  color: #8a8888;
  border: solid 1px #8a8888;
  font-size: 20px;
  font-weight: normal;
  padding-inline: 44px;
  position: relative;
  height: initial !important;
}
.pos-recherche input[type=text]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/noun-search.svg);
  width: 22px;
  height: 22px;
}
.pos-recherche input[type=text]:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/noun-location.svg);
  width: 22px;
  height: 22px;
}

.pos-liste {
  grid-template-columns: 1fr;
  border-top: solid 1px #8a8888;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /* padding-top: 30px; */
  grid-gap: 0;
}
.pos-liste .pos-single {
  row-gap: initial;
  padding-block: initial;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.7215686275);
  font-size: 20px;
  line-height: 1.5em;
  /* padding-bottom: 21px; */
  padding-bottom: 10px;
  border-bottom: solid 1px #8a8888;
  /* padding-top: 30px; */
  padding-top: 10px;
  transition: all 0.5s ease;
}
.pos-liste .pos-single:hover {
  background-color: #dadada !important;
  transition: all 0.5s ease;
  cursor: pointer;
}
.pos-liste .pos-single.actif {
  /* background-color: $grisActif; */
  background-color: #FFA92F;
}
.pos-liste .pos-single.actif .lien-icone {
  background-color: #ffffff;
  transition: all 0.5s ease;
}
.pos-liste .pos-single.actif .lien-icone:hover {
  transition: all 0.5s ease;
  background-color: #464748;
}
.pos-liste .pos-single.actif a:hover {
  transition: all 0.5s ease;
  color: #ffffff;
}
.pos-liste .pos-single:not(.actif) {
  background-color: rgb(240, 241, 241);
}
.pos-liste .pos-single.hidden {
  display: none;
}
.pos-liste .pos-single .tel-pos {
  display: inline-block;
  transition: all 0.5s ease;
  margin-top: 15px;
}
.pos-liste .pos-single .pos-titre {
  font-weight: normal;
  color: #000;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.pos-liste .pos-single .pos-titre .pos-distance {
  position: relative;
  text-align: right;
  padding-left: 10px;
  flex-shrink: 0;
  /* font-family: "Roc Grotesk"; */
  font-family: "arboria", sans-serif;
  font-size: 16px;
  line-height: 1.2em;
  text-transform: uppercase;
}
.pos-liste .pos-single .pos-titre .pos-distance:after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  width: 9px;
  height: 15px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pos-liste .pos-single .pos-adresse-infos {
  text-transform: uppercase;
  padding-right: 70px;
  font-size: 16px;
  line-height: 1.2em;
}
.pos-liste .pos-single a {
  font-size: 16px;
  line-height: 1.2em;
  align-self: flex-start;
}

.sectionSuccursale .wrap.flex .pos-single {
  padding-right: 5px;
  padding-left: 40px;
}
.sectionSuccursale .wrap.flex .pos-single .info-pos {
  padding: 14px 0 14px 0px;
}

.info-recherche {
  font-size: 20px;
}

.message-cookie-map h1, .message-cookie-map h2, .message-cookie-map h3, .message-cookie-map h4, .message-cookie-map h5, .message-cookie-map h6 {
  color: #898888;
  /*font-family: "Integral CF";*/
  font-family: "arboria", sans-serif;
  /* Valider */
  font-weight: 600 !important;
  text-transform: uppercase !important;
  font-size: 24px;
}

.message-cookie-map {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  padding: 60px 0px;
  text-align: Center;
}

/* @media screen and (max-width:960px) { */
@media screen and (max-width: 1280px) {
  .sectionSuccursale .wrap.grille .d3-5, .sectionSuccursale .wrap.flex .d3-5 {
    padding-right: 0px;
  }
  .pos-recherche .pos-ligne-recherche:after {
    display: none;
  }
  .sectionSuccursale {
    max-height: initial;
  }
  .sectionSuccursale > .wrap {
    row-gap: 0 !important;
  }
  .carte-succursales {
    aspect-ratio: 1/1.58;
    max-height: 600px;
  }
  .detailsMobile {
    background-color: #fff;
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 75px);
    z-index: 200;
    padding: 0px;
  }
  .detailsMobile h3.pos-titre {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
  }
  .detailsMobile .pos-adresse-infos {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    text-transform: uppercase;
  }
  .detailsMobile .icon-grade {
    right: -35px;
    top: -40px;
    width: 48px;
    height: 48px;
    background-size: contain;
  }
  .sectionSuccursale .wrap.flex .entete, .sectionSuccursale .wrap.flex .pos-recherche, .sectionSuccursale .wrap.flex .emplacementVous, .sectionSuccursale .wrap.flex .pointVenteMobile {
    margin-left: 30px;
    margin-right: 30px;
  }
  .sectionSuccursale .wrap.flex .entete, .sectionSuccursale .wrap.flex .pos-recherche, .sectionSuccursale .wrap.flex .pointVenteMobile {
    padding-left: 0px;
    padding-right: 0px;
  }
  .sectionSuccursale .wrap.flex .pos-single {
    padding-left: 30px;
    padding-right: 30px;
  }
  .sectionSuccursale .wrap.flex .d2-5 {
    width: 100% !important;
    margin-right: 0px !important;
  }
  .sectionSuccursale .wrap.flex .d2-5 .pos-liste {
    margin-top: 0;
    max-height: 100% !important;
    height: unset;
    /* display: none; */
  }
  .sectionSuccursale .wrap.flex .d2-5 .pos-liste.nonActif {
    display: none;
  }
  .sectionSuccursale .wrap.flex .d2-5 .pos-liste .pos-single .pos-titre .pos-distance:after {
    display: none;
  }
  .sectionSuccursale .wrap.flex .d3-5 {
    width: 100% !important;
    display: none;
    margin-right: 0px !important;
  }
  .sectionSuccursale .wrap.flex .d3-5.actif {
    display: block;
    width: 100% !important;
    margin-top: 0px;
  }
  .sectionSuccursale .wrap.flex .emplacementVous {
    margin-top: 13px;
    opacity: 0.59;
    display: block;
  }
  .sectionSuccursale .wrap.flex .pointVenteMobile {
    display: flex;
    margin-top: 30px;
    border-bottom: 1px solid #E2E2E2;
  }
  .sectionSuccursale .wrap.flex .pointVenteMobile .pointVenteListe {
    border-bottom: 1px black solid;
    opacity: 1;
    cursor: pointer;
    margin-bottom: 0;
    padding: 5px;
    box-sizing: border-box;
  }
  .sectionSuccursale .wrap.flex .pointVenteMobile .pointVenteListe:not(.nonActif) {
    width: auto;
    background: #FFA92F;
    border: 1px solid #FFA92F;
    color: black;
    opacity: 1;
  }
  .sectionSuccursale .wrap.flex .pointVenteMobile .pointVenteListe.nonActif {
    border-bottom: none;
    opacity: 0.59;
    /*@media(hover: none) {
      &:active { @content; }
    }*/
  }
}
@media screen and (max-width: 1280px) and (hover: hover) {
  .sectionSuccursale .wrap.flex .pointVenteMobile .pointVenteListe.nonActif:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1280px) {
  .sectionSuccursale .wrap.flex .pointVenteMobile .pointVenteCarte {
    margin-left: 12px;
    opacity: 0.59;
    cursor: pointer;
    margin-bottom: 0;
    padding: 5px;
    box-sizing: border-box;
    /*@media(hover: none) {
      &:active { @content; }
    }*/
  }
  .sectionSuccursale .wrap.flex .pointVenteMobile .pointVenteCarte.actif {
    width: auto;
    background: #FFA92F;
    border: 1px solid #FFA92F;
    color: black;
    opacity: 1;
  }
}
@media screen and (max-width: 1280px) and (hover: hover) {
  .sectionSuccursale .wrap.flex .pointVenteMobile .pointVenteCarte:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 1800px) {
  .pointVenteBardeaux {
    margin-bottom: 0px !important;
    display: flex;
    flex-direction: column;
  }
  .pointVenteBardeaux > .entete {
    flex-grow: 0;
    flex-shrink: 0;
  }
  .pointVenteBardeaux > .lint-points-succursales {
    height: 200px;
    flex-grow: 1;
  }
  .pointVenteBardeaux > .lint-points-succursales > .pos-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  .pointVenteBardeaux .pos-recherche {
    margin: 0px;
  }
  .pointVenteBardeaux .pos-liste {
    max-height: unset !important;
    min-height: calc(181px * 2);
  }
}
@media screen and (min-width: 1281px) and (max-width: 1520px) {
  .sectionSuccursale .wrap.grille .entete, .sectionSuccursale .wrap.grille .pos-recherche, .sectionSuccursale .wrap.grille .pos-single, .sectionSuccursale .wrap.flex .entete, .sectionSuccursale .wrap.flex .pos-recherche, .sectionSuccursale .wrap.flex .pos-single {
    padding-left: 40px;
  }
  .info-pos {
    padding-left: 0px;
  }
}
/*Specific Cotech*/
@media screen and (min-width: 961px) {
  .detailsMobile {
    display: none !important;
  }
  .sectionSuccursale .wrap.grille .d2-5, .sectionSuccursale .wrap.grille .d3-5, .sectionSuccursale .wrap.flex .d2-5, .sectionSuccursale .wrap.flex .d3-5 {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 1600px) {
  .sectionSuccursale .wrap.grille .d2-5, .sectionSuccursale .wrap.flex .d2-5 {
    width: 29% !important;
  }
  .sectionSuccursale .wrap.grille .d3-5, .sectionSuccursale .wrap.flex .d3-5 {
    width: 69.5% !important;
  }
}
@media screen and (max-width: 480px) {
  .pos-liste .pos-single {
    font-size: 16px;
    line-height: 1.5em;
    padding-left: 20px;
    padding-right: 20px;
  }
  .pos-liste .pos-single .info-pos {
    row-gap: 12px;
    padding: 0px;
  }
  .pos-liste .pos-single .pos-titre {
    font-size: 18px;
  }
  .pos-liste .pos-single .pos-titre:not(:last-child) {
    padding-right: 42px;
  }
  .pos-liste .pos-single .icon-grade {
    height: 54px;
    width: 54px;
    background-size: contain;
  }
  .pos-recherche input[type=text]:after {
    display: none;
  }
  .pos-recherche input[type=text] {
    padding-right: 10px;
    padding-left: 36px;
  }
}
@media screen and (max-width: 360px) {
  .pos-liste .pos-single .pos-titre:not(:last-child) {
    padding-right: 0px;
  }
  .pos-liste .pos-single .icon-grade {
    top: calc(100% + 10px);
    right: 0px;
  }
  .sectionSuccursale .wrap.flex .pos-single {
    padding-left: 16px;
    padding-right: 16px;
    min-height: 140px;
  }
  .pos-adresse-infos, .pos-liste .pos-single .pos-section-liens {
    padding-right: 60px;
  }
}

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