@import url("https://fonts.googleapis.com/css2?family=Livvic:wght@400;500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
:root {
  --light-blue-color: #54ace9;
  --middle-blue-color: hsl(198, 100%, 44%);
  --dark-blue-color: #009ee2;
  --dark-green-color: #8aad05;
  --light-green-color: #eef7ff;
  --dark-blue-color-transparent: rgba(26, 105, 155, 0.73);
  --middle-blue-color-transparent: rgba(40, 129, 190, 0.73);
  --logo-width: 156px;
  --caption-height: 70px;
  --wrapper-width: 1300px;
  --wrapper-about-width: 1000px;
  --quote-box-top-position: 60px;
  --button-shadow: 0px 8px 9px -2px rgba(0, 0, 0, 0.3);
  --button-shadow-hover: 0px 5px 3px -2px rgba(0, 0, 0, 0.4);
  --img-quotebox-width: 467px;
  --transition-anim: all 0.3s ease-in-out;
  --h3-expertise-font-size: 29px;
  --font-family-livvic: "Livvic", sans-serif;
}
html {
  min-height: 1vh;
}
div,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
li,
p,
section,
span,
ul {
  font-family: var(--font-family-livvic);
  font-style: normal;
  font-weight: 400;
}
body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
}
#cookie-banner {
  background: var(--light-blue-color);
  border-bottom: 1px dashed #fff;
  border-top: 1px dashed #fff;
  bottom: 0;
  box-shadow: 0 -2px 5px 3px rgba(0, 0, 0, 0.2);
  color: #fff;
  left: 0;
  margin: 0;
  padding: 10px;
  position: fixed;
  width: 100%;
  z-index: 3000;
}
#cookie-banner a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
#policy-container {
  height: 100%;
  margin-right: 40px;
  position: relative;
  width: 100%;
}
#policy-action-container {
  position: absolute;
  right: 0;
  top: -4px;
}
#policy-action-container #refuse {
  margin-right: 5px;
}
#policy-action-container #accept,
#policy-action-container #refuse {
  border: 2px solid #fff;
  display: inline-block;
  padding: 3px 8px;
  transition: var(--transition-anim);
}
#policy-action-container #accept {
  background: #fff;
  color: var(--middle-blue-color);
  text-transform: uppercase;
}
#policy-container p {
  margin: 0 140px 0 0;
}
#policy-action-container #refuse:hover {
  background: #ffffff73;
  border-color: var(--dark-blue-color);
  color: var(--dark-blue-color);
  transition: var(--transition-anim);
}
#policy-action-container #accept:hover {
  background: var(--dark-blue-color);
  color: #fff;
  transition: var(--transition-anim);
}
section#important-message {
  margin-top: 1px;
  position: relative;
  width: 100%;
}
#important-message.very-important {
  background: #ec3f3f;
  border-bottom: 1px dashed #fff;
  border-top: 1px dashed #fff;
  color: #fff;
  font-size: larger;
  outline: 1px solid #ec3f3f;
}
#important-message.very-important a {
  color: #fff;
}
#important-message.medium-important {
  background: #ffba009e;
  border-bottom: 1px dashed #000;
  border-top: 1px dashed #000;
  color: #000;
  font-size: larger;
  outline: 1px solid #ffba009e;
}
#important-message.medium-important a {
  color: #000;
}
#important-message.low-important {
  background: #3896d1;
  border-bottom: 1px dashed #fff;
  border-top: 1px dashed #fff;
  color: #fff;
  font-size: larger;
  outline: 1px solid #3896d1;
}
#important-message.low-important a {
  color: #fff;
}
#important-message.notice {
  background: hsla(0, 0%, 83%, 0.906);
  border-bottom: 1px dashed #000;
  border-top: 1px dashed #000;
  color: #000;
  font-size: larger;
  outline: 1px solid hsla(0, 0%, 83%, 0.906);
}
#important-message-container {
  margin: 0 auto;
  padding: 10px;
  width: var(--wrapper-width);
}
#important-message-container p {
  margin: 0;
}
button:focus {
  outline: 1px solid var(--dark-blue-color);
}
.mob-display {
  display: none;
}
#home-services {
  margin-top: 0px;
}
div#info-bar {
  align-content: center;
  align-items: stretch;
  display: grid;
  grid-template-areas: "logo sentences contact";
  grid-template-columns: 140px 1fr 150px;
  height: 100px;
  justify-content: space-around;
  justify-items: stretch;
}
#info-bar h1 {
  color: var(--middle-blue-color);
  font-family: brother-1816, sans-serif;
  font-weight: 100;
  grid-area: sentences;
  line-height: 1.7;
  margin-left: 10px;
}
#main-logo a {
  display: block;
  height: 100;
  text-decoration: none;
  width: 250px;
}
#mobile-burger-menu {
  display: none;
}
#contact-button-container {
  display: flex;
  margin: 10px;
  padding-top: 10px;
  justify-content: space-evenly;
}
#main-logo {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  grid-area: logo;
  margin: 0 5px;
}
#main-logo.fixed {
  left: 0;
  position: fixed;
  top: 0;
  z-index: 10001;
}
.wrapper {
  margin: 0 auto;
  max-width: var(--wrapper-width);
  padding: 15px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.wrapper-about {
  margin: 0 auto;
  max-width: var(--wrapper-about-width);
  padding: 15px;
}
.header-home {
  background-attachment: fixed;
  /* background-image: url(239e321616f212b38317.jpg); */
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 1px solid transparent;
  height: 465px;
  position: relative;
  width: 100%;
}
/* @keyframes backgroundSlide {
  0% {
    background-image: url(9ba1bbe5697a3684a50f.jpg);
  }
  33% {
    background-image: url(image2.jpg);
  }
  66% {
    background-image: url(image3.jpg);
  }
  100% {
    background-image: url(9ba1bbe5697a3684a50f.jpg);
  }
} */
header .header-home {
  align-content: center;
  align-items: center;
  /* background-image: url(9ba1bbe5697a3684a50f.jpg); */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}
.header-home h3.declaimer {
  /* background: hsla(0, 0%, 100%, 0.6); */
  color: #fff;
  display: block;
  font-size: 40px;
  /* font-size: 24px; */
  font-weight: 600;
  margin: 50px auto;
  max-width: 888px;
  padding: 2px;
  text-align: center;
  text-transform: uppercase;
}
.breadcrumb {
  font-size: 25px;
  color: #555;
  margin: 20px;
  font-weight: 500;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #555;
}
section.standard-page {
  margin-bottom: 20px;
  /* margin-top: 0px; */
}
.standard-page li,
.standard-page p,
.standard-page ul {
  color: #353535;
  font-size: 19px;
  font-weight: 100;
}
.our-solution h3,
section.standard-page .explanations h2,
section.standard-page .explanations h3 {
  color: var(--middle-blue-color);
  font-size: var(--h3-expertise-font-size);
  font-weight: 100;
  line-height: var(--h3-expertise-font-size);
}
section.standard-page .explanations > h2:first-of-type,
section.standard-page .explanations > h3:first-of-type {
  margin-top: 0;
}
section.standard-page .explanations > h2,
section.standard-page .explanations > h3 {
  margin-top: 20px;
}
.our-solution.grid {
  display: grid;
  grid-template-columns: [start-col] 40% [mid-col] 60% [end-col];
  grid-template-rows: [top-row] calc(var(--h3-expertise-font-size) * 3) [mid-row] 90% [bottom-row];
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.our-solution.grids {
  display: grid;
  grid-template-columns: [start-col] 30% [mid-col] 70% [end-col];
  grid-template-rows: [top-row] calc(var(--h3-expertise-font-size) * 1.5) [mid-row] 90% [bottom-row];
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.our-solution.griid {
  display: flex;
  grid-template-columns: [start-col] 40% [mid-col] 60% [end-col];
  grid-template-rows: [top-row] calc(var(--h3-expertise-font-size) * 2) [mid-row] 100% [bottom-row];
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
}
.generic-oursolution-img {
  grid-column-end: mid-col;
  grid-column-start: start-col;
  grid-row-end: bottom-row;
  grid-row-start: top-row;
  padding: 15px;
}
.generic-oursolution-imgs {
  grid-column-end: mid-col;
  grid-column-start: start-col;
  grid-row-end: bottom-row;
  grid-row-start: top-row;
  padding: 5px;
  flex: 1;
  height: auto;
}
.generic-oursolution-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* L’image remplira tout en conservant un bon cadrage */
  display: block;
}
.what-we-do-header {
  grid-row-end: mid-row;
  grid-row-start: top-row;
  display: flex;
  align-items: center; /* verticalement centré */
  justify-content: center; /* horizontalement centré */
  flex-direction: column; /* pour empiler le texte + trait */
  text-align: center;
  position: relative;
  text-transform: uppercase;
  text-align: justify;
  color: var(--dark-blue-color);
}

.what-we-do-headers {
  grid-row-end: mid-row;
  grid-row-start: top-row;
  display: flex;
  align-items: center; /* verticalement centré */
  justify-content: center; /* horizontalement centré */
  flex-direction: column; /* pour empiler le texte + trait */
  text-align: center;
  position: relative;
  text-align: justify;
  color: var(--dark-green-color);
}

.category {
    margin-bottom: 25px;
  }

  .category h3 {
    font-size: 22px;
    /* color: #005a87; */
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }

  .category h3::before {
    content: "✔️";
    margin-right: 10px;
    font-size: 20px;
  }

  .category ul {
    list-style-type: disc;
    margin-left: 25px;
    font-size: 16px;
    line-height: 1.6;
  }
/* .what-we-do-headers h3 {
  color: var(--dark-green-color);
}
.what-wi-do-headers h4 {
  color: var(--dark-green-color);
} */
.what-we-do-header::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: var(--middle-blue-color); /* ou ta couleur */
  margin-top: 10px;
  border-radius: 2px;
}
.what-we-do-content,
.what-wi-do-content,
.what-wie-do-content,
.what-we-do-header {
  grid-column-end: end-col;
  grid-column-start: mid-col;
  padding: 15px;
}
.what-wi-do-content {
  grid-row-end: mid-row;
  grid-row-start: top-row;
}
.what-we-do-content {
  grid-row-end: bottom-row;
  grid-row-start: mid-row;
}
.what-wie-do-content {
  grid-row-end: bottom-row;
  grid-row-start: top-row;
}
.column {
  display: flex;
  flex-direction: column;
  text-align: justify;
  gap: 1.5rem; /* espace entre texte et bouton */
  align-items: flex-end; /* pour garder le bouton à gauche (ou flex-end si tu veux à droite) */
}
.style-button {
  padding: 0.8rem 1.5rem;
  background-color: var(--light-blue-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.style-button:hover {
  background-color: #003366;
}
@media (max-width: 768px) {
  .our-solution.grid {
    display: flex;
    flex-direction: column;
  }

  .generic-oursolution-img,
  .what-we-do-header,
  .what-we-do-content {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    padding: 10px;
  }

  .column {
    gap: 2rem; /* réduit l’espace sur mobile */
    align-items: center; /* centre le texte et le bouton */
    text-align: center;
  }
}
.sub-title {
  font-size: var(--h3-expertise-font-size);
  color: var(--dark-blue-color);
  text-align: center;
  padding: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.sub-title-serv {
  font-size: var(--h3-expertise-font-size);
  color: var(--dark-blue-color);
  text-align: center;
  padding: 20px;
  font-weight: 500;
  align-items: flex-end;
}
.declaimer strong {
  font-weight: 500;
}
a.styled-button {
  color: var(--light-blue-color);
  display: flex;
  /* padding-bottom: 8px; */
  /* padding-right: 10px; */
  padding-top: 8px;
  text-decoration: none;
}

.read-more .styled-buton {
  box-shadow: var(--button-shadow);
  text-align: center;
  transition: var(--transition-anim);
}
a.styled-buton {
  color: #fff;
  display: block;
  padding-bottom: 8px;
  padding-right: 10px;
  padding-top: 8px;
  text-decoration: none;
}
.styled-buton {
  background: var(--light-blue-color);
  color: #fff;
  cursor: pointer;
}

.wrapper-slide {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  /* max-width: 900px; */
  margin: 5px auto;
  padding: 20px;
  /* border: 1px solid #ddd; */
}

.text {
  flex: 1;
  padding: 20px;
  font-size: 20px;
  text-align: justify;
}

.slider {
  flex: 1;
  position: relative;
  height: 700px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  /* width: 100%; */
  height: 100%;
  object-fit: cover;
}
/* Boutons */
.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  /* border-radius: 70%; */
  z-index: 2;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.styled-button {
  /* background: var(--light-blue-color); */
  color: var(--light-blue-color);
  cursor: pointer;
}
.styled-button.tel {
  /* padding-left: 25px; */
  position: relative;
}
.styled-button.mail {
  /* padding-left: 38px; */
  position: relative;
  width: fit-content;
  width: -moz-fit-content;
}
.styled-button.propos {
  /* padding-left: 38px; */
  position: relative;
  width: fit-content;
  width: -moz-fit-content;
}
.styled-button.tel:before {
  font-family: "Font Awesome 6 Free";
  content: "\f095"; /* Code pour l’icône téléphone */
  font-weight: 900; /* Nécessaire pour les icônes solides */
  margin-right: 2px;
}
.styled-button.mail:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0"; /* Code pour l’icône e-mail */
  font-weight: 900;
  margin-right: 2px;
}
.header-home .styled-button.mail {
  box-shadow: var(--button-shadow);
  margin: 6px auto 102px;
  transition: var(--transition-anim);
  width: fit-content;
  width: -moz-fit-content;
}
.header-home .styled-button.mail:hover {
  box-shadow: var(--button-shadow-hover);
  transition: var(--transition-anim);
}
.header-home .styled-button.propos {
  /* box-shadow: var(--button-shadow); */
  margin: 2px auto 102px;
  transition: var(--transition-anim);
  width: fit-content;
  font-size: 20px;
  width: -moz-fit-content;
}
.header-home .styled-button.propos:hover {
  box-shadow: var(--button-shadow-hover);
  transition: var(--transition-anim);
}
#main-nav button.styled-button {
  display: inline-block;
  z-index: 10001;
}
#main-nav {
  align-items: center;
  background: hsla(0, 0%, 100%, 0.6);
  bottom: 0;
  display: flex;
  /* height: 75px; */
  justify-content: center;
  /* position: absolute; */
  width: 100%;
}
#main-nav.fixed {
  background: hsla(0, 0%, 100%, 0.9);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
ul.nav-style {
  color: var(--middle-blue-color);
  font-size: 18px;
  margin-bottom: 0;
  padding: 0;
  text-transform: uppercase;
  justify-items: center;
}
ul.nav-style > li {
  /* border-right: 1px solid var(--middle-blue-color); */
  display: inline;
  display: inline-block;
  height: 42px;
  line-height: 42px;
  padding: 0 15px;
  position: relative;
  text-align: center;
  vertical-align: middle;
}
ul.nav-style > li:last-child {
  border-right: 0;
  padding-right: 0;
}
ul.nav-style > li:first-child {
  border-left: 0;
  padding-left: 0;
}
ul.nav-style li a {
  color: var(--middle-blue-color);
  text-decoration: none;
}
ul.nav-style li a:hover {
  font-weight: bolder;
}
ul.nav-style li > a:before {
  content: attr(title);
  display: block;
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
ul.nav-style > li > ul.sub-menu {
  background: #fff;
  opacity: 0;
  padding-top: 20px;
  pointer-events: none;
  position: absolute;
  transition: var(--transition-anim);
}
ul.nav-style > li > ul.sub-menu {
  background: #fff;
  margin: 0 20px 0 0;
  padding: 10px;
  /* width: 96%; */
  z-index: 1003;
}
ul.nav-style > li:hover > ul.sub-menu {
  display: block;
  opacity: 1;
  pointer-events: all;
  transition: var(--transition-anim);
}
ul.nav-style > li > ul.sub-menu > li {
  font-size: 14px;
  line-height: 16px;
  list-style: none;
  padding-bottom: 20px;
  padding-left: 6px;
  text-align: left;
}
#float-contact-button-container {
  background: var(--light-blue-color);
  border-radius: 50px;
  bottom: 50px;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
  height: 50px;
  margin: -51px 15px 3px auto;
  overflow: hidden;
  padding-top: 9px;
  position: sticky;
  transition: width 0.4s;
  width: 50px;
  z-index: 200;
}
#float-contact-button-container:focus,
#float-contact-button-container:hover {
  transition: width 0.4s;
  width: 210px;
}
a.fixed-button.tel {
  color: #fff;
  font-size: 20px;
  padding-left: 50px;
  text-decoration: none;
}
#tel-button-container {
  height: 100%;
  min-width: 200px;
  position: relative;
  width: 100%;
}
#tel-button-container:before {
  content: url(7bd3030e211e3da4c47d.svg);
  filter: drop-shadow(2px 4px 2px rgba(0, 0, 0, 0.3));
  left: 7px;
  position: absolute;
  top: -2px;
}
.services-box {
  height: 374px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.services-box .caption-image {
  align-items: center;
  background-color: hsla(0, 0%, 100%, 0.7);
  bottom: 0;
  display: flex;
  height: var(--caption-height);
  justify-content: center;
  position: absolute;
  text-align: center;
  width: 100%;
}
.services-box .caption-images {
  align-items: center;
  background-color: #fff;
  bottom: 0;
  font-size: 16px;
  /* display: flex; */
  /* height: var(--caption-height); */
  justify-content: center;
  position: absolute;
  text-align: center;
  width: 100%;
}
.services-box .caption-images .nom {
  font-weight: 600;
  padding-top: 8px;
  text-transform: uppercase;
}
.hidden {
  display: none;
}

.btn-container {
  text-align: center;
  margin-top: 20px;
}

.voir-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.voir-btn:hover {
  background-color: #0056b3;
}
.services-box .caption-image span {
  align-items: center;
  display: inline-block;
  font-size: 21px;
  font-weight: 300;
  justify-content: center;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  width: fit-content;
}
.services-box .background-box {
  background-position: 50%;
  background-size: cover;
  filter: grayscale(20%);
  height: 100%;
  transition: var(--transition-anim);
  width: 100%;
}
.services-box .background-box:hover {
  filter: grayscale(0);
  transform: scale(1.15);
  transition: var(--transition-anim);
}
.services-box .backgrounds-box {
  background-position: 50%;
  background-size: cover;
  filter: grayscale(20%);
  height: 100%;
  transition: var(--transition-anim);
  width: 100%;
}
.services-box .backgrounds-box:hover {
  /* filter: grayscale(0);
  transform: scale(1.15); */
  transition: var(--transition-anim);
}
#quote-container {
  background-attachment: fixed;
  background-color: var(--dark-blue-color);
  background-position: 50%;
  background-size: cover;
  height: 285px;
  margin-top: 50px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centre horizontalement le contenu */
  text-align: center; /* Centre le texte du titre h3 */
}
#quote-container h3 {
  color: #fff;
  text-transform: uppercase;
  padding: 40px 20px;
}

