html, body {
  font-family: "NNNouvelleGrotesk", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.u-font--light {
  font-weight: 300;
}

.u-font--normal {
  font-weight: 400;
}

.u-font--medium {
  font-weight: 500;
}

.u-font--bold, strong, b {
  font-weight: 700;
}

.u-font--italic, em, i {
  font-style: italic;
}

@font-face {
  font-family: "NNNouvelleGrotesk";
  src: url("./font/NNNouvelleGrotesk/NNNouvelleGrotesk-Light.woff2") format("woff2"), url("./font/NNNouvelleGrotesk/NNNouvelleGrotesk-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "NNNouvelleGrotesk";
  src: url("./font/NNNouvelleGrotesk/NNNouvelleGrotesk-Medium.woff2") format("woff2"), url("./font/NNNouvelleGrotesk/NNNouvelleGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

html, body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  letter-spacing: 1px;
  color: black;
  background: white;
}

.o-body--overflow-hidden {
  overflow: hidden;
}
.o-body--preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}
.o-body__header {
  position: fixed;
  width: 100%;
  height: 7.5rem;
  z-index: 1;
}
.o-body__header--1 {
  top: 0;
  color: white;
  background: black;
}
.o-body__header--2 {
  top: 7.5rem;
  color: black;
  background: white;
  border-bottom: 1px solid black;
}
.o-body__figure {
  position: fixed;
  top: calc(2 * 7.5rem);
  bottom: 0;
  width: 100%;
}
.o-body__main {
  position: relative;
  top: calc(2 * 7.5rem);
  min-height: calc(100% - 2 * 7.5rem);
}
.o-body__main--pullable {
  top: 100%;
  background: rgba(255, 255, 255, 0.6);
}
.o-body__aside {
  position: fixed;
  top: 7.5rem;
  bottom: 0;
  width: 100%;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -ms-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.o-body__aside--visible {
  opacity: 1;
  pointer-events: auto;
}
.o-body__outer {
  display: flex;
  justify-content: center;
}
.o-body__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 3.125rem;
}
.o-body__pull {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 3.75rem;
  transform: translate(-50%, -100%);
  border-top-left-radius: 1.5625rem;
  border-top-right-radius: 1.5625rem;
  padding: 0 4rem;
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.o-banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}
.o-banner__button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  cursor: pointer;
}
.o-banner__button--ham div, .o-banner__button--clo div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform-origin: center;
  transform: translateY(-50%);
  opacity: 1;
  background: currentColor;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.o-banner__button--ham div:nth-child(1) {
  top: 25%;
}
.o-banner__button--ham div:nth-child(2) {
  top: 50%;
}
.o-banner__button--ham div:nth-child(3) {
  top: 75%;
}
.o-banner__button--ham-open div:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
.o-banner__button--ham-open div:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.o-banner__button--ham-open div:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}
.o-banner__button--clo div:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
.o-banner__button--clo div:nth-child(2) {
  transform: rotate(-45deg);
  top: 50%;
}

