@charset 'utf-8';



/*
 * Webfonts
 * ----------------------------------------- */

@font-face {
  font-family: 'euclid-flex';
  src: url( '../fonts/euclid-flex-regular.eot' );
  src: url( '../fonts/euclid-flex-regular.eot?#iefix' ) format( 'embedded-opentype' ),
       url( '../fonts/euclid-flex-regular.woff' ) format( 'woff' );
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "euclid-flex";
  src: url( '../fonts/euclid-flex-bold.eot' );
  src: url( '../fonts/euclid-flex-bold.eot?#iefix' ) format( 'embedded-opentype' ),
       url( '../fonts/euclid-flex-bold.woff' ) format( 'woff' );
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "lyon-text";
  src: url( '../fonts/lyon-text-no2-regular.eot' );
  src: url( '../fonts/lyon-text-no2-regular.eot?#iefix' ) format( 'embedded-opentype' ),
       url( '../fonts/lyon-text-no2-regular.woff' ) format( 'woff' ),
       url( '../fonts/lyon-text-no2-regular.ttf' ) format( 'truetype' ),
       url( '../fonts/lyon-text-no2-regular.svg' ) format( 'svg' );
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "lyon-text";
  src: url( '../fonts/lyon-text-no2-italic.eot' );
  src: url( '../fonts/lyon-text-no2-italic.eot?#iefix' ) format( 'embedded-opentype' ),
       url( '../fonts/lyon-text-no2-italic.woff' ) format( 'woff' ),
       url( '../fonts/lyon-text-no2-italic.ttf' ) format( 'truetype' ),
       url( '../fonts/lyon-text-no2-italic.svg' ) format( 'svg' );
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "knistericons";
  src: url( '../fonts/knistericons.eot' );
  src: url( '../fonts/knistericons.eot?#iefix' ) format( 'embedded-opentype' ),
       url( '../fonts/knistericons.woff' ) format( 'woff' ),
       url( '../fonts/knistericons.woff2' ) format( 'woff2' );
  font-weight: normal;
  font-style: normal;
}



/*
 * Resets
 * ----------------------------------------- */

html,
body {
  overflow-x: hidden;
}


h1, h2, h3,
p,
ul, li  {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  outline: none;
}

a img { /* Remove border around linked images in IE10 and below */
  border: 0;
}



/*
 * Transitions & Animations
 * ----------------------------------------- */

a, a:hover,
a .box-title-underline, a:hover .box-title-underline {
  -webkit-transition: border .2s ease-in-out;
     -moz-transition: border .2s ease-in-out;
      -ms-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}

.slider_nav, .slider-container:hover .slider_nav,
.box-img-container .icon-container, .box-img-container:hover .icon-container {
  -webkit-transition: opacity .2s ease-in-out;
     -moz-transition: opacity .2s ease-in-out;
      -ms-transition: opacity .2s ease-in-out;
          transition: opacity .2s ease-in-out;
}



/*
 * Basic
 * ----------------------------------------- */

html {
  font-size: 24px;
}

body {
  margin: 0;
  background: #eee;
  color: #fff;
  font-family: 'lyon-text', 'georgia', serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
   -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'onum';
     -moz-font-feature-settings: 'onum=1';
     -moz-font-feature-settings: 'onum';
      -ms-font-feature-settings: 'onum' 1;
          font-feature-settings: 'onum';
}

::selection {
  background-color: #e7e7e7;
}



/*
 * Layout
 * ----------------------------------------- */

.container {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  width: 1500px;
}

.container-box {
  padding-left: 5rem;
  padding-right: 3.5rem;
  padding-top: 4.75rem;
  padding-bottom: 5rem;
}

.subsite .content-container {
  margin-bottom: -6.5rem;
}

section {
  margin-bottom: 3rem;
  color: #000;
  font-size: 1rem;
  font-style: italic;
}

section:last-of-type {
  margin-bottom: 0;
}

.section-bg {
  background: #fff;
}

[class*='span'] {
  float: left;
  margin-right: 1.5rem;
}

.span1,
.span1-col-helper /* To calcuate percentage values for CSS columns’ width and gap */ {
  width: calc( 33.333% - 1.5rem );
}

.span2 {
  width: calc( 66.666% - 1.5rem );
  font-style: normal;
}

.span3 {
  width: calc( 100% - 1.5rem );
}

.span3-col3 {
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
}



/*
 * Header
 * ----------------------------------------- */

.header {
  position: relative;
  padding-top: 1.5rem;
}

.header:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  background: url( '../img/bg-wire.svg' );
  background-size: 120% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: .4;
  overflow: hidden;
}

