@media screen and (max-width: 1380px) {
  .header-video-wrapper .normal_link a,
  .header-video-wrapper .normal_link a:visited {
    color: var(--main-color-green);
  }

  .header-video-wrapper .dropdown_link a,
  .header-video-wrapper .dropdown_link a:visited {
    color: var(--main-color-green);
  }
}

.hero-home-title {
  max-width: 60%;
}

@media (max-width: 900px) {
  .hero-home-title {
    max-width: 100%;
  }
}

/** Content **/

.reassurance .flex_column {
  margin: 0 30px;
}

.reassurance img {
  width: 150px;
  height: auto;
}

.reassurance p {
  font-weight: bold;
  color: var(--main-color-green);
}

.realisation_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}

.item1 {
  grid-area: 1 / 1 / 2 / 2;
}
.item2 {
  grid-area: 1 / 2 / 2 / 3;
}
.item3 {
  grid-area: 1 / 3 / 2 / 4;
}
.item4 {
  grid-area: 2 / 1 / 3 / 2;
}
.item5 {
  grid-area: 2 / 2 / 3 / 3;
}
.item6 {
  grid-area: 2 / 3 / 3 / 4;
}

.realisation_grid img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

@media screen and (max-width: 1200px) {
  .realisation_grid {
    display: grid;
    grid-template-columns: 1fr; /* Une seule colonne */
    grid-template-rows: repeat(6, 1fr); /* Six lignes */
    grid-row-gap: 20px;
  }

  .item1 {
    grid-area: 1 / 1 / 2 / 2;
  }
  .item2 {
    grid-area: 2 / 1 / 3 / 2;
  }
  .item3 {
    grid-area: 3 / 1 / 4 / 2;
  }
  .item4 {
    grid-area: 4 / 1 / 5 / 2;
  }
  .item5 {
    grid-area: 5 / 1 / 6 / 2;
  }
  .item6 {
    grid-area: 6 / 1 / 7 / 2;
  }

  .realisation_title {
    font-size: calc(1rem + 1.5vw);
  }
  .img_presentation {
    display: none;
  }
  .presentation .logo {
    display: block;
  }
  .reassurance {
    background-image: none;
  }
}
