.wrapper-left {
  margin: 150px auto;
  margin-bottom: -50px;
  width: 90%;
}

.wrapper-left img {
  max-width: 500px;
  float: left;
  border: 1px solid #9dd6ff;
  border-radius: 10px;
  margin-right: 25px;
  box-shadow: 0 0 20px rgba(157, 214, 255, 0.3);
}

.wrapper-right {
  margin: 150px auto;
  width: 90%;
}

.wrapper-right img {
  max-width: 500px;
  float: right;
  border: 1px solid #9dd6ff;
  border-radius: 10px;
  margin-left: 25px;
  box-shadow: 0 0 20px rgba(157, 214, 255, 0.3);
}

.text-box h1 {
  font-size: 2.5rem;
}

.text-box p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.conclusion {
  background-color: #ffffff10;
  border: 2px solid #9dd6ff;
  box-shadow: 0 0 20px rgba(157, 214, 255, 0.3);
  border-radius: 15px;
  padding: 40px 0px;
  margin: auto;
  width: 80%;
  text-align: center;
  margin-top: -60px;
  margin-bottom: 80px;
}

.conclusion h2 {
  font-size: 2.5rem;
  font-style: italic;
  padding: 30px;
  margin: auto;
  color: #9dd6ff;
}

.conclusion p {
  font-size: 1.3rem;
  padding: 30px;
  line-height: 1.8;
  max-width: 900px;
  margin: auto;
  margin-top: -30px;
}

.page-wrapper {
  min-height: calc(90vh - 106px); /* calc() permet de calculer la hauteur visible qui est de 90vh moins 106px, cela empeche le footer de remonter quand il y a peu de contenu */
}

/* -- RESPONSIVE -- */
@media (max-width: 768px) {
  .global {
    margin-top: 200px;
  }

  .conclusion {
    padding: 20px 0px;
  }

  .conclusion h2 {
    font-size: 2rem;
  }

  .conclusion p {
    font-size: 1.1rem;
  }
}

@media (max-width: 853px) {
  .wrapper-left {
    margin-bottom: -90px;
  }

  .wrapper-left img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .wrapper-right img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .text-box {
    padding: 0 20px;
  }

  .text-box h1 {
    font-size: 2rem;
  }

  .text-box p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}