.section-title h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}
#portfolio-flters {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-bottom: 30px;
}
#portfolio-flters li {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 20px;
  background: #eee;
  color: #333;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
#portfolio-flters li.filter-active,
#portfolio-flters li:hover {
  background: #007bff;
  color: #fff;
}
.portfolio-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 5px;
}
.portfolio-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.portfolio-item:hover {
  transform: scale(1.05);
}
.portfolio-wrap img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
.portfolio-wrap {
  position: relative;
  overflow: hidden;
}

.portfolio-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 10px;
}

.portfolio-links {
  margin-top: 10px; /* espace après le texte */
}

.portfolio-wrap:hover .portfolio-info,
.portfolio-wrap:hover .portfolio-links {
  opacity: 1;
}

.portfolio-links a {
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.portfolio-links a i {
  font-size: 16px;
  color: #007bff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.portfolio-links a:hover {
  background: #007bff;
}

.portfolio-links a:hover i {
  color: #fff;
  transform: scale(1.1);
}
.portfolio-info h4 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.portfolio-info p {
  font-size: 14px;
  color: #fff;
}

/* .portfolio-links a {
  text-decoration: none;
  color: #007bff;
  font-size: 24px;
}

.portfolio-links a:hover {
  color: #0056b3;
} */

.references-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  margin-top: 1px;
}

