
/* Media query examples 
Media queries to darken the background image for mobile devices 
@media only screen and (max-width: 768px) {
  	For mobile phones:
	.header-container background {
		filter:brightness(50%); 
	}
}
*/

@charset "utf-8";
/* CSS Document */
/* base HTML stylse */
html { 
	font-size: 14pt; 
	font-family: Arial, Helvetica, sans-serif; 
}

@font-face {
    font-family: "Eras Light";
    src: url(/common/fonts/erasLight.woff) format("woff");
}
@font-face {
    font-family: "Eras Book";
    src: url(/common/fonts/erasBook.woff) format("woff");
}
@font-face {
    font-family: "Eras Bold";
    src: url(/common/fonts/erasBold.woff) format("woff");
}			
@font-face {
    font-family: "Eras Demi";
    src: url(/common/fonts/erasDemi.woff) format("woff");
}
@font-face {
    font-family: "Eras Med";
    src: url(/common/fonts/erasMed.woff) format("woff");
}

@font-face {
    font-family: "Kaufmann Script Bold";
    src: url(/common/fonts/kaufmannScriptBold.woff) format("woff");
}

/* AWD table header */	
.awdFontEmphasis {
	font-family: "Eras Bold";/*'Kaufmann Script Bold'; */
	font-size: 20pt;
	/*font-weight: bold;
	color: #A90A06;*/
}
	
.awdTableHeader {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14pt;
	/*text-decoration: underline; */
}

/*
	The following css gradients apply to the transitions:
	
	light: #4A6239 dark:#28341F light is the green in logo
	background: rgb(40,52,31);
	background-image: background: -webkit-linear-gradient(bottom, rgba(40,52,31,1) 25%, rgba(74,98,57,1) 100%);
	background-image: background: -o-linear-gradient(bottom, rgba(40,52,31,1) 25%, rgba(74,98,57,1) 100%);
	background-image: background: linear-gradient(to top, rgba(40,52,31,1) 25%, rgba(74,98,57,1) 100%);
	
	light: #9D5931 dark:#62371E light is burnt orange
	background: rgb(98,55,30);
	background: linear-gradient(0deg, rgba(98,55,30,1) 25%, rgba(157,89,49,1) 100%);
	
	light: #046FA1 dark:#012334 light is the blue in logo
	background: rgb(1,35,52);
	background: linear-gradient(0deg, rgba(1,35,52,1) 25%, rgba(4,111,161,1) 100%);
*/
.burntOrangeGradient {
	/* Burnt orange gradient */
	background: rgb(98,55,30);
	background: -webkit-linear-gradient(bottom, rgba(98,55,30,1) 25%, rgba(157,89,49,1) 100%);
	background: -o-linear-gradient(bottom, rgba(98,55,30,1) 25%, rgba(157,89,49,1) 100%);
	background: linear-gradient(to top, rgba(98,55,30,1) 25%, rgba(157,89,49,1) 100%);
}

.greenGradient {
	/* Green background color of the transition blocks */
	background: rgb(40,52,31);
	background: -webkit-linear-gradient(bottom, rgba(40,52,31,1) 25%, rgba(74,98,57,1) 100%);
	background: -o-linear-gradient(bottom, rgba(40,52,31,1) 25%, rgba(74,98,57,1) 100%);
	background: linear-gradient(to top, rgba(40,52,31,1) 25%, rgba(74,98,57,1) 100%);
}

.blueGradient {
	background: rgb(1,35,52);
	background: -webkit-linear-gradient(bottom, rgba(1,35,52,1) 0%, rgba(4,111,161,1) 100%);
	background: -o-linear-gradient(bottom, rgba(1,35,52,1) 0%, rgba(4,111,161,1) 100%);
	background: linear-gradient(to top, rgba(1,35,52,1) 0%, rgba(4,111,161,1) 100%);
}

/* Common classes */
.clear:before, .clear:after {
  content: ' ';
  display: table; 
}

.clear {
  *zoom: 1; 
}

.clear:after {
	clear: both; 
}

/* Page content */
html, body
{
    overflow-x: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; 
}

