@charset "UTF-8";
@font-face {
  font-family: "rz-bold";
  src: url(../fonts/rz-bold.eot);
  src: url(../fonts/rz-bold.eot) format("embedded-opentype"), url(../fonts/rz-bold.woff2) format("woff2"), url(../fonts/rz-bold.woff) format("woff");
  font-style: normal;
  font-weight: bold; }

@font-face {
  font-family: "rz-regular";
  src: url(../fonts/rz-regular.eot);
  src: url(../fonts/rz-regular.eot) format("embedded-opentype"), url(../fonts/rz-regular.woff2) format("woff2"), url(../fonts/rz-regular.woff) format("woff");
  font-style: normal;
  font-weight: normal; }

@font-face {
  font-family: "maison-neue-mono";
  src: url(../fonts/maison-neue-mono.eot);
  src: url(../fonts/maison-neue-mono.eot) format("embedded-opentype"), url(../fonts/maison-neue-mono.woff2) format("woff2"), url(../fonts/maison-neue-mono.woff) format("woff");
  font-style: normal;
  font-weight: normal; }

/*!
 * Copyright © 2018, Rezo Zero
 *
 * @file _mixins.scss
 * @author Adrien Scholaert <adrien@rezo-zero.com>
 */
::selection {
  background-color: #101010;
  color: #FFFFFF; }

html,
body {
  background-color: #101010;
  color: #FFFFFF;
  padding: 0;
  margin: 0;
  transition-property: color, background-color;
  transition-duration: 0.55s; }

html {
  font-size: 16px; }

body {
  font-family: "rz-regular", sans-serif;
  font-size: 1rem;
  line-height: 1.625rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; }

* {
  box-sizing: border-box; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "rz-bold", sans-serif; }

a {
  position: relative;
  color: inherit;
  text-decoration: none;
  outline: 0; }
  a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    height: 1px;
    width: 100%;
    background-color: currentColor;
    opacity: 0;
    transition: opacity 0.25s ease-in-out; }
  a:focus::after, a:hover::after {
    outline: 0;
    opacity: 1; }

.half-opacity {
  opacity: 0.5; }

.in-view {
  opacity: 0;
  transform: translateY(40px); }

.big-letter {
  font-family: "rz-regular", sans-serif;
  line-height: 1;
  font-size: 80px; }
  @media (min-width: 576px) {
    .big-letter {
      font-size: calc(9.61538vw + 24.61538px); } }
  @media (min-width: 1200px) {
    .big-letter {
      font-size: 140px; } }

.header {
  text-align: center;
  padding-top: 10px;
  max-width: 99vw; }
  @media (max-width: 575px) {
    .header {
      margin-bottom: 16vh; } }

.over-title {
  font-family: "rz-regular", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  opacity: 0; }
  .over-title span {
    margin-left: 10px; }

.main-title {
  font-family: "rz-regular", sans-serif;
  font-weight: normal;
  margin-top: 17vh;
  margin-bottom: 5vh;
  perspective: 1000px;
  font-size: 64px;
  line-height: 64px; }
  @media (min-width: 576px) {
    .main-title {
      font-size: calc(12.17949vw - 6.15385px); } }
  @media (min-width: 1200px) {
    .main-title {
      font-size: 140px; } }
  @media (min-width: 576px) {
    .main-title {
      line-height: calc(12.17949vw - 6.15385px); } }
  @media (min-width: 1200px) {
    .main-title {
      line-height: 140px; } }
  .main-title span {
    display: block;
    opacity: 0;
    transform: translateY(40px) translateZ(0) rotateX(-10deg); }
    .main-title span:first-child {
      margin-bottom: 23px; }

