:root {
  /* COLOR */
  /* ===== */
  --primary-h: 120;
  /* hue */
  --primary-s: 8%;
  /* saturation */
  --primary-l: 44%;
  /* lightness */

  --accent-h: 120;
  /* hue */
  --accent-s: 8%;
  /* saturation */
  --accent-l: 44%;
  /* lightness */

  --text-h: 220;
  /* hue */
  --text-s: 2%;
  /* saturation */
  --text-l: 24%;
  /* lightness */

  --background-h: 120;
  /* hue */
  --background-s: 5%;
  /* saturation */
  --background-l: 96%;
  /* lightness */

  --accent50: hsla(120, 5%, 96%, 1);
  --accent100: hsla(108, 10%, 90%, 1);
  --accent200: hsla(113, 8%, 80%, 1);
  --accent300: hsla(115, 8%, 67%, 1);
  --accent400: hsla(120, 6%, 52%, 1);
  --accent500: hsla(120, 8%, 44%, 1);
  --accent600: hsla(120, 10%, 30%, 1);
  --accent700: hsla(125, 10%, 24%, 1);
  --accent800: hsla(128, 10%, 16%, 1);
  --accent900: hsla(120, 9%, 9%, 1);

  --gray0: hsla(0, 0%, 100%, 1);
  --gray50: hsla(180, 5%, 96%, 1);
  --gray100: hsla(180, 2%, 90%, 1);
  --gray200: hsla(220, 3%, 82%, 1);
  --gray300: hsla(195, 3%, 69%, 1);
  --gray400: hsla(200, 3%, 53%, 1);
  --gray500: hsla(200, 3%, 43%, 1);
  --gray600: hsla(210, 2%, 36%, 1);
  --gray700: hsla(210, 3%, 31%, 1);
  --gray800: hsla(220, 2%, 24%, 1);
  --gray900: hsla(210, 2%, 18%, 1);
  --background-2: var(--accent200);
  --title-color: var(--gray900);

  /* font size */
  /* ===== */

  --display2xl: 92px;
  --displayxl: 74px;
  --displaylg: 49px;
  --displaymd: 42px;
  --displaysm: 35px;
  --displayxs: 30px;

  --textlg: 20px;
  --textmd: 16px;
  --textsm: 13px;
  --textxs: 10px;

  --h1-font-size: var(--display2xl);
  --h2-font-size: var(--displayxl);
  --h3-font-size: var(--displaylg);
  --h4-font-size: var(--displaymd);
  --h5-font-size: var(--displaysm);
  --h6-font-size: var(--displayxs);

  --h1-mobile-font-size: var(--displaymd);
  --h2-mobile-font-size: var(--displaysm);
  --h3-mobile-font-size: var(--displayxs);
  --h4-mobile-font-size: var(--textlg);
  --h5-mobile-font-size: var(--textsm);
  --h6-mobile-font-size: var(--textxs);
  --title-size: 60px;

  /* FONT FAMILY */

  /* ===== */
  --primary-font: "alexandria", sans-serif;
  --secondary-font: "Bebas Neue", sans-serif;

  /* RADIUS */
  /* ===== */
  --border-radius: 2px;
  --button-border-radius: 4px;

  /* FONT WEIGHT */
  /* ===== */
  --font-weight-regular: 400;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  --line-height: 1.5rem;

  --transition: 0.3s all ease-in-out;
}

/* =============================== */
/*           GENERAL                 */
/* =============================== */
html {
  overflow-x: hidden;
}

div#blocHorsLigne {
  z-index: 9999 !important;
}
.card {
  position: relative;
  display: block;
}

.card a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 4;
}

.card-image {
  position: relative;
}

.catalogue-card-image img,
.actualites-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-interne .sc-content .clear_both {
  margin-bottom: 60px;
}

.politique-de-confidentialite main .btn-contact {
  margin-top: 1rem;
  width: max-content;
}

a,
.card-image img {
  transition: var(--transition);
}

p {
  margin: 12px 0 1.5rem;
  font-weight: 300;
}

h1.h1-geoloc span,
.title-1.h1-geoloc span {
  margin: 8px 0 0;
}

body :where(address) {
  margin: 0;
}

.paginationControl {
  text-align: center;
  margin: 60px auto 28px;
}

.sitemap-nav li {
  margin: 10px 0;
}

.slick-dots li button .slick-dot-icon:before {
  content: "";
}

.slick-dots li {
  margin: 0 4px;
  padding: 4px;
}

.slick-dots li button {
  height: 8px;
  width: 8px;
  border-radius: 37px;
  background-color: var(--accent200);
  padding: 0;
}

.slick-dots li.slick-active button {
  background: var(--accent700);
}

.slick-dots li.slick-active button {
  background: var(--gray700);
  width: 60px;
}

.slick-dots li button:hover .slick-dot-icon,
.slick-dots li button:focus .slick-dot-icon {
  opacity: 1;
}

.slick-dots li button .slick-dot-icon {
  color: var(--accent100);
  opacity: 1;
}

.slick-dots li.slick-active button:hover .slick-dot-icon,
.slick-dots li.slick-active button:focus .slick-dot-icon {
  opacity: 0.7;
}

.slick-dots li.slick-active button .slick-dot-icon {
  color: var(--accent500);
  opacity: 1;
}

