@charset "UTF-8";

@font-face{
    font-family:"HKGrotesk-Medium";
    src: url('../fonts/HKGrotesk-Medium.eot');
    src:url("../fonts/HKGrotesk-Medium.woff") format("woff"),
        url("../fonts/HKGrotesk-Medium.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

/*
This CSS resource incorporates links to font software which is the valuable copyrighted property of Monotype and/or its suppliers. You may not attempt to copy, install, redistribute, convert, modify or reverse engineer this font software. Please contact Monotype with any questions regarding Web Fonts: https://www.linotype.com
*/


/*   VARIABLES   */

:root {
  font-size: 16px;
  --black: rgb(29, 29, 29);
  --white: rgb(255, 255, 255);
  --red: rgb(181, 0, 32);
  --mainEdge: 1.5rem;
  --bigEdge: 2.5rem;
  --yearWidth: 120px;
  --plusWidth: 35px;
  --maxWidth: 1000px;
}


/*   SITE   */

* {
	margin:0;
	padding:0;
	list-style:none;
  box-sizing: border-box;
  /* scroll-behavior: smooth; */
}

body {
	font-family: "HKGrotesk-Medium", "Arial-BoldMT", Arial, sans-serif;
	font-size: 16px;
  line-height: 1.2;
	font-weight: 400;
	margin: 0;
	color: var(--white);
  -webkit-font-smoothing: antialiased;
  background-color: var(--black);
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; */
}
body::-webkit-scrollbar {
  display: none;
}

main{
}

.content{
  padding: var(--mainEdge);
  width: 100%;
  max-width: var(--maxWidth);
  position: relative;
}

.big-type{
  position: absolute;
  padding: var(--mainEdge);
  width: 100%;
  max-width: var(--maxWidth);
  bottom: 0;
  pointer-events: none;
}

header, footer, section{
  /* border: 1px solid white; */
  display: flex;
  justify-content: center;
}
.reveal{
  position: relative;
  opacity: 0;
  transition: all 3s ease;
}

header {
  height: 100vh;
  background-color: var(--red);
}


nav {
  display: flex;
  justify-content: space-between;
}
.show{
  opacity: 1;
}
.right-nav{
  text-align: right;
}
.right-nav > * {
  display: inline-block;
}
.right-nav > *:not(*:last-of-type) {
  margin-right: var(--mainEdge);
}
.nav-link a, .nav-link a:hover, .nav-link a:visited{
  color: var(--white);
  text-decoration: none;
}
.nav-link a{
  display: inline-block;
  position: relative;
  color: var(--white);
}
.nav-link a:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -0.2em;
  left: 0;
  background-color: var(--white);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.nav-link a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.current-link{
  position: relative;
}
.current-link:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -0.2em;
  left: 0;
  background-color: var(--white);
  transform: scaleX(1);
  transform-origin: bottom left;
}
a, a:hover, a:visited {
  color: var(--black);
  text-decoration: none;
}

.footer-box a, .footer-box a:hover, .footer-box a:visited {
  color: var(--white);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-weight: 400 !important;
}
.size6{font-size: 130px}
.size5{font-size: 60px}
.size4{font-size: 48px}
.size3{font-size: 36px}
.size2{font-size: 25px}
.size1{font-size: 1rem}

.menu{font-size: 80px};

aside{
}

address{
}

.button1{
  background-color: var(--white);
  display: inline-block;
  cursor: pointer;
}

.button1.white{
  background-color: var(--white);
  border: 1px solid var(--white);
}
.button1:hover{
  transition: all 0.4s;
  background-color: var(--red);
  color: var(--white);
}

#overview {
  min-height: 100vh;
}
.header-text{
  width: 50%;
}
.svg-container{
  position: absolute;
  left:0;
  bottom: 20vh;
  width: 100%;
  pointer-events: none;
}
path{
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  fill: none;
  stroke: var(--white);
  stroke-miterlimit: 10;
  stroke-width: 4px;
}
.cls-3, .cls-4{
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  fill: none;
  stroke: var(--red);
  stroke-miterlimit: 10;
  stroke-width: 8px;
}

