/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}


/* ==========================================================================
   Author's custom styles
   ========================================================================== */
   
@font-face {
	font-family: 'Frutiger';
	src: url('fonts/FrutigerLTStd-Roman.eot');
	src: local('?'), url('fonts/FrutigerLTStd-Roman.woff') format('woff'), url('fonts/FrutigerLTStd-Roman.ttf') format('truetype'), url('fonts/FrutigerLTStd-Roman.svg') format('svg');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Frutiger';
	src: url('fonts/FrutigerLTStd-Italic.eot');
	src: local('?'), url('fonts/FrutigerLTStd-Italic.woff') format('woff'), url('fonts/FrutigerLTStd-Italic.ttf') format('truetype'), url('fonts/FrutigerLTStd-Italic.svg') format('svg');
	font-weight: 400;
	font-style: italic;
}

@font-face {
	font-family: 'Frutiger';
	src: url('fonts/FrutigerLTStd-Bold.eot');
	src: local('?'), url('fonts/FrutigerLTStd-Bold.woff') format('woff'), url('fonts/FrutigerLTStd-Bold.ttf') format('truetype'), url('fonts/FrutigerLTStd-Bold.svg') format('svg');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'FrutigerLTStd-Bold';
	src: url('fonts/FrutigerLTStd-Bold.eot');
	src: local('?'), url('fonts/FrutigerLTStd-Bold.woff') format('woff'), url('fonts/FrutigerLTStd-Bold.ttf') format('truetype'), url('fonts/FrutigerLTStd-Bold.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Frutiger';
	src: url('fonts/FrutigerLTStd-BoldItalic.eot');
	src: local('?'), url('fonts/FrutigerLTStd-BoldItalic.woff') format('woff'), url('fonts/FrutigerLTStd-BoldItalic.ttf') format('truetype'), url('fonts/FrutigerLTStd-BoldItalic.svg') format('svg');
	font-weight: 700;
	font-style: italic;
}
   
body {width: 1920px; height: 1080px; color: #fff; font-family: "Frutiger", sans-serif;}

/* body {cursor: none !important;} */

body.nav {background: #000 url('../img/background-main-nav.jpg') no-repeat;}

video {background-color:#000;}


/* Navigation */

.nav-item-container {
	font-family: "Frutiger", sans-serif;
	font-size: 26px;
	text-align: center;
	line-height: 1em;
	position: absolute;
	left:0;
	bottom: 0;
	width: 400px; 
	height: 55px;
	background-color: rgba(0,0,0,.45);
	color: #fff;

	padding: 15px 0;
}

.nav-item-container .subhead {
	font-size: 20px;
}

.theta-carousel-element .nav-item-container {
    animation: fadeout 1s;
	opacity: 0;
}

.theta-carousel-element.theta-current-item .nav-item-container {
    animation: fadein 1s;
	opacity: 1;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Section One */

body.sectionOne-red {background: #000 url('../img/background-red-section-one.jpg') no-repeat;}

body.sectionOne-green {background: #000 url('../img/background-green-section-one.jpg') no-repeat;}

body.sectionOne-blue {background: #000 url('../img/background-blue-section-one.jpg') no-repeat;}

.sectionOne-menu-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 180px;
	font-family: "Frutiger", sans-serif;
}

body.sectionOne-red .sectionOne-menu-bottom {
	background-color: #682022;
}

body.sectionOne-green .sectionOne-menu-bottom {
	background-color: #5a5b2e;
}

body.sectionOne-blue .sectionOne-menu-bottom {
	background-color: #404b73;
}

#nav-bottom-buttons-section-one-container {
	position: absolute;
	bottom: 0;
	left: 120px;
	width: 1410px;
	height: 180px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.button-red, .button-green, .button-blue {
	width: 355px;
	height: 103px;
	text-align: center;
	z-index: 1;
	font-family: "Frutiger", sans-serif;
	font-size: 20px;
	color: #fff;
	padding: 37px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.button-red{
	background-image: url('../img/button-red-normal.png');
	background-repeat: no-repeat;
    background-position: center;
	filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
}

.button-red.active{
	background-image: url('../img/button-red-active.png');
	filter: drop-shadow(0px 0px 5px rgba(254, 254, 254, 1));
}

.button-green {
	background-image: url('../img/button-green-normal.png');
	background-repeat: no-repeat;
    background-position: center;
	filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
}

.button-green.active{
	background-image: url('../img/button-green-active.png');
	filter: drop-shadow(0px 0px 5px rgba(254, 254, 254, 1));
}

.button-blue {
	background-image: url('../img/button-blue-normal.png');
	background-repeat: no-repeat;
    background-position: center;
	filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
}

.button-blue.active{
	background-image: url('../img/button-blue-active.png');
	filter: drop-shadow(0px 0px 5px rgba(254, 254, 254, 1));
}

body.sectionOne-red .video-button-image.active, body.sectionOne-green .video-button-image.active, body.sectionOne-blue .video-button-image.active {
	border: 8px solid #e4a52f;
}

body.sectionOne-red .video-button, body.sectionOne-green .video-button, body.sectionOne-blue .video-button {
	width: 170px;
}

body.sectionOne-red .video-button-glow, body.sectionOne-green .video-button-glow, body.sectionOne-blue .video-button-glow {
	left: 19px;
}

#sectionOne-video-container {
	position: absolute;
	left: 120px;
	top: 170px;
	z-index: 10;
}

#sectionOne-text-box {
	position: absolute;
	top:170px;
	left: 120px;
	box-sizing: border-box;
	width: 1694px;
	height: 530px;
	color: #fff;
	font-family: "Frutiger", sans-serif;
	font-size: 18px;
	padding: 30px 50px 30px 1012px;
	border-radius: 20px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	box-shadow: 0px 0px 50px rgba(0,0,0,1);
	z-index: 1;
}

#sectionOne-text-box .video-button-container {
	width: 630px;
	position: absolute;
	bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	
}

body.sectionOne-red #sectionOne-text-box {
	background-color: #bd3d31;
}

body.sectionOne-green #sectionOne-text-box {
	background-color: #a5b048;
}

body.sectionOne-blue #sectionOne-text-box {
	background-color: #70aadd;
}

#sectionOne-text-box .video-button-container#video-button-blue, #sectionOne-text-box .video-button-container#video-button-green, #sectionOne-text-box .video-button-container#video-button-red {
	display: none;
} 

.text-content-container {display: none;}

/* Section Two */

body.sectionTwo {background: #000 url('../img/background-main-section-two.jpg') no-repeat;}

.sectionTwo-menu-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 180px;
	background-color: #60411e;
	font-family: "Frutiger", sans-serif;
	
	
}

.video-menu-container {
	position: absolute;
	right: 0;
	top: 0;
	width: 360px;
	height: 900px;
	text-align: center;
	padding-top: 42px;
}

.video-button {
	margin-bottom: 25px;
	position: relative;
	text-align: center;
}

.video-button-image {
	position: relative;
	border-radius: 50%;
	margin-bottom: 5px;
	border: 8px solid transparent;
	z-index: 10;
}

.video-button-image.active {
	border: 8px solid #a5b048;
}

.video-button-glow {
	z-index: 1;
	display: none;
	position: absolute;
	left: 114px;
	top: -8px;
}

.video-button-glow.active {
	z-index: 1;
	display: block;
	animation: spin 4s infinite linear;
}

.video-button-glow.active.paused {
	animation-play-state: paused;
}

@keyframes spin {
	0%  {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}	
}

#video-container {
	position: absolute;
	left: 140px;
	top: 50px;
}

