#wrap {
  width: calc(70vw - 400px);
  display: flex;
  flex-direction: column;
  padding: 168px 0 0 0;
  margin: 0 auto;
  height: fit-content;
}
#wrap #titre {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--texte);
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}
#wrap #container {
  display: flex;
  flex-direction: column;
  gap: 70px;
  height: fit-content;
}
#wrap #container .description {
  font-size: 1.2rem;
  text-align: justify;
  margin: 0;
  font-weight: 300;
  color: var(--bar);
}
#wrap #container img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid var(--bar);
}
#img_side_left {
  width: 15vw;
  height: 100%;
  position: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  z-index: 100000;
}
#img_side_right {
  width: 15vw;
  height: 100%;
  position: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  right: 0;
  top: 0;
  z-index: 100000;
}
@media (max-width: 768px) {
  #wrap {
    padding: 62px 0;
    width: 80vw;
  }
  #titre {
    font-size: 22px !important;
    padding-top: 30px !important;
    margin-bottom: 14px !important;
  }
  #img_side_left {
    display: none;
  }
  #img_side_right {
    display: none;
  }
}