[hidden], template {
  display: none; 
}

dfn {
  font-style: italic; 
}

mark {
  background: #ff0;
  color: #000; 
}

svg:not(:root) {
  overflow: hidden; 
}

figure {
  margin: 1em 40px; 
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; 
}

::selection {
  background: #b3d4fc;
  text-shadow: none; 
}

/* Preloader styles */
#preloader {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 101;
  background-color: #212121;
  color: #ffffff; 
}

#preloader .preloaderHeader {
    font-size: 18pt;
	font-family: 'Eras Demi';
	opacity: 1;
	margin: 0 0 6px 0;
	max-width: 95%;
	text-align: center; 
	position: absolute;
    top: 35%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); 
}

#preloader .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); 
}

#preloader .txt-perc {
	font-size: 2.75em;
	font-family: 'Eras Demi';
	opacity: 1;
	margin: 0 0 6px 0;
	max-width: 400px;
	text-align: center; 
}

#preloader .progress {
	width: 100px;
	height: 3px;
	background-color: rgba(255, 255, 255, 0.2);
	margin: 0 auto 15px auto; 
}

#preloader .progress span {
  display: block;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); 
}

#preloader.is-hidden {
	visibility: hidden;
	opacity: 0; 
}

.is-loading {
	overflow: hidden; 
}

/* Scroll view arrows */
/* Make the arrows a bit smaller (the following is broken in the iphone using safari.)
#developmentScrollView .k-scrollview-next span, .k-scrollview-prev span {
	font-size: 2em;
}

#graphicsScrollView .k-scrollview-next span, .k-scrollview-prev span {
	font-size: 2em;
}

#hostingScrollView .k-scrollview-next span, .k-scrollview-prev span {
	font-size: 2em;
}
*/
.k-scrollview-next span, .k-scrollview-prev span {
	font-size: 2em;
}

/* Dialog title font size */
#dialog h2 { font-size: 18pt; }

/* Navigation */
nav {
	display: none;
	position: fixed;
	right: var(--navigationRightPosition);
	top: 50%;
	-webkit-transform: translateY(-50%);
	  -ms-transform: translateY(-50%);
		  transform: translateY(-50%);
	text-align: right;
	z-index: 100; 
}

nav a {
	display: block;
	line-height: 25px;
	position: relative;
	width: 10px;
	/* Don't wrap whitespace, otherwise the buttons will be spaced further apart and the overall nave will be much longer */
	white-space: nowrap;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	color: #ffffff;
	text-decoration: none; 
	/* The layers on this are a bit wide to get the buttons to line up properly. Set a low z-index. We will set the z-index of stuff that we want to be clicked on (such as the scroll widget) higher in order to allow us to click on it */
	z-index: 1;
}

nav a:hover .nav-label {
	font-family: "Eras Demi";
	-webkit-transform: translateX(0);
	  -ms-transform: translateX(0);
		  transform: translateX(0);
	opacity: 1;
	visibility: visible; 
}

nav .nav-dot {
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	right: 0;
	top: 50%;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 100%;
	-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
			transform: translateY(-50%);
	-webkit-transition: all 0.3s linear;
			transition: all 0.3s linear; 
}

