* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
    position: relative;
}

body {
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
/*#sky {
    position: absolute;
    z-index: 1;
    background: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.3, #001729), to(#00243A));
}*/

:before, :after {
  content: '';
  display: block;
  box-sizing: border-box;
  position: absolute;
}

*{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: -webkit-focus-ring-color none;
}

.hide {
  display: none;}
  
ul,
ol {
  list-style-type: none}

.pt-trigger {
  border: 2px solid rgba(255, 255, 255, 0.06);
  font-size: 16px;
  font-weight: 700;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  top: 320px;
  right: 30px;
  border-radius: 50%;
  -webkit-appearance: none;
  line-height: 40px;
  margin: 0;
  background: rgba(202, 202, 202, 0.18);
  position: absolute;
  z-index: 4;
}

.pt-wrapper {
  width: 100%;
  height: 100%;
  -webkit-perspective: 1200px;
-moz-perspective: 1200px;
perspective: 1200px;
  z-index: 2;
  position: relative;
}

.pt-page {
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  overflow: hidden;
  visibility: hidden;
  xwidth: 100%;
  xheight: 100%;
  position: absolute;
}

.pt-page-current, .no-js .pt-page {
  visibility: visible;
  z-index: 2;
}

.pt-page-1 {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;

}

.pt-page-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  
}

/* ----- SVG Icons ----- */
.arrow-right {
  height: 100%;
  fill: #FFFFFF;
  position: relative;
  width: 100%;
  padding: 6px;
  margin-left: 1px;
  z-index: 5;
}


.arrow-left{
  fill: #838383;
  width: 30px;
  height: 45px;
}
/* Animation 3 */
.animated-3 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s; 
}

.animated-3 {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;  

  -webkit-animation-iteration-count:infinite;
     -moz-animation-iteration-count:infinite;
      -ms-animation-iteration-count:infinite;
       -o-animation-iteration-count:infinite;
          animation-iteration-count:infinite; 
}

@-webkit-keyframes pulse-3 {
  0% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

@keyframes pulse-3 {
  0% {
    -webkit-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.pulse-3 {
  -webkit-animation-name: pulse-3;
          animation-name: pulse-3;
}

/* Shake Animation */
.animated-4 {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;

  -webkit-animation-iteration-count:infinite;
     -moz-animation-iteration-count:infinite;
      -ms-animation-iteration-count:infinite;
       -o-animation-iteration-count:infinite;
          animation-iteration-count:infinite; 
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

.block {
margin-top: 150px;
}

h1,
h2,
h3,
h4 {
  text-align: center;
  text-transform: uppercase;
  font-family: sans-serif;
  color: #3A3A3A;
}

h1 {
  font-size: 2em;
}
h2 {

}
h3 {

}
h4 {

}
p {
  text-align: center;
  color: #3A3A3A;
}

/* Mobile */
@media only screen and (max-width: 768px) { 
  .block {
    margin-top: 100px;
  }
  h1,
  h2,
  h3,
  h4 {
    text-align: center;
    text-transform: uppercase;
    font-family: sans-serif;
  }

  h1 {
    font-size: 20px;
    color: #3A3A3A;
    font-weight: 600;
  }
  h2 {
font-size: 18px;
font-weight: 500;

  }
  h3 {

  }
  h4 {

  }
  p {
    text-align: center;
  }
}


.sky {
  height: 100%;
  width: 100%;
  /*background: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.3, #001729), to(#00243A));*/
  background: rgba(0, 14, 43, 0.79);
  overflow: hidden;
  z-index: -4;
}

/* =================================
   Moon
   ================================= */
.moon-wrap  {
  display: block;
  height: 500px;
  width: 500px;
  margin: 0 auto;
  z-index: 1;
  top: 50px;
  position: relative;
}

.moon {
  border-radius: 50%;
  background: #D5D5D5;
  min-width: 500px;
  min-height: 500px;
  position: absolute;
}

/* Skyline Layer */
.skyline {
}

#buildings-small {
  background-image: url('../img/buildings-small.png');
  background-position: center;
  height:100px;
  position: absolute;
  z-index: 3;
  bottom: -10px;
  width: 100%;
  background-size: contain;
  background-repeat: repeat;
}

#empire-state {
  background-image: url('../img/empire-state.png');
  background-position: center;
  bottom: 0px;
  height: 320px;
  width: 250px;
  background-size: contain;
  background-repeat:no-repeat;
  position: absolute;
  z-index: 3;
  left: -40px;
}
#tower {
  background-image: url('../img/tower.png');
  background-position: center;
  width: 250px;
  background-repeat:no-repeat;
  background-size: contain;
  left: 630px;
  height: 400px;
  bottom: 120px;
  z-index: 3;
  position: relative;
}



/* Mobile */
@media only screen and (max-width: 768px) {
  .moon-wrap  {
    display: block;
    height: 270px;
    width: 270px;
    position: relative;
    margin: 0 auto;
    z-index: 1;
  }

  .moon {
    border-radius: 50%;
    background: #D5D5D5;
    min-height: 270px;
    min-width: 270px;
    margin: 0 auto;
    position: absolute;
  }
  .star {
    margin: 10px;
    position: relative;
  }
  .skyline {
    position: absolute;
    width: 100%;
    height: 400px;
    bottom: 0;
  }

 /* #skyline-grey {
    background-position: center;
    height:200px;
    background-repeat:no-repeat;
    position: absolute;
    z-index: 3;
    bottom: 0px;
    width: 100%;
    background-size: cover;
    background-image: url('../img/skyline-grey.png');
  }*/

  #buildings-small {
    background-image: url('../img/buildings-small.png');
    background-position: center;
    height:65px;
    position: absolute;
    z-index: 3;
    bottom: -10px;
    width: 100%;
    background-size: contain;
    background-repeat: repeat;
  }

  #empire-state {
    background-image: url('../img/empire-state.png');
    background-position: center;
    bottom: 0px;
    height: 200px;
    width: 250px;
    background-size: contain;
    background-repeat:no-repeat;
    position: absolute;
    z-index: 3;
    left: -40px;
  }
  #tower {
    background-image: url('../img/tower.png');
    background-position: center;
    width: 250px;
    background-repeat:no-repeat;
    position: absolute;
    background-size: contain;
    left: 100px;
    height: 200px;
    bottom: 0;
    z-index: 3;
  }
}

