/* Media Queries
--------------------------------------------------------- */
/* HOVER
---------------------------------------------------------------------------------------------------- */
/* MISC
---------------------------------------------------------------------------------------------------- */
.visually-hidden {
  overflow: hidden !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0); }

/* RESET
---------------------------------------------------------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
  border: 0;
  outline: 0; }

html {
  font-size: 62.5%; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block; }

ul,
ol {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none; }

a,
input,
button,
select,
textarea {
  appearance: none;
  text-decoration: none;
  outline: none; }

a {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  font-size: 100%;
  color: inherit;
  background: transparent;
  outline: none; }

button {
  padding: 0;
  cursor: pointer; }

ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9; }

mark {
  font-style: italic;
  font-weight: 700;
  color: #000;
  background-color: #ff9; }

del {
  text-decoration: line-through; }

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

hr {
  display: block;
  height: 1px;
  padding: 0;
  border: none; }

input,
select {
  vertical-align: middle; }

*,
*::after,
*::before,
*:focus {
  box-sizing: border-box;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -khtml-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important; }

:focus {
  outline: none !important; }

:root {
  font-size: 14px; }

body {
  margin: 0;
  background-image: url("/src/img/bg-img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: url("/src/img/cursor.png"), pointer !important;
  overflow: hidden; }
  @media screen and (max-width: 767px) {
    body {
      background-image: none;
      background-image: radial-gradient(45% 85%, #312948 45%, #1B1726 100%, #1B1726 100%);
      background-size: contain;
      height: 100vh; } }

body.click {
  cursor: url("/src/img/cursor2.png"), pointer !important; }

/* Page Loader */
.js .loading::before,
.js .loading::after {
  content: '';
  position: fixed;
  z-index: 1000; }

.js .loading::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.js .loading::after {
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  opacity: 0.4;
  background: var(--color-link);
  animation: loaderAnim 0.7s linear infinite alternate forwards; }

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1); } }

a {
  text-decoration: none;
  color: var(--color-link);
  outline: none;
  transition: color .2s; }

a:hover,
a:focus {
  color: var(--color-link-hover);
  outline: none; }

.message {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 1rem;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .message {
      display: none; } }

.frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 3rem 5vw;
  text-align: center;
  z-index: 1000;
  pointer-events: none;
  display: grid;
  grid-template-rows: 1fr auto auto;
  grid-template-areas: 'title' 'demos' 'links'; }
  .frame > * {
    pointer-events: all; }

.frame__title {
  margin: 0; }

.frame__links {
  display: flex;
  flex-direction: column; }
  .frame__links a {
    display: inline-block;
    text-align: right; }
  @media screen and (max-width: 53em) {
    .frame__links {
      flex-direction: row;
      justify-content: center; } }

.frame__links a:not(:last-child) {
  margin-bottom: 1rem; }
  @media screen and (max-width: 53em) {
    .frame__links a:not(:last-child) {
      margin-right: 1rem;
      margin-bottom: 0; } }

.frame__demos {
  margin: 1rem 0; }
  @media screen and (max-width: 53em) {
    .frame__demos a:not(:last-child) {
      display: inline-block;
      margin-right: 1rem; } }

.frame__demo--current,
.frame__demo--current:hover {
  color: var(--color-text); }

.content {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: calc(100vh - 13rem);
  position: relative;
  justify-content: flex-start;
  align-items: center; }

.frame__tagline {
  display: block;
  position: relative;
  margin: 0;
  line-height: 2;
  color: var(--color-link); }
  .frame__tagline a:hover {
    color: var(--color-link-hover); }

@media screen and (min-width: 53em) {
  .message {
    display: none; }
  .frame {
    position: fixed;
    text-align: left;
    z-index: 100;
    top: 0;
    left: 0;
    display: grid;
    align-content: space-between;
    width: 100%;
    max-width: none;
    height: 100vh;
    padding: 3rem;
    pointer-events: none;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto auto;
    grid-template-areas: 'title demos' '... ...' '... links'; }
  .frame a {
    pointer-events: auto; }
  .content {
    height: 100vh;
    justify-content: center; } }

.logo {
  position: absolute;
  top: 45px;
  left: 45px;
  transition: opacity 0.4s ease-in-out; }
  @media screen and (max-width: 767px) {
    .logo {
      top: 25px;
      left: 25px; } }

.logo:hover {
  position: absolute;
  opacity: 0.5; }

.loris {
  position: absolute;
  right: 35px;
  top: 30px; }
  .loris img {
    width: 25px; }
  @media screen and (max-width: 767px) {
    .loris {
      right: 20px;
      top: 18px; } }