.c-slider {
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #ddd;
}
.c-slider__wrapper {
  width: 100%;
  height: 100%;
}
.c-slider__slide {
  width: 100%;
  height: 100%;
}
.c-slider__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.c-slider__image--loaded {
  opacity: 1;
}
.c-slider__button {
  position: absolute;
  top: 50%;
  width: 14rem;
  height: 14rem;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.c-slider__button--next {
  left: auto;
  right: 0;
}
.c-slider__button--prev {
  left: 0;
  right: auto;
}
.c-slider__button--disabled {
  opacity: 0;
  pointer-events: none;
}
.c-slider__button--hidden {
  opacity: 0;
}
.c-slider__icon {
  font-size: 4.75rem;
  margin: 0;
  -webkit-transition: margin 0.2s;
  -moz-transition: margin 0.2s;
  -ms-transition: margin 0.2s;
  transition: margin 0.2s;
}
.c-slider__button--next:hover .c-slider__icon {
  margin-right: -10%;
}
.c-slider__button--prev:hover .c-slider__icon {
  margin-left: -10%;
}

.c-credits {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 3.75rem;
  height: 3.75rem;
  justify-content: center;
  align-items: center;
  font-size: 1.5625rem;
  z-index: 1;
}
.m-collaborations .c-credits {
  color: white;
}

.c-content {
  padding: 3.75rem 0;
  text-align: center;
}
.c-content img.u-full {
  display: block;
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 3.75rem;
}
.c-content img.u-fill {
  /* changed SC 2022-12, added new manual class for Biography page (variation on u-full) */
  max-width: 100%;
}
.m-collaborations .c-content {
  padding: 5.25rem 0;
  color: white;
}
.m-imprint .c-content h3, .m-credits .c-content h3 {
  font-size: 1.5625rem;
}
.m-imprint .c-content p, .m-credits .c-content p {
  font-size: 1.5625rem;
}

.c-menu {
  position: absolute;
  right: 0;
  width: 50%;
  min-height: 100%;
  transform: translateX(100%);
  padding: 0 3.125rem;
  color: white;
  background: black;
  -webkit-transition: transform 0.4s;
  -moz-transition: transform 0.4s;
  -ms-transition: transform 0.4s;
  transition: transform 0.4s;
}
.c-menu--open {
  transform: translateX(0);
}
.c-menu__sitemap--1 {
  padding-top: 1.8rem;
}
.c-menu__sitemap--2 {
  padding-bottom: 5rem;
}
.c-menu__contact {
  padding-top: 7.5rem;
}

.c-contact__block {
  display: flex;
  margin-bottom: 2rem;
}
.c-contact__block--vertical {
  flex-direction: column;
  gap: 0;
}
.c-contact__block--horizontal {
  flex-direction: row;
  gap: 1.25rem;
}

.c-env {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  opacity: 0.5;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 1rem;
}
.c-env:hover {
  opacity: 1;
}
.c-env__item {
  padding: 0.25rem 0.5rem;
  background: white;
  border-top: 1px solid transparent;
  border-bottom: 1px solid black;
  text-align: center;
}
.c-env__item--dev {
  background: black;
  color: #00ff00;
}
.c-env__item--preview {
  background: yellow;
}

@media (max-width: 768px) {
  html, body {
    font-size: 10px;
    letter-spacing: normal;
  }

  .o-body__inner {
    margin: 0 1.5625rem;
  }

  .c-slider__button {
    display: none;
  }

  .c-menu {
    width: 100%;
    padding: 0 1.5625rem;
    text-align: center;
  }
  .c-menu h4 {
    font-size: 1.5rem;
  }
}
@media (orientation: landscape) {
  .c-slider--portrait {
    display: none;
  }
}
@media (orientation: portrait) {
  .c-slider--landscape {
    display: none;
  }
}
h1 {
  font-family: "NNNouvelleGrotesk", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 2.375rem;
  line-height: 1.6;
  margin-bottom: 0rem;
}

h2 {
  font-family: "NNNouvelleGrotesk", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 3.5625rem;
  line-height: 2;
  margin-bottom: 0rem;
}

h3 {
  font-family: "NNNouvelleGrotesk", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 2.375rem;
  line-height: 1.6;
  margin-bottom: 0rem;
}

h4 {
  font-family: "NNNouvelleGrotesk", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1875rem;
  line-height: 1.6;
  margin-bottom: 0rem;
}

h5 {
  font-family: "NNNouvelleGrotesk", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: normal;
  margin-bottom: 0rem;
}

h6 {
  font-family: "NNNouvelleGrotesk", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: normal;
  margin-bottom: 0rem;
}

p {
  font-family: "NNNouvelleGrotesk", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 2.375rem;
  line-height: 1.6;
  margin-bottom: 3.75rem;
}

h1:empty,
h1:last-child,
h2:empty,
h2:last-child,
h3:empty,
h3:last-child,
h4:empty,
h4:last-child,
h5:empty,
h5:last-child,
h6:empty,
h6:last-child,
p:empty,
p:last-child {
  margin-bottom: 0rem;
}

a {
  color: inherit;
  text-decoration: none;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  position: relative;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  background-image: linear-gradient(transparent, transparent), linear-gradient(currentColor, currentColor);
  background-position: 0 100%, 100% 100%;
  background-size: 100% 2px, 0 2px;
  background-repeat: no-repeat;
  transition: background-size 0.2s;
}
h1 a:hover, h1 a.js-hover, h2 a:hover, h2 a.js-hover, h3 a:hover, h3 a.js-hover, h4 a:hover, h4 a.js-hover, h5 a:hover, h5 a.js-hover, h6 a:hover, h6 a.js-hover {
  background-position: 100% 100%, 0 100%;
  background-size: 0 2px, 100% 2px;
}
p a {
  position: relative;
}
p a {
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(transparent, transparent);
  background-position: 0 100%, 100% 100%;
  background-size: 100% 2px, 0 2px;
  background-repeat: no-repeat;
  transition: background-size 0.2s;
}
p a:hover, p a.js-hover {
  background-position: 100% 100%, 0 100%;
  background-size: 0 2px, 100% 2px;
}

/*# sourceMappingURL=site.bundle.css.map */
