@import url(https://fonts.googleapis.com/css?family=Lora);
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

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

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

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

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

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

*,
:after,
:before {
    box-sizing: border-box
}

html {
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased
}

body,
html {
    width: 100%;
    height: 100%
}

body {
    font-family: Lora, serif;
    font-size: 1rem;
    background-color: #000000
}

.intro__inner {
    width: 100%;
    margin: 0 auto;
    max-width: 100rem;
    padding-left: 4rem;
    padding-right: 4rem
}

.spinner {
    width: 100px;
    height: 100px;
    background-color: #FFFFFF;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    to {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10010;
    opacity: 1;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-transition: opacity .5s ease-in, visibility 0s linear .5s;
    transition: opacity .5s ease-in, visibility 0s linear .5s
}

.overlay__spinner {
    width: 200px;
    height: 200px;
    background-color: #000000;

    margin: 100px auto;
    width: 80px;
    height: 80px;
    position: relative;
    text-align: center;

    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;

}

.overlay.is-hidden {
    opacity: 0;
    visibility: hidden
}



[class*=overlay--] {
    background-color: rgba(0, 0, 0, .5);
    position: absolute
}

.overlay--controls {
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10001;
    width: 30rem;
    height: 6rem;
    display: none;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: transparent
}

.overlay--controls svg {
    width: 25rem;
    fill: #fff
}

@media screen and (min-width:769px) {
    .overlay--controls {
        display: -webkit-box;
        display: flex
    }
}

.overlay--logo {
    top: 2rem;
    left: 2rem;
    right: 0;
    width: 5rem;
    z-index: 10001;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out
}

.overlay--logo svg {
    width: 2.5rem;
    height: 2.5rem
}

@media screen and (min-width:769px) {
    .overlay--logo {
        width: 10rem
    }
    .overlay--logo svg {
        width: 8rem;
        height: 8rem
    }
}

.overlay--logo,
.overlay--sound {
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

.overlay--logo:hover,
.overlay--sound:hover {
    background-color: #7BE073
}

.overlay--logo:active,
.overlay--sound:active {
    -webkit-transform: scale(.95);
    transform: scale(.95)
}

.overlay--sound {
    bottom: 2rem;
    left: 2rem;
    z-index: 10100;
    height: 5.5rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border: none;
    color: #fff;
    cursor: pointer
}

.overlay--sound svg {
    fill: #fff;
    width: 4rem;
    height: 3rem;
    -webkit-transform: all .1s ease-in-out;
    transform: all .1s ease-in-out
}

.overlay--sound.is-disabled svg {
    opacity: .2;
    -webkit-transform: scale(.9);
    transform: scale(.9)
}

@media screen and (max-width:768px) {
    .overlay--sound {
        display: none
    }
}

.intro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 22, 37, .95);
    z-index: 10005;
    -webkit-transition: opacity 2s ease-in, visibility 0s linear 2s;
    transition: opacity 2s ease-in, visibility 0s linear 2s;
    color: #fff;
    text-align: center;
    font-size: 1em;
    overflow-y: scroll
}

.intro__inner {
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

.intro__heading {
    font-size: 3.6rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    color: #FFFFFF
}

.intro__dek {
    font-size: 2.1em;
    line-height: 1.7;
    margin-bottom: 6rem
}

.intro__icon {
    margin-bottom: 2rem
}

.intro__icon img,
.intro__icon svg {
    pointer-events: none;
    width: 25em;
    height: 15em
}

.intro.is-hidden {
    opacity: 0;
    visibility: hidden
}

@media screen and (max-width:768px) {
    .intro {
        font-size: .8em
    }
}

@media screen and (max-width:320px) {
    .intro {
        font-size: .6em
    }
}

@media screen and (max-width:768px) and (orientation:landscape) {
    .intro .intro__icon img,
    .intro .intro__icon svg {
        width: 20em;
        height: 10em
    }
    .intro .intro__heading {
        margin-bottom: 1rem
    }
    .intro .intro__dek {
        margin-bottom: 2rem
    }
}

.button {
    cursor: pointer;
    border: 0;
    background-color: #7BE073;
    color: #fff;
    padding: 2rem 3rem;
    font-size: 1.6em;
    font-weight: 500;
    border-radius: 2px;
    font-family: Helvetica Neue, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: .05em
}

.button,
button {
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

.button:active,
button:active {
    -webkit-transform: scale(.95);
    transform: scale(.95)
}

.button__inner {
    height: 100%
}

.button__section {
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

.button__section span:first-child {
    margin-right: 2rem
}

.button__section span svg {
    fill: #fff;
    width: 3rem;
    height: 3rem
}

.button__section strong {
    font-weight: 700
}

.spinner {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;

  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear;
}

.dot1, .dot2{
  width: 60%;
  height: 60%;
  display: absolute;
  position: absolute;
  top: 0;
  background-color: #FFFFFF;
  border-radius: 100%;

  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot3, .dot4 {
  width: 30%;
  height: 30%;
  display: absolute;
  position: absolute;
  top: 0;
  background-color: #000000;
  border-radius: 100%;

  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot5, .dot6 {
  width: 15%;
  height: 15%;
  display: absolute;
  position: absolute;
  top: 0;
  background-color: #FFFFFF;
  border-radius: 100%;

  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}
.dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}


.dot3 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.dot6 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }


  .sk-cube-grid {
    width: 40px;
    height: 40px;
    margin: 100px auto;
  }

  .sk-cube-grid .sk-cube {
    width: 33%;
    height: 33%;
    background-color: #FFFFFF;
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
            animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  }
  .sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
  .sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
  .sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s; }
  .sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s; }
  .sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
  .sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
  .sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0s;
            animation-delay: 0s; }
  .sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s; }
  .sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }

  @-webkit-keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
      -webkit-transform: scale3D(1, 1, 1);
              transform: scale3D(1, 1, 1);
    } 35% {
      -webkit-transform: scale3D(0, 0, 1);
              transform: scale3D(0, 0, 1);
    }
  }

  @keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
      -webkit-transform: scale3D(1, 1, 1);
              transform: scale3D(1, 1, 1);
    } 35% {
      -webkit-transform: scale3D(0, 0, 1);
              transform: scale3D(0, 0, 1);
    }
  }