.nav-bottom-main-container-section-one, .nav-bottom-main-container-section-two, .nav-bottom-main-container-section-three {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 140px;
	text-align: center;
	padding-top: 40px;
}

.nav-bottom-main-container-section-one {
	width: 325px;
}

.nav-bottom-main-container-section-two {
	width: 360px;
}

.nav-bottom-main-container-section-three {
	width: 245px;
}

.nav-bottom-main-img {
	margin-bottom: 9px;
}

.video-nav-bottom-container {
	position: relative;
	margin: 0 auto;
	width: 535px;
	padding-right: 205px;
	text-align: center;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-nav-bottom {
	text-align: center;
	font-family: "Frutiger", sans-serif;
	font-size: 26px;
	
}

.video-nav-bottom .subhead {
	font-size: 20px;
}

.video-nav-left {
	position: absolute;
	left: 0;
	top: 60px;
}

.video-nav-right {
	position: absolute;
	right: 0;
	top: 60px;
	padding-right: 205px;
}


/* Section Three */


body.sectionThree {background: #000 url('../img/background-main-section-three.jpg') no-repeat;}

.sectionThree-menu-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 180px;
	background-color: #c85b2d;
	font-family: "Frutiger", sans-serif;
	
	
}

#sectionThree-map-container {
	position: absolute;
	top: 10px;
	left: 240px;
	z-index: 10;
}

#sectionThree-text-box {
	position: absolute;
	top:175px;
	left: 730px;
	box-sizing: border-box;
	width: 940px;
	height: 407px;
	color: #000;
	background-color: #e4a52f;
	font-family: "Frutiger", sans-serif;
	font-size: 18px;
	padding: 75px 75px 75px 275px;
	border-radius: 20px;
	box-shadow: 10px 10px 30px 0px rgba(0,0,0,0.5);
}

