@media screen and (min-width: 480px) {
  body {
    margin-top: -3% !important;
  }
}

@media screen and (max-width: 480px) {
  body {
    margin-top: -22% !important;
  }
}

.moving-clouds {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 250.625em;
  height: 43.75em;
  -webkit-animation: cloudLoop 80s linear infinite;
  animation: cloudLoop 80s linear infinite;
}

@keyframes cloudLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

.page-header {
  min-height: 100vh;
  max-height: 999px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 480px) {
  .custom-width {
    width:auto;
  }
}

@media screen and (max-width: 480px) {
  .custom-width {
    width:80%;
  }
}

@media screen and (max-width: 480px) {
  .adjust_position {
    margin: auto;
    width: 55%;
  }
}