html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

html {
  width: 100%; }

body {
  width: 100%;
  color: #ffffff;
  background: #000;
  font-family: "porpora", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  text-align: left;
  -webkit-font-smoothing: antialiased; }
  @media screen and (max-width: 800px) {
    body {
      font-size: 16px; } }

.wrapper {
  padding-bottom: 10vh;
  position: relative; }
  .wrapper:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, black), color-stop(67.5%, rgba(0, 0, 0, 0.95)), color-stop(75%, rgba(0, 0, 0, 0.7)), color-stop(87.5%, rgba(0, 0, 0, 0.4)), color-stop(96%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(0deg, black 50%, rgba(0, 0, 0, 0.95) 67.5%, rgba(0, 0, 0, 0.7) 75%, rgba(0, 0, 0, 0.4) 87.5%, rgba(0, 0, 0, 0.1) 96%, rgba(0, 0, 0, 0));
    -webkit-transition: opacity .75s ease;
    transition: opacity .75s ease;
    opacity: 0; }
    .has-footer .wrapper:after {
      opacity: .95; }

.document {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.59, 0.01, 0.28, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.59, 0.01, 0.28, 1);
  transition: transform 0.5s cubic-bezier(0.59, 0.01, 0.28, 1);
  transition: transform 0.5s cubic-bezier(0.59, 0.01, 0.28, 1), -webkit-transform 0.5s cubic-bezier(0.59, 0.01, 0.28, 1); }
  .has-footer .document {
    -webkit-transform: translate3d(0, -20vh, 0);
            transform: translate3d(0, -20vh, 0); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.2;
  color: currentColor; }

p {
  margin-top: 0; }

.dev {
  font-size: 14px;
  margin-top: 1em;
  margin-bottom: 0; }

svg {
  display: inline-block;
  width: 100%;
  height: 100%;
  fill: currentColor;
  overflow: hidden; }
  svg.icon {
    width: 1.2em;
    height: 1.2em;
    line-height: 1;
    vertical-align: middle; }

#symbols {
  display: none; }

a {
  text-decoration: none;
  color: currentColor;
  -webkit-transition: color .3s ease;
  transition: color .3s ease; }
  a:hover {
    color: currentColor;
    text-decoration: none; }
  a:focus {
    outline: none;
    text-decoration: none;
    color: currentColor; }

button {
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "porpora", sans-serif; }
  button:focus {
    outline: none; }

figure {
  margin: 0;
  padding: 0; }

dl, dt, dd {
  margin: 0;
  padding: 0; }

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

video {
  display: block; }

.test {
  color: #000;
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: right;
  pointer-events: none; }

