.wrap {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
.customNav {
  margin-top: -50px !important;
}
.customWrap {
  padding-top: 125px !important;
  padding-bottom: 50px !important;
}
div.fix-12-12 {
  max-width: 95% !important;
}
.spacer {
  display: inline-block;
  width: 50px;
}
.relativePos {
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
}
.posBottom {
  position: absolute;
  margin: 0 !important;
  padding: 0 !important;
  bottom: 0;
}
a.bigButton {
  display: inline-block;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transform: scale(1);
  opacity: .9;
  -webkit-transition: .15s;
  transition: all .15s ease;
}
a:hover.bigButton {
  transform: scale(1.02);
  opacity: 1;
  -webkit-transition: .15s;
  transition: all .15s ease;
}

h1, h2 {
  text-transform: uppercase;
}
h2.bigLetters {
  font-size: 500%;
}
h3 {
  text-transform: uppercase;
  font-size: 1.4em !important;
}
h3.subHeader {
  font-size: 1.6em !important;
}

h3 span {
  text-transform: normal;
  font-weight: 200;
}
h3 span a {
  color: #ff9900;
  text-transform: none !important;
}
p {
  margin-bottom: 0.8em !important;
}
.strong {
  text-transform: uppercase;
  font-size: 1.2em !important;
  font-weight: bold;
}
p strong {
  color: #ff9900;
}
.orangeText {
  color: #ff9900;
}
.imageBorder {
  border: 1px solid #ffffff;
}

.menu li a {
	font-size: 20px;
	font-weight: 300;
  text-decoration: none;
  display: inline-block;
}

.menu li a:after {
  margin-top: 3px;
  display:block;
  content: '';
  border-bottom: solid 1px #ff9900;  
  transform: scaleX(0);  
  transition: transform 400ms ease-in-out;
}

.slides.stage-1 .panel.top .menu li:nth-child(0) a:after,
.slides.stage-2 .panel.top .menu li:nth-child(1) a:after,
.slides.stage-3 .panel.top .menu li:nth-child(2) a:after,
.slides.stage-4 .panel.top .menu li:nth-child(2) a:after,
.slides.stage-5 .panel.top .menu li:nth-child(3) a:after,
.slides.stage-6 .panel.top .menu li:nth-child(3) a:after,
.slides.stage-7 .panel.top .menu li:nth-child(4) a:after,
.slides.stage-8 .panel.top .menu li:nth-child(4) a:after,
.slides.stage-9 .panel.top .menu li:nth-child(5) a:after,
.slides.stage-10 .panel.top .menu li:nth-child(5) a:after,
.slides.stage-11 .panel.top .menu li:nth-child(6) a:after {
  transform: scaleX(1);
}

#skydive-video {
  height:auto;
  width:100%;
  overflow: hidden;
}

.production-arrow-down {
  display: inline-block;
  padding: 0;
  margin: 0;
  animation-name: fromTopCustom;
  animation-duration: 1.5s; 
  animation-timing-function: ease-out; 
  animation-delay: 2s;
  animation-direction: normal;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
  animation-play-state: running; 
}
.production-arrow-down a, .production-arrow-down a span {
  padding: 0;
  margin: 0;
}
.production-arrow-up {
  animation-name: fromBottomCustom;
  animation-duration: 1.5s; 
  animation-timing-function: ease-out; 
  animation-delay: 2s;
  animation-direction: normal;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
  animation-play-state: running; 
}

@-webkit-keyframes fromTopCustom {
  from {
    -webkit-transform: translate3d(0, -40px, 0);
            transform: translate3d(0, -40px, 0);
    opacity: 0;
  }
}
@keyframes fromTopCustom {
  from {
    -webkit-transform: translate3d(0, -40px, 0);
            transform: translate3d(0, -40px, 0);
    opacity: 0;
  }
}

@-webkit-keyframes fromBottomCustom {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
}
@keyframes fromBottomCustom {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
}