@charset "UTF-8";

:root {
  --black: rgb(0, 0, 0);
  --white: rgb(255, 255, 255);
  --gray: rgb(150, 150, 150);
  --lightgray: rgb(230, 230, 230);
  --blue: rgb(24, 138, 255);

  --smallEdge: 10px;
  --mainEdge: 18px;
  --mainplusEdge: 26px;
  --bigEdge: 36px;
  --betweenEdge: 50px;
  --biggerEdge: 72px;
  --hugeEdge: 100px;
  --enormousEdge: 150px;

  --topEdgeInterview: 94px;
  --leftEdgeInterview: 106px;

  --fontSize1: 11px;
  --fontSize2: 18px;
  --fontSize2times: 19px;
  --fontSize3: 36px;
  --fontSize4: 72px;
  --fontSizeI: 50px;
  --fontSize5: 100px;
  --fontSize6: 108px;

 
  --regular: Helvetica, sans-serif;
  --times: Times, serif;
}
* {
	margin:0;
	padding:0;
	list-style: none;
  box-sizing: border-box;
}
html{
  overflow-x: hidden;
}
body{
font-family: var(--regular);
font-size: var(--fontSize2);
line-height: 1.25;
font-weight: 700;
letter-spacing: -0.04px;
background-color: var(--white);
color: var(--black);
-webkit-font-smoothing: antialiased;
margin: 0;
scrollbar-width: none;
-ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
  display: none;
  width: 0;
  height: 0;
}

h1, h2, h3, h4, h5, h6{
  font-weight: unset;
  font-size: unset;
  text-transform: none;
}
h1{
  line-height: 1;
}
header{
  min-height: 100vh;
  min-height: var(--doc-height);
}
a, a:visited, a:focus{
  text-decoration: none;
  color: var(--black);
}
a:hover{
  color: var(--blue);
}
img{
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;

  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
img::selection{
  background: none;
  background-color:transparent;
}
img::-moz-selection{
  background-color:transparent;
}
.caps{
  text-transform: uppercase;
}
.hidden{
  visibility: hidden;
}
.gray, .gray a{
  color: var(--gray);
}
ul{
  line-height: 1.25;
}

.margin-top{margin-top:var(--mainEdge)}
.margin-bottom{margin-bottom:var(--mainEdge)}
.margin-top-mainplus{margin-top:var(--mainplusEdge)}
.margin-bottom-mainplus{margin-bottom:var(--mainplusEdge)}
.margin-top-mainplus{margin-top:var(--mainplusEdge)}
.margin-top-small{margin-top:var(--smallEdge)}
.margin-bottom-small{margin-bottom:var(--smallEdge)}
.margin-top-big{margin-top:var(--bigEdge)}
.margin-top-bigger{margin-top:var(--biggerEdge)}
.margin-top-huge{margin-top:var(--hugeEdge)}
.margin-top-enormous{margin-top:var(--enormousEdge)}
.margin-bottom-big{margin-bottom:var(--bigEdge)}
.margin-bottom-bigger{margin-bottom:var(--biggerEdge)}
.margin-bottom-huge{margin-bottom:var(--hugeEdge)}
.margin-bottom-enormous{margin-bottom:var(--enormousEdge)}

.home-nav, .back-to-top-nav{
  width: 100%;
  position: fixed;
  top: -50px;
  left: 0;
  background: var(--white);
  padding: 0 var(--hugeEdge);
  transition: all 0.5s ease;
  z-index: 2;
}
.about-nav{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--white);
  padding: 0 var(--hugeEdge);
  opacity: 1;
  transition: all 0.5s ease;
  z-index: 2;
}
.about-nav .line{
  opacity: 0;
  transition: opacity 0.5s ease;
}
.nav{
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: var(--fontSize2);
  margin-top: var(--smallEdge);
}
.nav-element{
  position: relative;
  cursor: pointer;
}
.nav-element:hover{
  color: var(--blue);
}
.center-nav{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}
.nav-arrow{
  display: inline-block;
  margin-left: var(--smallEdge);
  height: 12px;
  width: 12px;
  vertical-align: middle;
}
.nav-minus{
  display: inline-block;
  margin-right: var(--smallEdge);
  height: 12px;
  width: 12px;
  vertical-align: middle;
}
.content{
  position: relative;
  padding: var(--hugeEdge);
  width: 100%;
  height: 100vh;
  height: var(--doc-height);
  overflow: hidden;
  transition: padding 0.5s ease;
}
.hidden-content{
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.line{
  width: 100%;
  height: 1px;
  background: var(--black);
}
#news-text{
  display: inline-block;
  cursor: pointer;
}
#news-text:hover{
  color: var(--blue);
}
#list-line{
  opacity: 0;
  transition: opacity 0.5s ease;
}
.heading{
  position: absolute;
  top: var(--hugeEdge);
  left: var(--hugeEdge);
  right: var(--hugeEdge);
  font-size: var(--fontSize5);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3px;
  margin-left: -3px;
  transition: top 0.5s ease,  transform 0.5s ease;
}
.animate{
  position: absolute;
  top: 50%;
  left: var(--hugeEdge);
  right: var(--hugeEdge);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}
