.content.about {
  --top-spacing: 15rem;
  display: flex;
  min-height: 100vh;
  width: 100%;
  gap: var(--margin-size-small);
}
.content.about > .portrait-wrapper {
  width: 50%;
  order: 1;
  margin-left: auto;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  padding: var(--margin-size-small);
}
.content.about > .portrait-wrapper > .portrait > img {
  width: 100%;
}
.content.about > .description {
  width: 50%;
  order: 0;
  font-size: 1.3em;
  line-height: 1.35em;
  padding-left: calc(var(--margin-size) + 4vw);
}
.content.about > .description h2 {
  font-size: 48px;
  margin-bottom: 2.5rem;
}
.content.about > .description p.big {
  font-size: calc(16px + 1.15vw);
  line-height: 0.9;
  font-weight: 700;
  text-transform: uppercase;
}
.content.about > .description p + p {
  margin-top: 2rem;
}
.content.about > .description p + .about-lists {
  margin-top: 2rem;
}
.content.about > .description p + .about-lists > .item > .header {
  text-decoration: underline;
  margin-bottom: 0.333em;
}
.content.about > .description p + .about-lists > .item > .list {
  font-size: calc(16px + 0.5vw);
  line-height: 1;
}
.content.about > .description p + .about-lists > .item + .item {
  margin-top: 2rem;
}
.content.about > .description {
  padding-top: var(--top-spacing);
}

@media only screen and (max-width: 767px) {
  .content.about {
    flex-direction: column;
  }
  .content.about > .description, .content.about > .portrait-wrapper {
    width: 100%;
    padding: 0 var(--margin-size);
  }
  .content.about > .portrait-wrapper {
    order: 0;
  }
  .content.about > .portrait-wrapper > .portrait {
    max-height: 75vh;
    overflow: hidden;
  }
  .content.about > .description {
    padding-top: unset;
  }
}/*# sourceMappingURL=about.css.map */