nav .nav-dot-active {
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	right: 0;
	top: 50%;
	background-color: rgba(96,128,0,1.00); 
	border-radius: 100%;
	-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
			transform: translateY(-50%);
	-webkit-transition: all 0.3s linear;
			transition: all 0.3s linear; 
	/* White stroke */
	border: 1px solid #fff;
    line-height: 1.0;
	/* Drop shadow */
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

nav .nav-label {
	left: 200px;
	font-family: "Eras Demi";
	display: block;
	opacity: 0.5;
	visibility: hidden;
	margin-top: 25px; /* Remove if there is text in the navigation */
	margin-bottom: 25px; /* Remove if there is text in the navigation */
	-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
			transform: translateX(-10px);
	-webkit-transition: all 0.2s cubic-bezier(.17, .67, .83, .67);
			transition: all 0.2s cubic-bezier(.17, .67, .83, .67); 
}


nav.is-dark a {
	color: #212121; 
}

nav.is-dark .nav-dot {
	background-color: rgba(0, 0, 0, 0.5); 
}

nav.is-light a {
	color: #ffffff; 
}

nav.is-light .nav-dot {
	background-color: rgba(255, 255, 255, 0.5); 
}

nav ul {
	margin: 0;
	padding: 0; 
}

nav li {
	width: auto;
	list-style: none; 
}

/* Stroke */
.dotstyle-stroke li a {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
	-webkit-transition: box-shadow 0.3s ease, background-color 0.3s ease;
	transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.dotstyle-stroke li a:hover,
.dotstyle-stroke li a:focus {
	background-color: white;
}

.dotstyle-stroke li.current a {
	background-color: transparent;
	box-shadow: 0 0 0 2px white;
}

.fs {
  	height: 100vh; 
	width: 100%;
	overflow-x: hidden;
}

/* The tooltip for the images */
#aboutThisImage {
	position: absolute;
	/* This setting impacts the vertical position of the scroll down button */
	bottom: 12%; /* We want to center this with the scroll down image on the first page. */
	/* Center the span and the image */
	left: 5%;
	margin: auto;
	/* For images, we also need to use text-align: center. */
	text-align: center;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
	z-index: 2; 
}

#aboutThisImage span {
	cursor: pointer;
	position: absolute;
	display: block;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	border: 0;
	-moz-box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
	box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
	-moz-transition:  -moz-box-shadow .3s;
	-webkit-transition:  -webkit-box-shadow .3s;
	transition:  box-shadow .3s;
}

#aboutThisImage span:hover {
	-moz-box-shadow: 0 0 0 15px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 0 15px rgba(0,0,0,0.5);
	box-shadow: 0 0 0 15px rgba(0,0,0,0.5);
	-moz-transition:  -moz-box-shadow .3s;
	-webkit-transition:  -webkit-box-shadow .3s;
	transition:  box-shadow .3s;
}

/* The map tooltip for the images */
#imageLocation {
	position: absolute;
	/* This setting impacts the vertical position of the scroll down button */
	bottom: 12%; /* We want to center this with the scroll down image on the first page. */
	/* Center the span and the image */
	right: 5%;
	margin: auto;
	/* For images, we also need to use text-align: center. */
	text-align: center;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
	z-index: 2; 
}

#imageLocation span {
	cursor: pointer;
	position: absolute;
	display: block;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	border: 0;
	-moz-box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
	box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
	-moz-transition:  -moz-box-shadow .3s;
	-webkit-transition:  -webkit-box-shadow .3s;
	transition:  box-shadow .3s;
}

#imageLocation span:hover {
	-moz-box-shadow: 0 0 0 15px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 0 15px rgba(0,0,0,0.5);
	box-shadow: 0 0 0 15px rgba(0,0,0,0.5);
	-moz-transition:  -moz-box-shadow .3s;
	-webkit-transition:  -webkit-box-shadow .3s;
	transition:  box-shadow .3s;
}

/* Repeated logic for the parallax section. I can't have the same elements as the parallax moves at a different speed and it will affect all of the logic on the page skewing the placement of the buttons. */
/* The tooltip for the images */
#aboutThisParallax {
	position: absolute;
	/* This setting impacts the vertical position of the scroll down button */
	bottom: 12%; /* We want to center this with the scroll down image on the first page. */
	/* Center the span and the image */
	left: 5%;
	margin: auto;
	/* For images, we also need to use text-align: center. */
	text-align: center;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
	z-index: 2; 
}

#aboutThisParallax span {
	cursor: pointer;
	position: absolute;
	display: block;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	border: 0;
	-moz-box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
	box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
	-moz-transition:  -moz-box-shadow .3s;
	-webkit-transition:  -webkit-box-shadow .3s;
	transition:  box-shadow .3s;
}

#aboutThisParallax span:hover {
	-moz-box-shadow: 0 0 0 15px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 0 15px rgba(0,0,0,0.5);
	box-shadow: 0 0 0 15px rgba(0,0,0,0.5);
	-moz-transition:  -moz-box-shadow .3s;
	-webkit-transition:  -webkit-box-shadow .3s;
	transition:  box-shadow .3s;
}

