#wrap {
  width: calc(70vw - 200px);
  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 #container {
  display: flex;
  flex-direction: row;
  gap: 50px;
  height: fit-content;
}
#wrap #container .description {
  font-size: 1.2rem;
  text-align: justify;
  margin: 0;
  font-weight: 300;
  color: var(--bar);
}
#wrap #container .description span {
  font-weight: 400;
}
#wrap #container img {
  height: 100%;
}
#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;
  }
}
@media (max-width: 1400px) {
  #wrap {
    height: fit-content !important;
  }
  #wrap #container {
    flex-direction: column-reverse !important;
  }
  #wrap #container img {
    border-radius: 50% !important;
    width: 50vw !important;
    height: 50vw !important;
    object-fit: cover;
    object-position: top;
    margin: 0 auto !important;
    border: 2px solid var(--bar) !important;
  }
}
@media (max-width: 1669px) and (min-width: 1401px) {
  #container img {
    position: fixed;
    height: calc(100vh - 300px) !important;
  }
  #container .description {
    padding-left: calc(((100vh - 300px) * 0.516) + 50px);
    overflow-x: hidden;
    overflow-y: scroll;
    height: calc(100vh - 300px) !important;
  }
  #footer {
    position: absolute;
    bottom: 0;
  }
  #titre {
    padding-left: calc(((100vh - 300px) * 0.516) + 50px);
  }
}
@media (min-width: 1670px) {
  .description {
    column-count: 2;
    column-fill: auto;
    height: calc(100vh - 300px) !important;
  }
  #container img {
    height: calc(100vh - 300px) !important;
  }
  #footer {
    position: absolute;
    bottom: 0;
  }
  #titre {
    padding-left: calc(((100vh - 300px) * 0.516) + 50px);
  }
}
@media (min-width: 1850px) {
  .description {
    column-count: 1 !important;
    column-fill: unset;
  }
}