@font-face {
  font-family: "porpora";
  src: url("../fonts/everett-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap; }

@font-face {
  font-family: "porpora";
  src: url("../fonts/everett-light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap; }

@font-face {
  font-family: "messapia";
  src: url("../fonts/messapia-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap; }

.menu {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.5% 3.5%;
  font-size: 1.464128vw;
  -webkit-transition: -webkit-transform 0s ease;
  transition: -webkit-transform 0s ease;
  transition: transform 0s ease;
  transition: transform 0s ease, -webkit-transform 0s ease; }
  .has-contact .menu {
    pointer-events: none; }
  @media screen and (max-width: 800px) {
    .menu {
      font-size: 16.86675456vw;
      padding: 5% 7%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-flow: column;
              flex-flow: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .has-contact .menu {
        pointer-events: auto;
        -webkit-transform: translate3d(0, -100%, 0);
                transform: translate3d(0, -100%, 0); } }
  .menu__logo {
    font-size: 1.7569536vw;
    text-transform: uppercase; }
    @media screen and (max-width: 800px) {
      .menu__logo {
        font-size: 7.32064vw; } }
  .menu__button {
    display: none;
    color: #ffffff;
    width: 5.2vw;
    height: 5.2vw;
    line-height: 1; }
    .menu__button svg {
      width: 5vw;
      height: 5vw; }
    .menu__button .button__close {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 5.2vw;
      height: 5.2vw;
      -webkit-transform: scale(0.2);
              transform: scale(0.2);
      line-height: 1;
      opacity: 0;
      -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
      transition: opacity .3s ease, -webkit-transform .3s ease;
      transition: transform .3s ease, opacity .3s ease;
      transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease; }
    .has-menu .menu__button .button__close {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1; }
    .has-menu .menu__button .button__open {
      -webkit-transform: scale(0.2);
              transform: scale(0.2);
      opacity: 0; }
    @media screen and (max-width: 800px) {
      .menu__button {
        display: block;
        position: absolute;
        right: 7%;
        top: 50%;
        -webkit-transform: translate3d(0, -60%, 0);
                transform: translate3d(0, -60%, 0); } }
  .menu__nav a, .menu__nav button {
    margin-left: 1.7569536vw;
    font-weight: 300; }
    @media screen and (max-width: 800px) {
      .menu__nav a, .menu__nav button {
        margin-left: 0; } }
  @media screen and (max-width: 800px) {
    .menu__nav a {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
              transform: translate3d(0, -100%, 0);
      -webkit-transition: opacity 0.91s ease, -webkit-transform 0.91s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: opacity 0.91s ease, -webkit-transform 0.91s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: transform 0.91s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.91s ease;
      transition: transform 0.91s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.91s ease, -webkit-transform 0.91s cubic-bezier(0.165, 0.84, 0.44, 1); } }
  @media screen and (max-width: 800px) {
    .has-menu .menu__nav a {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0); } }
  .has-menu .menu__nav a:nth-child(3n+1) {
    -webkit-transition-delay: .3s;
            transition-delay: .3s; }
  .has-menu .menu__nav a:nth-child(3n+2) {
    -webkit-transition-delay: .2s;
            transition-delay: .2s; }
  .has-menu .menu__nav a:nth-child(3n) {
    -webkit-transition-delay: .1s;
            transition-delay: .1s; }
  @media screen and (max-width: 800px) {
    .menu__nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-flow: column;
              flex-flow: column;
      padding-top: 10vw;
      line-height: 1.2;
      height: 100%;
      width: 100%;
      position: fixed;
      left: 0;
      top: 0;
      padding: 28vw 7% 0;
      background: -webkit-gradient(linear, left top, left bottom, color-stop(66.15%, #000000), to(rgba(0, 0, 0, 0)));
      background: linear-gradient(180deg, #000000 66.15%, rgba(0, 0, 0, 0) 100%);
      -webkit-transition: -webkit-transform 0s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transition: -webkit-transform 0s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transition: transform 0s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transition: transform 0s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      -webkit-transform: translate3d(0, -100%, 0);
              transform: translate3d(0, -100%, 0); }
      .has-menu .menu__nav {
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
        -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transition: -webkit-transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
      .has-contact .menu__nav {
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
        -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transition: -webkit-transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94); } }
  .menu .menu-item {
    width: 20%;
    text-align: center; }
    @media screen and (max-width: 800px) {
      .menu .menu-item {
        width: 100%; } }
    .menu .menu-item--left {
      text-align: left; }
      @media screen and (max-width: 800px) {
        .menu .menu-item--left {
          text-align: center; } }
    .menu .menu-item--right {
      text-align: right; }
      @media screen and (max-width: 800px) {
        .menu .menu-item--right {
          text-align: center; } }
  .menu a {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }
    .menu a.menu-item--homepage {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
      transition: opacity .3s ease, -webkit-transform .3s ease;
      transition: opacity .3s ease, transform .3s ease;
      transition: opacity .3s ease, transform .3s ease, -webkit-transform .3s ease; }
    .menu a .track {
      white-space: nowrap;
      display: block;
      font-style: normal;
      -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
      transition: opacity .3s ease, -webkit-transform .3s ease;
      transition: opacity .3s ease, transform .3s ease;
      transition: opacity .3s ease, transform .3s ease, -webkit-transform .3s ease; }
      .menu a .track:after {
        content: attr(data-name);
        display: inline-block;
        position: absolute;
        left: 100%;
        top: 0; }
        @media screen and (max-width: 800px) {
          .menu a .track:after {
            left: 0;
            top: 100%; } }
    .menu a:hover .track {
      -webkit-animation: menu 1s infinite linear;
              animation: menu 1s infinite linear; }
      @media screen and (max-width: 800px) {
        .menu a:hover .track {
          -webkit-animation: none;
                  animation: none; } }
  .has-contact .menu:before, .menu-out .menu:before, .vm-loading .menu:before {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); }
  .has-contact .menu a, .menu-out .menu a, .vm-loading .menu a {
    opacity: 0; }
    .has-contact .menu a.menu-item--homepage, .menu-out .menu a.menu-item--homepage, .vm-loading .menu a.menu-item--homepage {
      -webkit-transform: translate3d(0, -100%, 0);
              transform: translate3d(0, -100%, 0); }
    .has-contact .menu a .track, .menu-out .menu a .track, .vm-loading .menu a .track {
      -webkit-transform: translate3d(-100%, 0, 0);
              transform: translate3d(-100%, 0, 0); }
      @media screen and (max-width: 800px) {
        .has-contact .menu a .track, .menu-out .menu a .track, .vm-loading .menu a .track {
          -webkit-transform: translate3d(0, -100%, 0);
                  transform: translate3d(0, -100%, 0); } }
  .menu:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 150px;
    z-index: 0;
    pointer-events: none;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#000000), color-stop(35%, #000000f2), color-stop(50%, #000000cc), color-stop(75%, #00000066), color-stop(92%, #0000001a), to(#00000000));
    background-image: linear-gradient(#000000, #000000f2 35%, #000000cc 50%, #00000066 75%, #0000001a 92%, #00000000);
    -webkit-transition: -webkit-transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

@-webkit-keyframes menu {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); } }

@keyframes menu {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); } }

@-webkit-keyframes menureversed {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes menureversed {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

.has-contact .about-text .text__track {
  opacity: 0; }

.text {
  position: relative;
  z-index: 7;
  overflow: hidden; }
  .text--footer {
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1; }
    .has-contact .text--footer .text__track {
      opacity: 0; }
  .text--work {
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    -webkit-transition: opacity 0.5s linear 0s, -webkit-transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.5s linear 0s, -webkit-transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s linear 0s;
    transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s linear 0s, -webkit-transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    pointer-events: none; }
    .has-footer .text--work {
      opacity: 0;
      -webkit-transform: translate3d(0, -20vh, 0);
              transform: translate3d(0, -20vh, 0); }
    .has-contact .text--work .text__track {
      opacity: 0; }
  .text--project {
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1; }
    .text--project .text__track {
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      padding-bottom: 15vh; }
  .text__track {
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: relative;
    z-index: 3;
    height: 100%; }
    .text__track a {
      color: #263B9A; }
      .text__track a:hover {
        text-decoration: underline; }
  .text__elm {
    display: block;
    font-family: "porpora", sans-serif;
    font-size: 21.96192vmin;
    color: #ffffff;
    line-height: 1;
    white-space: nowrap; }
    @media screen and (max-width: 800px) {
      .text__elm {
        font-size: 29.28256vmin; } }

.header--hero {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10; }

.footer {
  overflow: hidden;
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.75s cubic-bezier(0.59, 0.01, 0.28, 1);
  transition: opacity 0.5s ease, -webkit-transform 0.75s cubic-bezier(0.59, 0.01, 0.28, 1);
  transition: transform 0.75s cubic-bezier(0.59, 0.01, 0.28, 1), opacity 0.5s ease;
  transition: transform 0.75s cubic-bezier(0.59, 0.01, 0.28, 1), opacity 0.5s ease, -webkit-transform 0.75s cubic-bezier(0.59, 0.01, 0.28, 1);
  width: 100%; }
  .has-footer .footer {
    -webkit-transform: translate3d(0, -60vh, 0);
            transform: translate3d(0, -60vh, 0); }
    @media screen and (max-width: 800px) {
      .has-footer .footer {
        -webkit-transform: translate3d(0, -70%, 0);
                transform: translate3d(0, -70%, 0); } }
    .has-footer .footer .footer__image {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      -webkit-transition: opacity 0.8s cubic-bezier(0.59, 0.01, 0.28, 1) 0.3s, -webkit-transform 0.8s cubic-bezier(0.59, 0.01, 0.28, 1) 0.3s;
      transition: opacity 0.8s cubic-bezier(0.59, 0.01, 0.28, 1) 0.3s, -webkit-transform 0.8s cubic-bezier(0.59, 0.01, 0.28, 1) 0.3s;
      transition: transform 0.8s cubic-bezier(0.59, 0.01, 0.28, 1) 0.3s, opacity 0.8s cubic-bezier(0.59, 0.01, 0.28, 1) 0.3s;
      transition: transform 0.8s cubic-bezier(0.59, 0.01, 0.28, 1) 0.3s, opacity 0.8s cubic-bezier(0.59, 0.01, 0.28, 1) 0.3s, -webkit-transform 0.8s cubic-bezier(0.59, 0.01, 0.28, 1) 0.3s; }
  .footer__next {
    position: absolute;
    left: 0;
    top: 0;
    height: 50vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 3;
    text-transform: uppercase;
    padding-top: 40vh;
    text-align: center; }
    .footer__next a {
      margin: 0 7.32064vw; }
    .footer__next .back {
      font-size: 2.3426048vw;
      width: 20%;
      line-height: 1; }
    .footer__next .next {
      font-size: 4.0995584vw;
      width: 20%;
      line-height: 1; }
  .footer__image {
    max-width: 40.5%;
    max-height: 80vh;
    width: 100%;
    height: 100%;
    position: relative;
    margin-bottom: 5vh;
    -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0);
    opacity: 0;
    -webkit-transition: opacity 0.5s cubic-bezier(0.59, 0.01, 0.28, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.59, 0.01, 0.28, 1) 0s;
    transition: opacity 0.5s cubic-bezier(0.59, 0.01, 0.28, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.59, 0.01, 0.28, 1) 0s;
    transition: transform 0.5s cubic-bezier(0.59, 0.01, 0.28, 1) 0s, opacity 0.5s cubic-bezier(0.59, 0.01, 0.28, 1) 0s;
    transition: transform 0.5s cubic-bezier(0.59, 0.01, 0.28, 1) 0s, opacity 0.5s cubic-bezier(0.59, 0.01, 0.28, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.59, 0.01, 0.28, 1) 0s; }
    @media screen and (max-width: 800px) {
      .footer__image {
        max-width: 80%;
        max-height: 80vh; } }
    .footer__image img {
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
         object-fit: contain; }
    .footer__image:after {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(90%, #000000));
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 90%); }
  .footer__bar {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    padding: 2.25% 4.5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-transform: uppercase;
    font-size: 0.732064vw;
    font-family: "messapia", sans-serif;
    letter-spacing: .2em; }
    @media screen and (max-width: 800px) {
      .footer__bar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-flow: column-reverse;
                flex-flow: column-reverse;
        font-size: 2.196192vw;
        padding-bottom: 5%; } }
    .footer__bar .footer-nav a {
      margin-left: 1.7569536vw; }
    @media screen and (max-width: 800px) {
      .footer__bar .footer-nav {
        margin-bottom: 2.196192vw; } }

main {
  overflow: hidden; }

.article-footer .footer-text {
  position: sticky;
  top: 0; }

.gradient {
  height: 0vh;
  position: relative; }
  .gradient:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100vh;
    background-image: -webkit-gradient(linear, left top, left bottom, from(black), color-stop(35%, rgba(0, 0, 0, 0.95)), color-stop(50%, rgba(0, 0, 0, 0.8)), color-stop(75%, rgba(0, 0, 0, 0.4)), color-stop(92%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.95) 35%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0.1) 92%, rgba(0, 0, 0, 0));
    opacity: 1;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    pointer-events: none; }
  .gradient:after {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 60vh;
    opacity: 1;
    pointer-events: none; }

body:before {
  content: '';
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 200vh;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, black), color-stop(67.5%, rgba(0, 0, 0, 0.95)), color-stop(75%, rgba(0, 0, 0, 0.7)), color-stop(87.5%, rgba(0, 0, 0, 0.4)), color-stop(96%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(0deg, black 50%, rgba(0, 0, 0, 0.95) 67.5%, rgba(0, 0, 0, 0.7) 75%, rgba(0, 0, 0, 0.4) 87.5%, rgba(0, 0, 0, 0.1) 96%, rgba(0, 0, 0, 0));
  opacity: 1;
  -webkit-transition: opacity 0.01s linear 0s, -webkit-transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.01s linear 0s, -webkit-transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.01s linear 0s;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.01s linear 0s, -webkit-transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0); }

body.vm-loaded:before {
  -webkit-transform: translate3d(0, 50%, 0);
          transform: translate3d(0, 50%, 0);
  -webkit-transition: opacity 0.01s linear 0.75s, -webkit-transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.01s linear 0.75s, -webkit-transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.01s linear 0.75s;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.01s linear 0.75s, -webkit-transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0; }

body.vm-loaded .project-title .project__title {
  -webkit-transition: opacity 0.51s ease-out 0.57s, -webkit-transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.57s;
  transition: opacity 0.51s ease-out 0.57s, -webkit-transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.57s;
  transition: opacity 0.51s ease-out 0.57s, transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.57s;
  transition: opacity 0.51s ease-out 0.57s, transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.57s, -webkit-transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.57s;
  opacity: 1;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0); }

.page {
  padding-top: 14.64128vw;
  position: relative; }
  .page .is-under {
    opacity: 1;
    -webkit-transform: translate3d(0, 10%, 0);
            transform: translate3d(0, 10%, 0);
    -webkit-transition: opacity .51s ease-out, -webkit-transform .51s ease-out;
    transition: opacity .51s ease-out, -webkit-transform .51s ease-out;
    transition: opacity .51s ease-out, transform .51s ease-out;
    transition: opacity .51s ease-out, transform .51s ease-out, -webkit-transform .51s ease-out; }
    .page .is-under.inview {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0); }
  .page--home .page__header {
    padding: 0 5%; }
  @media screen and (max-width: 800px) {
    .page--home {
      padding-top: 48.316224vw; } }
  @media screen and (max-width: 800px) {
    .page {
      padding-top: 36.6032vw; } }
  .page__header {
    text-align: center;
    padding: 0 14%;
    margin-bottom: 11.713024vw; }
    @media screen and (max-width: 800px) {
      .page__header {
        padding: 0 5%;
        margin-bottom: 21.96192vw; } }
    .page__header h1 {
      font-weight: 300;
      font-size: 4.6852096vw;
      margin: 0; }
      @media screen and (max-width: 800px) {
        .page__header h1 {
          font-size: 8.784768vw; } }