/* The map tooltip for the images */
#parallaxLocation {
	position: absolute;
	/* This setting impacts the vertical position of the scroll down button */
	bottom: 12%; /* We want to center this with the scroll down image on the first page. */
	/* Center the span and the image */
	right: 5%;
	margin: auto;
	/* For images, we also need to use text-align: center. */
	text-align: center;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
	z-index: 2; 
}

#parallaxLocation span {
	cursor: pointer;
	position: absolute;
	display: block;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	border: 0;
	-moz-box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
	box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
	-moz-transition:  -moz-box-shadow .3s;
	-webkit-transition:  -webkit-box-shadow .3s;
	transition:  box-shadow .3s;
}

#parallaxLocation span:hover {
	-moz-box-shadow: 0 0 0 15px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 0 15px rgba(0,0,0,0.5);
	box-shadow: 0 0 0 15px rgba(0,0,0,0.5);
	-moz-transition:  -moz-box-shadow .3s;
	-webkit-transition:  -webkit-box-shadow .3s;
	transition:  box-shadow .3s;
}

/* Scroll down button */
.scrollDownText {
	display: block;
	position: absolute;
	/* This setting impacts the vertical position of the scroll down button */
	bottom: 12%;
	/* This will automatically center the content */
	left: 0;
	right: 0;
	margin: auto;
	/* Font properties */
	font-family: "Eras Demi";/*'Kaufmann Script Bold'; */
	font-size: var(--sceneFontSize);
	/* Hard back text shadow  */
	text-shadow: 3px 3px 0 #000000;
	/* Second text shadow with black 18 pixel glow */
	text-shadow: 3px 3px 18px #000000;
	/* We need to explicity center this text */
	text-align: center;
	/* Opacity */
	color: #fff;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
	z-index: 2; 
}

#scrollHint .vert-text .scroll-down {
	display: block;
	position: absolute;
	left: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	color: #fff;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
	/* This setting impacts the vertical position of the scroll down button */
	bottom: 10%;
	z-index: 2; 
}

#scrollHint .vert-text .scroll-down:hover {
	opacity: 0.5;
}

/* Arrow */
#scrollHint .vert-text .scroll-down::after {
	position: absolute;
	content: '';
	width: 16px;
	height: 16px;
	margin: -12px 0 0 -8px;
	border-left: 3px solid #fff; /* Arrow color */
	border-bottom: 3px solid #fff; /* Arrow color */
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	box-sizing: border-box;
}

#scrollHint .vert-text .scroll-down::before {
	position: absolute;
	top: -22px;
	left: -22px;
	z-index: -1;
	content: '';
	width: 44px;
	height: 44px;
	box-shadow: 0 0 0 0 rgba(38, 52, 54, 0.6); /* Radial color (original rgba(4,111,161, 0.3) */
	border-radius: 100%;
	opacity: 0;
	-webkit-animation: sdb 3s infinite;
	animation: sdb 3s infinite;
	box-sizing: border-box;
}

.mediaPlayer {
	white-space: nowrap;
	overflow: hidden;
	/* The players z-index must be set lower than the rest of the elements, or the media player will bleed through the other elements that should be on top of this */
	z-index: 0;
	widows: 640px;
	height: 480px;
}

@keyframes sdb {
	0% {
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	60% {
		box-shadow: 0 0 0 60px rgba(38, 52, 54, 0.6); /* Radial color and the visibility of the entire effect (a lower number makes this more subtle). */
		opacity: 0;
	}
	100% {
	opacity: 0;
	}
}

#continue {
	position: absolute;
	/* This setting impacts the vertical position of the scroll down button */
	bottom: 5.5%;
	/* Center the span and the image */
	left: 0;
	right: 0;
	margin: auto;
	/* For images, we also need to use text-align: center. */
	text-align: center;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
	z-index: 2; 
}

