@charset "UTF-8";
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                      RESET
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  /*─ Debug font size on iphone when landscape orientation ─*/
  -webkit-font-smoothing: subpixel-antialiased;
  /*─ Debug safari font weight when fixed element on the page ─*/
  -webkit-font-smoothing: antialiased;
  /*─ idem : Debug safari font weight when fixed element on the page ─*/
}

html, body, nav, header, footer, div, span,
h1, h2, h3, p,
a, img,
ul, li,
table, form, label, input, textarea, select, button {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

input, textarea, select, button {
  display: block;
  box-sizing: border-box;
  border-radius: 0;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

input[type=submit]:hover,
button:hover {
  cursor: pointer;
}

input::-ms-clear {
  display: none;
  /*─ IE11 → remove cross to close ─*/
}

textarea {
  overflow: auto;
  /*─ Hide scroll bar on IE ─*/
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
}

img, video, svg, picture {
  display: block;
}

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

svg {
  width: 100%;
  height: 100%;
}

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

body {
  background: white;
  color: white;
  height: 600vh;
  position: relative;
  font-family: Helvetica;
}
body.no-scroll {
  overflow: hidden;
}

#c {
  width: 100%;
  height: 100%;
  position: fixed;
  display: block;
  z-index: -1;
  top: 0;
  left: 0;
}

@keyframes logoFadeIn {
  0% {
    transform: translate3d(0, -1000px, 0);
  }
  80% {
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.end {
  font-size: 34px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(0, 100%, 0);
}
.end .rip {
  font-size: 100px;
  text-align: center;
  font-weight: 700;
}
.end .rip svg {
  width: 70%;
  margin: auto;
  height: auto;
}
.end .rip path {
  fill: white;
}
.end audio {
  visibility: hidden;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.end__content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 24px 32px;
}

.credits {
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}
.credits p:not(:last-child) {
  margin-bottom: 24px;
}
.credits a {
  display: inline-block;
  font-weight: 700;
}
.credits a:hover {
  text-decoration: underline;
}

.overlay {
  opacity: 0;
  background: black;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.easter-indication {
  position: relative;
}
.easter-indication input {
  position: absolute;
  width: 100%;
  background: transparent;
}

.loader-wp {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  opacity: 1;
  transition: opacity 3s ease-out;
  display: flex;
}
.loader-wp .sliders {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.loader-wp .sliders .slider {
  content: "";
  position: absolute;
  width: 300%;
  left: 0;
  height: 100%;
}
.loader-wp .sliders .slider--top {
  top: 0;
  background: black;
  transform: translate(-50%, -50%);
  transform-origin: bottom center;
}
.loader-wp .sliders .slider--bottom {
  bottom: 0;
  background: black;
  transform: translate(-50%, 50%);
  transform-origin: top center;
}
.loader-wp .logo {
  filter: invert(1);
  display: block;
  margin: auto;
  align-items: center;
  justify-content: center;
  transition: transform ease-in 1000ms 0ms, opacity ease-in 1000ms 0ms;
  width: calc(400 * 100vw / 1792);
}
.loader-wp.loaded {
  pointer-events: none;
}
.loader-wp.loaded .logo {
  transform: translate3d(0, 10%, 0);
  opacity: 0;
}

.q-pipi {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
}
.q-pipi h1 {
  display: flex;
  font-size: 20vw;
  justify-content: center;
  margin-bottom: 2vw;
}
.q-pipi h1 img {
  width: 1em;
  object-fit: contain;
}

.q-pipi-wave {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
}

.ocean {
  height: 5%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #C9B684;
}

.wave {
  background: url("/wave.f2b2be69.svg") repeat-x;
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  top: -175px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes swell {
  0%, 100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}

/*# sourceMappingURL=/styles.962e011e.css.map */