.section {
  margin: 10.248896vw 0; }
  @media screen and (max-width: 800px) {
    .section.page-block {
      margin: 21.96192vw 0 21.96192vw; } }
  .section__title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 3.66032vw; }
    @media screen and (max-width: 800px) {
      .section__title {
        margin-bottom: 11.713024vw; } }
    .section__title h2, .section__title a, .section__title p {
      font-size: 0.732064vw;
      font-family: "messapia", sans-serif;
      letter-spacing: .2em;
      margin: 0; }
      @media screen and (max-width: 800px) {
        .section__title h2, .section__title a, .section__title p {
          font-size: 2.196192vw; } }
  .section--text {
    padding: 0 4.5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    @media screen and (max-width: 800px) {
      .section--text {
        padding: 0 5%;
        margin: 21.96192vw 0 21.96192vw; } }
    .section--text h2, .section--text p {
      font-size: 2.6354304vw;
      font-weight: 300;
      max-width: 74%;
      margin: 0;
      line-height: 1.2; }
      @media screen and (max-width: 800px) {
        .section--text h2, .section--text p {
          font-size: 6.2957504vw;
          max-width: 100%; } }
    .section--text em {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      font-style: normal;
      position: relative; }
      .section--text em span {
        position: absolute;
        display: block;
        z-index: -1;
        left: 50%;
        top: 62%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        width: 115%;
        pointer-events: none; }
  .section--right {
    text-align: right;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    @media screen and (max-width: 800px) {
      .section--right {
        text-align: left;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
  @media screen and (max-width: 800px) {
    .section__list {
      padding: 0 5%; } }
  .section__list ul, .section__list li {
    margin: 0;
    padding: 0; }
  .section__list li {
    font-size: 4.6852096vw;
    text-align: center;
    list-style: none;
    font-weight: 300; }
    @media screen and (max-width: 800px) {
      .section__list li {
        font-size: 8.784768vw;
        line-height: 1.1;
        margin-bottom: .75em; } }
  .section--layout {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap; }
    .section--layout .image {
      width: 50%; }
      @media screen and (max-width: 800px) {
        .section--layout .image {
          width: 100%;
          margin-bottom: 9vw; }
          .section--layout .image:nth-child(2) {
            margin-top: 18vw; } }
      .section--layout .image--full {
        width: 100%; }
        @media screen and (max-width: 800px) {
          .section--layout .image--full {
            padding: 10% !important; } }
      .section--layout .image__container {
        height: 0;
        position: relative; }
        .section--layout .image__container img {
          width: 100%;
          position: absolute;
          left: 0;
          top: 0; }
    .section--layout .project {
      width: 50%; }
      @media screen and (max-width: 800px) {
        .section--layout .project {
          width: 100%;
          margin-bottom: 9vw; }
          .section--layout .project .image:first-child {
            margin-bottom: 9vw; } }

.project.selected .image__overlay {
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0); }

.project .image {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  width: 100%; }
  .project .image__container {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease; }
    .loaded .project .image__container {
      opacity: 1; }
    .project .image__container img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      z-index: 1;
      -webkit-filter: blur(20px);
              filter: blur(20px);
      -webkit-transition: -webkit-filter .3s ease;
      transition: -webkit-filter .3s ease;
      transition: filter .3s ease;
      transition: filter .3s ease, -webkit-filter .3s ease;
      will-change: filter; }
      .project .image__container img.lazyloaded {
        -webkit-filter: blur(0px);
                filter: blur(0px); }
  .project .image__overlay {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 100%;
    width: 100%;
    height: 200%;
    background-image: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(50%, black), color-stop(95%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(0deg, black 0%, black 50%, rgba(0, 0, 0, 0.1) 95%, rgba(0, 0, 0, 0) 100%);
    -webkit-transition: -webkit-transform 0.71s cubic-bezier(0.59, 0.01, 0.28, 1);
    transition: -webkit-transform 0.71s cubic-bezier(0.59, 0.01, 0.28, 1);
    transition: transform 0.71s cubic-bezier(0.59, 0.01, 0.28, 1);
    transition: transform 0.71s cubic-bezier(0.59, 0.01, 0.28, 1), -webkit-transform 0.71s cubic-bezier(0.59, 0.01, 0.28, 1);
    -webkit-transform: translate3d(0, 0%, 0);
            transform: translate3d(0, 0%, 0); }
  .project .image__view {
    position: absolute;
    z-index: 2;
    display: block;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 10px;
    font-family: "messapia", sans-serif;
    overflow: hidden;
    bottom: 60px;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate3d(-50%, 60px, 0);
            transform: translate3d(-50%, 60px, 0);
    -webkit-transition: opacity 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.71s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.71s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.71s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.71s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.71s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .project .image__view .track {
      white-space: nowrap;
      display: block;
      font-style: normal; }
      .project .image__view .track:after {
        content: attr(data-name);
        display: inline-block;
        position: absolute;
        left: 100%;
        top: 0; }
  .project .image:hover .image__overlay {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
    -webkit-transition: opacity 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .project .image:hover .image__view {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
    -webkit-transition: opacity 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.51s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .project .image:hover .image__view .track {
      -webkit-animation: view 1s infinite linear;
              animation: view 1s infinite linear; }

.project__meta {
  padding: 0 15%;
  display: block;
  text-align: center; }
  @media screen and (max-width: 800px) {
    .project__meta {
      padding: 0; } }

.project__title {
  font-size: 2.3426048vw;
  font-weight: 300; }
  @media screen and (max-width: 800px) {
    .project__title {
      font-size: 8.43337728vw; } }

.project__client {
  font-size: 0.732064vw;
  font-family: "messapia", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em; }
  @media screen and (max-width: 800px) {
    .project__client {
      font-size: 2.196192vw; } }

.split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }
  .split__project {
    width: 50%;
    position: relative; }
    @media screen and (max-width: 800px) {
      .split__project {
        width: 100%; } }
  .split .image {
    height: 68.6vw;
    position: relative;
    z-index: 0; }
    @media screen and (max-width: 800px) {
      .split .image {
        height: 137.2vw; } }
    .split .image img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .split .image-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    z-index: 1;
    text-align: center; }
    .split .image-overlay h2 {
      max-width: 50%;
      font-size: 2.3426048vw;
      font-weight: 300; }
      @media screen and (max-width: 800px) {
        .split .image-overlay h2 {
          max-width: 75%;
          font-size: 8.43337728vw; } }
    .split .image-overlay p {
      position: absolute;
      bottom: 6%;
      left: 50%;
      z-index: 2;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      font-family: "messapia", sans-serif;
      font-size: 0.732064vw;
      text-transform: uppercase;
      letter-spacing: .2em; }
      @media screen and (max-width: 800px) {
        .split .image-overlay p {
          font-size: 2.196192vw; } }
    .split .image-overlay:before {
      content: '';
      position: absolute;
      z-index: -1;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.0958807)), to(#000000));
      background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.0958807) 0%, #000000 100%); }

.prow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }
  .prow .project {
    width: 50%; }
    @media screen and (max-width: 800px) {
      .prow .project {
        width: 100%; } }
    .prow .project--full {
      width: 100%; }
      @media screen and (max-width: 800px) {
        .prow .project--full {
          padding: 10% !important; } }
  @media screen and (max-width: 800px) {
    .prow {
      display: none; }
      .prow:first-child {
        display: block; } }

.article {
  color: #ffffff;
  position: relative; }
  .article .header--project {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100vh; }
    .article .header--project .text__track {
      opacity: 0; }
    .has-contact .article .header--project {
      opacity: 0; }
  .article .project-title {
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3; }
    .article .project-title .project__title {
      position: absolute;
      bottom: 20%;
      left: 50%;
      z-index: 2;
      -webkit-transform: translate3d(-50%, 50px, 0);
              transform: translate3d(-50%, 50px, 0);
      color: #ffffff;
      font-family: "messapia", sans-serif;
      text-transform: uppercase;
      font-weight: 700;
      font-size: 0.732064vw;
      letter-spacing: .25em;
      opacity: 0; }
      @media screen and (max-width: 800px) {
        .article .project-title .project__title {
          font-size: 2.6354304vw; } }
  .article__footer {
    position: relative;
    height: 101vh; }
    .article__footer .bg {
      background-image: -webkit-gradient(linear, left top, left bottom, from(black), color-stop(35%, rgba(0, 0, 0, 0.95)), color-stop(50%, rgba(0, 0, 0, 0.8)), color-stop(75%, rgba(0, 0, 0, 0.4)), color-stop(92%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
      background-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.95) 35%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0.1) 92%, rgba(0, 0, 0, 0));
      display: block;
      width: 100%;
      height: 101vh;
      opacity: 1;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 0; }

.header__background {
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background: #000;
  padding: 50px 80px; }
  @media screen and (max-width: 800px) {
    .header__background {
      padding: 50px 20px 20px; } }
  .header__background.no-header {
    opacity: 0;
    visibility: hidden; }
  .header__background img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
  .header__background:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    z-index: 1; }