#continue #radialAnimation {
	position: absolute;
	bottom: 20%; /* Note: this is 10% more than the continue image element. */
	/* Center the span and the image */
	left: 0;
	right: 0;
	margin: auto;
	/* For images, we also need to use text-align: center. */
	text-align: center;
	z-index: -1;
	content: '';
	width: 50px;
	height: 50px;
	box-shadow: 0 0 0 0 rgba(155,96,75, 0.9); /* Radial color */
	border-radius: 100%;
	opacity: 0;
	-webkit-animation: sdc 3s infinite;
	animation: sdc 3s infinite;
	box-sizing: border-box;
	/* Subtle drop shadow on the header banner that stretches across the page. */
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#continue img:hover {
	opacity: .9
}

@keyframes sdc {
	0% {
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	60% {
		box-shadow: 0 0 0 60px rgba(155,96,75, 0.9); /* Radial color and the visibility of the entire effect (a lower number makes this more subtle). */
		opacity: 0;
	}
	100% {
	opacity: 0;
	}
}

/* Styles for text containers */
.splashTitleWithShadow {
	font-family: "Eras Demi";/*'Kaufmann Script Bold'; */
	font-size: 1.6em;
	text-shadow: 
		5px 5px 20px #000,
		10px 10px 50px #000,
		20px 20px 100px #000;
}

/* Blurb on home page */	
.splashContentFont {
	font-family: "Eras Demi";/*'Kaufmann Script Bold'; */
	font-size: var(--splashTitleFontSize);
	text-shadow: 
		5px 5px 20px #000,
		10px 10px 50px #000,
		20px 20px 100px #000;
}

/* General styles */ 

/* Header */
.header-container {
  	text-align: var(--scrollViewTextAlign);
  	color: #ffffff; 
}

.header-container .wrapper {
	padding-top: 120px;
	z-index: 2;
	position: relative;
}

#intro {
	/* Does not fix white space issue on ios */
	overflow-x: auto;
}

/* Css for main layers */ 
.bcg {
	background: no-repeat center center;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	/* Main opacity (this is no longer needed for desktop, and it makes things ugly on mobile devices).
	opacity: 0.5;*/
}

/* Images: note- if you use center, the image may not be at full screen and show a white artifact when using smaller displays.*/
.header-container .bcg {
	background: url("/images/background/landingPage/grandTetonLowRes.webp") no-repeat center top;
	/* /images/background/gregoryalexander/grandTetonFixed.jpg */
	background-size: cover; 
}

/* Slide 1 is a parallax */
#slide02 .bcg {
	background: url("/images/background/landingPage/yellowStoneLowRes.webp") no-repeat center top;
	/* /images/hiRes/yellowStoneRedMedHigh.jpg */
	background-size: cover; 
		-webkit-background-size: cover;
		-moz-background-size:  cover;
		-o-background-size: cover;
}

#slide03 .bcg {
	background: url("/images/background/landingPage/zionValleyLowRes.webp") no-repeat center center;
	/* /images/hiRes/zionValleyMedHigh.jpg */
	background-size: cover; 
		-webkit-background-size: cover;
		-moz-background-size:  cover;
		-o-background-size: cover;
}

#slide04 .bcg {
	background: url("/images/background/landingPage/staircaseLowRes.webp") no-repeat center center;
	/* /images/hiRes/staircaseMedHigh.jpg */
	background-size: cover;
		-webkit-background-size: cover;
		-moz-background-size:  cover;
		-o-background-size: cover;
	opacity: 0.7; 
}

#slide05 .bcg {
	background: url("/images/background/landingPage/weepingRockFlippedLowRes.webp") no-repeat center center;
	/* /images/background/gregoryAlexander/weepingRockFlippedLowRes.jpg */
	background-size: cover;
		-webkit-background-size: cover;
		-moz-background-size:  cover;
		-o-background-size: cover;
	opacity: 0.7; 
}

#slide06 .bcg {
	background: url("/images/background/landingPage/bandonSunsetLowRes.webp") no-repeat center center;
	/* /images/background/gregoryAlexander/bandonSunsetLowRes.jpg */
	background-size: cover;
		-webkit-background-size: cover;

		-moz-background-size:  cover;
		-o-background-size: cover;
	opacity: 0.7; 
}