h1.h1-geoloc span::before,
.title-1.h1-geoloc span::before {
  display: none;
}

.divGenerateur label.optional {
  display: none;
}

@media screen and (min-width: 601px) and (max-width: 992px) {
  .btn:not(.fluid) {
    width: auto;
  }
}

@media screen and (max-width: 992px) {
  .fold-interne {
    padding: 12px 5%;
    width: 100%;
  }

  header a.tel {
    font-size: 20px;
  }

  .blocs img,
  .page-interne .sc-content .ac-doubleColonne .ac-colonne img,
  .ac-colonne img,
  #listing-autres-actus-categorie {
    display: block;
    max-width: 450px;
    max-height: 400px;
    margin: 30px auto;
    object-fit: cover;
    width: 100%;
  }

  .header-content .nav ul li a.selected {
    background: transparent;
  }
}
@media screen and (min-width: 993px) {
  .page-interne .sc-content .clear_both {
    margin-bottom: 80px;
  }

  .index-page main .section {
    padding: 80px 0;
  }
}

@media screen and (min-width: 1280px) {
  .index-page main .section {
    padding: 120px 0;
  }

  .index-page .encart-avis.section {
    padding-bottom: 96px;
  }
}

/* =============================== */
/*           BOUTONS                 */
/* =============================== */
.btn:not(#recherche_actu_submit) {
  padding: 12px 26px;
  border-radius: var(--button-border-radius);
  font-size: var(--textmd);
  font-weight: var(--font-weight-semi-bold);
  letter-spacing: -0.32px;
  text-transform: uppercase;
  line-height: 24px;
  position: relative;
  overflow: hidden;
  min-width: max-content;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease-in-out;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60px;
  transition: transform 0.3s ease-in-out;
}

.btn-wrapper {
  height: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn:hover .btn-text {
  transform: translateY(-23px);
}

.btn.accent,
.btn-primary {
  background-color: var(--accent-color);
  color: var(--gray0);
}

.btn.accent:hover,
.btn-primary:hover {
  background-color: var(--accent-color);
}

.btn.outlined {
  border: 1px solid var(--accent50);
  background: hsla(0, 0%, 100%, 0.05);
  backdrop-filter: blur(4px);
  color: var(--gray0);
}

.btn.outlined:hover {
  background: var(--accent100);
  border: 1px solid var(--accent100);
  color: var(--accent900);
}

.row-btn .btn.outlined {
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

@media screen and (max-width: 600px) {
  .fold-top .btn-contact,
  .fold-interne .btn-contact {
    margin-top: 10px;
  }
  [class*="btn"] a.btn,
  .btn.primary {
    width: 100%;
  }
}

/* =============================== */
/*           BRAND                 */
/* =============================== */
.brand a {
  display: inline-block;
  transition: opacity 0.3s;
}

.brand a:hover {
  opacity: 0.75;
}

header .brand img.footer-only,
footer .brand img.header-only,
.rappel_telephonique .brand img.footer-only {
  display: none;
}

/* =============================== */
/*           HEADER                 */
/* =============================== */
.menu-mobile .btn-menu {
  color: var(--accent500);
  border: 1px solid var(--accent500);
  background: var(--accent100);
  border-radius: var(--button-border-radius);
}

.menu-mobile {
  height: 90px;
  background-color: var(--background-color);
}

.menu-mobile .brand {
  margin-left: -11px;
}

.header-content .nav > ul > .sous_menu.opened > a,
.header-content .nav .dropdown > .sous_menu.opened > a {
  height: 90px;
}

.menu-mobile .row {
  width: 100%;
  margin: 0;
}

.menu-mobile .brand.col {
  padding: 0;
}

.phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media screen and (max-width: 992px) {
  header a.tel {
    font-size: 20px;
  }

  .no-mobile {
    display: none;
  }

  .header-content .nav .dropdown,
  .header-content .nav .ssdropdown {
    top: 90px;
  }

  .header-content #nav-container {
    margin-top: 90px;
  }

  .header-content .nav#topbar-nav li:not(.opened) a {
    padding: 1.5rem;
    border-bottom: solid 1px var(--background-2);
  }

  .header-content .nav#main-nav li:not(.opened) a {
    padding: 1.5rem;
    border-color: var(--background-2);
  }

  .header-content .nav#main-nav li.index-link a {
    border-top: solid 1px var(--background-2);
  }

  .header-content nav a {
    font-weight: var(--font-weight-bold);
    font-size: var(--textmd);
  }

  .header-content .nav > ul > .sous_menu.opened > a,
  .header-content .nav .dropdown > .sous_menu.opened > a {
    color: var(--primary-color);
    font-size: var(--textmd);
  }

  .header-content nav ul li {
    margin: 0 4px;
  }
}

