#wrap {
  width: calc(70vw - 150px);
  display: flex;
  flex-direction: column;
  padding: calc(120px + 7vh) 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 #content {
  display: flex;
  flex-direction: row;
  gap: 80px;
  position: relative;
}
#wrap #content #middle {
  padding-bottom: 30px;
}
#wrap #content #middle,
#wrap #content #sideright {
  display: flex;
  gap: 40px;
  width: 50%;
  flex-direction: column;
}
#wrap #content #middle img,
#wrap #content #sideright img {
  border-radius: 8px;
  border: 2px solid var(--bar);
  margin-bottom: 50px;
}
#wrap #content #middle p,
#wrap #content #sideright p {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--bar);
  text-align: justify;
  margin: 0;
}
#wrap #content #middle p .span_titre,
#wrap #content #sideright p .span_titre {
  font-weight: 700;
  border-top: 2px solid var(--texte);
  width: 100%;
  display: flex;
  padding-top: 10px;
  margin-bottom: 1em;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  color: var(--texte);
}
#wrap #content #middle p .span_description,
#wrap #content #sideright p .span_description {
  font-weight: 500;
}
#wrap #content #middle p .span_link,
#wrap #content #sideright p .span_link {
  font-style: italic;
  margin-top: 10px;
  display: block;
}
#wrap #content #middle p .span_link a,
#wrap #content #sideright p .span_link a {
  color: var(--texte);
  text-decoration: underline;
}
#wrap #content #middle ul,
#wrap #content #sideright ul {
  padding-left: 0;
  margin-top: 0;
}
#wrap #content #middle li,
#wrap #content #sideright li {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bar);
  text-align: justify;
  margin: 0;
  margin-bottom: 10px;
}
#wrap #content #sideright {
  gap: 25px;
  font-family: 'Playfair Display', serif;
  justify-content: start;
}
#wrap #content #sideright p {
  color: 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;
  }
  #content {
    gap: 60px !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  #middle,
  #sideright {
    width: 100% !important;
    position: relative;
    padding: 0;
  }
  #middle img,
  #sideright img {
    display: block !important;
  }
  #titre {
    font-size: 22px !important;
    padding-top: 30px !important;
    margin-bottom: 14px !important;
    padding-left: 0 !important;
  }
  #img_side_left {
    display: none;
  }
  #img_side_right {
    display: none;
  }
}
@media (max-width: 1815px) and (min-width: 769px) {
  #titre {
    padding-left: 0 !important;
  }
  #content {
    gap: 50px !important;
  }
  #middle {
    width: calc((70vw - 150px) / 2) !important;
  }
}