/* Slides */
.slide {
	/* Font properties of the slides */
	color: #ffffff;
	position: relative; 
	font-family: "Eras Demi";/*'Kaufmann Script Bold'; */
	font-size: var(--sceneFontSize);
	/* Hard back text shadow  */

	text-shadow: 3px 3px 0 #000000;
	/* Second text shadow with black 18 pixel glow */
	text-shadow: 3px 3px 18px #000000;

}

.slide .wrapper {
	padding-top: 30px;
	text-align: var(--scrollViewTextAlign);
	position: relative;
	z-index: 2; 
}

/* Content Blocks */
/* Font properties for the content blocks. */
.content-block1 .wrapper, .content-block2 .wrapper, .content-block3 .wrapper, .content-block4 .wrapper, .content-block5 .wrapper, .content-block6 .wrapper {
	font-family: "Eras Demi";/*'Kaufmann Script Bold'; */
	font-size: var(--sceneFontSize);

	/* Hard back text shadow  */
	text-shadow: 3px 3px 0 #000000;
	/* Second text shadow with black 18 pixel glow */
	text-shadow: 3px 3px 18px #000000;

}

/* 1 off. This particular content block is before the parallax scene and is a little bit different */
.content-block1 {
	/* Force the width to the viewport. */
	width: 100%;
	/* Text color */
	color: rgba(255, 255, 255, 0.9); 
	height: 450px;/* parallax 1 off */
}

/* .content-block1 .wrapper does not exist */
.content-block1 .wrapper {
	padding-top: 150px;
	padding-right: 0px;
	padding-bottom: 50px;
	padding-left: 0px;
	text-align: var(--scrollViewTextAlign); 
}

.content-block2 {
	/* Force the width to the viewport. */
	width: 100%;
	/* Text color */
	color: rgba(255, 255, 255, 0.9); 
	/*height: 600px; parallax 1 off */
}

.content-block2 .wrapper { /* Web Development */
	padding: 150px 0;
	text-align: var(--scrollViewTextAlign); 
}

.content-block3 {
	/* Force the width to the viewport. */
	width: 100%;
	/* Text color */
	color: rgba(255, 255, 255, 0.9); 
	/*height: 600px; parallax 1 off */
}

.content-block3 .wrapper {
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 75px;
	padding-left: 0px;
	text-align: var(--scrollViewTextAlign); 
}

.content-block4 {
	/* Force the width to the viewport. */
	width: 100%;
	/* Text color */
	color: rgba(255, 255, 255, 0.9); 
	/*height: 100%; parallax 1 off */
}

.content-block4 .wrapper {
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 75px;
	padding-left: 0px;
	text-align: var(--scrollViewTextAlign); 
}

.content-block5 {
	/* Force the width to the viewport. */
	width: 100%;
	/* Text color */
	color: rgba(255, 255, 255, 0.9); 
	/*height: 100%; parallax 1 off */
}

.content-block5 .wrapper {
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 75px;
	padding-left: 0px;
	text-align: var(--scrollViewTextAlign);
}

.content-block6 {
	/* Force the width to the viewport. */
	width: 100%;
	/* Text color */
	color: rgba(255, 255, 255, 0.9); 
	/*height: 100%; parallax 1 off */
}

.content-block6 .wrapper {
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 75px;
	padding-left: 0px;
	text-align: var(--scrollViewTextAlign);
}

/* Scroll view outer containers within the content blocks. */
#developmentScrollView {
	/* Text color */
	color: rgba(255, 255, 255, 0.9); 
	height: var(--scrollViewHeight);
	width: var(--scrollViewWidth); /* Don't use dynamic css vars set when the page loads. It screws stuff up. */
	margin: auto;	
	z-index: 2; /* This needs to be higher than the nav blocks */
}

#hostingScrollView {
	/* Text color */
	color: rgba(255, 255, 255, 0.9); 
	height: var(--scrollViewHeight);
	width: var(--scrollViewWidth);
	margin: auto;
	z-index: 2; /* This needs to be higher than the nav blocks */
}