.subheading{
  font-size: var(--fontSize2);
  width: 50%;
}
.content-heading{
  position: relative;
  font-size: var(--fontSize5);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3px;
}
.content-grid, .small-grid{
 display: flex;
}

.content-grid .content-half:first-child{
   margin-right: var(--bigEdge);
}
.small-grid .content-half:first-child{
  margin-right: var(--bigEdge);
}
.content-half{
  width: 50%;
}
.subheading, .description, .interview, .keyword, .horizontal-list-item, .download-container, .nav-element, .project-description{
  letter-spacing: -0.12px;
}
.description{
  font-size: var(--fontSize2);
}
.description p:not(:first-child){
  margin-top: var(--mainEdge);
}
.small-text{
  font-size: var(--fontSize1);
}
.keyword, .interviews{
  font-size: var(--fontSize2);
  cursor: pointer;
}
.keyword-list .keyword:first-child{
  color: var(--blue);
}
.keyword > *:hover, .keyword a:hover{
  color: var(--blue);
  cursor: pointer;
}
.list-container{
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--white);
}
.horizontal-list{
  position: relative;
  display: inline-block;
  padding: var(--smallEdge) 0;
}
.horizontal-list-item{
  display: block;
  color: var(--blue);
  width: 100%;
}
.blur{
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.0) 90%, rgba(255, 255, 255, 1.0) 100%);
  pointer-events: none;
}
.arrow{
  position: absolute;
  right: 0;
  height: 12px;
  width: 12px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.list-arrow{
  height: 32px;
  width: 32px;
  padding: var(--smallEdge);
  z-index: 2;
  cursor: pointer;
}
.keyquote{
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  display: none;
  padding-bottom: var(--bigEdge);
}
.keyquote a:hover{
  color: var(--black);
}
.quote{
  font-family: var(--times);
  font-size: var(--fontSize2times);
  font-weight: 400;
}
.content-column{
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
  column-gap: var(--bigEdge);
}
.job{
  margin-left: var(--smallEdge);
}
.timeline-block .small-text a, .timeline-block a .small-text{
  text-decoration: none;
  color: var(--gray);
}
.archive-block .small-text a, .archive-block a .small-text{
  text-decoration: none;
  color: var(--gray);
}
.timeline-content{
  margin-top: calc(var(--betweenEdge) - var(--mainEdge));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  grid-gap: var(--hugeEdge) var(--bigEdge);
  padding-bottom: var(--hugeEdge);
  line-height: 1.1;
}
.timeline-header{
  position: relative;
  background: var(--white);
  z-index: 1;
  transition: opacity 0.5s ease;
}
@supports(position: sticky){
  .list-container{
    position: sticky;
    top: 0;
  }
  .timeline-header:not(:last-child){
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}
.list-container-position{
  display: flex;
  align-items: center;
  gap: var(--smallEdge);
}
.timeline-heading{
  width: 50%;
}
.timeline-heading a{
  color: var(--gray);
}
.timeline-line{
  width: 100%;
  height: 1px;
  background: var(--black);
  margin-bottom: var(--smallEdge);
}
.timeline-bottom-line{
  width: 100%;
  height: 1px;
  background: var(--black);
  margin-top: var(--smallEdge);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.timeline-block{
  position: relative;
  transition: opacity 0.5s ease;
}
.archive-block{
  position: relative;
  width: 100%;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.file-grid{
  display: grid;
  grid-template-columns: 89px 89px;
  grid-gap: 0 var(--mainEdge);
}
.block-image-1{
  width: 64px;
  height: 96px;
  object-fit: cover;
}
.block-image-2{
  width: 94.5px;
  height: 63px;
  object-fit: cover;
}
.block-file-1{
  width: 67.85px;
  height: 96px;
}
.block-file-2{
  width: 89px;
  height: 63px;
}
.file-container{
  display: block;
}
.block-text{
  font-size: var(--fontSize1);
}
.block-text a{
  color: var(--gray);
}
.block-text p:not(:first-child){
  margin-top: var(--smallEdge);
}
.block-text ul li{
    list-style-type: '\2013';
    list-style-position: inside;
}
.download-container{
  position: relative;
  font-size: var(--fontSize2);
}
.download{
  height: 10px;
  margin-right: var(--smallEdge);
}
.pdf-viewer{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--lightgray);
  z-index: 99;
  overflow: scroll;
}
.image-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: var(--doc-height);
  background: var(--lightgray);
  z-index: 99;
  padding: var(--mainEdge) var(--hugeEdge);
}
#close-overlay{
  cursor: pointer;
}
.overlay-content{
  position: absolute;
  bottom: var(--mainEdge);
  left: var(--hugeEdge);
  right: var(--hugeEdge);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--bigEdge);
  line-height: 1.1;
}
.overlay-text-container{
  opacity: 0;
  transition: opacity 0.5s ease;
}
.overlay-text-container-mobile{
  opacity: 0;
  width: 75%;
  transition: opacity 0.5s ease;
}
.overlay-image-container{
  position: relative;
  width: 100%;
  margin-top: var(--smallEdge);
}
.overlay-image{
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: top left;
  opacity: 0;
  transition: opacity 0.5s ease;
}
canvas{
  display: block;
  margin: auto;
  margin-top: var(--bigEdge);
}
.pdf-nav-container{
  position: fixed;
  width: 100%;
  background: var(--lightgray);
  padding: var(--smallEdge) var(--hugeEdge) 0;
  z-index: 100;
}
.pdf-nav{
  display: flex;
  justify-content: space-between;
  font-size: var(--fontSize2);
  margin-bottom: var(--smallEdge);
}
.viewer-container{
  position: relative;
  margin: 0 var(--hugeEdge);
}
.viewer{
  position: relative;
  width: 100%;
  padding: 0 var(--enormousEdge);
  margin: var(--biggerEdge) auto;
}
.viewer img{
  display: block;
  width: 100%;
  margin-top: var(--mainEdge);
}






