
body {
  margin: 0;
  overflow: hidden;
}
@media (min-width: 768px) {

  .stage .background {
    background-size: 110%;
    clip-path: circle(60% at 50% 40%);
  }

  .stage .background .image {
    transform: scale(1.1);
  }

}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transition: .5s;
  clip-path: circle(50% at 50% 40%);
}

.background video {
  width: auto;
  height: 105vh;
  margin-top: -2.5vh;
}

.background .image {
  background-image: url(../img/bkg.jpg);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -4;
  transform: scale(1);
  transition: .5s;
}

.background .screen {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  /*background-image: linear-gradient(rgba(255, 165, 0, 0.3), rgba(35, 71, 115, 0.3));*/
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  text-align: center;
  display: table;
}

.content .vcenter {
  display: table-cell;
  vertical-align: middle;
  padding-bottom: 10vh;
}

.portrait .content .vcenter {
  padding-bottom: 20vh;
}

.content .vcenter .inner {
  width: 600px;
  margin: 0 auto;
  max-width: calc(100vw - 10vw);
}

.logo {

}

.logo img {
  max-width: 600px;
  width: 80vw;
}

.text {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  margin: 5vh 0 4vh;
}
.text p {
  margin: 0;
  font-size: 35px;
  line-height: 40px;
}

.text p:nth-child(1) {
  font-size: 35px;
}

.text p:nth-child(2) {
  font-size: 25px;
}

.details {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
}

.details p {
  margin: 15px 0;
  font-size: 18px;
  line-height: 22px;
}

.details p:first-child {
  margin-top: 0;
}

.details p:last-child {
  margin-bottom: 0;
}

.details p a {
  color: inherit;
  text-decoration: none;
}

@-webkit-keyframes full-rotate-inv {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(-360deg);}
}

.orbit {
  left: calc(50% - 42.5vw);
  top: calc(40% - 42.5vw);
  width: 85vw;
  height: 85vw;
  position: absolute;
  transition: .5s;
}

.orbit .cloud {
  border: 7vh solid rgba(255, 255, 255, 0.3);
  height: calc(97% - 14vh);
  width: calc(100% - 14vh);
  top: 2.5%;
  position: absolute;
  border-radius: 100%;
  -webkit-transition-property: -webkit-transform;
  -webkit-animation-name: full-rotate-inv;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -webkit-transition-duration: 10s;
  -webkit-animation-duration: 10s;
}

.orbit .cloud.one {
  -webkit-transition-duration: 7s;
  -webkit-animation-duration: 7s;
  border: 6vh solid rgba(255, 255, 255, 1);
  height: calc(98% - 12vh);
  width: calc(100% - 12vh);

}

.orbit .cloud.two {
  -webkit-animation-delay: 1s;
}

.orbit .cloud.three {
  -webkit-animation-delay: 2s;
}

.orbit .cloud.four {
  -webkit-animation-delay: 3s;
}

.portrait .orbit {
  left: calc(50% - 43.5vh);
  top: calc(40% - 43.5vh);
  width: 87vh;
  height: 87vh;
}

@media (min-width: 768px) {

  .stage .orbit {
    left: calc(50% - 50vw);
    top: calc(40% - 50vw);
    width: 100vw;
    height: 100vw;
  }

}

@media (max-width: 767px) {
  .text p:nth-child(1) {
    font-size: 28px;
  }

  .text p:nth-child(2) {
    font-size: 22px;
  }

  .text {
    margin: 5vh 0;
  }

  .details p {
    margin: 5px 0;
    font-size: 18px;
    line-height: 22px;
  }

}