#graphicsScrollView {
	/* Text color */
	color: rgba(255, 255, 255, 0.9); 
	height: var(--scrollViewHeight);
	width: var(--scrollViewWidth);
	margin: auto;
	z-index: 2; /* This needs to be higher than the nav blocks */
}

.firstScrollviewWrapper {
	position: relative;
	display: table;
	left: 0%; /* The 2nd and x slides there after start to the right of the left arrow. */
	right: 10%; 
	margin: auto;
	width: 80%; /* the width of the scroll view container. */
	text-align: left;
	font-family: var(--scrollViewFont);
	font-size: var(--scrollViewFontSize);
}
.scrollviewWrapper {
	position: relative;
	display: table;
	left: 0%; /* The 2nd and x slides there after start to the right of the left arrow. */
	right: 10%; 
	margin: auto;
	width: 80%; /* the width of the scroll view container. */
	text-align: left;
	font-family: var(--scrollViewFont);
	font-size: var(--scrollViewFontSize);
}

.lastScrollviewWrapper {
	position: relative;
	display: table;
	left: 0%; /* The 2nd and x slides there after start to the right of the left arrow. */
	right: 0%; /* The last slide does not have a right arrow that we need to leave room for. */
	margin: auto;
	width: 80%; /* the width of the scroll view container. */
	text-align: left;
	font-family: var(--scrollViewFont);
	font-size: var(--scrollViewFontSize);
}

/* Animations */
.slideInUp.slideInUp1 {
	-webkit-transition-delay: 0.2s;
		  transition-delay: 0.2s; 
}

.slideInUp.slideInUp2 {
	-webkit-transition-delay: 0.4s;
		  transition-delay: 0.4s; 
}

.slideInUp.slideInUp3 {
	-webkit-transition-delay: 0.6s;
		  transition-delay: 0.6s; 
}

.slideInUp.slideInUp4 {
	-webkit-transition-delay: 0.8s;
		  transition-delay: 0.8s; 
}

/* Header */
.header-container {
	overflow: hidden;
	position: relative; 
}

.header-container .wrapper {
	position: absolute;
	top: 65%; /* The text needs to be in the blue part of the hotspring. */
	left: 50%;
	-webkit-transform: translate(-50%, -120%);
	  -ms-transform: translate(-50%, -120%);
		  transform: translate(-50%, -120%);
	margin: 0;
	padding: 0; 
}

.header-container:before {
	font-size: 1em; 
}

.scroll-hint {
	font-size: 18pt; 
}

.bcg {
	opacity: 1; 
}

.slide {
	overflow: hidden;
	overflow-x: hidden; 
}

/* Prior to the parallax, this setting used to be .slide section { */
.slide#slide03 section {
	/* This setting controls the width of slide 03 (and slide 1 if the #slide03 is omitted) */
	max-width: 66%; 
}

.slide .wrapper {
	/* element positioning */
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	  transform: translate(-50%, -50%);
	width: 100%;
	margin: 0; 
	/* Font properties for the slides. */
	font-family: "Eras Demi";/*'Kaufmann Script Bold'; */
	font-size: var(--sceneFontSize);
	text-shadow: 
		5px 5px 20px #000,
		10px 10px 50px #000,
		20px 20px 100px #000
}

/* Common properties of slides. The properties may be overrridden later */
.slide#slide01 .wrapper, .slide#slide02 .wrapper, .slide#slide03 .wrapper, .slide#slide04 .wrapper {
	/* Transformations */
	-webkit-transform: translate(0);
		-ms-transform: translate(0);
			transform: translate(0);
}

/* Independent properties of the slides. The top bottom, and left will adjust the position of the text on the desktop. */
.slide#slide01 .wrapper {
	top: auto;
	bottom: var(--slideBottomPercent); /*30%*/
	left: 5%;
	text-align: left;
	padding: 0; 
}

.slide#slide02 .wrapper {
	top: auto;
	bottom: var(--slideBottomPercent);
	left: 5%;
	text-align: left;
	padding: 0; 
}

.slide#slide03 .wrapper {
	top: auto;
	bottom: var(--slideBottomPercent);
	left: 5%;
	text-align: left;
	padding: 0; 
}