.header-skew {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
  -webkit-transform: skewY(5deg);
     -moz-transform: skewY(5deg);
      -ms-transform: skewY(5deg);
       -o-transform: skewY(5deg);
          transform: skewY(5deg);
  transform-origin: 100% 100%;

}

.header-skew {
  min-height: 15vw;
  bottom: -9vw;
}

.header .container-box {
  padding-top: 1rem;
  padding-bottom: 6rem;
}

.news .container-box {
  padding-left: 5rem;
  padding-right: 3.5rem;
  padding-top: .333rem;
  padding-bottom: .25rem;
  font-style: italic;
}

.news {
  background: #fff;
  color: #000;
  font-size: 1rem;
}

.essay .news p,
.imprint .news p {
  margin-bottom: 0;
}

.logo,
img.exhibition-period {
  width: 19rem;
  height: auto;
}

.logo {
  margin-left: -7.75rem;
}

img.exhibition-period {
  position: absolute;
  right: 3.5rem;
}

div.exhibition-period {
  display: none;
  margin-top: .875rem;
  font-size: 1.5rem;
}

.exhibition-period-date {
  display: inline-block;
  margin-right: .5rem;
  font-family: 'euclid-flex';
  font-weight: bold;
  -webkit-font-feature-settings: 'lnum';
     -moz-font-feature-settings: 'lnum=1';
     -moz-font-feature-settings: 'lnum';
      -ms-font-feature-settings: 'lnum' 1;
          font-feature-settings: 'lnum';
}

.exhibition-period-time {
  font-style: italic;
}

.blurb {
  margin-top: 2.25rem;
}

.blurb h1  {
  margin-bottom: 1rem;
}

.blurb p {
  width: 90%;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.4;
}



/*
 * Footer
 * ----------------------------------------- */

.footer {
  position: relative;
  z-index: 10;
  font-style: italic;
  margin-top: 3rem;
}

.footer .container-box {
  padding-top: 2em;
  padding-bottom: 1.5rem;
}

.contact {
  float: left;
  list-style-type: none;
}

.contact li {
  display: inline-block;
}

.contact .middot:after {
  margin-left: .5rem;
  margin-right: .4rem;
}

.footer [class*='icon']:before {
  padding-right: .25rem;
}



/*
 * Navigation
 * ----------------------------------------- */

nav {
  margin-top: 2.5rem;
  margin-bottom: 4rem;
  font-family: 'euclid-flex', 'futura', 'helvetica', sans-serif;
  font-weight: bold;
  font-size: 1.375rem;
}

.subsite nav {
  margin-bottom: 2rem;
}

nav a {
  border-bottom: 2px solid;
  color: #fff;
  border-bottom-color: #fff;
  padding-bottom: .15rem;
}

nav a:hover {
  border-bottom-color: transparent;
}

nav ul li {
  display: inline-block;
  margin-right: 1.5vw;
}

nav .is-active {
  border-bottom: 0;
  pointer-events: none;
}



/*
 * Language switcher
 * ----------------------------------------- */

.lang-switcher {
  padding-bottom: 0;
  font-family: 'euclid-flex', 'futura', 'helvetica', sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 1rem;
}

.lang-switcher {
  position: absolute;
  z-index: 100;
  top: 3rem;
  right: 3.5rem;
}

.lang-switcher li {
  display: inline;
}

.lang-switcher li:first-child:after {
  content: ' ·';
  color: #000;
}

.lang-switcher a {
  opacity: .666;
  border-bottom: 1px solid;
}

.lang-switcher a.lang--is-active {
  pointer-events: none;
  opacity: 1;
  border: 0;
}



/*
 * Map
 * ----------------------------------------- */

.map {
  width: 100vw;
  margin-bottom: -18.5rem;
}

.map svg,
.map img {
  margin-top: -6rem;
  position: absolute;
  z-index: -1;
  width: 120vw;
  min-width: 1300px;
  left: 50%;
  -webkit-transform: translateX( -50% );
     -moz-transform: translateX( -50% );
      -ms-transform: translateX( -50% );
          transform: translateX( -50% );
}

.map img {
  image-rendering: crisp-edges;
}

.map-stroke {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}



/*
 * Links
 * ----------------------------------------- */

.blurb a,
.content a,
.footer a {
  border-bottom: 1px solid;
}

.lang-switcher a,
.blurb a,
.footer a {
  color: #fff;
  border-bottom-color: rgba(255,255,255, .4);
}

.blurb a {
  border-width: 2px;
}

a:hover {
  border-bottom-color: transparent !important;
}



