@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow&display=swap');

* { box-sizing: border-box }

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  background: #000;
  color: #fff;
  font-family: 'Archivo Narrow', sans-serif;
}

h1 {
  margin-top: 5rem;
  font-weight: normal;
}

a {
  color: #fff;
}

.headline h1 {
  margin: 0 3rem 0 2rem;
  font-size: 5vw;
  font-weight: normal;
  max-width: 70rem;
  text-align: left;
  line-height: 1;
}

.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  transform: translateY(0);
  transition: .3s transform;
}

.--trailer-active .header-container {
  transform: translateY(-100vh);
}

.header {
  background: #000;
  display: flex;
  border-bottom: 1px solid #fff;
  text-transform: uppercase;
  font-size: 1.625rem;
  padding: 0.6rem 1rem 0.4rem;
  margin: 0 auto;
  width: 100%;
  max-width: 151rem;
  transition: 0.2s border-bottom-color;
}

.--trailer-active .header {
  border-bottom-color: #000;
  transition: none;
}

.header > div {
  width: 100%;
}

.logo {
  text-align: center;
}

.logo img {
  height: 2rem;
  margin-bottom: -3px;
}

.language {
  display: inline-block;
  padding-top: 0.25rem;
  font-size: 1rem;
  vertical-align: top;
}

.language span {
  margin: 0 .25rem;
  cursor: pointer;
}

.language span.active {
  text-decoration: underline;
}

