#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: 20px;
  font-family: 'Playfair Display', serif;
}
#wrap #titre img {
  height: 29px;
  transform: translateY(3px);
}
#wrap #content {
  display: flex;
}
#wrap #content #sideright {
  display: flex;
  flex-direction: column;
}
#wrap #content #sideright img {
  border-radius: 8px;
  border: 2px solid var(--bar);
  width: 100%;
}
#wrap #content #sideright .titrecontent {
  font-size: 1.2rem;
  color: var(--texte);
  font-weight: 700;
  border-top: 2px solid var(--texte);
  font-family: 'Playfair Display', serif;
  padding-top: 10px;
  text-transform: uppercase;
}
#wrap #content #sideright div {
  margin-top: 10px;
  margin-bottom: 60px;
  display: flex;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--bar);
  flex-direction: column;
}
#wrap #content #sideright div span {
  font-weight: 500;
}
#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 #sideright div {
    grid-template-columns: 1fr !important;
  }
  #titre {
    font-size: 22px !important;
    padding-top: 30px !important;
    margin-bottom: 14px !important;
  }
  #img_side_left {
    display: none;
  }
  #img_side_right {
    display: none;
  }
}