/*
 * Icons
 * ----------------------------------------- */

.box-img-container .icon-container {
  opacity: 0;
}

.is-touch .box-img-container .icon-container {
  opacity: 1;
}

.box-img-container:hover .icon-container {
  opacity: 1;
}

[class*='icon']:before {
  font-family: 'knistericons';
  font-style: normal;
}

.content .icon-container {
  margin-left: 1.25rem;
  margin-top: 1.25rem;
}

.content .icon-twitter,
.content .icon-mail,
.content .icon-website {
  display: block;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: .25rem;
  background: #fff;
  border: 0 !important;
  -webkit-border-radius: 1.25rem;
     -moz-border-radius: 1.25rem;
          border-radius: 1.25rem;
  font-style: normal;
  text-align: center;
}

.icon-twitter:before {
  content: '\e000';
}

.icon-mail:before {
  content: '\e001';
}

.icon-website:before {
  content: '\e002';
}



/*
 * Sponsor logos
 * ----------------------------------------- */

.logos {
  float: right;
  display: flex;
  text-align: center;
  margin-top: .5rem;
}

.logos a {
  border: 0;
}

.logos img {
  display: inline-block;
  margin-left: 1.5rem;
}

.logo-fhp img.
.logo-uclab img,
.logo-here img,
.logo-cityofthefuture img {
  height: auto;
}

.logo-fhp img {
  width: .675rem;
}

.logo-uclab img,
.logo-here img {
  width: 2rem;
}

.logo-here img {
  margin-left: 0;
}

.logo-cityofthefuture img {
  width: 3.75rem;
}

.logo-here-container {
  text-align: center;
  display: inline-block;
  margin-top: -.25rem;
  margin-left: 1.5rem;
}

.supported-by {
  font-size: .875rem;
  opacity: .666;
}



/*
 * Slider
 * ----------------------------------------- */

.slider-container,
.impressions .video-container {
  margin-bottom: 1.5rem;
  position: relative;
  float: left;
  margin-left: -1.25rem;
  width: calc( 100% - .5rem);
}

.impressions .video-container {
  margin-bottom: 0;
}

.slider {
  position: relative;
  list-style: none;
  overflow: hidden;
  font-size: 0;
}

.slider li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
}

.slider li:first-child {
  position: relative;
  display: block;
  float: left;
}

.slider_nav {
  opacity: 1;
  position: absolute;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  top: 52%;
  left: 0;
  z-index: 3;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 5rem;
  width: 3rem;
  margin-top: -4rem;
  background-color: rgba(0,0,0, .5);
  background-image: url( '../img/slider-arrow.svg' );
  background-repeat: no-repeat;
  background-position: center 50%;
  background-size: 1rem auto;
  border: 0 !important;
}

.is-touch .slider_nav {
  opacity: 1;
}

/*
.slider-container:hover .slider_nav {
  opacity: 1;
  border: 0 !important;
}
*/

.slider_nav.prev {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.slider_nav.next {
  left: auto;
  right: 0;
}

.slider p {
  margin-bottom: 0;
}



/*
 * Text-level elements
 * ----------------------------------------- */

h1,
h2,
h3,
strong {
  font-family: "euclid-flex", sans-serif;
  font-style: normal;
}

h1  {
  margin-bottom: 2rem;
  font-family: 'euclid-flex', 'futura', 'helvetica', sans-serif;
  font-weight: bold;
  font-size: 1.375rem;
}

h2 {
  font-size: 1.125rem;
}

h3 {
  display: inline-block;
  font-size: .875rem;
}

.content-subtitle {
  display: block;
  font-family: "lyon-text", "Times New Roman", serif;
  font-size: 1.375rem;
  font-style: italic;
  text-transform: none;
  font-weight: normal;
  letter-spacing: 0;
}

em {
  font-style: normal;
}

.span2 em {
  font-style: italic;
}

.align-left {
  float: left;
}

.align-right {
  float: right;
}

.content p {
  margin-bottom: 1.5em;
}

.outline.content p:last-of-type {
  margin-bottom: 0;
}



/*
 * Projects / People
 * ----------------------------------------- */

.impressions .span1,
.projects .span1,
.people .span1 {
  width: calc( 33.333% - 3rem );
  margin-right: 3rem;
}

.impressions.container-box,
.projects.container-box,
.people.container-box {
  padding-right: 2rem;
}

.project-description {
  width: calc( 66.666% - 3rem );
  margin-right: 3rem;
  padding-right: 2.5rem;
  box-sizing: border-box;
}

.project-description p {
  margin-bottom: 0;
}

.project-people,
.project-website {
  margin-bottom: .75rem;
}

.box:nth-last-child(-n+3) p {
  margin: 0;
}

.project-featured {
  width: calc( 100% - 3rem ) !important;
}

.box-img-container {
  position: relative;
  margin-left: -1.25rem;
  width: calc( 100% + 2.5rem );
}

.box-img-container a {
  border: 0;
}

.impressions .box-img-container,
.projects .box-img-container,
.people .box-img-container {
  padding-bottom: calc( 100% + 2.5rem );
}

.projects .project-featured .box-img-container {
  padding-bottom: calc( 50% + 2.5rem );
}

.projects-preview-box {
  width: 100%;
  padding-bottom: 100%;
  background: red;
}

.box-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  background-size: cover;
}