.reference-item {
  background-color: #eaeaea;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer; /* <- curseur pointeur ajouté */
  text-decoration: none;
}

.reference-item:hover {
  background-color: var(--light-green-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* Responsive colonnes multiples si tu veux plus tard */
@media (min-width: 768px) {
  .references-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-items: center; /* Centre chaque bloc dans sa colonne */
  }
}
.caption-container {
  left: 80px;
  max-width: 554px;
  min-height: 272px;
  min-width: 374px;
  position: absolute;
  top: var(--quote-box-top-position);
  width: 33%;
}
.caption {
  background: var(--middle-blue-color-transparent);
  color: #fff;
  font-size: 30px;
  height: 100%;
  padding: 40px;
  position: relative;
  width: 100%;
}
.caption:before {
  content: url(1c46dfb2bc838347736a.svg);
  height: 62px;
  left: -46px;
  position: absolute;
  top: -39px;
  width: 67px;
}
.caption:after {
  bottom: -32px;
  content: url(82efdf864c65838e1471.svg);
  height: 52px;
  position: absolute;
  right: -37px;
  transform: rotate(180deg);
  width: 56px;
}
.caption p {
  font-weight: 200;
}
.quoted-author {
  bottom: 3px;
  font-size: 14px;
  position: absolute;
  right: 36px;
}
.info-caption {
  background: var(--dark-blue-color-transparent);
  color: #fff;
  height: auto;
  padding: 15px;
  position: absolute;
  right: 30px;
  top: var(--quote-box-top-position);
  width: 436px;
}
.info-caption h2 {
  color: #fff;
  font-size: 20px;
}
.info-caption p {
  font-weight: 200;
}
#image-marc-container {
  background-image: url(584dc18c64a1dc069a0b.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  color: #fff;
  height: 574px;
  left: calc(50% - var(--img-quotebox-width) / 2 + 50px);
  position: absolute;
  width: var(--img-quotebox-width);
}
section#marc-speaking {
  overflow: hidden;
}
.grid-desk-3 {
  grid-gap: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.grid-desk-4 {
  grid-gap: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
footer {
  background: var(--dark-green-color);
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  /* min-height: 300px; */
  position: relative;
  width: 100%;
}
#self-information h3 {
  margin: 0;
}
.footer-block {
  padding: 30px 0;
}
.footer-block,
.footer-block a,
.footer-block div,
.footer-block li {
  font-size: 20px;
  font-weight: 100;
}
.footer-block li {
  list-style: none;
}
.footer-block li a {
  color: #fff;
  text-decoration: none;
}
.footer-block li a:after {
  color: transparent;
  content: attr(title);
  display: block;
  font-weight: 700;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}
.footer-block li a:hover {
  font-weight: bolder;
}
.separator-footer {
  border-left: 1px solid #fff;
  margin: 30px 0;
  min-height: 100%;
}
#footer-devis-button {
  position: absolute;
  right: 10px;
  top: 10px;
}
#credit-bar {
  background: var(--dark-green-color);
  color: #fff;
  position: relative;
  box-shadow: 0 5px 22px rgba(1, 0, 0, 0.2);
}
#credit-owner {
  margin: 0;
  padding: 10px;
}
#credit-guyldesign {
  position: absolute;
  right: 10px;
  top: 10px;
}
#credit-guyldesign a {
  color: #fff;
  text-decoration: none;
}
#nos-partenaires {
  background: var(--light-green-color);
  flex: 1 1 100%;
  padding: 0px;
}
#nos-partenaires h4 {
  color: var(--dark-blue-color);
  text-transform: uppercase;
  text-align: center;
}
#nos-partenaires-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
}
#nos-partenaires-container > * {
  background-position: 50%;
  background: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  display: flex;
  width: calc(130px * 9); /* 6 = nb total de logos */
  animation: scroll 20s linear infinite;
  flex-basis: auto;
  flex-shrink: 1;
  height: 130px;
  margin: 10px;
  padding: 20px;
  position: relative;
  width: 130px;
}
.slideir {
  overflow: hidden;
  width: 100%;
  height: 200px;
}