.interview-content{
  position: relative;
  padding: var(--hugeEdge) var(--hugeEdge) var(--mainEdge);
  width: 100%;
  min-height: 100vh;
}
.interview-heading{
  font-family: var(--times);
  font-size: var(--fontSizeI);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.5px;
}
.vp-end{
  position: absolute;
  bottom: var(--mainEdge);
  left: var(--hugeEdge);
  right: var(--hugeEdge);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--bigEdge);
  line-height: 1.1;
}
.main-content{
  position: relative;
  width: 100%;
  padding: var(--biggerEdge) var(--hugeEdge) var(--hugeEdge);
}
.interview-grid{
  display: grid;
  position: relative;
  grid-template-columns: 1fr 2fr 1fr;
  grid-gap: var(--bigEdge);
  margin-top: var(--mainplusEdge);
}
.question{
  margin-left: var(--mainEdge);
}
.main-interview p:not(:first-child){
  margin-top: var(--mainplusEdge);
}
.quote-part{
  color: var(--gray);
  cursor: pointer;
  transition: all 0.5s ease;
}
.quote-part .line{
  background: var(--gray);
}
.keyquote-name{
  margin-right: var(--smallEdge);
}
.keyquote-type{
  color: var(--blue);
}
.interview-quote, .further-interview{
  font-family: var(--times);
  font-size: var(--fontSize2times);
  font-weight: 400;
}
.further-interview{
  display: none;
}
.marginal{
  position: relative;
  margin-right: calc(var(--mainEdge)/2);
  height: 0;
  line-height: 1.1;
}
.marginal .archive-block:not(:first-child){
  margin-top: var(--mainEdge);
}
.marginal .interview-file-container:not(:first-child){
  margin-top: var(--smallEdge);
}
.interview-file-container{
  transition: opacity 0.5s ease;
}
.small-arrow-container{
  display: none;
  justify-content: center;
  padding-top: var(--smallEdge);
}
.down-arrow-container{
  display: flex;
  justify-content: center;
}
.down-arrow, .small-down-arrow{
  display: block;
  width: 15px;
  cursor: pointer;
}
.interview-link{
  display: none;
}
.interview-link a:hover{
  color: var(--blue);
  cursor: pointer;
}

.about-content{
  position: relative;
  padding: var(--hugeEdge);
  width: 100%;
}
.word-list .about-entry:not(:first-child){
  margin-top: var(--smallEdge);
}
.project-description{
  font-size: var(--fontSize2);
}
.project-description p:not(:first-child){
  margin-top: var(--mainEdge);
}
.project-description a{
  color: var(--gray);
}
.project-description a:hover{
  color: var(--blue);
}
.sticky{
  transition: opacity 0.5s ease;
}
@supports(position: sticky){
  .sticky{
    position: -webkit-sticky;
    position: sticky;
    top: var(--nav-height);
  }
}