.listing-item {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  opacity: 0; }
  @media (min-width: 576px) {
    .listing-item {
      height: calc(54vw - 9vw);
      flex-flow: row; } }
  @media (min-width: 576px) {
    .listing-item:nth-child(even) .listing-item__image {
      top: 0;
      right: auto;
      left: 0; }
    .listing-item:first-child {
      height: 54vw; }
      .listing-item:first-child .listing-item__image {
        top: 9vw; }
    .listing-item:last-child {
      height: 54vw;
      padding-bottom: 9vw; }
      .listing-item:last-child::before {
        bottom: calc(50% + 4.5vw + 40px); }
      .listing-item:last-child::after {
        display: none; }
    .listing-item::after, .listing-item::before {
      content: '';
      position: absolute;
      left: 50%;
      width: 1px;
      background-color: #FFFFFF;
      opacity: 0.1; }
    .listing-item::before {
      top: 0;
      bottom: calc(50% + 40px); }
    .listing-item::after {
      top: calc(50% + 40px);
      bottom: 0; } }

.listing-item__title {
  position: relative;
  z-index: 4;
  font-family: "maison-neue-mono", sans-serif;
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.75); }
  @media (min-width: 576px) {
    .listing-item__title {
      padding: 42px 0; } }

.listing-item__image {
  overflow: hidden;
  height: 90vh; }
  @media (min-width: 576px) {
    .listing-item__image {
      position: absolute;
      z-index: 3;
      top: 0;
      right: 0;
      width: 40vw;
      height: 54vw; } }
  .listing-item__image__mask, .listing-item__image__mask-reverse {
    overflow: hidden;
    height: 100%;
    will-change: transform; }
    @media (min-width: 576px) {
      .listing-item__image__mask, .listing-item__image__mask-reverse {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; } }
  .listing-item__image__mask {
    transform: translateY(-100%) translateZ(0); }
  .listing-item__image__mask-reverse {
    transform: translateY(100.1%) translateZ(0); }
  .listing-item__image picture,
  .listing-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .listing-item__image img {
    opacity: 0;
    will-change: opacity, transform; }

.footer {
  background-color: #FFFFFF;
  color: #101010;
  padding: 80px 32px 100px;
  display: flex;
  flex-flow: column;
  align-items: center; }
  @media (min-width: 992px) {
    .footer {
      padding: 135px 32px 115px; } }
  .footer p {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0; }
  @media (max-width: 991px) {
    .footer .big-letter {
      text-align: center;
      margin-bottom: 20px; } }
  @media (min-width: 992px) {
    .footer .big-letter {
      position: absolute;
      left: -25vw;
      top: -15px; } }
  .footer__wrapper-center {
    text-align: center;
    margin: 0 auto;
    max-width: 689px;
    display: flex;
    flex-flow: column;
    align-items: center; }
  .footer__main-description {
    text-align: center;
    margin: 0 auto;
    font-family: "rz-regular", sans-serif;
    font-size: 1.5rem;
    line-height: 2rem; }
    .footer__main-description strong {
      font-family: "rz-bold", sans-serif;
      font-weight: normal; }
  .footer__credits {
    margin-top: 55px; }
  .footer__info-container {
    position: relative;
    width: 100%;
    max-width: 637px;
    margin-top: 45px; }
    @media (min-width: 992px) {
      .footer__info-container {
        margin-top: 125px;
        margin-left: 220px; } }
  @media (min-width: 992px) {
    .footer__info {
      width: 100%; } }
  @media (max-width: 991px) {
    .footer__column {
      text-align: center;
      margin-bottom: 35px; } }
  .footer__line {
    display: flex;
    flex-flow: column;
    align-items: center;
    max-width: 637px; }
    @media (min-width: 992px) {
      .footer__line {
        flex-flow: row; } }
    @media (min-width: 992px) {
      .footer__line:not(:last-child) {
        margin-bottom: 39px; } }
  .footer__label {
    font-family: "maison-neue-mono", sans-serif;
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 2rem;
    margin-bottom: 0.5rem; }
  .footer .socials a:not(:last-child) {
    margin-right: 1.5rem; }

.cursor {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  height: 120px;
  width: 120px;
  margin-left: -60px;
  margin-top: -60px;
  transform-origin: 50% 50%;
  border-radius: 50%;
  background-color: #FFFFFF;
  mix-blend-mode: difference;
  pointer-events: none;
  transform: scale(0); }
