body {
  overflow: hidden;
}
#landing-page,
#app {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
body.ios #app {
  top: 20px;
  top: constant(safe-area-inset-top);
  top: env(safe-area-inset-top);
}
@media (orientation: portrait) and (min-aspect-ratio: 0.85714286) {
  #landing-page,
  #app {
    height: 42rem;
  }
}
@media (orientation: portrait) and (min-width: 800px) {
  #landing-page,
  #app {
    width: 36rem;
  }
}
#landing-page {
  background: #48acbb;
  text-align: center;
}
#landing-page .logo {
  margin: 3rem;
}
#landing-page h2 {
  text-transform: uppercase;
  color: white;
  font-family: Montserra;
  font-size: 1.6em;
}
#landing-page h2 sup {
  font-size: 0.7em;
  top: -0.4em;
}
@media (orientation: portrait) {
  #landing-page .logo img {
    width: 80%;
  }
  #landing-page .bottom-image {
    position: absolute;
    bottom: 0;
  }
  #landing-page .bottom-image img {
    width: 75%;
    vertical-align: bottom;
    margin-right: 10%;
  }
}
@media (orientation: portrait) and (min-aspect-ratio: 0.6875) {
  #landing-page .bottom-image img {
    width: 50%;
  }
}
@media (orientation: landscape) {
  #landing-page .logo {
    height: 25%;
  }
  #landing-page .logo img {
    height: 100%;
  }
  #landing-page .bottom-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 65%;
  }
  #landing-page .bottom-image img {
    height: 100%;
  }
  #landing-page h2 {
    position: absolute;
    right: 0;
    width: 50%;
    text-align: left;
  }
}
.pt-page-rotateUnfoldRight {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateUnfoldRight 1.2s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateUnfoldRight 1.2s both ease;
  transform-origin: 0% 50%;
  animation: rotateUnfoldRight 1.2s both ease;
}
@-webkit-keyframes rotateUnfoldRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%) rotateY(90deg);
  }
}
@-moz-keyframes rotateUnfoldRight {
  from {
    opacity: 0;
    -moz-transform: translateX(100%) rotateY(90deg);
  }
}
@keyframes rotateUnfoldRight {
  from {
    opacity: 0;
    transform: translateX(100%) rotateY(90deg);
  }
}
.pt-page-moveToLeftFade {
  -webkit-animation: moveToLeftFade 1.2s ease both;
  -moz-animation: moveToLeftFade 1.2s ease both;
  animation: moveToLeftFade 1.2s ease both;
}
@-webkit-keyframes moveToLeftFade {
  to {
    opacity: 0.3;
    -webkit-transform: translateX(-100%);
  }
}
@-moz-keyframes moveToLeftFade {
  to {
    opacity: 0.3;
    -moz-transform: translateX(-100%);
  }
}
@keyframes moveToLeftFade {
  to {
    opacity: 0.3;
    transform: translateX(-100%);
  }
}
.pt-page-delay {
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s;
}