footer{
  display: none;
}
.footer-content{
  position: relative;
  display: grid;
  width: 100%;
  padding: 0 var(--hugeEdge);
  margin-top: var(--hugeEdge);
  margin-bottom: var(--mainEdge);
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  grid-gap: var(--bigEdge);
}
.footer-block{
  position: relative;
}
.logo-container{
  position: relative;
  width: 100%;
}
.logo{
  width: 100%;
  max-width: 180px;
}
.desktop{
  display: block;
}
.mobile{
  display: none;
}

@media only screen and (min-width: 1400px) {
  .block-image-1{
    width: 72px;
    height: 108px;
  }
  .block-image-2{
    width: 106px;
    height: 70px;
  }
  .block-file-1{
    width: 76px;
    height: 108px;
  }
  .block-file-2{
    width: 100px;
    height: 70px;
  }
}

@media only screen and (max-width: 1200px) {
  :root{
    --smallEdge: 10px;
    --mainEdge: 18px;
    --mainplusEdge: 26px;
    --bigEdge: 36px;
    --betweenEdge: 45px;
    --biggerEdge: 65px;
    --hugeEdge: 90px;
    --enormousEdge: 135px;

    --fontSize1: 11px;
    --fontSize2: 18px;
    --fontSize2times: 19px;
    --fontSize3: 32px;
    --fontSize4: 65px;
    --fontSizeI: 45px;
    --fontSize5: 90px;
    --fontSize6: 96px;
  }
  .heading, .content-heading{
    letter-spacing: -2.7px;
  }
  .heading{
    margin-left: -2.7px;
  }
  .interview-heading{
    letter-spacing: -1.35px;
  }
  .timeline-heading{
    width: 100%;
  }
  .timeline-content{
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-block{
    width: 75%;
  }
  .footer-content{
    grid-template-columns: repeat(2, 1fr);
  }
  .vp-end{
    grid-template-columns: repeat(2, 1fr);
  }
  /* .overlay-content{
    grid-template-columns: repeat(2, 1fr);
  } */
  .interview-grid{
    grid-template-columns: 1fr 3fr;
  }
  .right-marginal{
    display: none;
  }
  .content-grid{
    display: block;
  }
  .content-half{
    width: 100%;
  }
  .content-grid .content-half:nth-child(2):not(.small-grid .content-half:nth-child(2)){
    margin-top: var(--betweenEdge);
  }
  .desktop{
    display: none;
  }
  .mobile{
    display: block;
  }
  /* .footer-content{
    padding: var(--betweenEdge);
  } */
}

@media only screen and (max-width: 1000px) {
  :root{
    --fontSizeI: 40px;
    --fontSize5: 80px;
  }
  .heading, .content-heading{
    letter-spacing: -2.4px;
  }
  .heading{
    margin-left: -2.4px;
  }
  .interview-heading{
    letter-spacing: -1.2px;
  }
  .viewer{
    padding: 0;
  }
}

@media only screen and (max-width: 900px) {
  :root{
    --fontSizeI: 35px;
    --fontSize5: 70px;
  }
  .heading, .content-heading{
    letter-spacing: -2.1px;
  }
  .heading{
    margin-left: -2.1px;
  }
  .interview-heading{
    letter-spacing: -1.05px;
  }
}

@media only screen and (max-width: 800px) {
  :root{
    --smallEdge: 10px;
    --mainEdge: 16px;
    --mainplusEdge: 24px;
    --bigEdge: 32px;
    --betweenEdge: 40px;
    --biggerEdge: 56px;
    --hugeEdge: 80px;
    --enormousEdge: 120px;

    --fontSize1: 11px;
    --fontSize2: 16px;
    --fontSize2times: 17px;
    --fontSize3: 28px;
    --fontSize4: 56px;
    --fontSizeI: 35px;
    --fontSize5: 65px;
    --fontSize6: 85px;
  }
  .subheading, .description, .interview, .keyword, .horizontal-list-item, .download-container, .nav-element, .project-description{
    letter-spacing: -0.11px;
  }
  .heading, .content-heading{
    letter-spacing: -1.95px;
  }
  .heading{
    margin-left: -1.95px;
  }
  .interview-heading{
    letter-spacing: -1.05px;
  }
  .about-nav, .home-nav, .back-to-top-nav{
    padding: 0 var(--mainEdge);
  }
  .pdf-nav-container{
    padding: var(--smallEdge) var(--mainEdge) 0;
  }
  .image-overlay{
    padding: var(--mainEdge);
  }
  .content, .about-content{
    padding: var(--hugeEdge) var(--mainEdge);
  }
  .interview-content{
    padding: var(--hugeEdge) var(--mainEdge) var(--mainEdge);
  }
  .main-content{
    padding: var(--biggerEdge) var(--mainEdge) var(--hugeEdge);
  }
  .vp-end{
    display: block;
    left: var(--mainEdge);
    right: var(--mainEdge);
  }
  .overlay-content{
    display: block;
    width: 75%;
    left: var(--mainEdge);
    right: var(--mainEdge);
  }
  .header-info{
    width: 75%;
    padding-right: var(--bigEdge);
  }
  .heading, .animate{
    left: var(--mainEdge);
    right: var(--mainEdge);
  }
  .subheading{
    width: 100%;
  }
  .horizontal-list{
    text-align: center;
  }
  .list-arrow{
    align-self: center;
  }
  .small-grid{
    display: block;
  }
  .small-grid .content-half{
    padding: var(--smallEdge) 0;
    border-bottom: 1px solid black;
  }
  .small-grid .content-half:first-child{
    border-top: 1px solid black;
  }
  .small-grid .content-half > *:not(.small-arrow-container){
    width: 75%;
  }
  .small-arrow-container{
    display: flex;
  }
  .word-list{
    display: none;
  }
  .content-column{
    column-count: unset;
  }
  .timeline-content{
    display: block;
  }
  .timeline-block{
    width: 75%;
    margin-top: var(--betweenEdge);
  }
  .interview-grid{
    display: block;
  }
  .marginal{
    position: absolute;
    visibility: hidden;
    width: 75%;
  }
  .archive-block{
    padding-right: var(--bigEdge);
  }
  .viewer-container{
    margin: 0 var(--mainEdge);
  }
  #interview-half{
    margin-top: var(--hugeEdge);
  }


  .footer-content{
    display: block;
    padding: var(--mainEdge);
  }
  .footer-block:not(:first-child){
    margin-top: var(--bigEdge);
  }
}