@media screen and (min-width: 993px) {
  .header-content .nav ul li.sous_menu ul.dropdown > li a {
    color: var(--text-color);
  }

  .header-content .nav ul li.sous_menu ul.dropdown > li a:hover,
  .header-content .nav ul li.sous_menu ul.dropdown > li a.selected {
    color: var(--accent-color);
  }

  .header-content .contact {
    display: none;
  }

  .logo-white {
    display: none;
  }

  .index-page .header-content:not(.sticky-active .header-content) .logo-white {
    display: block;
  }

  .index-page .header-content:not(.sticky-active .header-content) .logo-black {
    display: none;
  }

  .header-content,
  .header-content a {
    color: var(--accent900);
  }

  .index-page .header-content:not(.sticky-active .header-content) {
    background-color: transparent;
  }

  .index-page .header-content a:not(.sticky-active .header-content a) {
    color: var(--gray0);
  }

  .row-header {
    flex-direction: column;
    row-gap: 16px;
  }

  .header-content .phone {
    font-weight: var(--font-weight-semi-bold);
  }

  .header-content .container {
    padding: 9px 0;
  }

  .main-header-content .col {
    padding: 0 4px;
  }

  .header-content nav li:not(li.sousLi) {
    margin: 0 8px;
  }

  .header-content .row {
    flex-wrap: nowrap;
  }

  .header-content .nav#topbar-nav > ul > li > a,
  .header-content .nav#main-nav > ul > li > a,
  .nav-footer a {
    position: relative;
    padding: 4px;
  }

  .header-content .nav#main-nav > ul > li > a::before,
  .header-content .nav#topbar-nav > ul > li > a:before,
  .nav-footer a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 2px;
    background-color: var(--accent100);
    width: 0;
    transition: var(--transition);
  }

  .header-content .nav#main-nav > ul > li > a.selected:before,
  .header-content .nav#main-nav > ul > li > a:hover:before,
  .header-content .nav#topbar-nav > ul > li > a:hover:before,
  .header-content .nav#topbar-nav > ul > li > a.selected:before,
  .nav-footer a:hover::before,
  .nav-footer a.selected::before {
    width: 100%;
    left: 0;
    right: 0;
  }

  .main-header-content nav a {
    font-size: var(--textsm);
  }

  .main-header-content nav ul.dropdown a,
  .top-bar nav a {
    font-size: 10px;
  }
}

@media screen and (min-width: 1280px) {
  .main-header-content .col {
    padding: 0 12px;
  }

  .row-header {
    flex-direction: row;
  }

  .main-header-content nav a {
    font-size: 11px;
  }
}

@media screen and (min-width: 1440px) {
  .main-header-content nav a {
    font-size: 13px;
  }

  .main-header-content nav ul.dropdown a,
  .top-bar nav a {
    font-size: 12px;
  }
}

@media screen and (min-width: 1440px) {
  .main-header-content nav a {
    font-size: var(--textmd);
  }

  .main-header-content nav ul.dropdown a,
  .top-bar nav a {
    font-size: var(--textsm);
  }
}

/* =============================== */
/*           BLOC HERO             */
/* =============================== */
#bloc-hero {
  text-align: center;
  color: var(--gray0);
  font-family: var(--secondary-font);
  position: relative;
  width: 100%;
  /* height: 100vh; */
  aspect-ratio: 1.7;
  overflow: hidden;
  z-index: 0;
}

#bloc-hero .title-hero {
  font-weight: var(--font-weight-semi-bold);
  font-size: var(--displaylg);
  line-height: var(--displaylg);
  letter-spacing: 2.4px;
  color: var(--gray0);
}

#bloc-hero p {
  font-size: var(--displaylg);
  line-height: var(--displaymd);
  font-weight: 300;
  letter-spacing: 0.5rem;
  margin: 8px 0 16px;
}

#bloc-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* aspect-ratio: 1.7; */
  background: linear-gradient(360deg, rgba(21, 25, 21, 0.4) 50%, #151915 100%);
  z-index: 2;
  pointer-events: none;
  height: 100%;
}

#bloc-hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--gray0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media screen and (max-width: 992px) {
  #bloc-hero {
    margin-top: 20px;
    min-height: 500px;
    text-align: center;
    height: -webkit-fill-available;
    padding: 0 12px;
  }

  #bloc-hero .btn-contact {
    display: none;
  }

  #bloc-hero img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
  }
}

@media screen and (min-width: 993px) {
  #bloc-hero .title-hero {
    font-size: 8rem;
    line-height: 9rem;
  }

  .index-page main {
    position: relative;
  }

  #bloc-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  #bloc-hero iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
  }

  /* #bloc-hero iframe {
  position: absolute;
  top: 3%;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  aspect-ratio: 1.7;
  pointer-events: none;
}
  #bloc-hero {
    margin-top: -168px;
  } */
  #bloc-hero::before {
    top: 0;
  }

  /* .hero-content {
    padding-bottom: 190px;
  } */
}

/* =============================== */
/*        STYLE COMMUN            */
/* =============================== */
.blocs {
  position: relative;
}

main p a {
  color: inherit;
  text-decoration: underline;
}

h1,
.title-1 {
  font-size: var(--h1-mobile-font-size);
  line-height: var(--h1-mobile-font-size);
}

h2,
.title-2 {
  font-size: var(--h2-mobile-font-size);
  line-height: var(--h2-mobile-font-size);
}

h3,
.title-3,
h1.h1-geoloc span,
.title-1.h1-geoloc span,
h1 span,
.title-1 span {
  font-size: var(--h3-mobile-font-size);
  line-height: var(--h3-mobile-font-size);
}

h4,
.title-4 {
  font-size: var(--h4-mobile-font-size);
  line-height: var(--h4-mobile-font-size);
}