.credit {
  position: absolute;
  bottom: 35px;
  right: 35px;
  color: #9E97B1;
  font-size: 10px;
  font-family: arial;
  font-weight: normal; }
  .credit a {
    font-weight: bold;
    color: white; }
  @media screen and (max-width: 767px) {
    .credit {
      bottom: 22px;
      right: 22px; } }

.btn-old {
  position: absolute;
  bottom: 18%;
  width: 155px;
  height: 140px;
  left: 50%;
  background-image: url("/src/img/btn.svg");
  background-size: cover;
  animation: MoveRealizationUpAndDown 5s infinite ease; }

.btn {
  position: absolute;
  bottom: 24%;
  left: 50%;
  border: 1px solid white;
  padding: 18px 35px;
  border-radius: 10px;
  color: white;
  transform: perspective(55cm) rotateX(-13deg) rotateY(52deg) translateX(-60%);
  backface-visibility: hidden;
  box-shadow: 0 2px 20px 0 rgba(255, 255, 255, 0.12);
  animation: MoveRealizationUpAndDown 5s infinite ease;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease; }
  @media screen and (max-width: 767px) {
    .btn {
      padding: 15px 15px;
      transform: perspective(55cm) rotateX(-13deg) rotateY(52deg) translateX(-75%);
      animation: MoveRealizationUpAndDownMobile 5s infinite ease; } }

.btn:hover {
  background-color: white;
  color: #211C31;
  box-shadow: 0 2px 25px 0 rgba(255, 255, 255, 0.3); }

@keyframes MoveRealizationUpAndDown {
  0% {
    transform: perspective(55cm) rotateX(-13deg) rotateY(52deg) translateX(-60%) translate3D(0, 0, 0); }
  50% {
    transform: perspective(55cm) rotateX(-13deg) rotateY(52deg) translateX(-60%) translate3D(0, 10px, 0); }
  100% {
    transform: perspective(55cm) rotateX(-13deg) rotateY(52deg) translateX(-60%) translate3D(0, 0, 0); } }

@keyframes MoveRealizationUpAndDownMobile {
  0% {
    transform: perspective(55cm) rotateX(-13deg) rotateY(52deg) translateX(-75%) translate3D(0, 0, 0); }
  50% {
    transform: perspective(55cm) rotateX(-13deg) rotateY(52deg) translateX(-75%) translate3D(0, 10px, 0); }
  100% {
    transform: perspective(55cm) rotateX(-13deg) rotateY(52deg) translateX(-75%) translate3D(0, 0, 0); } }

.bubble1 {
  position: absolute;
  z-index: 2;
  top: 110vh;
  left: 5%;
  animation: bubble-one 12s infinite ease-out; }

@keyframes bubble-one {
  100% {
    transform: translate(-50px, -130vh); } }

.bubble2 {
  position: absolute;
  z-index: 2;
  top: 110vh;
  left: 15%;
  animation: bubble-two 12s infinite ease-out 4s; }
  @media screen and (max-width: 767px) {
    .bubble2 {
      width: 30%; } }

@keyframes bubble-two {
  100% {
    transform: translate(100px, -150vh); } }

.bubble3 {
  position: absolute;
  z-index: 2;
  top: 110vh;
  left: 75%;
  animation: bubble-three 12s infinite ease-out 6s; }
  @media screen and (max-width: 767px) {
    .bubble3 {
      width: 40%; } }

@keyframes bubble-three {
  100% {
    transform: translate(-100px, -145vh); } }

.bubble4 {
  position: absolute;
  z-index: 2;
  top: 110vh;
  left: 35%;
  animation: bubble-four 5s infinite ease-out; }

@keyframes bubble-four {
  100% {
    transform: translate(-50px, -140vh); } }

.bubble5 {
  position: absolute;
  z-index: 2;
  top: 110vh;
  left: 55%;
  animation: bubble-five 8s infinite ease-out 2s; }

@keyframes bubble-five {
  100% {
    transform: translate(50px, -120vh); } }

.bubble6 {
  position: absolute;
  top: 110vh;
  left: 80%;
  animation: bubble-sixe 12s infinite ease-out; }

@keyframes bubble-sixe {
  100% {
    transform: translate(-50px, -140vh); } }

.frame-load {
  position: fixed;
  z-index: 999999;
  top: -300vh;
  left: 0;
  width: 400vw;
  height: 400vh;
  background-color: #1A1528;
  transform: rotate(-15deg) translate(-50%, 0);
  transition: transform 3s ease-out 1s; }
  .frame-load.appear {
    transform: rotate(-3deg) translate(-50%, -120%); }

/* MAIN
--------------------------------------------------------- */
html {
  font-size: 62.5%; }

body {
  font-family: 'termina', sans-serif;
  font-weight: 600; }

#stage {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100vh; }

/* TYPOGRAPHY
---------------------------------------------------------------------------------------------------- */