@media only screen and (max-width: 600px) {
  :root{
    /* --smallEdge: 10px;
    --mainEdge: 12px;
    --mainplusEdge: 18px;
    --bigEdge: 25px; */
    --betweenEdge: 35px;
    --biggerEdge: 50px;
    --hugeEdge: 70px;
    --enormousEdge: 105px;

    --fontSize1: 11px;
    --fontSize2: 16px;
    --fontSize2times: 17px;
    --fontSize3: 25px;
    --fontSize4: 50px;
    --fontSizeI: 30px;
    --fontSize5: 55px;
    --fontSize6: 75px;
  }
  .heading, .content-heading{
    letter-spacing: -1.65px;
  }
  .heading{
    margin-left: -1.65px;
  }
  .interview-heading{
    letter-spacing: -0.9px;
  }
}
@media only screen and (max-width: 500px) {
  :root{
    --fontSizeI: 25px;
    --fontSize5: 45px;
  }
  .heading, .content-heading{
    letter-spacing: -1.35px;
  }
  .heading{
    margin-left: -1.35px;
  }
  .interview-heading{
    letter-spacing: -0.75px;
  }
}

@media only screen and (max-width: 400px) {
  :root{
    /* --smallEdge: 10px;
    --mainEdge: 12px;
    --mainplusEdge: 15px;
    --bigEdge: 20px; */
    --betweenEdge: 28px;
    --biggerEdge: 40px;
    --hugeEdge: 56px;
    --enormousEdge: 85px;

    --fontSize1: 11px;
    --fontSize2: 16px;
    --fontSize2times: 17px;
    --fontSize3: 20px;
    --fontSize4: 40px;
    --fontSizeI: 20px;
    --fontSize5: 35px;
    --fontSize6: 60px;
  }
  .heading, .content-heading{
    letter-spacing: -1.05px;
  }
  .heading{
    margin-left: -1.05px;
  }
  .interview-heading{
    letter-spacing: -0.6px;
  }
  .small-grid .content-half > *:not(.small-arrow-container){
    width: 100%;
  }
  .timeline-block{
    width: 100%;
  }
}

@media only screen and (max-height: 400px) {
  .interview-content{
    padding: var(--mainEdge) var(--hugeEdge);
  }
  .vp-end{
    position: relative;
    left: unset;
    right: unset;
    bottom: unset;
    margin-top: var(--hugeEdge);
  }
}