#nav-bottom-buttons-main-container {
	position: absolute;
	bottom: 0;
	left: 110px;
	width: 1580px;
	height: 180px;

}

#nav-bottom-buttons-sub-container-wanapum {
	position: absolute;
	bottom: 180px;
	left: 110px;
	width: 1385px;
	height: 180px;
	display: none;
}

#nav-bottom-buttons-sub-container-wanapum.active {
	display: block;
}

#nav-bottom-buttons-sub-container-saddle {
	position: absolute;
	bottom: 180px;
	left: 110px;
	width: 1580px;
	height: 180px;
	display: none;
}

#nav-bottom-buttons-sub-container-saddle.active {
	display: block;
}

.button-light-brown-sm {
	width: 132px;
	height: 92px;
	text-align: center;
	z-index: 1;
	font-family: "Frutiger", sans-serif;
	font-size: 14px;
	color: #fff;
	padding: 43px 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
	float: right;
	background-image: url('../img/button-brown-light-normal-sm.png');
	background-repeat: no-repeat;
    background-position: center;
}

.button-light-brown-sm.active{
	background-image: url('../img/button-brown-light-active-sm.png');
	filter: drop-shadow(0px 0px 5px rgba(254, 254, 254, 1));
}

.button-dark-brown, .button-light-brown, .button-yellow {
	width: 175px;
	height: 92px;
	text-align: center;
	z-index: 1;
	font-family: "Frutiger", sans-serif;
	font-size: 14px;
	color: #fff;
	padding: 43px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	float: right;
}

.button-dark-brown{
	background-image: url('../img/button-brown-dark-normal.png');
	background-repeat: no-repeat;
    background-position: center;
	filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
}

.button-dark-brown.active{
	background-image: url('../img/button-brown-dark-active.png');
	filter: drop-shadow(0px 0px 5px rgba(254, 254, 254, 1));
}

.button-light-brown {
	background-image: url('../img/button-brown-light-normal.png');
	background-repeat: no-repeat;
    background-position: center;
	filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
}

.button-light-brown.active{
	background-image: url('../img/button-brown-light-active.png');
	filter: drop-shadow(0px 0px 5px rgba(254, 254, 254, 1));
}

.button-yellow {
	background-image: url('../img/button-yellow-normal.png');
	background-repeat: no-repeat;
    background-position: center;
	filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
}

.button-yellow.active{
	background-image: url('../img/button-yellow-active.png');
	filter: drop-shadow(0px 0px 5px rgba(254, 254, 254, 1));
}


/* Screen Saver */

#info-bar {
	box-sizing: border-box;
	width: 100%;
	height: 120px;
	position: absolute;
	top: 0;
	background-color: rgba(42,48,76,.75);
	color: #fff;
	font-family: "Frutiger", sans-serif;
	font-size: 32px;
	text-align: center;
	padding: 25px;
	line-height: 40px;
}

#info-bar .sub-text {
	font-size: 11px;
}

#info-bar.info-space-one {
	top: 0px;
	background-color: rgba(42,48,76,.75);
}

#info-bar.info-noli-one {
	top: 960px;
	background-color: rgba(165,176,72,.75);
}

#info-bar.info-noli-two{
	top: 0px;
	background-color: rgba(112,170,221,.75);
}

#info-bar.info-rainier-one{
	top: 0px;
	background-color: rgba(112,170,221,.75);
}

#info-bar.info-hood-one{
	top: 960px;
	background-color: rgba(112,170,221,.75);
}

#info-bar.info-gandcanyon-one{
	top: 0px;
	background-color: rgba(172,127,83,.75);
}

#info-bar.info-palouse-one{
	top: 0px;
	background-color: rgba(90,91,46,.75);
}

#info-bar.info-redrocks-one{
	top: 960px;
	background-color: rgba(103,31,33,.75);
}

#info-bar.info-redrocks-two{
	top: 960px;
	background-color: rgba(199,90,44,.75);
}

#info-bar.info-arches-one{
	top: 960px;
	background-color: rgba(172,127,83,.75);
}

#info-bar.info-arches-two{
	top: 960px;
	background-color: rgba(88,66,36,.75);
}

#info-bar.info-lava-one{
	top: 0px;
	background-color: rgba(103,31,33,.75);
}

#info-bar.info-lava-two{
	top: 960px;
	background-color: rgba(228,165,47,.75);
}

#info-bar.info-volcano-one{
	top: 0px;
	background-color: rgba(103,31,33,.75);
}

#info-bar.info-volcano-two{
	top: 960px;
	background-color: rgba(199,90,44,.75);
}


/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (min-width: 35em) {

}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {

}

/* ==========================================================================
   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;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}