.navigation a {
  margin: 0 0.5rem;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

.navigation a.active {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle img {
  margin-bottom: .2rem;
}

.menu-toggle img.close,
.menu-open .menu-toggle img.open {
  display: none;
}

.menu-open .menu-toggle img.close {
  display: inline;
}

.menu {
  position: fixed;
  top: 3rem;
  left: 0;
  width: 100%;
  background: #000;
  border-bottom: 1px solid #fff;
  padding: 2rem 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100vh);
  transition: 0.2s ease-in-out transform, 0.2s opacity;
}

.menu a {
  display: block;
  padding: 0 1rem;
  font-size: 3.45rem;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

.main {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  max-width: 150rem;
  overflow: hidden;
}

.main .fr,
.navigation .fr,
.menu .fr {
  display: none;
}

.main.fr .fr,
.navigation.fr .fr,
.menu.fr .fr {
  display: inline;
}

.main.fr .en,
.navigation.fr .en,
.menu.fr .en {
  display: none;
}

.project {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
}

.project-background img,
.project-background video {
  width: 100%;
  height: 100%;
  user-select: none;
  object-fit: cover;
  overflow: hidden;
}

.headline {
  text-align: center;
  font-size: 3rem;
  letter-spacing: -.2px;
  z-index: 1200;
  margin: 1rem;
}

.arrow-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  width: 2rem;
  margin-left: -1rem;
  cursor: pointer;
}

.info {
  position: absolute;
  left: 2vw;
  bottom: 2vw;
  width: 16rem;
  min-height: 1rem;
  padding: .75rem .75rem 3.75rem;
  background:rgba(0,0,0,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #000;
  font-size: 1.2rem;
  transition: .3s all ease-in-out;
}

.info.active {
  width: 22rem;
  min-height: calc(100% - 5.5rem - 2vw);
  max-height: calc(100% - 5.5rem - 2vw);
  max-width: calc(100vw - 2rem);
}

.commercial .info {
  background: rgba(255,255,255,.9);
  color: #000;
}

.trailer {
  display: none;
}

.trailer.active {
  position: absolute;
  z-index: 1500;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: bgblur 1s forwards;
}

@keyframes bgblur {
  from {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  to {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
}

@supports (backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px)) {
  .info,
  .trailer.active {
    background:rgba(0,0,0,.8);
  }

  .commercial .info {
    background: rgba(255,255,255,.75);
  }
}

.video {
  position: relative;
  width: 100%;
  padding-bottom: 42.857%;
  height: 0;
  overflow: hidden;
}

.video iframe,
.video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info-inner {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.info.active .info-inner {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem 1rem 5rem;
}

.info h2,
.info h3 {
  font-weight: normal;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.05em;
}

.info h2 {
  text-transform: uppercase;
  font-size: 1.75rem;
  margin-right: 1rem;
  margin-bottom: .5rem;
  transition: .2s all;
}

.info.active h2 {
  margin-right: 2rem;
  font-size: 2.75rem;
  line-height: 1;
  letter-spacing: -5%;
}

.info h3 {
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  transition: .2s all;
}

.info.active h3 {
  font-size: 1rem;
}

.info h4 {
  margin: 1rem 0 0;
  font-size: .75rem;
  font-weight: normal;
  text-transform: uppercase;
}

.info h4:first-child {
  margin-top: 0;
}

.info p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1;
}

.info .extended p {
  font-size: 1.625rem;
  line-height: 1.07;
  display: none;
}

.info.active .extended p {
  display: block;
}

.info em {
  font-style: normal;
  font-size: .875rem;
}

.info .extended em {
  font-style: italic;
  font-size: 1em;
}

.info .read-more {
  text-decoration: underline;
  cursor: pointer;
  margin-top: 2rem;
}

.info .extended .close-button,
.info.active .read-more {
  display: none;
}

.info.active .close-button {
  display: block;
}

.info.active .credits {
  margin-top: 3rem;
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 2000;
}

.info .imdb-link {
  display: inline-block;
  position: absolute;
  bottom: 4rem;
  right: 1rem;
}

.info:not(.active) .imdb-link .en,
.info:not(.active) .imdb-link .fr {
  display: none;
}

.info.active .imdb-link {
  position: static;
  display: block;
  margin-top: 2rem;
}

.info .button {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  width: 100%;
  background: #fff;
  color: #000;
  text-transform: uppercase;
  margin: .75rem -.75rem -.75rem -.75rem;
  padding: .5rem .75rem;
  cursor: pointer;
  z-index: 1000;
}

.commercial .info .button {
  background: #000;
  color: #fff;
}

.info .button img {
  float: right;
  margin-top: 0.25rem;
  mix-blend-mode: difference;
}

.about {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.about-inner {
  margin-left: 6%;
  max-width: 50rem;
}

.services-inner {
  margin-left: 6%;
  margin-right: 6%;
  overflow-y: scroll;
  height: 100%;
  margin-top: 150px;
  background-color: rgba(0,0,0,0.6);
  padding: 10px;
  border-radius: 5px;
}

.about h1 {
  text-transform: uppercase;
  font-size: 3.5rem;
  margin: 0 0 1.5rem;
}

.about p {
  font-size: 1.5rem;
  line-height: 1.08;
}

.about .contact {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}

.about .contact p {
  font-size: 1.25rem;
  margin: 0;
  line-height: 1;
}

.u-right {
  text-align: right;
}

@media (max-width: 1100px) {
  .headline h1 {
    font-size: 3.5rem;
  }
  .navigation a {
    display: none;
  }

  .menu-toggle {
    display: inline;
  }

  .menu-open .menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .info {
    left: 1rem;
    bottom: 1rem;
  }

  .info h2 {
    font-size: 1.625rem;
  }

  .info h3 {
    font-size: 1rem;
  }

  .info h4 {
    font-size: .625rem;
  }

  .info p {
    font-size: 1.125rem;
  }

  .info.active h2 {
    margin-right: 5rem;
    font-size: 2.25rem;
  }

  .info.active h3 {
    font-size: 1rem;
  }

  .info .extended p {
    font-size: 1.5rem;
    line-height: 1.08;
  }

  .info em {
    font-size: .75rem;
  }

  .about {
    display: block;
  }
  
  .about-inner {
    margin: 0 1rem;
    max-width: 18rem;
  }
  
  .about h1 {
    margin: 4.5rem 0 1.5rem;
    text-transform: uppercase;
    font-size: 3.5rem;
    line-height: 1;
  }
  
  .about p {
    font-size: 1.5rem;
    line-height: 1.08;
  }
  
  .about .contact {
    right: auto;
    left: 1rem;
  }
  
  .about .contact p {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1;
  }
}

@media (max-height: 600px) {
  .about {
    overflow-y: scroll;
  }

  .about .contact {
    position: static;
    margin: 0 0 3rem 1rem;
  }
}

/*ops*/
body, .onepage-wrapper, html {
  display: block;
  position: static;
  padding: 0;
  width: 100%;
  height: 100%;
}

.onepage-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  padding: 0;
  -webkit-transform-style: preserve-3d;
}

.onepage-wrapper .ops-section {
  width: 100%;
  height: 100%;
  position: relative;
}

.disabled-onepage-scroll .wrapper {
  overflow: auto;
}

.disabled-onepage-scroll .onepage-wrapper .ops-section {
  position: relative !important;
  top: auto !important;
}

.disabled-onepage-scroll .onepage-wrapper {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  transform: none !important;
  -ms-transform: none !important;
  min-height: 100%;
}

.disabled-onepage-scroll .onepage-pagination {
  display: none;
}

body.disabled-onepage-scroll, .disabled-onepage-scroll .onepage-wrapper, html {
  position: inherit;
}
/*
     FILE ARCHIVED ON 01:46:29 Aug 09, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 14:28:43 Nov 12, 2024.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.492
  exclusion.robots: 0.017
  exclusion.robots.policy: 0.008
  esindex: 0.009
  cdx.remote: 44.979
  LoadShardBlock: 262.234 (3)
  PetaboxLoader3.datanode: 113.914 (5)
  PetaboxLoader3.resolve: 296.874 (2)
  load_resource: 207.696
  loaddict: 68.792
*/