h1,
h2,
h3,
h4,
h5,
[class*="title"],
[class*="title"] a,
h1 span,
h1.h1-geoloc span,
#relance a {
  font-weight: var(--font-weight-semi-bold);
  font-family: var(--secondary-font);
  color: var(--title-color);
  margin: 0;
}

h1 span {
  margin-top: 8px;
}

.index-page h1,
.page-interne h1 {
  margin: 0;
}

.slick-catalogue,
.slick-actualites,
.slick-prestations,
.slick-avis,
.slick-marques,
.slick-point-fort {
  margin-top: 48px;
}

.card-title,
.card-title a {
  font-size: var(--displayxs);
  line-height: var(--displayxs);
  text-decoration: none;
}

@media screen and (min-width: 993px) {
  .card-title,
  .card-title a {
    font-size: var(--displaysm);
    line-height: var(--displaysm);
  }

  h1,
  .title-1 {
    font-size: var(--h1-font-size);
    line-height: var(--h1-font-size);
    text-transform: uppercase;
  }

  h2,
  .title-2,
  .page-interne h1,
  .page-interne .title-1 {
    font-size: var(--h2-font-size);
    line-height: var(--h2-font-size);
  }

  h3,
  .title-3,
  h1.h1-geoloc span,
  .title-1.h1-geoloc span,
  h1 span,
  .title-1 span {
    font-size: var(--h3-font-size);
    line-height: var(--h3-font-size);
  }

  h4,
  .title-4 {
    font-size: var(--h4-font-size);
    line-height: var(--h4-font-size);
  }
}

/* =============================== */
/*       ENCART PRESTATIONS         */
/* ==============================- */

#encart-prestations .card-text {
  font-weight: 300;
  color: var(--gray50);
  margin: 12px 0 24px;
}

#encart-prestations .card-title {
  color: var(--gray0);
}

.presta {
  padding: 0;
}

.presta a {
  position: relative;
  z-index: 0;
  padding: 100px 0;
  display: block;
  text-decoration: none;
}

.presta-1 a {
  background-image: url("../assets/gifs/prestation-01.jpg");
  background-size: cover;
}

.presta-2 a {
  background-image: url("../assets/gifs/prestation-02.jpg");
  background-size: cover;
}

.presta-3 a {
  background-image: url("../assets/gifs/prestation-03.jpg");
  background-size: cover;
}

.presta a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(21, 25, 21, 0.2) 0%,
    rgba(21, 25, 21, 0.8) 100%
  );
  z-index: -1;
}

.presta .row {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 993px) {
  .presta,
  #encart-catalogue,
  #bloc-04 {
    position: sticky;
    top: 0;
    width: 100%;
  }

  .presta a {
    padding: 220px 0;
  }

  #encart-prestations .card-title {
    font-size: var(--title-size);
    line-height: var(--title-size);
    text-transform: uppercase;
  }
}

/* =============================== */
/*            BLOC VIDEO 1          */
/* ==============================- */
div#bloc-video-1 {
  position: relative;
  background: var(--gray900);
  overflow: hidden;
}

div#bloc-video-1 .title-2,
div#bloc-video-interne .title-2 {
  color: var(--gray0);
}

.video-container
  iframe:not(
    #bloc-video-1 .video-container iframe,
    #bloc-video-interne .video-container iframe,
    #bloc-video-3 .video-container iframe
  ) {
  pointer-events: none;
}

#bloc-video-1 .video-container,
div#bloc-video-interne .video-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-height: 608px;
  aspect-ratio: 16/9;
  margin-top: 48px;
  z-index: 0;
}

#bloc-video-1 .video-container::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

div#bloc-video-1 iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.button-play {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: hsla(0, 0%, 0%, 0.1);
  border: 2px solid var(--accent50);
  border-radius: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  transition: transform 0.1s ease-out;
  z-index: 9999;
}

/* =============================== */
/*         ENCART MARQUES          */
/* ==============================- */
.marque {
  min-width: 214px;
  height: 100px;
  display: flex;
  justify-content: center;
  margin: 0 40px;
}

/* =============================== */
/*       ENCART CATALOGUE          */
/* ==============================- */

#encart-catalogue div {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

#encart-catalogue
  .slick-slide
  img:not(#encart-catalogue .slick-slide.slick-center img) {
  transform: scaleY(0.8);
  z-index: 0;
  height: 400px;
}

#encart-catalogue .slick-center img {
  display: block;
  transform: scale(1.2);
  /* Agrandir l'image centrale */
  transition: transform 0.5s ease;
  z-index: 1;
  position: relative;
  height: 400px;
}

.slick-catalogue {
  position: relative;
  z-index: 0;
}

.slick-catalogue::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(103, 122, 103, 0.6) 0%,
    rgba(103, 122, 103, 0) 20%,
    rgba(103, 122, 103, 0) 80%,
    rgba(103, 122, 103, 0.6) 100%
  );
}

.catalogue-listing .catalogue-card-image {
  overflow: hidden;
}

.catalogue-listing .catalogue-card-image img {
  transition: var(--transition);
}

.catalogue-listing .catalogue-card:hover img {
  transform: scale(1.1);
}

.catalogue-detail-contenu iframe {
  height: 430px;
  max-width: 100%;
  margin-top: 1rem;
}

.row-btn {
  margin-top: 1.5rem;
}

@media screen and (min-width: 993px) {
  div#encart-catalogue {
    top: -115px;
  }
}

