
/* BACKGROUND UNDERLAYS */
.bgUnderlays {
	position: absolute;
    width: 100%;
	height:60vh;
    object-fit: cover;
	background:transparent url('images/bgUnderlayGradient.png?v=2') left top repeat-x;
	overflow: hidden;
}

.bgUnderlays.moreInfoPages {
	display:none;
}

.bgUnderlays.home {
	height:80vh;
    min-height: 600px;
	Xoverflow: visible;
}

.bgUnderlays.whale-watching,
.bgUnderlays.sunset-whale-watch {
	background:none;
	height:80vh;
}
.bgUnderlays > video {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
	max-width:100vw;
    height: auto;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	object-fit: cover;
    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%);
}


.bgUnderlays.cruises {
	background:url("images/heroCruises.jpg") center center no-repeat;
	background-size:cover;
}
.bgUnderlays.cruises-from-bellingham {
	background:url("images/heroBCT.jpg") center center no-repeat;
	background-size:cover;}

.bgUnderlays.home::before, .bgUnderlays.home::after,
.bgUnderlays.whale-watching::before, .bgUnderlays.whale-watching::after,
.bgUnderlays.cruises::before, .bgUnderlays.cruises::after {
	background:none;
	animation:none; 
}

.bgUnderlays.friday-harbor-cruise {
	background:url("images/heroFridayHarbor.jpg") center center no-repeat;
	background-size:cover;	
}
.bgUnderlays.chuckanut-cracked-crab-evening-cruise {
	background:url("images/heroChuckanut.jpg?v=1") center center no-repeat;
	background-size:cover;	
}
.bgUnderlays.bellingham-bay-brewers-cruise {
	background:url("images/heroBellinghamBay.jpg") center center no-repeat;
	background-size:cover;	
}
.bgUnderlays.sucia-island-picnic-cruise {
	background:url("images/heroSuciaIsland.jpg?v=1") center center no-repeat;
	background-size:cover;	
}
.bgUnderlays.july-4th-fireworks-cruise {
	background:url("images/heroFireworks.jpg") center center no-repeat;
	background-size:cover;	
}
.bgUnderlays.unwined-on-the-bay-wine-tasting-cruise {
	background:url("images/heroWine.jpg?v=5") center center no-repeat;
	background-size:cover;	
}
.bgUnderlays.bird-watching-cruise {
	background:url("images/heroPuffins.jpg?v=2") center center no-repeat;
	background-size:cover;	
}
.bgUnderlays.san-juan-3-day-explorer-tour {
	background:url("images/heroSanJuanIslands.jpg?v=0") center center no-repeat;
	background-size:cover;	
}
.bgUnderlays.private-parties {
	background:url("images/heroVictoriaStar.jpg") center center no-repeat;
	background-size:cover;	
}



.bgUnderlays.cruises-from-la-conner {
	background:url("images/heroLaConnerRainbowBridge.jpg") center center no-repeat;
	background-size:cover;	
}
.bgUnderlays.deception-pass-crab-cruise {
	background:url("images/heroDeceptionPass.jpg?v=2") center center no-repeat;
	background-size:cover;
	background-position: bottom;
}
.bgUnderlays.la-conner-tulip-festival-cracked-crab-lunch-cruise {
	background:url("images/heroTulips.jpg") center center no-repeat;
	background-size:cover;	
}


.bgUnderlays.meet-the-whales {
	background:url("images/heroMeetTheWhales.jpg?v=0") center center no-repeat;
	background-size:cover;	
}
.bgUnderlays.contact {
	background:url("images/heroDeceptionPass.jpg") center center no-repeat;
	background-size:cover;	
}



.primaryTagline {
    position: relative;
    top:170px;
	text-align: center;
    padding: 0 15px;
}
.primaryTagline h1 {
    font-size:82px;
    color:#FFF;
	text-shadow:3px 3px 3px rgba(0,0,0, 0.5);
    margin: 0;
}


/* WAVES */

@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.home {
    overflow: hidden;
	/*
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
	*/
	position:relative;
	top:calc(100vh - 7%);
	left:0;
	height:120px;
    margin: auto;
}
.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;
}