/* Bande qui défile */
.slide-track {
  display: flex;
  width: calc(130px * 18);
  animation: scroll 20s linear infinite;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

/* Logos individuels */
.partner-block {
  background-position: center;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  display: block;
  flex: 0 0 130px;
  height: 130px;
  margin: 10px;
  padding: 20px;
  position: relative;
}

/* Contact */
.contact-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  resize: vertical;
}

.contact-form button {
  padding: 15px;
  font-size: 16px;
  background-color: #2e8b57;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #23734b;
}

.map-container {
  margin: 50px auto;
  max-width: 1000px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
#nos-partenaires-container img {
  height: 100%;
  max-height: 130px;
  width: auto;
}
.partner-block a {
  border-radius: 50%;
  display: block;
  height: 130px;
  left: 0;
  position: absolute;
  top: 0;
  width: 130px;
}
@media (max-width: 1508px) {
  :root {
    --logo-width: 146px;
  }
}
@media (max-width: 1340px) {
  .caption {
    font-size: 27px;
  }
  .info-caption {
    background: var(--dark-blue-color);
    bottom: 0;
    right: 0;
    top: auto;
    width: 100%;
  }
  .caption-container {
    max-width: 644px;
    width: 53%;
  }
  #image-marc-container {
    left: auto;
    right: calc(var(--img-quotebox-width) / 3);
  }
}
@media (max-width: 1200px) {
  ul.nav-style {
    font-size: 20px;
  }
}
@media (max-width: 1020px) {
  :root {
    --width-menu-mobile: 420px;
  }
  #info-bar h1 {
    line-height: 1.82;
  }
  #contact-button-container {
    display: none;
  }
  #mobile-burger-menu {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    grid-area: burger;
    justify-content: center;
    right: 9px;
    top: 5px;
  }
  #mobile-burger-menu img {
    height: 30px;
  }
  #main-nav {
    align-items: flex-start;
    background: #fff;
    height: 100%;
    left: calc(var(--width-menu-mobile) * -1);
    max-width: 100%;
    position: fixed;
    top: 0;
    width: var(--width-menu-mobile);
    z-index: 2000;
  }
  #main-nav ul {
    margin-left: 0;
  }
  ul.nav-style > li > ul.sub-menu {
    opacity: 1;
    pointer-events: auto;
  }
  #main-nav #mobile-close-cross {
    background: url(9f1622aac3ec3892a800.svg);
    background-size: auto;
    background-size: cover;
    cursor: pointer;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
  }
  .header-home .styled-button.mail {
    font-size: 25px;
  }
  .styled-button.mail {
    padding-left: 48px;
  }
  .header-home .styled-button.mail:before {
    height: 28px;
    top: 13px;
    width: 26px;
  }
  html:not(.menu-opened) body {
    left: 0;
    transition: var(--transition-anim);
    width: 100%;
  }
  html.menu-opened body {
    left: var(--width-menu-mobile);
    position: absolute;
    transition: var(--transition-anim);
    width: 100vw;
  }
  html.menu-opened {
    overflow: hidden;
    position: relative;
    width: 100vw;
  }
  html.menu-opened #main-nav {
    box-shadow: 10px 0 10px rgba(0, 0, 0, 0.1);
    left: 0;
    transition: var(--transition-anim);
  }
  #main-nav ul li {
    border: 0;
  }
  .main-nav {
    display: flex;
    justify-items: center;
  }
  ul.nav-style {
    display: flex;
    margin: 0px 0 0;
  }
  ul.nav-style > li {
    display: list-item;
    height: auto;
    list-style: none;
    text-align: left;
  }

  ul.nav-style > li > ul.sub-menu {
    display: block;
    margin: 0;
    padding: 0 0 10px 20px;
    position: relative;
    text-align: left;
  }
  ul.nav-style > li > ul.sub-menu > li {
    display: list-item;
    margin: 0;
    padding: 10px 0;
    width: 100%;
  }
  #menu-header.nav-style li > a:before {
    display: none;
  }
  div#info-bar {
    grid-auto-rows: 60px;
    grid-template-areas: "logo sentences burger";
    grid-template-columns: 100px 1fr 60px;
    height: auto;
  }
  #info-bar h2 {
    line-height: 25px;
    margin-right: 0;
    position: absolute;
    top: 46px;
    z-index: 1001;
  }
  #image-marc-container {
    left: auto;
    right: 0;
  }
  .header-home h3.declaimer {
    width: 80%;
  }
  html {
    min-width: calc (100vw - 30px);
    overflow-x: hidden;
  }
  body {
    font-size: 1.4rem;
    width: 100vw;
  }
}
@media (max-width: 800px) {
  div#info-bar {
    grid-template-columns: 140px 1fr 60px;
  }
  #info-bar h2 {
    font-size: 20px;
  }
  #info-bar h1 {
    align-content: center;
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    line-height: normal;
  }
  .caption-container {
    left: 55px;
    max-width: 385px;
    min-width: 274px;
    top: 50px;
    width: 65%;
  }
  .header-home h3.declaimer {
    font-size: 20px;
    width: 90%;
  }
  .header-home .styled-button.mail {
    margin: initial;
  }
  #navigation-footer,
  #self-information {
    flex: 1 1 100%;
    margin: 200px;
  }
  #navigation-footer ul {
    margin: 0;
    padding: 0;
  }
  .separator-footer {
    display: none;
  }
  header:not(.standard-page) .header-home {
    justify-content: unset;
  }
}
@media (max-width: 700px) {
  :root {
    --logo-width: 120px;
  }
  #info-bar h2 {
    font-size: 15px;
    line-height: 19px;
  }
  .caption {
    font-size: 22px;
    padding: 26px;
  }
  .caption:before {
    left: -30px;
    top: -28px;
    width: 47px;
  }
  .caption:after {
    bottom: -20px;
    height: 52px;
    right: -26px;
    width: 37px;
  }
  .quoted-author {
    font-size: 11px;
  }
  footer > div:first-of-type {
    margin-top: 60px;
  }
  .footer-block {
    padding: 15px;
    width: 100%;
  }
  .footer-block ul {
    margin: 0;
    padding: 0;
  }

  .separator-footer {
    display: none;
  }
}
@media (max-width: 650px) {
  #image-marc-container {
    right: -100px;
  }
}
@media (max-width: 500px) {
  #info-bar h1 {
    align-items: center;
    font-size: 21px;
    line-height: 21px;
  }
  #quote-container {
    background-attachment: local;
  }
  footer {
    padding-top: 30px;
  }
}
@media (max-width: 470px) {
  .styled-button.mail {
    left: 1%;
    margin: 0 auto;
    padding: 10px;
    right: auto;
    text-align: center;
    vertical-align: middle;
    width: 98%;
  }
  .styled-button.mail:before {
    display: none;
  }
  .caption-container {
    max-width: 385px;
    min-width: 224px;
    width: 45%;
  }
  .caption {
    font-size: 18px;
  }
  .mob-display {
    display: initial;
  }
  .mob-undisplay {
    display: none;
  }
  .header-home .styled-button.mail {
    font-size: 27px;
    height: 64px;
    margin: 0 auto 20px;
    width: 90%;
  }
  .styled-button.mail:before {
    content: url(418f39b5630aaa2b4a66.svg);
    height: 28px;
    left: 13px;
    position: absolute;
    top: 13px;
    width: 36px;
  }
  #credit-guyldesign {
    padding: 0 10px 10px;
    position: relative;
    right: auto;
    top: auto;
  }
  #policy-action-container {
    align-content: stretch;
    align-items: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 6px;
  }
  #policy-container p {
    margin: 0 110px 0 0;
  }
  #policy-action-container #refuse {
    margin: 0;
    padding: 3px 8px;
    text-align: center;
  }
}
@media (max-width: 360px) {
  :root {
    --logo-width: 115px;
  }
  div#info-bar {
    grid-template-columns: 115px 1fr 60px;
  }
  #info-bar h1 {
    line-height: normal;
  }
  .header-home h3.declaimer {
    font-size: 18px;
  }
  .grid-desk-3 {
    grid-template-columns: 1fr;
  }
  #image-marc-container {
    right: -106px;
  }
  .caption {
    font-size: 17px;
    padding: 15px 15px 26px;
  }
  .caption:after {
    bottom: -20px;
    right: -24px;
    width: 36px;
  }
  .caption:before {
    left: -29px;
    top: -23px;
    width: 42px;
  }
  .caption-container {
    max-width: 300px;
    min-width: 204px;
    width: 15%;
  }
  footer {
    padding-top: 40px;
  }
  .footer-block a,
  .footer-block div,
  .footer-block li,
  footer-block {
    font-size: 19px;
  }
  footer > div:first-of-type {
    margin-top: 70px;
  }
  #footer-devis-button {
    align-items: center;
    display: flex;
    flex-direction: row;
    font-size: 25px;
    height: 48px;
    justify-content: center;
    margin-right: 5%;
    right: 0;
    top: 18px;
    width: 90%;
  }
  #footer-devis-button:before {
    top: 6px;
  }
  #info-bar h1 {
    align-items: center;
    display: flex;
    font-size: 17px;
    justify-content: flex-start;
    line-height: 20px;
  }
}
@media (max-width: 320px) {
  #image-marc-container {
    right: -125px;
  }
}