.people .box-img,
.projects .box-img {
  background-blend-mode: multiply;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
}
.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.box-title,
.slider-title {
  margin-top: -1.5rem;
  margin-left: -1.25rem;
  margin-bottom: .375rem;
}

.video .slider-title {
  margin-top: 0;
}

.slider-title {
  margin-left: 0;
  font-size: 1rem;
}

.box-title-padding,
.slider-title-padding {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: #fff;
  padding-top: .375rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  line-height: 1.4;
}

a .box-title-underline,
a .slider-title-underline {
  border-bottom: 2px solid;
}

a:hover .box-title-underline,
a:hover .slider-title-underline {
  border-bottom: transparent;
}

.number {
  display: inline-block;
  margin-right: .5rem;
  font-family: 'lyon-text';
  font-style: italic;
  font-weight: normal;
  -webkit-font-feature-settings: "lnum";
     -moz-font-feature-settings: "lnum=1"; /* FF 4.0 to 14.0 */
     -moz-font-feature-settings: "lnum";   /* FF 15.0 onwards */
      -ms-font-feature-settings: "lnum" 1;
          font-feature-settings: "lnum";
}



/*
 * Essay
 * ----------------------------------------- */

body {
  counter-reset: h2;
}

.essay h2 {
/* counter-reset: h3; */
  margin-top: 1.5rem;
  margin-bottom: .75rem;
}

/*
.essay h2:first-of-type {
  margin-top: 0;
}

.essay h2:before {
  content: counter(h2,decimal) "\00a0\00a0\00a0";
  counter-increment: h2;
  margin-left: -1.1rem;
}

.essay h2.no-index:before {
  content : "";
  counter-increment : none;
  margin-left: 0;
}

.essay .span2 h3 {
  counter-reset: h4;
  margin-bottom: .25rem;
}
*/

.essay p {
  margin-bottom: .75rem;
}

.external-footnote {
  color: #000 !important;
}

a[name*='reference'],
a[name*='footnote'],
.figure-reference {
  font-family: 'euclid-flex' !important;
  font-style: normal;
  font-weight: bold;
  font-size: .75rem;
  -webkit-font-feature-settings: 'lnum';
     -moz-font-feature-settings: 'lnum=1';
     -moz-font-feature-settings: 'lnum';
      -ms-font-feature-settings: 'lnum' 1;
          font-feature-settings: 'lnum';
}

a[name*='reference'],
a[name*='footnote'] {
  vertical-align: top;
  display: inline-block;
  margin-right: .125rem;
}

.essay-references li {
  text-indent: -1rem;
  margin-bottom: .5rem;
}

.essay-references a:not(.footnote) {
  color: #000 !important;
}

.essay-references .footnote {
  vertical-align: middle;
  display: inline-block;
  width: .75rem;
  text-indent: 0;
  border-bottom: 0;
}

figure {
  position: relative;
  margin-top: 1.5rem;
  margin-right: 0;
  margin-bottom: 1.125rem;
  margin-left: 0;
}

figcaption {
  position: absolute;
  width: 50%;
  bottom: 0;
  left: calc( 100% + 1.5rem );
  font-style: italic;
}



/*
 * Imprint
 * ----------------------------------------- */


.imprint h2 {
  margin-top: 2.25rem;
}

.imprint [class*="span"] h2:first-of-type {
  margin-top: 0;
}

.imprint h2,
.imprint p {
  margin-bottom: .75rem;
}

.imprint h3 {
  display: block;
}



/*
 * Etc
 * ----------------------------------------- */

img {
  width: 100%;
  height: auto;
}

