.flex-column {
  gap: 1em;
}
.flex-row {
  flex-direction: column;
}
.section-machinerie {
  background-color: var(--mauve);
}
.section-machinerie h3 {
  color: var(--blanc);
  margin-top: 2em;
  margin-bottom: 2em;
}
.section-machinerie p {
  color: var(--blanc);
  margin-bottom: 1.5em;
  margin-top: 1em;
}
.grid-container {
  grid-template-columns: 1fr;
}
ul {
  color: var(--blanc);
  list-style: disc;
  margin-left: 1em;
}
.content {
  max-width: 90%;
  margin: 0 auto;
}
.section-soudure {
  position: relative;
  background-color: var(--bleu);
  padding-bottom: 2em;
}
.section-soudure h2,
.section-soudure p,
.section-soudure ul {
  color: var(--blanc);
}
.section-soudure .certification {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
}
.section-soudure .mb-50 {
  margin-bottom: 20px;
}
.section-reparation h2 {
  color: var(--bleu);
}
.section-reparation ul {
  color: var(--noir);
}
.section-maintenance {
  padding-bottom: 2em;
  background-color: var(--gris);
}
.section-maintenance h2 {
  color: var(--bleu);
}
.section-maintenance ul {
  color: var(--noir);
}
@media only screen and (min-width: 768px) {
  .flex-row {
    gap: 2.5em;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
  .grid-container {
    grid-template-columns: 1fr 1fr;
  }
  .pl-30 {
    padding-left: 30px;
  }
  .section-services {
    padding-bottom: 2em;
  }
  .section-soudure .certification {
    top: 50%;
    transform: translate(-80%, -50%);
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .section-services {
    padding-bottom: 0;
  }
  .section-soudure {
    padding-bottom: 0;
  }
  .section-soudure .content {
    max-width: 60%;
  }
  .section-reparation .mb-50 {
    margin-bottom: 10px;
  }
  .section-reparation .mt-30 {
    margin-top: 10px;
  }
  .section-maintenance {
    padding-bottom: 0;
  }
}
.btn--bleu:hover {
  background-color: var(--bleu);
}
@media only screen and (min-width: 1800px) {
  .content {
    max-width: 70%;
  }
  .section-soudure .content {
    max-width: 60%;
  }
  .section-reparation .mb-50 {
    margin-bottom: 50px;
  }
  .section-reparation .mt-30 {
    margin-top: 30px;
  }
}
