.wrapper {
  overflow: hidden;
  position: fixed;
  top: 0;
  max-height: 100vh;
}

.left {
  grid-column: 2 / span 3;
  padding-top: 150px;
}

.right {
  width: calc(50vw - 30px);
  right: 20px;
}

.content-scroll-right {
  overflow-y: auto;
  max-height: 100vh;
  width: calc(50vw - 10px);
  padding-top: 150px;
}

.mid {
  width: calc(25vw - 25px);
  left: calc(25vw + 15px);
}

.content-scroll-mid {
  overflow-y: auto;
  max-height: 100vh;
  width: calc(25vw - 5px);
  padding-top: 150px;
}

.content-scroll-mid p {
  padding-right: 20px;
}

.content-scroll-mid .projet a:hover {
  text-decoration: underline;
}

.right .projet a {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1em;
}

.title-projet {
  margin-bottom: 2em;
  margin-top: 0.5em;
  grid-column: span 2;
}

.photo-projet {
  width: 100%;
}

.photo-projet img {
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
}

.content-scroll-right .landscape {
  margin-bottom: 0.25em;
  grid-column: span 2;
}

.content-scroll-right .portrait {
  margin-bottom: 0.25em;
  grid-column: span 1;
}

.desc-mobile {
  display: none;
  margin-bottom: 50px;
}

@media (max-width: 650px) {
  .mid,
  .left {
    display: none;
  }

  .desc-mobile {
    display: block;
  }

  .right {
    width: calc(100% - 20px);
    left: 10px;
  }

  .content-scroll-right {
    width: calc(100% + 20px);
    padding-top: 190px;
  }
}