.slide#slide04 .wrapper {
	top: auto;
	bottom: var(--slideBottomPercent);
	left: 5%;
	text-align: left;
	padding: 0; 
}

.slide#slide05 .wrapper {
	top: auto;
	bottom: var(--lastSlideBottomPercent); /* We need to pull the text down more on this slide. */
	left: 55%; /* to do: this is a bug. This should be left: 5, something is off here. */
	text-align: left;
	padding: 0;  
}

.slide#slide06 .wrapper {
	top: auto;
	bottom: var(--lastSlideBottomPercent); /* We need to pull the text down more on this slide. */
	left: 55%; /* to do: this is a bug. This should be left: 5, something is off here. */
	text-align: left;
	padding: 0;  
}

/* Text color in the slides */
.slide#slide01 {
	color: #ffffff; 
}

.slide#slide02 {
	color: #ffffff; 
}

.slide#slide03 {
	color: #ffffff; 
}

.slide#slide04 {
	color: #ffffff; 
}

.slide#slide05 {
	color: #ffffff; 
}

.slide#slide06 {
	color: #ffffff; 
}

/* Sections (limits the width of the paragraphs) */
/* Parallax 1 off */
.slide#slide01 section {
	margin: 0; 
	width: 100%;
	object-fit: cover;
}

.slide#slide02 section {
	margin: 0; 
	max-width: var(--sceneContainerWidth); 
}

.slide#slide03 section {
	margin: 0;
	max-width: var(--sceneContainerWidth); 
}

.slide#slide04 section {
	margin: 0;
	max-width: var(--sceneContainerWidth); 
}

.slide#slide05 section {
	margin: 0;
	max-width: var(--sceneContainerWidth); 
}

.slide#slide06 section {
	margin: 0;
	max-width: var(--sceneContainerWidth); 
}

/* Opacity */	
.slide#slide01 .bcg {
	opacity: 1; 
}

.slide#slide02 .bcg {
	opacity: 1; 
}

.slide#slide03 .bcg {
	opacity: 1; 
}

.slide#slide04 .bcg {
	opacity: 1; 
}

.slide#slide05 .bcg {
	opacity: 1; 
}

.slide#slide06 .bcg {
	opacity: 1; 
}

nav {
	display: block; 
}

/* Simple animation up */
.slideInUp {
	visibility: hidden;
	opacity: 1;
	-webkit-transition: all 0.7s ease-out;
		  transition: all 0.7s ease-out;
	-webkit-transform: translate3d(0, 50px, 0);
	transform: translate3d(0, 50px, 0); 
}

/* Not used.
.slideInUp .sceneHeaderFont {
	We need to make the header font a bit smaller on mobile devices.
	font-size: var(--sceneHeaderFontSize);
}
*/

.is-active .slideInUp {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0); 
}

/* Web only content blocks */
 .content-block1 .wrapper {
	visibility: hidden;
	opacity: 0; 
}

.content-block1.is-active .wrapper {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0); 
}

.content-block2 .wrapper {
	visibility: hidden;
	opacity: 0; 
}

.content-block2.is-active .wrapper {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0); 
}

.content-block3 .wrapper {
	visibility: hidden;
	opacity: 0; 
}

.content-block3.is-active .wrapper {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0); 
}

.content-block4 .wrapper {
	visibility: hidden;
	opacity: 0; 
}

.content-block4.is-active .wrapper {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0); 
}

.content-block5 .wrapper {
	visibility: hidden;
	opacity: 0; 
}

.content-block5.is-active .wrapper {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0); 
}

/* Used on the footer */
.wrapper {
  	width: 80%;
  	margin: 0 10%; 
	font-family: "Eras Demi";/*'Kaufmann Script Bold'; */
	font-size: var(--scrollViewFontSize);
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
.hidden {
	display: none !important;
	visibility: hidden; 
}

.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px; 
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto; 
}

.invisible {
	visibility: hidden; 
}

.clearfix:before, .clearfix:after {
	content: " ";
	display: table; 
}

.clearfix:after {
	clear: both; 
}

.clearfix {
	*zoom: 1; 
}