/* =====================================
   Stars 
   ===================================== */
.star-map {
  display: block;
  position: relative;
  height: 600px;
  width: 400px;
  display: inline-block;  
}
.star {
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 25px #fff, 0 0 50px #fff;
  margin: 40pxpx;
  position: relative;
  width: 4px;
  height: 4px;
  float: left;
  margin: 5px;
}

/*
 * Star Animations
 */
.animated-1 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s; 
}
.animated-2 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s; 
}

.animated-1,
.animated-2 {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;  

  -webkit-animation-iteration-count:infinite;
     -moz-animation-iteration-count:infinite;
      -ms-animation-iteration-count:infinite;
       -o-animation-iteration-count:infinite;
          animation-iteration-count:infinite; 
}

@-webkit-keyframes pulse-1 {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes pulse-1 {
  0% {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
}

.pulse-1 {
  -webkit-animation-name: pulse-1;
          animation-name: pulse-1;
}
/*Pulse 2*/
@-webkit-keyframes pulse-2 {
  0% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }

  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

@keyframes pulse-2 {
  0% {
    -webkit-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
  }

  50% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }

  100% {
    -webkit-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.pulse-2 {
  -webkit-animation-name: pulse-2;
          animation-name: pulse-2;
}
/* Sizes */
.star.xl {
  width: 6px;
  height: 6px;
}

.star.lg {
  width: 5px;
  height: 5px;
}

.star.md {
  width: 4px;
  height: 4px;
}

.star.sm {
  width: 3px;
  height: 3px;
}

.star.xs {
  width: 2px;
  height: 2px;
}

.star-set-a {
  z-index: 1;
  position: absolute;
}

/* star names */
.star:nth-child(1) {
  left: 10px;
  top: 20px;

}

.star:nth-child(2) {
  top: 60px;
  left: 20px;

}
.star:nth-child(3) {
  top: 350px;

}
.star:nth-child(4) {
  top: 410px;
  left: -30px;

}
.star:nth-child(5) {
  top: 290px;
  left: -50px;;

}
.star:nth-child(6) {

}
.star:nth-child(7) {
  top: 12px;
  left: 10px;

}
.star:nth-child(8) {
  top: 365px;
  left: 28px;

}
.star:nth-child(9) {
  top: 340px;
  left: 90px;

}
.star:nth-child(10) {
  top: 60px;
  left: 157px;

}
.star:nth-child(11) {
  top: 30px;
  left: 50px;

}

.star:nth-child(12) {
  top: 12px;
  left: 122px;

}
.star:nth-child(13) {
  top: 300px;
  left: 143px;

}
.star:nth-child(14) {
  top: 420px;
  left: 108px;

}
