@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "GT Alpina";
  src: url("../fonts/gtalpina-regular-webfont.woff2") format("woff2"), url("../fonts/gtalpina-regular-webfont.woff") format("woff");
}
@font-face {
  font-family: "GT Alpina";
  src: url("../fonts/gtalpina-regularitalic-webfont.woff2") format("woff2"), url("../fonts/gtalpina-regularitalic-webfont.woff") format("woff");
  font-style: italic;
}
@font-face {
  font-family: "TeX Gyre Heros";
  src: url("../fonts/texgyreheros-regular.woff") format("woff");
}
::-moz-selection {
  color: white;
  background: var(--primary);
}
::selection {
  color: white;
  background: var(--primary);
}

.wrap {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
}
a.button {
  padding: 0.5rem 1.5rem;
  font-style: italic;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 2rem;
  transition: color 0.3s ease-in-out;
  text-indent: 0;
  z-index: 1;
}
@media (max-width: 1000px) {
  a.button {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
a.button:before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid var(--text);
  box-sizing: border-box;
  border-radius: 2rem;
}
a.button:after {
  content: "";
  display: block;
  background-color: var(--primary);
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: -1;
}
a.button:hover {
  color: white;
  border-color: transparent;
}
a.button:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
a.button:active {
  -webkit-filter: brightness(95%);
          filter: brightness(95%);
}
.project_overlay a.button:after {
  background-color: white;
}
.project_overlay a.button:hover {
  color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "TeX Gyre Heros", sans-serif;
  line-height: 1;
}
h1.primary, h2.primary, h3.primary, h4.primary, h5.primary, h6.primary {
  color: var(--primary);
}

h1 {
  font-size: 1.6rem;
  text-transform: uppercase;
}

h2 {
  font-size: 3rem;
  text-transform: uppercase;
}
@media (max-width: 1000px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.3rem;
}

h4, h5, h6 {
  font-size: 1rem;
}

p {
  margin: 1rem 0;
}

strong {
  font-weight: normal;
  color: white;
}

em {
  font-style: italic;
}

ul, ol {
  margin: 1rem 0;
  padding-left: 1rem;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

hr {
  margin: 2rem 0;
  height: 1px;
  border: none;
  background-color: currentColor;
  opacity: 0.25;
}

figure figcaption {
  font-size: 1rem;
}

.svg_wrap {
  position: relative;
}
.svg_wrap svg {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}

.text_columns {
  display: flex;
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) {
  .text_columns {
    flex-direction: column;
  }
}
.text_columns .text {
  width: 50%;
  box-sizing: border-box;
  text-indent: 3.75rem;
}
@media (max-width: 1000px) {
  .text_columns .text {
    width: 100%;
  }
}
.text_columns .text > *:first-child {
  margin-top: 0;
}
.text_columns .text > *:last-child {
  margin-botom: 0;
}
.text_columns .text.left {
  padding-right: 2rem;
}
@media (max-width: 1000px) {
  .text_columns .text.left {
    padding-right: 0;
  }
}
.text_columns .text.right {
  padding-left: 2rem;
}
@media (max-width: 1000px) {
  .text_columns .text.right {
    padding-left: 0;
  }
}

.sections {
  position: relative;
  width: 100%;
  padding: 0 4rem;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .sections {
    padding: 0 1rem;
  }
}

.section {
  overflow: hidden;
  position: relative;
}
.section h2 {
  max-width: 33ch;
}
.section.section1 {
  min-height: 0;
  height: 100vh;
  margin-bottom: 20rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: visible;
  margin-left: -3rem;
  margin-right: -3rem;
}
@media (max-width: 1000px) {
  .section.section1 {
    height: auto;
    margin-bottom: 3rem;
    margin-left: 0;
    margin-right: 0;
  }
}
.section.section1 .top, .section.section1 .bottom {
  box-sizing: border-box;
  padding: 3rem 0;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (max-width: 1000px) {
  .section.section1 .top, .section.section1 .bottom {
    height: auto;
    padding: 0;
  }
}
.section.section1 h1 {
  font-size: clamp(2rem, 9vmin, 7rem);
  letter-spacing: -0.075em;
  text-align: center;
  line-height: 0.95;
  position: relative;
  z-index: 10;
  margin: 0.5rem 0;
}
.load_animation .section.section1 h1 {
  visibility: hidden;
}
.section.section1 .button {
  font-size: 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
.load_animation .section.section1 .button {
  visibility: hidden;
}
.section.section2 {
  display: flex;
  overflow: visible;
  flex-direction: column;
}
.section.section2 .text, .section.section2 .services, .section.section2 .svg_wrap {
  width: 100%;
  max-width: min(40vw, 700px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 1000px) {
  .section.section2 .text, .section.section2 .services {
    max-width: none;
    background-color: white;
  }
}
.section.section2 .text {
  font-size: 1.5rem;
  text-indent: 3.75rem;
}
.section.section2 .text.smallprint {
  font-size: 1rem;
  font-style: italic;
}
.section.section2 .services {
  text-indent: 3.75rem;
}
.section.section2 .services p {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
.section.section2 .horizontal_line {
  margin: 3rem 0;
  position: relative;
  z-index: 0;
  margin-left: -3rem;
  margin-right: -3rem;
}
@media (max-width: 1000px) {
  .section.section2 .horizontal_line {
    margin-left: 0;
    margin-right: 0;
    order: 1;
  }
  .section.section2 .horizontal_line:before {
    content: "";
    position: absolute;
    height: 5rem;
    width: 100%;
    left: 0;
    bottom: 1px;
    background-color: white;
  }
}
.section.section2 .horizontal_line.slanted {
  margin-top: 2rem;
}
@media (max-width: 1000px) {
  .section.section2 .horizontal_line.slanted {
    order: -1;
  }
  .section.section2 .horizontal_line.slanted:before {
    content: "";
    position: absolute;
    height: 5rem;
    width: 100%;
    left: 0;
    bottom: auto;
    top: 1px;
    background-color: white;
  }
}
.section.section2 .iris {
  height: auto;
  margin-top: 6rem;
  margin-bottom: 12rem;
}
@media (max-width: 1000px) {
  .section.section2 .iris {
    order: 2;
  }
}
.section.section2 .iris svg {
  position: relative;
  -webkit-transform: rotate(-270deg);
          transform: rotate(-270deg);
  overflow: visible;
}
.section.section2 .iris svg circle {
  fill: white;
}
.section.section3 {
  overflow: visible;
  padding-bottom: 40rem;
}
@media (max-width: 1000px) {
  .section.section3 {
    padding-bottom: 30rem;
  }
}
.section.section3 .text {
  font-size: 1.5rem;
}
.section.section3 .quote {
  text-indent: 3.75rem;
  margin: 2rem 0;
}
.section.section3 .pupille {
  max-width: min(20vw, 350px);
  margin: 0 auto;
  height: auto;
  margin-top: -5rem;
  position: relative;
}
@media (max-width: 1000px) {
  .section.section3 .pupille {
    margin-top: 3rem;
  }
}
.section.section3 .pupille svg {
  position: relative;
  z-index: 1;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  overflow: visible;
}
.section.section3 .pupille:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
}
.section.section4 {
  overflow: visible;
  z-index: 6;
}
.section.section4 .auge {
  margin: 0 auto;
  width: 100%;
  height: auto;
  position: absolute;
  top: -31rem;
  z-index: -1;
}
@media (max-width: 1000px) {
  .section.section4 .auge {
    top: -21rem;
    margin-bottom: 5rem;
  }
}
.section.section4 .auge svg {
  position: relative;
  overflow: visible;
  z-index: 1;
}
.section.section4 .auge:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background-color: white;
}
.section.section4 .quote {
  font-size: 1rem;
  margin: 1.2rem 0;
  padding-left: 3.75rem;
  text-indent: 0;
}
.section.section4 .text_columns .text {
  font-size: 1.5rem;
}
.section.section4 .services {
  padding-top: 2.4rem;
}
.section.section4 .services .service {
  margin-bottom: 1rem;
}
.section.section4 .services .service h2 {
  margin-bottom: -0.4rem;
}
.section.section4 .ditto {
  position: absolute;
  top: -10rem;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1000px) {
  .section.section4 .ditto {
    display: none;
  }
}
.section.section4 .ditto svg {
  width: auto;
  height: 100%;
  overflow: visible;
  z-index: 1;
}
.section.section4 .ditto svg path {
  fill: white;
}
.section.section4 .projects {
  padding-top: 20rem;
  padding-bottom: 40rem;
}
@media (max-width: 1000px) {
  .section.section4 .projects {
    padding-top: 5rem;
    padding-bottom: 0;
  }
}
.section.section4 .projects .service p {
  margin-top: 1.5rem;
  font-size: 1rem;
}
.section.section4 .in_progress {
  font-style: italic;
  text-align: right;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10rem;
}
@media (max-width: 1000px) {
  .section.section4 .in_progress {
    margin-top: 2rem;
  }
}
.section.section5 {
  overflow: visible;
  position: relative;
  z-index: 5;
}
.section.section5 .quote {
  font-size: 1rem;
  margin-left: 3.75rem;
  text-indent: 0;
}
.section.section5 .text_columns .text {
  font-size: 1.5rem;
}
.section.section5 .text_columns .text img {
  display: block;
  max-width: 100%;
}
.section.section5 .text_columns .text figcaption {
  width: 100%;
  text-align: right;
  margin-top: 0.5rem;
  font-style: italic;
}
.section.section6 {
  overflow: visible;
  position: relative;
  z-index: 5;
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.section.section6 h2 {
  margin-bottom: 2rem;
}
.section.section6 .text_columns .text {
  font-size: 1.5rem;
  text-indent: 0;
}
.section.section6 .text_columns .text.left {
  padding-left: 3.75rem;
}
@media (max-width: 1000px) {
  .section.section6 .text_columns .text.left {
    padding-left: 0;
  }
}
.section.section6 .text_columns .text a {
  text-decoration: none;
}
.section.section6 .text_columns .text .buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section.section6 .text_columns .text .buttons .button {
  margin-bottom: 0.5rem;
}

.projects_inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  grid-auto-rows: 1fr;
  gap: 0rem 5rem;
  margin: 2rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) {
  .projects_inner {
    grid-template-columns: 1fr;
  }
}

.project {
  position: relative;
  pointer-events: none;
}
.project.placeholder {
  pointer-events: none;
}
@media (max-width: 1000px) {
  .project.placeholder {
    display: none;
  }
}

.project_link {
  height: 0;
  padding-bottom: 100%;
  position: relative;
  display: block;
  pointer-events: all;
  border-radius: 50%;
  will-change: transform;
}
@media (max-width: 1000px) {
  .project_link {
    width: 12rem;
    height: 12rem;
    margin: 0 auto;
    padding-bottom: 0;
  }
}
@media (max-width: 1000px) and (max-width: 1000px) {
  .project_link {
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
  }
}
.project_link:hover .circle {
  color: white;
}
.project_link:hover .circle:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.project_link:active {
  -webkit-filter: brightness(95%);
          filter: brightness(95%);
}
.project_link .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5rem;
  margin-left: -5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 1px solid var(--text);
}
.big_circle .project_link .circle {
  width: 11.5rem;
  height: 11.5rem;
  margin-top: -5.75rem;
  margin-left: -5.75rem;
}
.project_link .circle:after {
  content: "";
  display: block;
  background-color: var(--primary);
  width: calc(100% + 4px);
  padding-bottom: calc(100% + 4px);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 1;
}
.project_link .text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
  z-index: 2;
}
.project_link .text .title {
  font-family: "TeX Gyre Heros", sans-serif;
  white-space: nowrap;
  letter-spacing: 0;
}
.is_in_progress .project_link .text .title:after {
  content: "*";
}
.project_link .text .subtitle {
  font-style: italic;
}

.project_overlays .circle {
  position: fixed;
  top: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  border: 1px solid var(--text);
  position: fixed;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}
@media (max-width: 1000px) {
  .project_overlays .circle {
    width: 40rem;
    height: 40rem;
  }
}
@media (max-width: 400px) {
  .project_overlays .circle {
    width: 32rem;
    height: 32rem;
    top: 4rem;
  }
}

.project_overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: all;
  visibility: hidden;
  background-color: var(--primary);
  z-index: 1000;
}
.project_overlay ::-moz-selection {
  color: var(--primary);
  background: white;
}
.project_overlay ::selection {
  color: var(--primary);
  background: white;
}
.project_overlay .x {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  z-index: 10;
}
.project_overlay .x svg {
  width: 100%;
  height: 100%;
}
.project_overlay .x svg path {
  pointer-events: none;
}
@media (max-width: 1000px) {
  .project_overlay .x {
    width: 2rem;
    height: 2rem;
  }
}
.project_overlay .project_inner {
  width: 100%;
  max-width: 36rem;
  margin: 10rem auto;
  padding: 0 2rem;
  box-sizing: border-box;
  text-indent: 3.75rem;
  font-size: 1.5rem;
  margin-bottom: calc(10rem + 100vh - 50rem);
}
@media (max-width: 1000px) {
  .project_overlay .project_inner {
    margin: 8rem auto;
    margin-bottom: calc(8rem + 100vh - 40rem);
  }
}
@media (max-width: 400px) {
  .project_overlay .project_inner {
    margin-bottom: 8rem;
  }
}
.project_overlay h2 {
  color: white;
  text-transform: none;
}
.project_overlay .subtitle {
  font-size: 1rem;
  font-style: italic;
  margin: 1.5rem 0;
}
.project_overlay .buttons {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 1.5rem;
}
.project_overlay .buttons .button:not(:last-child) {
  margin-bottom: 0.5rem;
}
.project_overlay .images {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}
.project_overlay .images img {
  display: block;
  max-width: 100%;
  margin-top: 1rem;
}
.project_overlay .images .caption {
  width: 100%;
  text-align: right;
  margin-top: 0.5rem;
  font-style: italic;
  font-size: 1rem;
}

.eye {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 20;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .eye {
    position: relative;
    width: 100%;
    padding-bottom: 90%;
    margin-bottom: -15%;
  }
}
.eye .graphic {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.load_animation .eye .graphic {
  visibility: hidden;
}
.eye .graphic1 {
  -webkit-clip-path: polygon(50% 0, 100% 0, 100% 50%, 50% 50%);
          clip-path: polygon(50% 0, 100% 0, 100% 50%, 50% 50%);
}
.eye .graphic2 {
  -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 200%, 50% 200%);
          clip-path: polygon(50% 50%, 100% 50%, 100% 200%, 50% 200%);
}
.eye .graphic3 {
  -webkit-clip-path: polygon(0 50%, 50% 50%, 50% 200%, 0 200%);
          clip-path: polygon(0 50%, 50% 50%, 50% 200%, 0 200%);
}
.eye .graphic4 {
  -webkit-clip-path: polygon(0 0, 50% 0, 50% 50%, 0 50%);
          clip-path: polygon(0 0, 50% 0, 50% 50%, 0 50%);
}
.eye .svg_wrap {
  position: absolute;
  height: 0;
}
.eye .svg_wrap svg {
  overflow: visible;
}
.eye .svg_wrap.iris {
  width: 500px;
  height: 500px;
  width: 45%;
  height: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.eye .svg_wrap.pupille {
  width: 200px;
  height: 200px;
  width: 18%;
  height: 18%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.eye .svg_wrap.auge {
  width: 1120px;
  height: 500px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  will-change: transform;
}
.eye .svg_wrap.lines {
  will-change: transform;
}
.eye .svg_wrap.lines .line {
  width: calc(100vw - 2rem);
  height: 1px;
  margin-top: -1px;
}
.eye .svg_wrap.lines .line1 {
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  margin-top: 0;
}
.eye .svg_wrap.lines .line2 {
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.eye .svg_wrap.lines .line3 {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.eye .svg_wrap.lines .line4 {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}
.eye .svg_wrap.lines .line5 {
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
}
.eye .svg_wrap.lines .line6 {
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}
.eye .svg_wrap.lines .line7 {
  -webkit-transform: rotate(-70deg);
          transform: rotate(-70deg);
}
.eye .svg_wrap.lines .line8 {
  -webkit-transform: rotate(-80deg);
          transform: rotate(-80deg);
}
.eye > .line {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.load_animation .eye > .line {
  visibility: hidden;
}
.eye > .line svg {
  width: 100%;
  height: 100%;
}

footer {
  background-color: white;
  position: relative;
  z-index: 10;
  margin: 0 1rem;
  padding: 0 3rem;
  font-size: 1rem;
}
footer .line {
  border-top: 1px solid black;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
footer .inner {
  padding: 0.5rem 0 1rem 0;
}
@media (max-width: 1000px) {
  footer {
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }
}
footer a {
  font-style: italic;
  text-decoration: none;
}

html {
  font-size: 20px;
  --primary: #FF5500;
  --text: #000000;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}
@media (max-width: 1500px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1000px) {
  html {
    scroll-padding-top: 6rem;
  }
}

body {
  font-family: "GT Alpina";
  letter-spacing: -0.05em;
  margin: 0;
  line-height: 1.2;
}
body.project_open {
  overflow-y: hidden;
}

.vertical_line {
  position: fixed;
  width: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: calc(100vh - 1rem);
  left: 50%;
  background-color: black;
  -webkit-transform-origin: top;
          transform-origin: top;
}
.load_animation .vertical_line {
  visibility: hidden;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.horizontal_line .line {
  width: 100%;
  height: 1px;
  background-color: black;
}
.horizontal_line.slanted {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}

header {
  padding: 1rem 4rem;
  font-size: 1.5rem;
  white-space: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0);
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 1000px) {
  header {
    padding: 1rem;
    position: absolute;
  }
}
header .inner {
  display: flex;
}
@media (max-width: 1000px) {
  header .inner {
    justify-content: center;
  }
}
header .logo {
  text-decoration: none;
  pointer-events: all;
}
.load_animation header .logo .comma {
  visibility: hidden;
}
@media (max-width: 1000px) {
  .load_animation header .logo .comma {
    visibility: visible;
  }
}
header .claim {
  font-style: italic;
  margin-left: 0.25em;
  will-change: transform;
  pointer-events: all;
}
.load_animation header .claim {
  position: absolute;
  right: 0;
}
@media (max-width: 1000px) {
  .load_animation header .claim {
    position: relative;
  }
}
.load_animation header .claim.on_logo {
  position: relative;
}
header.headroom--unpinned nav.scrollmenu {
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
}
header nav.scrollmenu {
  position: absolute;
  right: 0;
  display: flex;
  pointer-events: all;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
@media (max-width: 1000px) {
  header nav.scrollmenu {
    position: fixed;
    top: 1rem;
    right: auto;
    border: 1px solid black;
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: white;
  }
  .t_default header nav.scrollmenu {
    display: none;
  }
}
.load_animation header nav.scrollmenu {
  visibility: hidden;
}
header nav.scrollmenu .section_link:after {
  content: ", ";
}
header nav.scrollmenu .section_link:last-child:after {
  content: "";
}
header nav.scrollmenu .section_link:nth-last-child(2):after {
  content: " und ";
}
header nav.scrollmenu a {
  text-decoration: none;
  position: relative;
}
header nav.scrollmenu a:after {
  position: absolute;
  left: 0;
  font-style: italic;
  content: attr(data-title);
  color: transparent;
  letter-spacing: -0.25px;
  word-spacing: -0.33rem;
  white-space: nowrap;
}
header nav.scrollmenu a:hover, header nav.scrollmenu a.is_open {
  color: transparent;
}
header nav.scrollmenu a:hover:after, header nav.scrollmenu a.is_open:after {
  color: var(--primary);
}

main {
  position: relative;
  width: 100%;
  padding: 4rem;
  box-sizing: border-box;
  max-width: 1000px;
  margin: 2rem auto;
}
@media (max-width: 1000px) {
  main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
main h1, main h2, main h3, main h4, main h5, main h6 {
  all: revert;
  font-size: 1rem;
  font-family: "TeX Gyre Heros", sans-serif;
  letter-spacing: 0px;
  line-height: 1;
  font-weight: normal;
  margin: 1rem 0;
}
main h1 {
  font-size: clamp(2rem, 9vmin, 7rem);
  letter-spacing: -0.075em;
  line-height: 0.95;
  color: var(--primary);
  text-transform: uppercase;
  position: relative;
  left: -0.075em;
}
main h2 {
  margin-top: 2rem;
  text-transform: uppercase;
  color: var(--primary);
}
main h3 {
  margin-top: 2rem;
  text-transform: uppercase;
}
main h2 + h3 {
  margin-top: 0;
}
main a {
  text-decoration: none;
}

/*# sourceMappingURL=style.css.map */