/* =============================== */
/*       BLOC PROJET VIDEO          */
/* ==============================- */
#projet-video {
  position: relative;
  padding: 100px 0;
  background-image: url("../assets/gifs/bg-1.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: var(--gray50);
  z-index: 0;
}

#projet-video .container {
  position: relative;
  z-index: 3;
}

#projet-video .bloc-text {
  max-width: 872px;
}

#projet-video h2 {
  color: var(--gray0);
}

#projet-video p {
  color: var(--gray50);
}

.coordonnees-bloc {
  margin: 40px 0;
  width: max-content;
  gap: 16px;
  justify-content: flex-start;
}

.coordonnees-bloc .phone {
  justify-content: flex-start;
}

.coordonnees-bloc .horaire {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-media {
  gap: 12px;
}

#projet-video .col {
  max-width: max-content;
}

@media screen and (max-width: 992px) {
  div#projet-video .row.l-middle {
    gap: 16px;
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 993px) {
  #projet-video {
    padding: 217.5px 0;
  }
}

/* =============================== */
/*          ENCART AVIS            */
/* =============================== */
.encart-avis {
  text-align: center;
  position: relative;
  background-color: var(--primary-color);
}
.encart-avis .row.s-top.s-start {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.encart-avis .align-right {
  text-align: center;
}

.avis-card .row {
  flex-direction: column;
}

.encart-avis .title-2 {
  color: var(--gray0);
}

.avis-card {
  padding: 24px;
  color: var(--gray0);
  position: relative;
  text-align: center;
  background-color: var(--accent400);
}

.avis-card .avis-card-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  height: 96px;
  margin: 8px 0 4px;
}

.avis-name {
  font-style: normal;
  font-weight: var(--font-weight-bold);
  font-size: var(--textmd);
  line-height: 24px;
}

.encart-avis .align-right button.show-more.btn.small {
  padding: 0;
  color: var(--gray0);
  font-weight: var(--font-weight-bold);
}

.avis-date {
  font-size: var(--textxs);
  font-style: normal;
  font-weight: 400;
  margin-left: -16px;
  color: var(--gray600);
}

.encart-avis .row.s-middle.s-start {
  padding-top: 4px;
}

.date.avis-date.card-date.avis-card-date.avis-encart-card-date.small,
.encart-avis .avis-card.js-more .avis-card-text::after {
  display: none;
}

/* =============================== */
/*                 BLOCS           */
/* =============================== */
#bloc-02,
#bloc-03,
#bloc-05 {
  position: relative;
  background-color: var(--background-color);
}

#bloc-04 {
  background-color: var(--background-color);
}

.blocs .container {
  position: relative;
}

@media screen and (min-width: 993px) {
  .bloc-right img {
    position: absolute;
    right: -23%;
    top: 0;
    bottom: 0;
    width: 150%;
    max-width: 908px;
    left: 55%;
  }

  .bloc-left img {
    position: absolute;
    left: -25%;
    top: 0;
    bottom: 0;
    width: 150%;
    max-width: 70%;
    right: 55%;
  }
}
@media screen and (max-width: 992px) {
  #bloc-01 p {
    font-size: 14px;
  }
}

/* =============================== */
/*      ENCART POINTS FORT         */
/* =============================== */
#encart-points-fort {
  position: relative;
  background-color: var(--accent900);
  color: var(--gray50);
}

#encart-points-fort .title-2 {
  color: var(--gray50);
}

.number {
  font-family: var(--secondary-font);
  font-weight: var(--font-weight-semi-bold);
  font-size: var(--displaysm);
  line-height: var(--displaysm);
}

#encart-points-fort .information {
  margin-bottom: 12px;
  font-size: var(--displayxs);
  line-height: var(--displayxs);
  font-weight: var(--font-weight-semi-bold);
}

#encart-points-fort span {
  display: block;
  font-size: var(--textsm);
}

@media screen and (min-width: 1280px) {
  .number {
    font-size: var(--display2xl);
    line-height: var(--display2xl);
  }
}
.slick-point-fort .col:nth-child(3) .pt-fort {
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .pt-fort {
    text-align: center;
    justify-content: center;
    gap: 4px;
    display: flex;
    flex-direction: column;
  }
}

/* =============================== */
/*        ENCART ACTUALITES       */
/* =============================== */
#encart-actualites {
  position: relative;
  background-color: var(--accent500);
}

.bloc-top .title-2,
#encart-actualites .card-title a {
  color: var(--gray0);
}

.bloc-top p {
  color: var(--gray0);
}

.slick-actualites {
  margin-top: 80px;
}

.actualites-card-image {
  overflow: hidden;
}

.actualites-card-image a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: var(--border-radius);
  position: relative;
}

.actualites-card-image a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(128, 10%, 16%, 0.6);
  z-index: 1;
  border-radius: var(--border-radius);
  padding: 10px;
  opacity: 0;
  transition: var(--transition);
}