.project-layout {
  background: #000;
  position: relative;
  z-index: 2;
  margin-top: 25vh; }
  @media screen and (max-width: 800px) {
    .project-layout {
      margin-top: 5vh; } }
  .project-layout picture {
    display: block;
    width: 100%; }
  .project-layout:before {
    content: '';
    width: 100%;
    height: 51vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, black), color-stop(67.5%, rgba(0, 0, 0, 0.95)), color-stop(75%, rgba(0, 0, 0, 0.7)), color-stop(87.5%, rgba(0, 0, 0, 0.4)), color-stop(96%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(0deg, black 50%, rgba(0, 0, 0, 0.95) 67.5%, rgba(0, 0, 0, 0.7) 75%, rgba(0, 0, 0, 0.4) 87.5%, rgba(0, 0, 0, 0.1) 96%, rgba(0, 0, 0, 0));
    -webkit-transform: translate3d(0, -98%, 0);
            transform: translate3d(0, -98%, 0); }
  .project-layout .project__text {
    padding: 10%;
    font-size: 2.6354304vw;
    text-align: center;
    font-weight: 300; }
    @media screen and (max-width: 800px) {
      .project-layout .project__text {
        font-size: 6.2957504vw; } }
    .project-layout .project__text .text-wrapper {
      max-width: 70%;
      margin: 0 auto; }
      @media screen and (max-width: 800px) {
        .project-layout .project__text .text-wrapper {
          max-width: 100%; } }
  .project-layout .project__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media screen and (max-width: 800px) {
      .project-layout .project__group {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap; } }
    .project-layout .project__group .project__image {
      width: 50%; }
      @media screen and (max-width: 800px) {
        .project-layout .project__group .project__image {
          width: 100%; } }
  @media screen and (max-width: 800px) {
    .project-layout .project__image {
      padding: 15% 5% !important; } }
  .project-layout .project__images {
    position: relative; }
    .project-layout .project__images .project__image {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      opacity: 0; }
      .project-layout .project__images .project__image:first-child {
        position: relative;
        opacity: 1; }
  .project-layout .project .image-container {
    position: relative;
    width: 100%;
    display: block;
    will-change: opacity; }
    .project-layout .project .image-container.is-under {
      opacity: 1;
      -webkit-transform: translate3d(0, 10%, 0);
              transform: translate3d(0, 10%, 0);
      -webkit-transition: opacity .51s ease-out, -webkit-transform .51s ease-out;
      transition: opacity .51s ease-out, -webkit-transform .51s ease-out;
      transition: opacity .51s ease-out, transform .51s ease-out;
      transition: opacity .51s ease-out, transform .51s ease-out, -webkit-transform .51s ease-out; }
      .project-layout .project .image-container.is-under.inview {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0); }
    .project-layout .project .image-container video {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      z-index: 1; }
    .project-layout .project .image-container img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      will-change: opacity, transform;
      z-index: 1; }
  .project-layout .project__image, .project-layout .project__images {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: default; }
    .project-layout .project__image.pd1, .project-layout .project__images.pd1 {
      padding: 1%; }
    .project-layout .project__image.pd2, .project-layout .project__images.pd2 {
      padding: 2%; }
    .project-layout .project__image.pd3, .project-layout .project__images.pd3 {
      padding: 3%; }
    .project-layout .project__image.pd4, .project-layout .project__images.pd4 {
      padding: 4%; }
    .project-layout .project__image.pd5, .project-layout .project__images.pd5 {
      padding: 5%; }
    .project-layout .project__image.pd6, .project-layout .project__images.pd6 {
      padding: 6%; }
    .project-layout .project__image.pd7, .project-layout .project__images.pd7 {
      padding: 7%; }
    .project-layout .project__image.pd8, .project-layout .project__images.pd8 {
      padding: 8%; }
    .project-layout .project__image.pd9, .project-layout .project__images.pd9 {
      padding: 9%; }
    .project-layout .project__image.pd10, .project-layout .project__images.pd10 {
      padding: 10%; }
    .project-layout .project__image.pd11, .project-layout .project__images.pd11 {
      padding: 11%; }
    .project-layout .project__image.pd12, .project-layout .project__images.pd12 {
      padding: 12%; }
    .project-layout .project__image.pd13, .project-layout .project__images.pd13 {
      padding: 13%; }
    .project-layout .project__image.pd14, .project-layout .project__images.pd14 {
      padding: 14%; }
    .project-layout .project__image.pd15, .project-layout .project__images.pd15 {
      padding: 15%; }
    .project-layout .project__image.pd16, .project-layout .project__images.pd16 {
      padding: 16%; }
    .project-layout .project__image.pd17, .project-layout .project__images.pd17 {
      padding: 17%; }
    .project-layout .project__image.pd18, .project-layout .project__images.pd18 {
      padding: 18%; }
    .project-layout .project__image.pd19, .project-layout .project__images.pd19 {
      padding: 19%; }
    .project-layout .project__image.pd20, .project-layout .project__images.pd20 {
      padding: 20%; }
    .project-layout .project__image.pd21, .project-layout .project__images.pd21 {
      padding: 21%; }
    .project-layout .project__image.pd22, .project-layout .project__images.pd22 {
      padding: 22%; }
    .project-layout .project__image.pd23, .project-layout .project__images.pd23 {
      padding: 23%; }
    .project-layout .project__image.pd24, .project-layout .project__images.pd24 {
      padding: 24%; }
    .project-layout .project__image.pd25, .project-layout .project__images.pd25 {
      padding: 25%; }
    .project-layout .project__image.pd26, .project-layout .project__images.pd26 {
      padding: 26%; }
    .project-layout .project__image.pd27, .project-layout .project__images.pd27 {
      padding: 27%; }
    .project-layout .project__image.pd28, .project-layout .project__images.pd28 {
      padding: 28%; }
    .project-layout .project__image.pd29, .project-layout .project__images.pd29 {
      padding: 29%; }
    .project-layout .project__image.pd30, .project-layout .project__images.pd30 {
      padding: 30%; }
    .project-layout .project__image.pd31, .project-layout .project__images.pd31 {
      padding: 31%; }
    .project-layout .project__image.pd32, .project-layout .project__images.pd32 {
      padding: 32%; }
    .project-layout .project__image.pd33, .project-layout .project__images.pd33 {
      padding: 33%; }
    .project-layout .project__image.pd34, .project-layout .project__images.pd34 {
      padding: 34%; }
    .project-layout .project__image.pd35, .project-layout .project__images.pd35 {
      padding: 35%; }
    .project-layout .project__image.pd36, .project-layout .project__images.pd36 {
      padding: 36%; }
    .project-layout .project__image.pd37, .project-layout .project__images.pd37 {
      padding: 37%; }
    .project-layout .project__image.pd38, .project-layout .project__images.pd38 {
      padding: 38%; }
    .project-layout .project__image.pd39, .project-layout .project__images.pd39 {
      padding: 39%; }
    .project-layout .project__image.pd40, .project-layout .project__images.pd40 {
      padding: 40%; }