@keyframes draw {
  from{
    stroke-dashoffset: 1;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes remove {
  to {
    stroke-dashoffset: 1;
  }
}
.overview-box-container{
  width: 100%;
  height: 100vh;
  top:0;
  position: sticky;
}
.overview-box{
  width: 33%;
  padding-top: 20vh;
}
.overview-box-container:nth-child(2) .overview-box{
  margin-left: 33.3%;
}
.overview-box-container:nth-child(3) .overview-box{
  margin-left: 66.6%;
}
.overview-box-textpart{
  width: 100%;
  height: 30vh;
  padding: 0 var(--mainEdge);
  border-left: 1px solid --red;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
.overview-box-textpart ul li:before{
  content: "• ";
  color: var(--red);
}
.overview-box-textpart ul li{
  text-align: center;
}
lottie-player{
  margin-top: var(--mainEdge);
  width: 50%;
  text-align: center;
  margin: 0 auto;
}
.project-tagcloud{
  display: flex;
  flex-wrap: wrap;
  grid-gap: var(--mainEdge);
}
.project-tag, .button1{
  padding: calc(var(--mainEdge)*0.5) var(--mainEdge);
  border-radius: 2rem;
  border: 1px solid var(--black);
}
.section-copy{
  padding-left: 10%;
  padding-right: 10%;
}

@media (hover: hover) {
  .project-tag:hover{
    transition: all 0.4s;
    background-color: var(--red);
    color: var(--white);
    border-color: var(--white);
    cursor: pointer;
  }
}

.all-tag{
  padding: calc(var(--mainEdge)*0.5) var(--mainEdge);
  border-radius: 2rem;
  border: 1px solid var(--black);
}
.all-tag:hover{
  transition: all 0.4s;
  background-color: var(--red);
  color: var(--white);
  border-color: var(--white);
  cursor: pointer;
}
.project-header-row{
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.project-header-row-item{
  padding: calc(var(--mainEdge)*1) 0;
  border-top: 1px solid var(--black);
  overflow: hidden;
}
.project-header-row-item:empty{
  /* border-top: none; */
}
.project-header-row-item.small{
  flex-grow: 1;
}
.project-header-row-item.mid{
  flex-grow: 3;
}
.project-header-row-item.year{
  flex-basis: var(--yearWidth);
}
.project-header-row-item.plus{
  flex-basis: var(--plusWidth);
  position: relative;
}
.project-header-row-item.plus span{
  position: absolute;
  transform: rotateZ(0);
  transition: all 0.8s;
}
.project-content-row{
  height: auto;
  max-height: 0;
  transition: all 0.7s;
  overflow: hidden;
}
.project-content-row-container{
  padding: calc(var(--mainEdge)*0.5) 0;
  padding-left: var(--yearWidth);
}
input.project-checkbox{
  display: none;
}
input.project-checkbox:checked ~ .project-content-row{
  max-height: 1500px;
}
input.project-checkbox:checked ~ .project-header-row .plus span{
  transform: rotateZ(225deg);
}

.project-slider-container{
  position: relative;
  width: 100%;
  height: 50vh;
  overflow-x: scroll;
  overflow-y: hidden;
  cursor: pointer;
  -ms-overflow-style: none;
  scrollbar-width: none;

}
.image-counter{
  display: inline-flex;
  position: absolute;
  z-index: 1;
  background: var(--white);
  padding: 0.2rem 0.5rem;
  bottom: 0;
  pointer-events: none;
}
.next-image-arrow{
  width: 15px;
  margin-left: calc(var(--mainEdge)/2);
}
.project-slider{
  position: relative;
}
.project-slider-container::-webkit-scrollbar {
  display: none;
}
.project-slider-drawer{
  position: absolute;
  background-color: purple;
  display: flex;
  height: 100%;
  left: 0;
  top:0;
}
.slider-asset {
  display: inline-block;
  float: left;
  height: 100%;
  border-right: 1px solid white;
}
.slider-asset img, .slider-asset video{
  height: 100%;
}
.project-infotext-container{
  width: 70%;
  float: left;
}
.project-infotext-container a{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.project-credits-container{
  padding-left: 5%;
  /* background-color: grey; */
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.project-credit-box{
  width: 100%;
  line-height: 1.3;
}
.project-credit-box a{
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.site-title{
  text-transform: uppercase;
}

.footer-box{
  float:left;
  width: 33.3%;
  display: inline-block;
}
.about-image{
  max-width: 5rem;
}
.contact-box{
  position:relative;
  float:left;
  width: 33.3%;
  height: 50vh;
  display: inline-block;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  border-left: 1px solid var(--white);
}
.contact-bottom{
  position:absolute;
  bottom: 0px;
}
.contact-box a, .contact-box a:hover, .contact-box a:visited {
  color: var(--white);
  text-decoration: none;
}
.imprint-box{
  float:left;
  column-count: 3;
  column-gap:2em;
  column-width: 33.3%;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  border-left: 1px solid var(--white);
  column-rule: 1px solid var(--white);
}
.imprint-box a, .imprint-box a:hover, .imprint-box a:visited {
  color: var(--white);
  text-decoration: none;
}
.about-image-web{
  display: none;
}
table{
  width: 100%;
}
td{
  vertical-align: top;
  padding-bottom: calc(var(--mainEdge)* 0.5);
}
.table-year{
  width: 40%
}
.table-content{
  width: 60%
}
.line{
  height: 1px;
  width: 100%;
  margin-bottom: calc(var(--mainEdge)*1);
}
.line.white{
  background-color: var(--white);
}
.line.black{
  background-color: var(--black);
}

.inverted{
  background-color: var(--white);
  color: var(--black);
}

.inverted *, .inverted a, .inverted a:hover, .inverted a:visited {
  color: var(--black);
}
.active{
  background-color: var(--red);
  color: var(--white);
  border-color: var(--white);
}
.forDesktop{
  opacity: 1;
}

.forMobile{
  opacity: 0;
}

.caps {
  text-transform: uppercase;
}

.red{
  color: var(--red);
}

.center{
  text-align: center;
  justify-content: center;
}

.right{
  text-align: right;
}

.margin-top{margin-top:var(--mainEdge)}
.margin-bottom{margin-bottom:var(--mainEdge)}
.margin-top-big{margin-top:var(--bigEdge)}
.margin-bottom-big{margin-bottom:var(--bigEdge)}

.right-nav{
  z-index: 10;
}
.burgerBlock{
  width: 10%;
  opacity: 1;
  transition: width 1s, opacity 1s;
  transition-timing-function: ease-in-out;
  display: none;
}
.icon{
  cursor: pointer;
}
.nav-bar-el {
  pointer-events: auto;
}
.nav-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 0;
  padding: 0;
  overflow: hidden;
  overflow-y: scroll;
  color: var(--white);
  background-color: var(--black);
  z-index: 1;
  transition: height 0.2s;
}
.overlay-content{
  padding: var(--mainEdge);
  width: 100%;
  max-width: var(--maxWidth);
  display: inline-block;
}
.bottom{
  position:absolute;
  bottom: 0;
}
.nav-content{
  display: block;
}
.nav-content a{
  color: var(--white);
  text-decoration: none;
  display: block;
}
.nav-content ul li {
  display: block;
  margin-bottom: calc(var(--mainEdge)*1.5);
}
.nav-content ul li a{
  color: var(--white);
  text-decoration: none;
}

@media only screen and (min-width: 1400px) {
  body {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1000px) {
  .size6{font-size: 120px}
  .size5{font-size: 50px}
  .size2{font-size: 24px}

  .section-copy{
    padding-left: 0;
    padding-right: 0;
  }
  .project-content-row-container{
    padding-left: 0;
  }
  .project-infotext-container{
    width: 70%;
  }
  .project-credit-box{
    width: 100%;
  }
  .about-image{
    max-width: 4rem;
  }
  .contact-box{
    border: none;
    width: 100%;
    height: auto;
  }
  .contact-box:first-of-type{
    margin-top: 0;
  }
  .contact-bottom{
    display:none;
  }
  .imprint-box{
    margin-top: 0;
    column-count: 1;
    column-width: 100%;
    border: none;
    column-rule: none;
  }
  .wrapper{
    border-left: 1px solid var(--white);
    display:inline-block;

  }
  .footer-box{
    border: none;
    width: 100%;
    height: auto;
  }
  .no-burger{
    display: none;
  }
  .nav-overlay{
    display: inline;
  }
  .burgerBlock{
    display: inline;
  }
  table{
    border-collapse: collapse;
  }
  tr{
    border-bottom: 1px solid;
    border-top: 1px solid;
  }
  td{
    padding-top: calc(var(--mainEdge)* 0.5);
  }
  .web{
    display: none;
  }
}

@media only screen and (max-width: 800px) {
  #overview{
    min-height: 0;
    height: auto;
  }
  .header-text{
    width: 100%;
  }
  .overview-box-container:nth-child(2) .overview-box {
    margin-left: 0;
  }
  .overview-box-container:nth-child(3) .overview-box {
    margin-left: 0;
  }
  .overview-box-container{
    position: static;
    display: inline-block;
    height: auto;
    margin-top: var(--bigEdge);
  }
  .overview-box{
    margin-left: 0;
    padding-top: var(--mainEdge);
    width: 100%;
  }
  .overview-box-textpart{
    text-align: center;
    height: auto;
  }
  .overview-box-textpart ul{
      margin-bottom: var(--mainEdge);
  }
  lottie-player{
    width: 20%;
  }
}

@media only screen and (max-width: 600px) {
  .size6{font-size: 100px}
  .size5{font-size: 40px}

  .overview-box{
    width:100;
    margin-left:0;
  }
  .project-infotext-container{
    width: 100%;
    float: none;
  }
  .project-credits-container{
    padding-left: 0;
  }
  .project-credit-box{
    width: 100%;
  }
  .about-image{
    display: none;
  }
  .about-image-web{
    display: block;
    width: 100%;
    margin-bottom: var(--mainEdge);
  }
}
@media only screen and (max-width: 500px) {
  :root {
    --yearWidth: 0;
  }
  .size6{font-size: 80px}
}

@media only screen and (max-width: 420px) {
  .size6{font-size: 60px}
  .menu{font-size: 60px}
  .size5{font-size: 30px}
  .burgerBlock{
    width: 20px;
  }
}

@media only screen and (max-width: 320px) {
  .size6{font-size:50px}
  .menu{font-size: 50px}
  .size5{font-size: 30px}
  .size2{font-size: 20px}
}
