#wrap {
  width: calc(70vw - 150px);
  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;
  padding-left: calc(28vh + 60px);
  font-family: 'Playfair Display', serif;
}
#wrap #titre img {
  height: 29px;
  transform: translateY(3px);
}
#wrap #content {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
#wrap #content #sideleft {
  display: flex;
  flex-direction: column;
  position: fixed;
  justify-content: space-between;
  height: calc(100vh - 300px);
  align-items: center;
  margin: 20px 0 0 0;
}
#wrap #content #sideleft img {
  width: 28vh;
  border-radius: 8px;
  border: 2px solid var(--bar);
}
#wrap #content #sideleft p {
  width: calc(28vh - 20px);
  color: var(--texte);
  font-size: 1.35rem;
  text-align: center;
  line-height: 3.5vh;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  border-radius: 8px;
  border: 2px solid var(--bar);
  padding: 12px;
  background: linear-gradient(-135deg, #ffffff 0%, #00c8ff12 100%);
  margin: 20px 0 0 0;
}
#wrap #content #sideright {
  padding-left: calc(28vh + 60px);
  overflow-x: hidden;
  overflow-y: scroll;
  height: calc(100vh - 310px);
  display: flex;
  flex-direction: column;
}
#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;
  margin-right: 20px;
  text-transform: uppercase;
}
#wrap #content #sideright .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 4vw;
  align-items: stretch;
  margin-top: 10px;
  margin-bottom: 60px;
  padding-right: 20px;
}
#wrap #content #sideright .grid p {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--bar);
  text-align: justify;
  margin: 0;
}
#wrap #content #sideright .grid p span {
  font-weight: 500;
}
#wrap #content #sideright .ligne {
  margin-top: 10px;
  margin-bottom: 60px;
  padding-right: 20px;
  display: flex;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--bar);
  text-align: justify;
  flex-direction: column;
}
#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;
  }
}
@media (max-width: 1650px) {
  #sideleft {
    display: none !important;
  }
  #sideright {
    padding-left: 0 !important;
    overflow: unset !important;
    height: fit-content !important;
  }
  #titre {
    padding-left: 0 !important;
  }
}