.contact {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1001;
  pointer-events: auto;
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0); }
  .contact__content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 2.5%;
    text-align: center;
    color: #ffffff;
    z-index: 4; }
    @media screen and (max-width: 800px) {
      .contact__content {
        padding-top: 20%; } }
  .contact__details {
    font-family: "messapia", sans-serif;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    font-size: 0.8784768vw;
    letter-spacing: 0.17em; }
    @media screen and (max-width: 800px) {
      .contact__details {
        font-size: 3.16251648vw;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        padding-left: 5%; } }
    .contact__details h1 {
      font-weight: 700;
      font-size: 0.8784768vw;
      margin: 0 0 .5em;
      -webkit-transform: translate3d(0, -100%, 0);
              transform: translate3d(0, -100%, 0);
      opacity: 0; }
      @media screen and (max-width: 800px) {
        .contact__details h1 {
          font-size: 3.16251648vw; } }
    .contact__details p {
      -webkit-transform: translate3d(0, -100%, 0);
              transform: translate3d(0, -100%, 0);
      opacity: 0; }
    .contact__details a {
      display: inline-block;
      margin-bottom: .5em;
      -webkit-transform: translate3d(0, -100%, 0);
              transform: translate3d(0, -100%, 0);
      opacity: 0; }
      .contact__details a:hover {
        text-decoration: underline;
        -webkit-text-decoration-color: #263B9A;
                text-decoration-color: #263B9A;
        color: #263B9A; }
  .contact__close {
    position: absolute;
    top: 2.5vw;
    right: 5%;
    z-index: 6;
    color: #ffffff;
    overflow: hidden;
    cursor: pointer;
    display: none;
    font-size: 1.464128vw;
    width: 2vw;
    height: 2vw; }
    .has-contact .contact__close {
      display: block; }
    .contact__close .mobi {
      display: block;
      width: 2vw;
      height: 2vw;
      line-height: 1; }
    @media screen and (max-width: 800px) {
      .contact__close {
        width: 5vw;
        height: 5vw;
        line-height: 1;
        top: 7.3vw;
        right: 7%; }
        .contact__close .mobi {
          display: block;
          width: 5vw;
          height: 5vw;
          line-height: 1; } }
    .contact__close .track {
      white-space: nowrap;
      display: block;
      font-style: normal;
      -webkit-transform: translate3d(0, 100%, 0);
              transform: translate3d(0, 100%, 0); }
      .contact__close .track:after {
        content: attr(data-name);
        display: inline-block;
        position: absolute;
        left: 100%;
        top: 0; }
        @media screen and (max-width: 800px) {
          .contact__close .track:after {
            left: 0;
            top: 100%; } }
      @media screen and (max-width: 800px) {
        .contact__close .track {
          display: none; } }
    .has-contact .contact__close .track {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      -webkit-transition: -webkit-transform .3s ease;
      transition: -webkit-transform .3s ease;
      transition: transform .3s ease;
      transition: transform .3s ease, -webkit-transform .3s ease; }
    .contact__close:hover .track {
      -webkit-animation: menu 1s infinite linear;
              animation: menu 1s infinite linear; }
      @media screen and (max-width: 800px) {
        .contact__close:hover .track {
          -webkit-animation: none;
                  animation: none; } }
  .contact .text__track {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
    .contact .text__track a {
      color: #263B9A; }
      .contact .text__track a:hover {
        text-decoration: underline; }
  .contact__background {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(black), color-stop(35%, rgba(0, 0, 0, 0.95)), color-stop(50%, rgba(0, 0, 0, 0.8)), color-stop(75%, rgba(0, 0, 0, 0.4)), color-stop(92%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.95) 35%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0.1) 92%, rgba(0, 0, 0, 0));
    opacity: 1;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); }

@-webkit-keyframes close {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); } }

@keyframes close {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); } }

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  overflow: visible; }
  .overlay:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 200%;
    background-image: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(35%, rgba(0, 0, 0, 0.95)), color-stop(50%, rgba(0, 0, 0, 0.7)), color-stop(75%, rgba(0, 0, 0, 0.4)), color-stop(92%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.95) 35%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0.1) 92%, rgba(0, 0, 0, 0));
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }

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