@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;
}

.grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.grid [class^=col-] {
  padding: 7.5px;
  align-self: flex-start;
}
.grid .col-1 {
  grid-column-end: span 1;
}
.grid .col-2 {
  grid-column-end: span 2;
}
.grid .col-3 {
  grid-column-end: span 3;
}
.grid .col-4 {
  grid-column-end: span 4;
}
.grid .col-5 {
  grid-column-end: span 5;
}
.grid .col-6 {
  grid-column-end: span 6;
}
.grid .col-7 {
  grid-column-end: span 7;
}
.grid .col-8 {
  grid-column-end: span 8;
}
.grid .col-9 {
  grid-column-end: span 9;
}
.grid .col-10 {
  grid-column-end: span 10;
}
.grid .col-11 {
  grid-column-end: span 11;
}
.grid .col-12 {
  grid-column-end: span 12;
}
.grid .start-1 {
  grid-column-start: 1;
}
.grid .start-2 {
  grid-column-start: 2;
}
.grid .start-3 {
  grid-column-start: 3;
}
.grid .start-4 {
  grid-column-start: 4;
}
.grid .start-5 {
  grid-column-start: 5;
}
.grid .start-6 {
  grid-column-start: 6;
}
.grid .start-7 {
  grid-column-start: 7;
}
.grid .start-8 {
  grid-column-start: 8;
}
.grid .start-9 {
  grid-column-start: 9;
}
.grid .start-10 {
  grid-column-start: 10;
}
.grid .start-11 {
  grid-column-start: 11;
}
.grid .start-12 {
  grid-column-start: 12;
}

*:focus {
  outline: 0;
}

@font-face {
  font-family: "Portrait";
  src: url("../fonts/Portrait-Light-Trial.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
:root {
  --base-font-size: 13px;
  --medium-font-size: 1.9em;
  --big-font-size: 4.5em;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html.open-project .open {
  opacity: 1;
}
html.open-project .stream figure {
  opacity: 0.3;
}
html.transition main img {
  animation: fadeOut 1s forwards;
}

.open {
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 10;
}

body {
  background-color: #FFF;
  color: #000;
  margin: 0;
  font-family: "Helvetiva", sans-serif;
  line-height: 1.15em;
  font-size: var(--base-font-size);
  box-sizing: border-box;
  min-height: 100vh;
  padding: 15px;
  cursor: auto !important;
}

a {
  text-decoration: none;
  color: #000;
}

ul li {
  list-style: none;
}

main {
  box-sizing: border-box;
  transition: opacity 1s;
  animation: fadeIn 1s forwards;
}

em, i {
  font-weight: 300;
}

.site-header {
  animation: fadeOut 1s 1.5s forwards;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 11;
  pointer-events: none;
}
.site-header .logo {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 1;
}
.site-header img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stream article {
  display: flex;
  flex-direction: row;
}
.stream article figure {
  align-self: flex-start;
  transition: opacity 1s;
  position: relative;
}
.stream article figure a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.stream article figure + figure {
  margin-left: 15px;
}
.stream article figure:last-child {
  margin-right: 15px;
}
.stream .spacer {
  flex: 0 0 15px;
}
.stream figure {
  position: relative;
}
.stream figure img {
  width: 100%;
}
.stream figure.col-1 {
  flex: 0 0 10vw;
}
.stream figure.col-2 {
  flex: 0 0 20vw;
}
.stream figure.col-3 {
  flex: 0 0 30vw;
}
.stream figure.col-4 {
  flex: 0 0 40vw;
}
.stream figure.col-5 {
  flex: 0 0 50vw;
}
.stream figure.col-6 {
  flex: 0 0 60vw;
}
.stream figure.selected {
  opacity: 1 !important;
}
.stream figure figcaption {
  margin-top: 0.3em;
  opacity: 0;
  transition: opacity 0.5s;
  white-space: nowrap;
}
.stream figure:hover figcaption {
  opacity: 1;
}

figure[data-image]::after {
  right: -7px;
} /* rechter Griff */
figure[data-image]::after {
  content: "";
  position: absolute;
  top: 0;
  width: 14px;
  height: 100%;
  cursor: ew-resize;
  z-index: 10;
}

nav {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-flow: row wrap;
  border-radius: 50px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.92);
  width: 38.95px;
  height: 38.95px;
  overflow: hidden;
}
nav .menu-btn {
  flex: 0 0 15px;
  color: #000;
  padding: 12px;
  cursor: pointer;
  text-align: center;
}
nav .menu-btn:after {
  content: "✕";
  transform: rotate(-45deg);
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -7.5px;
  margin-left: -4px;
}
nav ul {
  display: none;
  flex-flow: row wrap;
  pointer-events: none;
  padding-right: 12px;
}
nav ul li a {
  padding: 12px 0;
  display: inline-block;
}
nav ul li + li {
  margin-left: 15px;
}
nav.active {
  width: auto;
  min-width: 366px;
}
nav.active .menu-btn:after {
  content: normal;
}
nav.active .menu-btn:before {
  content: "—";
}
nav.active ul {
  display: flex;
  pointer-events: all;
}
.close {
  position: absolute;
  top: 12px;
  cursor: pointer;
  right: 12px;
  border-radius: 50px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  width: 38.95px;
  height: 38.95px;
}
.close span {
  color: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  nav {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.1);
  }
}
[class*=block-] {
  padding: 12px 0;
}

@media all and (max-width: 1025px) {
  :root {
    --base-font-size: 12px;
  }
  nav {
    left: 15px;
    bottom: 15px;
    width: 48.95px;
    height: 48.95px;
  }
  nav .menu-btn {
    padding: 17px;
  }
  nav .menu-btn:after {
    margin-left: -4.5px;
    margin-top: -6.5px;
  }
  nav.active {
    min-width: 342px;
  }
  nav.active .menu-btn {
    padding: 17px 8px 17px 17px;
  }
  nav.active ul {
    flex: 0 0 calc(100% - 52px);
  }
  nav.active .menu-btn:after {
    content: normal;
  }
  nav ul li + li {
    margin-left: 10px;
  }
  nav ul li a {
    padding: 18px 0;
  }
  .stream {
    margin-right: -15px;
  }
  .stream figure.col-1 {
    flex: 0 0 20vw;
  }
  .stream figure.col-2 {
    flex: 0 0 40vw;
  }
  .stream figure.col-3 {
    flex: 0 0 60vw;
  }
  .stream figure.col-4 {
    flex: 0 0 80vw;
  }
  .stream figure.col-5 {
    flex: 0 0 100vw;
  }
  .stream figure.col-6 {
    flex: 0 0 120vw;
  }
  .stream figure figcaption {
    opacity: 1;
    line-height: 1.25em;
  }
  .stream article figure + figure {
    margin-left: 8px;
  }
  .close {
    width: 48.95px;
    height: 48.95px;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.responsive {
  display: none;
}

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