.middot:after {
  content: '·';
  font-family: 'euclid-flex';
  font-size: 1rem;
  font-weight: bold;
  font-style: normal;
  color: #000;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}



@media all and (max-width: 2000px) {   html { font-size: 20px; }   .container { width: 1260px; } .blurb p { width: 100%; font-size: 1.688rem; }   }
@media all and (max-width: 1750px) {   html { font-size: 18px; }   .container { width: 1130px; } .lang-switcher { font-size: 18px; } }
@media all and (max-width: 1500px) {   html { font-size: 16px; }   .container { width: 1000px; }   }



@media all and (max-width: 1160px) {

  .container {
    width: 87.5%;
  }

}



@media all and (max-width: 1060px) {

  .media-query-helper {
    width: 1060px;
  }

  .container {
    width: 82.5%;
  }

  .span1,
  .span1-col-helper {
    width: calc( 50% - 1.5rem );
  }

  .impressions .span1,
  .projects .span1,
  .people .span1 {
    width: calc( 50% - 3rem );
  }

  .project-description {
    width: calc( 66.666% - 3rem );
    padding-right: 0;
  }

  .project-meta {
    width: calc( 33.333% - 3rem ) !important;
  }

  .box:nth-last-child(-n+3) p {
    margin-bottom: 1.5rem;
  }

  .box:nth-last-child(-n+2) p {
    margin: 0;
  }

  .content .icon-twitter,
  .content .icon-mail,
  .content .icon-website {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }

  .contact li {
    display: block;
  }

  .contact .imprint {
    display: inline-block;
    margin-top: 1rem;
  }

  .contact li:after {
    display: none;
  }

}



@media all and (max-width: 990px) {

  html {
    font-size: 14px;
  }

  .project-description {
    width: calc( 100% - 3rem );
    padding-right: 0;
  }

  .project-meta {
    width: calc( 100% - 3rem ) !important;
  }

  .project-meta {
    margin-top: 2rem;
  }

}



@media all and (max-width: 890px) {

  .container {
    width: 90%;
  }

  h2 {
    font-size: 16px;
  }

  h3 {
    font-size: 12px;
  }

  .footer,
  .supported-by {
    font-size: 14px;
  }

  .span1,
  .span2 {
    width: calc( 100% - 3rem );
  }

  figure {
    margin-bottom: 1.5rem;
  }

  figcaption {
    position: static;
    width: 100%;
  }

}



@media all and (max-width: 830px) {

  .media-query-helper {
    max-width: 830px;
  }

  .box:nth-last-child(-n+2) p {
    margin-bottom: 1.5rem;
  }

  .box:last-child p {
    margin: 0;
  }

  .news .align-left {
    float: none;
  }

  .news .align-right {
    float: left;
  }

}



@media all and (max-width: 760px) {

  .container-box {
    padding-left: 3rem;
    padding-right: 1.5rem;
    padding-top: 3.75rem;
    padding-bottom: 4rem;
  }

  .impressions.container-box,
  .projects.container-box,
  .people.container-box {
    padding-right: 0;
  }

  .logos {
    margin-top: 2rem;
  }

  .contact,
  .logos {
    float: none;
  }

  .logo-fhp img {
    margin-left: 0;
  }

  .news .container-box {
    padding-left: 3rem;
    padding-right: 1.5rem;
    padding-bottom: .4rem;
    line-height: 1.3;
  }

  .span1 {
    width: calc( 100% - 3rem );
  }

}



@media all and (max-width: 650px) {

  .header {
    padding-top: 0;
  }

  .span1,
  .impressions .span1,
  .projects .span1,
  .people .span1 {
    width: calc( 100% - 3rem );
  }

  h1,
  nav{
    font-size: 18px;
  }

  .blurb p,
  .content-subtitle {
    font-size: 19px;
  }

  h2 {
    font-size: 17px;
  }

  .logos {
    top: 140px;
    left: 1.25rem;
  }

}



@media all and (max-width: 500px) {

  section {
    margin-bottom: 2rem;
  }

  .container {
    width: 100%;
  }

  h1,
  nav {
    font-size: 15px;
  }

  .blurb p,
  .content-subtitle {
    font-size: 16px;
  }

  h2 {
    font-size: 14px;
  }

  h1 {
    margin-bottom: 1.5rem;
  }

  img.exhibition-period {
    display: none;
  }

  div.exhibition-period {
    display: block;
  }

}



@media all and (max-width: 360px) {

  section {
    margin-bottom: 1rem;
  }

  .container-box {
    padding-left: 2rem;
    padding-right: .5rem;
    padding-top: 3rem;
    padding-bottom: 3.25rem;
  }

  .span1,
  .impressions .span1,
  .projects .span1,
  .people .span1 {
    width: calc( 100% - 2rem);
  }

}