.service-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.service-header figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: -1;
  /* supprime le margin des figure par défaut */
}

.service-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* couvre tout sans se déformer */
  object-position: center;
}

.service-header h1 {
  color: var(--white);
  font-family: 'Futura LT Heavy';
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  text-align: center;
  font-size: clamp(20px, 2.5vw, 50px);
}

.service-header h2 {
  margin: 0px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  bottom: 25px;
  font-family: 'Futura LT light';
  color: var(--white);
  font-size: clamp(12px, 1.3vw, 50px);
  text-align: center;
}

.intro {
  margin: 0px;
  padding: 25px 50px;
  font-size: 2.5rem;
  line-height: 120%;
  background-color: var(--primary);
  display: flex;
  gap: 75px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-family: 'Futura LT';
  color: var(--white);

}

.title_bandeau {
  box-sizing: border-box;
  padding: 50px 25px 0px 50px;
}

.title_bandeau h2 {
  font-size: clamp(2rem, 1.2rem + 1.5vw, 2.75rem);
  font-family: 'Futura LT Heavy';
  color: var(--primary);
  margin: 0px;
}

.intro img {
  box-sizing: border-box;
  flex: 1 1 10%;
  height: auto;
  width: 1.3vw;
  max-width: 150px;
}

.intro p {
  flex: 0 0 calc(90% - 100px);
  font-size: clamp(12px, 3vw, 54px);
}

.subservices-container {
  padding-top: 50px;
  margin-left: 20%;
  margin-bottom: 50px;
  width: 80%;
}

.subservice {
  padding: 25px;
  border-top: 3px solid var(--primary);
  display: flex;
  gap: 25px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.subservice h2 {
  font-family: 'Futura LT Heavy';
  font-size: clamp(18px, 1.7vw, 32px);
  color: var(--primary);
  flex: 1 1 17%;
  display: inline-block;
}

.subservice-details-container {
  flex: 1 1 calc(83% - 25px);
  min-width: 500px;
}

.subservice .subservice-intro {
  margin-bottom: 50px;
  font-family: "Futura LT Oblique";
  line-height: auto;
}

.subservice ul {
  /* display: none; */
  list-style: none;
  padding-left: 0;
}

.subservice ul li {
  margin: 10px 0px 10px 20px;
}

.subservice ul li::before {
  content: "⚡";
  margin-right: 0.5em;
}

.tps-methode {
  padding: 50px;
  border-top: 3px solid var(--primary);
}

.tps-methode h2 {
  font-family: 'Futura LT Heavy';
  margin-top: 0px;
  color: var(--primary);
}

.tps-methode-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tps-methode-container>img {
  box-sizing: border-box;
  height: 350px;
  padding: 0px 50px;
}

.tps-valeurs {
  padding: 50px;
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
}

.tps-valeurs h2 {
  font-family: 'Futura LT Heavy';
  margin-top: 0px;
  color: var(--primary);
}

.tps-valeurs-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tps-valeurs-container>img {
  box-sizing: border-box;
  height: 400px;
  padding: 0px 50px;
  rotate: -10deg;
}

@media (max-width: 800px) {
  .intro {
    flex-direction: column;
    gap: 25px;
  }

  .intro p {
    text-align: center;
    line-height: 150%;
  }

  .tps-methode,
  .tps-valeurs,
  .title_bandeau {
    padding: 25px;
  }

  .subservices-container {
    margin-left: 0px;
    width: 100%;
    padding-top: 0px;
  }

  .subservice {
    flex-direction: column;
    gap: 0px;
  }

  .subservice-details-container {
    min-width: unset;
  }

  .subservice .subservice-intro {
    margin-bottom: 25px;
  }

  .tps-valeurs-container,
  .tps-methode-container {
    display: block;
    position: relative;
  }

  .tps-valeurs-container img,
  .tps-methode-container img {
    position: absolute;
    z-index: -1;
    opacity: 0.2;
    rotate: 0deg;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 100%;
    width: auto;
  }


  .intro img {
    height: auto;
    width: 75px;
    max-width: 75px;
  }

}