.actualites-card-image img {
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.actualites-card-title {
  height: 68px;
  overflow: hidden;
  margin: 20px 0 12px;
}

.actualites-card-title,
.actualites-card-title a {
  font-family: var(--primary-font);
}

.index-page .actualites-date {
  color: var(--accent100);
}

.icon-act {
  display: flex;
  justify-content: center;
  width: 93px;
  height: 93px;
  border-radius: 100px;
  border: 1px solid hsla(120, 5%, 96%, 0.2);
  padding: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}

.cercle {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 80px;
  width: 72px;
  height: 72px;
  background: hsla(120, 5%, 96%, 0.1);
  backdrop-filter: blur(4px);
}

.actualites-card:hover .actualites-card-image a::before,
.actualites-card:hover .icon-act {
  opacity: 1;
}

.actualites-card:hover img {
  transform: scale(1.1);
}

/* =============================== */
/*      PAGE ACTUALITES DETAIL     */
/* =============================== */
.actualites-detail .detail-actu-image {
  max-width: 50%;
}

div#listing-autres-actus-categorie ul {
  padding-inline-start: 0;
}

div#listing-autres-actus-categorie li {
  margin-top: 0.5rem;
}

body.actualites-detail .listing-autres-actus-categorie {
  height: max-content;
  padding: 24px;
  margin-bottom: 24px;
  background-color: var(--accent-color-60);
  border-radius: var(--border-radius);
}

body.actualites-detail .listing-autres-actus-categorie .detail-btn {
  text-align: center;
}

#listing-autres-actus-categorie ul li ul li {
  list-style: none !important;
}

#listing-autres-actus-categorie ul li a {
  text-decoration: none;
}

#listing-autres-actus-categorie ul li a:hover {
  text-decoration: underline;
}

.actualites-detail .detail-actu-reseaux-sociaux {
  align-items: flex-start;
}

.detail-actu-reseaux-sociaux > div {
  display: flex;
}

.detail-actu-contenu p {
  margin: 0;
}

/* =============================== */
/*        BLOC METHODOLOGIE        */
/* ==============================- */
#bloc-methodologie {
  position: relative;
  background-color: var(--gray900);
  color: var(--gray50);
}

#bloc-methodologie p {
  max-width: 760px;
  margin: 12px 0 0;
}

#bloc-methodologie h2 {
  color: var(--accent50);
  max-width: 872px;
}

#bloc-methodologie .row h2 {
  color: var(--gray0);
}

.bloc-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 132px;
}

@media screen and (min-width: 993px) {
  .bloc-methodologie-interne .bloc-timeline {
    gap: 100px;
  }

  .bloc-methodologie-interne h2 {
    font-size: 40px;
    line-height: 40px;
  }

  .timeline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .progress {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .line {
    height: 250px;
    width: 4px;
    background-color: var(--accent200);
  }

  .dot {
    width: 60px;
    height: 60px;
    background-color: var(--accent200);
    border-radius: 50%;
  }

  .in-view {
    background-color: var(--primary-color);
    transition: background-color 1s ease-in-out;
  }

  .bloc-methodologie-interne-1 .line {
    height: 100px;
  }

  .bloc-methodologie-2 .line {
    height: 144px;
  }

  .bloc-methodologie-2 .timeline {
    transform: translate(-50%, -58%);
  }

  .bloc-methodologie-interne-3 .line {
    height: 125px;
  }

  .bloc-methodologie-interne-4 .line {
    height: 250px;
  }

  .bloc-methodologie-4 .timeline {
    transform: translate(-50%, -45%);
  }

  .bloc-methodologie-interne-5 .line {
    height: 130px;
  }
}

/* =============================== */
/*            BLOC VIDEO 2          */
/* ==============================- */
#bloc-video-2,
#bloc-video-3 {
  position: relative;
  background-color: #000;
}

#bloc-video-2 .video-container,
#bloc-video-3 .video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

#bloc-video-2 .video-container iframe,
#bloc-video-3 .video-container iframe {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: none;
  aspect-ratio: 16 / 7;
}

/* =============================== */
/*               FOOTER            */
/* =============================== */
footer {
  color: var(--accent100);
  background-color: var(--primary-color);
}

.reseaux-sociaux a:hover svg {
  transition: var(--transition);
}

.reseaux-sociaux a:hover {
  opacity: 1;
}

.reseaux-sociaux a:hover svg {
  transform: scale(1.1);
}

footer,
footer .section {
  padding: 24px 0;
}

footer .title {
  color: var(--accent50);
  font-size: var(--textmd);
  font-weight: var(--font-weight-semi-bold);
  line-height: 24px;
  margin-bottom: 12px;
}

.nav-footer ul.row a {
  text-decoration: none;
}

footer .section-3 a,
.siret {
  font-weight: var(--font-weight-semi-bold);
}

footer .section a.lien-maps:hover,
footer .section-3 a:hover,
a.lien-maps:hover {
  text-decoration: underline;
}

footer .section-1 .lien-maps span {
  display: block;
}

.index-page footer {
  position: relative;
}

footer ul.dropdown {
  position: absolute;
  left: 0;
  display: none;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  max-width: 4rem;
  margin: 0;
  padding: 0;
  font-weight: normal;
  background-color: var(--background-color);
  border: solid 1px rgba(0, 0, 0, 0.1);
  color: var(--text-color);
  z-index: 1;
  bottom: 100%;
}

footer ul li.sous_menu ul.dropdown > li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}

footer ul li.sous_menu {
  position: relative;
}

footer ul li.sous_menu > a::after {
  content: "\e5cf";
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin: -0.125em 0 0 0.25em;
  font-family: var(--icon-font);
}

