/*.landing-wrapper {
	cursor: url('../img/scroll-down-cursor-web.png'), auto;
}*/

.page-intro-block {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	color: #fff;
	text-align: left;
	font-family: 'Century Gothic';
	line-height: 20px;
}

h1 {
	font-weight: bold;
}

.intro-h2 {
	position: relative;
	display: block;
	font-weight: normal;
	margin-bottom: 15px;
}

.intro-quote {
	position: relative;
	display: block;
}

.top-p { }

.scroll-for-dummies {
	display: none;
}

.side-nav {
    -ms-transform: rotate(45deg); /* IE 9 */
    -ms-transform-origin: 20% 40%; /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    -webkit-transform-origin: 20% 40%; /* Chrome, Safari, Opera */
    transform: rotate(45deg);
    transform-origin: 20% 40%;
}

iframe.video,
video.html5video {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    cursor: auto;
}

.image-block-wrapper {
	position: relative;
	display: block;
	max-height: 100vh;
	padding: 30px 15px;
	max-width: calc(150vh - 60px);
	margin: 0 auto;
}

.image-block-wrapper .aspect-wrapper {
	max-height: calc(100vh - 30px);
}

.image-block-wrapper .aspect-content {
}

.image-block-wrapper img {
	position: relative;
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

.image-subtitle {
	position: absolute;
	bottom: 2px;
	left: 0;
	right: 0;
	font-size: 10px;
	text-align: center;
}

.image-down-arrow-wrapper {
	position: relative;
	display: block;
	margin-top: 26px;
}

.image-down-arrow-wrapper img {
	position: relative;
	display: block;
	width: 27px;
	height: auto;
	margin: 0 auto;
}


/* ====== Footer ====== */

.footer-wrapper {
	position: relative;
	display: block;
	width: 100%;
	padding: 0 15px;
	opacity: 0;
	transition: opacity 1s ease 0.35s;
}
.footer-wrapper.show {
	opacity: 1;
}

.footer {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto;
	max-width: 1800px;
	padding: 90px 0 30px;
	font-size: 9px;
}

.footer-left {
	position: relative;
	display: block;
	text-align: center;
	line-height: 14px;
	font-size: 10px;
	vertical-align: bottom;
	margin-bottom: 30px;
	width: 220px;
	margin: 0 auto 45px;
	/*border-top: 1px solid #fff;*/
	/*border-bottom: 1px solid #fff;*/
	/*padding: 12px 0;*/
}

.footer-contact-1 {
	position: relative;
	display: block;
	text-align: center;
	margin-bottom: 12px;
}

.footer-contact-2 {
	position: relative;
	display: block;
	text-align: center;
}

.footer-left span {
	position: relative;
	display: block;
}

.footer-left a:hover {
	text-decoration: underline;
}

.footer-right {
	position: relative;
	display: block;
	text-align: center;
	line-height: 13px;
	color: #929497;
	vertical-align: bottom;
}

	.footer-right-logos {
		position: relative;
		display: block;
		margin-bottom: 5px;
	}

		.footer-right-logos a {
			position: relative;
			display: inline-block;
		}

		.js-logo-link {}

		.polaris-logo-link {
				margin-left: 24px;
		}

			.js-logo {
				position: relative;
				display: inline-block;
				height: 16px;
				width: auto;
			}

			.polaris-logo {
				position: relative;
				display: inline-block;
				height: 24px;
				width: auto;
			}

	.footer-right-copy {
		position: relative;
		display: block;
		margin-bottom: 22px;
	}

	.fabric-link {
		position: relative;
		display: block;
		font-size: 10px;
		transition: color 0.5s;
	}

	.fabric-link:link,
	.fabric-link:visited {
		color: #929497;
	}

	.fabric-link:hover {
		color: #fff;
	}

	.fabric-link:active {
		color: #929497;
	}

/* animation stuff */

.image-waypoint {
	transition: opacity 1s cubic-bezier(0.075, 0.82, 0.165, 1), transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
	opacity: 0;
	-webkit-transform: translateY(60px) scale3d(0.95, 0.95, 1.0);
	-moz-transform: translateY(60px) scale3d(0.95, 0.95, 1.0);
	-ms-transform: translateY(60px) scale3d(0.95, 0.95, 1.0);
	transform: translateY(60px) scale3d(0.95, 0.95, 1.0);
}
.image-waypoint.show {
	opacity: 1;
	-webkit-transform: translateY(0px) scale3d(1,1,1);
	-moz-transform: translateY(0px) scale3d(1,1,1);
	-ms-transform: translateY(0px) scale3d(1,1,1);
	transform: translateY(0px) scale3d(1,1,1);
}

.subtitle-waypoint {
	opacity: 1;
	transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.arrow-waypoint {
	opacity: 1;
	transition: opacity 0.25s ease-out 0.1s, transform 0.25s ease-out 0.1s;
}

.subtitle-waypoint.hide,
.arrow-waypoint.hide {
	opacity: 0;
	-webkit-transform: translateY(-20px);
	-moz-transform: translateY(-20px);
	-ms-transform: translateY(-20px);
	transform: translateY(-20px);
}


@media all and (min-width: 960px) and (orientation : landscape), all and (min-width: 600px) and (orientation: portrait) {

	.page-intro-block {
		line-height: 24px;
	}

	h1 {
		font-size: 14px;
	}

	.intro-h2 {
		font-size: 14px;
		margin-bottom: 30px;
	}

	.top-p {
		font-size: 14px;
	}

	.scroll-for-dummies {
		display: inline;
		position: absolute;
		bottom: 30px;
		right: 0;
		left: 0;
		margin: 0 auto;
		cursor: pointer;
		width: 27px;
		transition: 2s ease 3s;
	}

	.pre-load .scroll-for-dummies {
		opacity: 0;
	}

	.load-in .scroll-for-dummies {
		opacity: 1;
	}

	.image-block-wrapper {
		padding: 90px 45px;
		max-width: calc(150vh - 180px);
	}

	.image-block-wrapper .aspect-wrapper {
		max-height: calc(100vh - 180px);
	}

	.image-subtitle {
		bottom: 40px;
		font-size: 12px;
	}

	.image-down-arrow-wrapper {
		margin-top: 26px;
	}

.footer-wrapper {
	padding: 0 90px;
}

.footer {
	padding: 120px 0 45px;
	font-size: 11px;
}

.footer-left {
	display: inline-block;
	width: 50%;
	text-align: left;
	line-height: 24px;
	font-size: 12px;
	vertical-align: bottom;
	margin-bottom: 0;
	padding: 0;
	border: none;
}

.footer-contact-1 {
	display: block;
	width: 100%;
	margin-bottom: 22px;
	text-align: left;
}

.footer-contact-2 {
	display: block;
	width: 100%;
	text-align: left;
}

.footer-right {
	display: inline-block;
	width: 50%;
	text-align: right;
	line-height: 16px;
	vertical-align: bottom;
}

	.footer-right-logos {
		margin-bottom: 22px;
	}

		.polaris-logo-link {
				margin-left: 24px;
		}

			.js-logo {
				height: 16px;
			}

			.polaris-logo {
				height: 24px;
			}

	.footer-right-copy {
		margin-bottom: 22px;
	}

	.fabric-link {
		font-size: 10px;
	}

}

@media all and (min-width: 1200px) {


	.footer-wrapper {
		padding: 0 180px;
	}


}