
/* BACKGROUND UNDERLAYS */
.bgUnderlays {
	position: absolute;
    width: 100%;
	height:60vh;
    object-fit: cover;
	background:transparent url('images/bgUnderlayGradient.png?v=1') left top repeat-x;
	overflow: hidden;
}
.bgUnderlays.home {
	height:100vh;
    min-height: 600px;
	overflow: visible;
}
.bgUnderlays > video {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(255, 255, 255)), color-stop(38%, rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, rgba(255, 255, 255) 10%, rgba(255, 255, 255, 0) 38%);
    background: linear-gradient(to bottom, rgba(255, 255, 255) 10%, rgba(255, 255, 255, 0) 38%);
	
	max-width: none;
	
	/* ?? needed */
}
.primaryTagline {
    text-align: center;
    top: 385px;
    position: relative;
    padding: 0 15px;
}
.primaryTagline h1 {
    font-size: 42px;
    font-weight:bold;
	font-style: italic;
    color: #FFF;
	text-transform: uppercase;
	text-shadow:3px 3px 3px rgba(0,0,0, 0.5);
    margin: 0 0 25px 0;
}


/* WAVES ANIMATION */

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}
.waveWrapper,
.waveWrapper.home {
    overflow: hidden;
	position:relative;
	top:0;
	left:0;
	height:120px;
    margin: auto;
}
.waveWrapper.top {
	margin-top:-120px;
}
.waveWrapper.top.home {
	margin-top:0;
}
.waveWrapper.ftrWaves {
	position:relative;
	top:0;
	left:0;
	height:120px;
    margin: auto;
}
.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
    Xbackground-image: linear-gradient(to top, #86377b 20%, #27273c 80%);
}
.bgTop {
    z-index: 15;
    opacity: 0.5;
}
.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}
.bgBottom {
    z-index: 5;
}
.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}
.waveTop {
    background-size: 50% 100px;
}
.waveAnimation .waveTop {
  animation: move-wave 3s;
   -webkit-animation: move-wave 3s;
   -webkit-animation-delay: 1s;
   animation-delay: 1s;
}
.waveMid {
    background-size: 50% 120px;
}
.waveAnimation .waveMid {
    animation: move_wave 10s linear infinite;
}
.waveBtm {
    background-size: 50% 100px;
}
.waveAnimation .waveBtm {
    animation: move_wave 15s linear infinite;
}

