#wrap {
  width: calc(70vw - 150px);
  display: flex;
  flex-direction: column;
  padding: calc(120px + 7vh) 0 0 0;
  margin: 0 auto;
  height: fit-content;
  min-height: calc(100vh - 260px);
}
#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 #content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#wrap #content p {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--bar);
  text-align: justify;
  margin: 0;
}
#wrap #content p span {
  font-weight: 500;
  color: var(--texte);
}
#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;
  }
  #wrap #content {
    flex-direction: column !important;
  }
  #wrap #content .textc {
    width: 100% !important;
    height: fit-content !important;
  }
  #titre {
    padding-left: 0 !important;
  }
  #img_side_left {
    display: none;
  }
  #img_side_right {
    display: none;
  }
}