footer ul li.sous_menu:hover ul.dropdown {
  display: block;
}

footer .nav ul li.sous_menu ul.dropdown > li a {
  padding: 0.5rem 0.75rem;
}

footer ul.dropdown li {
  margin: 0;
}

footer .nav ul li.sous_menu ul.dropdown > li a {
  padding: 0.5rem;
  margin: 0;
  font-size: 13px;
  display: block;
}

.nav-footer ul {
  margin: 0;
}

.nav-footer a,
.nav-footer a:hover,
.nav-footer a.selected {
  color: var(--gray0);
}

@media screen and (max-width: 992px) {
  .section.section-2.nav-footer {
    padding: 24px 0 0;
    max-width: 400px;
    margin: 0 auto;
  }

  footer {
    text-align: center;
  }

  footer .title {
    margin-top: 30px;
  }

  .section.section-1 {
    padding-bottom: 0;
  }

  footer .section li {
    margin: 15px 0;
  }

  .footer-coordonnee {
    flex-direction: column;
    margin: 0 0 25px;
    gap: 6px;
    justify-content: center;
  }

  .horaire-footer > div {
    margin-bottom: 20px;
    flex-direction: column;
    gap: 6px;
  }

  footer .brand {
    margin-bottom: 20px;
  }

  footer .brand .row {
    flex-wrap: nowrap;
    text-align: left;
  }
}

@media screen and (min-width: 993px) {
  .footer-brand {
    margin-left: -170px;
  }

  .nav-footer ul {
    display: flex;
    justify-content: center;
  }

  footer ul.dropdown {
    max-width: none;
  }

  footer .row {
    flex-wrap: nowrap;
  }
}

/* =============================== */
/*          ENCART CONTACT    */
/* =============================== */
#encart-contact {
  position: relative;
  z-index: 0;
}

#encart-contact::before {
  position: absolute;
  content: "";
  top: 0;
  left: -4000px;
  right: -4000px;
  bottom: 0;
  background: var(--primary-color);
  z-index: -1;
}

#encart-contact .card {
  border: 1px solid var(--gray0);
  border-radius: var(--border-radius);
  min-height: 170px;
}

.contact-card-content {
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 170px;
}

#encart-contact .card {
  margin: 10px 0;
}

.contact-card-title {
  min-height: 35px;
  margin: 10px 0;
}

#encart-contact .btn-contact {
  width: max-content;
  margin: 0 auto;
}

.contact-page-infos-pratiques .title-2 {
  color: var(--gray800);
}

@media screen and (min-width: 993px) {
  #encart-contact .row {
    align-items: center;
  }

  div#encart-contact:not(.index-page div#encart-contact) {
    padding: 80px 0;
  }
}

/* =============================== */
/*           CONTACT PAGE         */
/* =============================== */
.section-hero h1 {
  margin: 20px 0;
  font-size: var(--h2-font-size);
  color: var(--gray0);
}

.section-hero {
  position: relative;
  background-image: url("../assets/gifs/slider/slide-01.jpg");
  background-size: cover;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 0;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-position: center;
}

.section-hero::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(120, 9%, 9%, 0.6);
  min-height: 400px;
  z-index: -1;
}

.section-info {
  background-color: var(--background-2);
}

.col.contact-page-horaires .row,
.contact-page-coordonnees.reset .row,
.contact-page-infos-pratiques .row {
  flex-wrap: nowrap;
}

.contact-page .contact-page-infos-pratiques {
  margin-bottom: 2rem;
}

.contact-page-infos-pratiques .title-2 {
  margin: 0;
}

.contact-page .map-container iframe {
  max-height: 400px;
}

/* =============================== */
/*          PAGES INTERNE           */
/* =============================== */
.note {
  padding: 10px;
  background-color: var(--accent100);
}

.section-black,
.section-primary {
  color: var(--gray50);
}

.section-primary .note {
  background: hsla(120, 10%, 30%, 0.4);
  color: var(--gray50);
}

.section-primary h2,
.section-black h2 {
  color: var(--gray0);
}

.section-primary .btn-contact a.btn {
  color: var(--accent900);
  background-color: var(--accent50);
}

#bloc-video-interne,
.section-black,
.section-primary {
  position: relative;
}

#bloc-video-interne::before,
.section-black::before,
.section-primary::before {
  position: absolute;
  content: "";
  top: 0;
  left: -5000px;
  right: -5000px;
  bottom: 0;
  background-color: var(--gray900);
  z-index: -1;
}

.section-primary::before {
  background-color: var(--accent500);
}

section.ac-doubleColonne .btn-contact {
  margin-top: 24px;
}

.hero-bg *,
.section-interne *,
.hero-interne * {
  color: var(--gray0);
}

.page-interne div#container {
  padding-top: 0;
}

.ac-doubleColonne.hero-bg p {
  margin: 1rem 0 0;
}

.hero-interne {
  margin-bottom: 60px;
}

.hero-interne .title-1,
.hero-interne h1 {
  max-width: 872px;
  margin: 0;
}

body[class*="listing"] h1 {
  margin-bottom: 20px;
}

body[class*="listing"] .fold {
  margin-top: -2px;
}

body[class*="listing"] main > .section,
.catalogue-detail main > .section,
.actualites-detail main > .section,
.politique-de-confidentialite main > .section,
.plan-site main > .section {
  padding-top: 0;
}

.sc-content .ac-doubleColonne.hero-bg,
.hero-interne {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}

.section-hero {
  position: relative;
}

.hero-bg::before,
.hero-interne::before,
.hero-interne::after,
.hero-bg::after {
  position: absolute;
  content: "";
  background: url(../assets/gifs/slider/slide-01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 150%;
  left: -23%;
  max-width: 1920px;
  top: 0;
  height: 100%;
  z-index: -1;
  background-position: center;
  margin: 0 auto;
  right: -20%;
}

nav#fil_ariane,
#fil_ariane,
.fil-ariane {
  margin: 0 0 3em;
}

.page-interne .hero-bg::after,
.hero-interne::after {
  background: hsla(120, 9%, 9%, 0.6);
}

@media screen and (min-width: 993px) {
  .hero-bg *,
  .section-interne *,
  .hero-interne * {
    max-width: 80%;
  }
  section.ac-doubleColonne {
    position: relative;
  }

  section.ac-colonne.ac-colonne_1.ui-sortable img {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 65%;
    max-width: 900px;
    left: -22%;
    object-position: left;
  }

  section.ac-colonne.ac-colonne_2.ui-sortable img {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 65%;
    max-width: 900px;
    right: -22%;
    object-position: right;
  }

  .section-black section.ac-colonne.ac-colonne_2.ui-sortable img {
    top: 120px;
    bottom: 120px;
    height: calc(100% - 240px) !important;
  }

  .bloc-methodologie-interne p:nth-last-of-type(1) {
    margin-bottom: 0;
  }

  #bloc-video-interne,
  .section-black,
  .section-primary {
    padding: 120px 0;
  }
  .section.section-hero {
    margin-bottom: 48px;
  }

  body[class*="listing"] .hero-interne {
    margin-bottom: 88px;
  }

  .page-interne .sc-content img:not(.page-interne #encart-actualites img) {
    height: 100%;
    object-fit: cover;
  }

  h2.western,
  .sc-content .ac-doubleColonne h2 {
    margin-top: 0;
  }

  div#container:not(.devis div#container) {
    padding-bottom: 0;
  }

  .page-interne
    section:not(
      section.ac-doubleColonne,
      section.ac-doubleColonne section,
      #relance,
      .ac-include
    )
    p,
  section.ac-doubleColonne p:nth-last-of-type(1) {
    margin-bottom: 0;
  }

  .page-interne p.intro {
    margin-bottom: 30px;
  }

  #fil_ariane,
  nav#fil_ariane,
  .fil-ariane {
    font-size: 14px;
  }

  .page-interne .ac-doubleColonne p {
    font-size: 16px;
  }

  .sc-content #relance {
    margin-top: 4rem;
    margin-bottom: 4rem;
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .bg-interne::before,
  .bg-interne::after {
    position: absolute;
    content: "";
    background: url(../assets/gifs/slider/slide-01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 150%;
    left: -23%;
    max-width: 1920px;
    top: 0;
    height: 100%;
    z-index: -1;
    background-position: center;
    margin: 0 auto;
    right: -20%;
  }

  .bg-interne::after {
    background: hsla(120, 9%, 9%, 0.6);
  }
  .bg-interne iframe {
    display: none;
  }
  .bg-interne {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
  }
}

.page-interne #projet-video {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}

a[href="#"] {
  cursor: default;
}

.actualites-listing .bg-interne {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}

.page-interne .title-1 {
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 700px) {
  .contact-page h1 {
    line-height: 1;
  }
}

#changeframe-2,
#changeframe-3 {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 1;
  justify-content: center;
}

#changeframe-2 > span,
#changeframe-3 > span {
  padding: 15px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

#bloc-methodologie .timeline {
  scroll-behavior: smooth;

  scroll-timeline: --page-scroll block;
  scroll-timeline: --page-scroll vertical;
}

#encart-prestations .title-1 {
  color: white;
}

.portfolio-page .catalogue-listing-card-image img {
  height: 225px;
  width: 417px;
  margin: 10px;
}

#bloc-video-3 {
  position: relative;
  /* z-index: 1; */
}

/* AJout  ~~ -------------- */
.pin-spacer .hero-content .btn-contact span {
  letter-spacing: 2px;
}

.video-pub {
  height: auto;
  aspect-ratio: 16 / 9;
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}
.video-pub iframe {
  height: 100% !important;
  width: 100% !important;
}

/* .drone .img-interne-drone {
  object-position: top;
} */

@media screen and (min-width: 993px) {
  #bloc-video-interne .video-container iframe {
    height: 100%;
    width: 100%;
  }
  div#bloc-video-interne .video-container {
    width: auto !important;
  }
}
@media screen and (max-width: 992px) {
  #bloc-video-interne iframe {
    width: 100%;
    height: 100%;
  }
}
/* @media screen and (max-width: 600px) {
  #bloc-video-interne iframe {
    height: 265px;
  }
}
@media screen and (min-width: 601px) and (max-width: 992px) {
  #bloc-video-interne iframe {
    height: 100%;
  }
} */

/* FIN AJout  ~~ -------------- */

.catalogue-card-video a {
  display: block;
  width: 100%;
  height: 100%;
}

.catalogue-card-video img {
  width: 100%;
  height: auto;
  display: block;
}
