/* Global Styles */
html, body {
	font-size:14px;
	font-family:'sailec_light', helvetica, sans-serif;
}

body {
	background-color:#222;
}

a {
	text-decoration:none;
	color:inherit;
	cursor:pointer;
}

.mobileOnly {
	display:none !important;
}

#landscapeNotice {
	display:none;
}

.clearfix {
	clear:both;
}

span.bold {
	font-family:'sailec_bold',helvetica;
}

/* Loading Screen */

#loadingScreen {
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	background-color:#222;
	z-index:15;
}

img.loadingLogo {
	width:200px;
	height:200px;
	position:fixed;
	top:50%;
	left:50%;
	margin-left:-100px;
	margin-top:-125px;
}

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

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

.loading {
	border-radius:50%;
	width:24px;
	height:24px;
	border:0.25rem solid rgba(255, 255, 255, 0.2);
	border-top-color:white;
	-webkit-animation:spin 1s infinite linear;
	animation:spin 1s infinite linear;
	position:fixed;
	left:50%;
	top:50%;
	margin-left:-12px;
	margin-top:120px;
}

/* Type Styles */

p {
	text-align:center;
	color:#fff;
	width:calc(100% - 350px);
	margin:auto;
}

p.subhead span {
	font-size:18px;
	line-height:20px;
	color:rgba(180,180,170,1);
	padding-bottom:2px;
	border-bottom:1px solid rgba(180,180,170,1);
	text-transform:uppercase;
	letter-spacing:1px;
}

p.subhead {
	margin-bottom:20px;
}

p.large {
	font-size:3.5vw;
	line-height:1.25em;
	margin-bottom:1em;
}

p.medium {
	font-size:2.5vw;
	line-height:1.5em;
	margin-bottom:1em;
}

p.small {
	font-size:1.75vw;
	line-height:1.5em;
	margin-bottom:1em;
}

/* Nav */
nav#main {
	position:fixed;
	height:70px;
	width:100%;
	top:0;
	left:0;
	right:0;
	background-color:rgba(0,0,0,.8);
	z-index:10;
}
.logoHolder {
	position:fixed;
	height:40px;
	width:131px;
	top:15px;
	left:50%;
	margin-left:-65.5px;
}
img.logo {
	height:40px;
	width:auto;
}
.linkHolder {
	height:30px;
	line-height:33px;
	top:20px;
	left:30px;
}
.navLinks {
	position:fixed;
}
a.link {
	margin-right:15px;
	text-transform:uppercase;
	color:#fff;
	display:inline-block;
	height:30px;
	letter-spacing:1px;
}
a.link.current,
a.link:hover {
	color:rgba(180,180,170,1);
}

.burgerMenu {
	display:none;
}

/* Footer */
footer#footer {
	position:relative;
	height:70px;
	width:100%;
	background-color:rgba(0,0,0,.9);
	z-index:5;
}

.footerLinks {
	position:absolute;
}

.copyrightNotice {
	color:rgba(255,255,255,.4);
	font-size:12px;
	position:absolute;
	height:70px;
	right:20px;
	line-height:74px;
	letter-spacing:1px;
}

/* Social Media */

.socialMedia {
	width:200px;
	height:25px;
	position:absolute;
	top:22.5px;
	left:50%;
	margin-left:-100px;
	text-align:center;
}

img.socialMediaIcon {
	width:25px;
	height:25px;
	margin-left:7.5px;
	margin-right:7.5px;
	opacity:.5;
}

.socialMedia a:hover img {
	opacity:1;
}

img.socialMediaIcon.twitter {
	margin-bottom:-1px;
}

/* Hashtags */
#hashtags {
	position:fixed;
	bottom:20px;
	left:20px;
	width:110px;
	height:110px;
	line-height:33px;
	z-index:3;
	transition:opacity .4s;
}

a.hashtag {
	display:block;
	border:1px solid rgba(100,100,100,1);
	box-sizing:border-box;
	color:rgba(100,100,100,1);
	height:30px;
	width:100%;
	margin-bottom:10px;
	text-align:center;
	text-transform:uppercase;
	letter-spacing:1px;
	transition:color .2s, border .2s;
}

a.hashtag:hover,
a.hashtag.current {
	color:#fff;
	border:1px solid #fff;
}

a.hashtag:last-child {
	margin-bottom:0;
}

/* Down Arrow */
#arrowDown {
	width:40px;
	height:40px;
	position:fixed;
	left:50%;
	margin-left:-20px;
	bottom:15px;
	z-index:3;
	-webkit-animation:blink 1s infinite;
	animation:blink 1s infinite;
}

@keyframes blink {
	0%		{opacity:1;}
	50% 	{opacity:0;}
	100%	{opacity:1;}
}
@-webkit-keyframes blink {
	0%		{opacity:1;}
	50%		{opacity:0;}
	100%	{opacity:1;}
}

/* Backgrounds */

#backgrounds {
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	z-index:1;
}

.background {
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	z-index:1;
}

#background1 {
	background-color:#222;
	opacity:1;
}

#background2 {
	background-color:#222;
	opacity:0;
}

#background3 {
	background:url(../../assets/img/backgrounds/crowd-v2.jpg) no-repeat center center fixed; 
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size:cover;
	background-size:cover;
	opacity:0;
}

#background4 {
	background-color:#222;
	opacity:0;
}

#background5 {
	background:url(../../assets/img/backgrounds/footer.jpg) no-repeat center center fixed; 
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size:cover;
	background-size:cover;
	opacity:0;
}

/* Intro Video */

.videoContainer {
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:1;
}

.videoContainer video {
	min-width:100%; 
	min-height:100%; 
	width:auto;
	height:auto;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}

/* Sections */

#sections {
	position:relative;
	z-index:2;
}

.section {
	width:100%;
	padding-top:15vh;
	padding-bottom:15vh;
}

.section.fullScreen {
	padding-top:0;
	padding-bottom:0;
	height:100vh;
}

.section.fullScreen.padded {
	padding-top:15vh;
	height:100vh;
}

/* Tables */

.table {
	display:table;
	width:100%;
	height:100vh;
}

.tableCell {
	display:table-cell;
	vertical-align:middle;
}

.tableCell.bottom {
	vertical-align:bottom;
	padding-bottom:60px;
}

/* Interactive Chart */

#chartHolder {
	width:100%;
	margin:auto;
	background-color:rgba(0,0,0,0.6);
	padding-bottom:6vh;
	padding-top:6vh;
}

#saasChart {
	width:calc(100% - 600px);
	margin-left:300px;
	margin-top:10vh;
	margin-bottom:5vh;
}

#chartDescription {
	opacity:1;
	transition:opacity .2s;
	height:4vh;
	width:50vw;
}

/* Valued section */
.bannerWrapper {
	width:100vw;
	height:520px;
	overflow:hidden;
}

#imageBanner {
	height:400px;
	width:4912px;
	margin-top:15vh;
	margin-bottom:5vh;
	position:relative;
	-webkit-animation:scroll 30s linear infinite;
	animation:scroll 30s linear infinite;
	/* Hardware Accelerated */
	-webkit-transform:translate3d(0,0,0);
	-moz-transform:translate3d(0,0,0);
	-ms-transform:translate3d(0,0,0);
	-o-transform:translate3d(0,0,0);
	transform:translate3d(0,0,0);
}
@keyframes scroll {
	0%		{margin-left:0;}
	100% 	{margin-left:-2464px;}
}
@-webkit-keyframes scroll {
	0%		{margin-left:0;}
	100% 	{margin-left:-2464px;}
}
#imageBanner img:first-child {
	height:400px;
	width:2448px;
	position:absolute;
	left:0;
}
#imageBanner img:nth-child(2) {
	height:400px;
	width:2448px;
	position:absolute;
	left:2464px;
}
#bannerCaptionHolder {
	position:relative;
	height:15vh;
	line-height:15vh;
}
p.small.bannerCaption {
	position:absolute;
	top:0;
	left:0;
	right:0;
	line-height:15vh;
}

/* Phone Cards */
#phoneCards {
	position:relative;
	padding:0;
	margin-bottom:50px;
}

#cards {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	pointer-events:none;
}

img.phone {
	width:300px;
	height:600px;
	margin-top:50px;
	margin-bottom:50px;
	margin-left:calc(50% - 150px);
}

img.card {
	position:absolute;
	opacity:.5;
	left:50%;
}

img.card.onPhone {
	left:50%;
	margin-left:-110px;
	width:220px;
	opacity:.9;
}

/* Images on the phone */
img.card.imageCard 		{ top:157px; }
img.card.facebookCard	{ top:254px; }
img.card.youtubeCard	{ top:339px; }
img.card.twitterCard	{ top:465px; }

/* Floating images */
img.card:nth-child(1)	{ width:150px; top:147px; margin-left:-42.5vw; }
img.card:nth-child(2)	{ width:150px; top:467px; margin-left:-45.0vw; }
img.card:nth-child(3)	{ width:150px; top:297px; margin-left:-30.0vw; }
img.card:nth-child(4)	{ width:110px; top:517px; margin-left:-24.0vw; }
img.card:nth-child(5)	{ width:180px; top:67px;  margin-left:-28.0vw; }
img.card:nth-child(6)	{ width:120px; top:467px; margin-left: 14.0vw; }
img.card:nth-child(7)	{ width:120px; top:307px; margin-left: 18.0vw; }
img.card:nth-child(8)	{ width:140px; top:107px; margin-left: 34.0vw; }
img.card:nth-child(9)	{ width:150px; top:447px; margin-left: 35.0vw; }
img.card:nth-child(10)	{ width:120px; top:317px; margin-left: 32.0vw; }
img.card:nth-child(11)	{ width:120px; top:167px; margin-left: 15.0vw; }

/* Call to action */

.callToAction {
	width:500px;
	margin:auto;
	text-align:center;
	margin-top:50px;
	margin-bottom:20px;
	position:relative;
	z-index:5;
}

.callToAction a {
	background-color:rgba(255,255,255,0);
	border-radius:5px;
	padding:21px;
	padding-bottom:17px;
	color:#fff;
	border:1.5px solid #fff;
	font-family:'sailec_bold',helvetica;
	letter-spacing:1px;
	text-transform:uppercase;
	font-size:18px;
}

.callToAction a:hover {
	background-color:rgba(255,255,255,.25);
}

/* Product Page */

body.white {
	background-color:#f6f6f6;
}

body.white nav#main {
	background-color:rgba(255,255,255,1);
	border-bottom:1px solid #ccc;
}

body.white a.link {
	color:#000;
}

body.white a.link.current {
	color:#777;
}

body.white a.link.current:hover {
	color:#777;
}

/* Intro */

.productIntro {
	width:100%;
	height:90vh;
	position:relative;
	/* BG */
	background:url(../../assets/img/product/intro-v5.jpg) no-repeat fixed; 
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size:cover;
	background-size:cover;
}

.mobileIntro {
	display:none;
}

.gradientFade {
	width:65%;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7db9e8+0,000000+0,000000+100&0+0,0.3+100 */
	background: -moz-linear-gradient(left,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#4d000000',GradientType=1 ); /* IE6-9 */
}

p.productIntroTitle {
	text-align:right;
	font-size:2.75vw;
	font-family:'sailec_bold';
	color:#fff !important;
	line-height:1.25em;
	z-index:2;
	padding-bottom:20px;
	position:relative;
	margin-right:60px;
}

p.productIntroText {
	width:36.5%;
	text-align:right;
	color:#fff !important;
	font-size:2.75vw;
	margin-right:50px;
	line-height:1.25em;
	padding-top:.5em;
	z-index:2;
	position:relative;
}

p.productIntroText .introTextTitle {
	font-family:'sailec_bold',helvetica;
	display:block;
	margin-bottom:.5em;
}

#footer a.link {
	color:#fff;
}

/* Product Sections */

body.white p {
	color:#222;
	margin-bottom:0;
}

.textProductSection {
	padding:20vh;
	padding-left:0;
	padding-right:0;
	box-sizing:border-box;
}

.textProductSection.white,
.productSection.white,
.contactFormSection.white {
	background-color:#fff;
}

.productSection {
	position:relative;
	height:40vw;
	overflow:hidden;
}

.productSection .panelLeft,
.productSection .panelRight {
	background-color:#f6f6f6;
}

.productSection.white .panelLeft,
.productSection.white .panelRight {
	background-color:#fff;
}

.textPanel {
	display:table;
	padding:80px;
	box-sizing:border-box;
}

.textPanel .productPanel {
	display:table-cell;
	vertical-align:middle;
	font-size:20px;
	line-height:1.4em;
}

.productPanel.white {
	color:#fff;
	font-size:18px;
	line-height:1.4em;
}

.productPanel.white:last-child {
	margin-bottom:0;
}

span.panelTitle {
	display:block;
	font-size:1.5em;
	margin-bottom:1em;
}

.hiddenTab {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#222;
	color:#fff;
}

.hiddenTab .table {
	height:100%;
}

.panelLeft,
.panelRight {
	width:50%;
	width:calc(50% + 1px);
	position:absolute;
	height:100%;
	height:calc(100% + 1px);
	z-index:2;
	background-color:inherit;
	transition:left .5s, right .5s;
}

.panelLeft {
	left:0;
	top:0;
	bottom:-1px;
}

.panelRight {
	left:50%;
	top:0;
	bottom:-1px;
}

.panelLeft img,
.panelRight img {
	width:100%;
}

.productSection.open .moreButton {
	top:40px;
	transform:rotate(45deg);
	background-color:transparent;
}

.hiddenTab p.productPanel.white {
	width:calc(50% - 100px);
	margin-left:50px;
	display:inline-block;
	vertical-align:middle;
}

.hiddenTab p.productPanel.white img {
	height:calc(40vw - 100px);
}

.hiddenTab p.productPanel.alignLeft {
	text-align:left;
}

.hiddenTab p.productPanel.alignRight {
	text-align:right;
	margin-left:75px;
}

span.productPanelTitle {
	display:block;
	font-size:1.25em;
	line-height:1.4em;
}

/* Open Panels */

.productSection.open .panelLeft {
	left:-50%;
	left:calc(-50% - 1px);
}

.productSection.open .panelRight {
	left:100%;
	left:calc(100% + 1px);
}

/* More Button */

.moreButton {
	position:absolute;
	top:50%;
	left:50%;
	width:50px;
	height:50px;
	margin-left:-25px;
	margin-top:-25px;
	background-color:grey;
	z-index:3;
	border-radius:50%;
	border:1px solid rgba(150,150,150,1);
	background-color:rgba(255,255,255,1);
	cursor:pointer;
	transition:all .5s;
}

.moreButtonLine {
	width:32px;
	height:1px;
	background-color:rgba(150,150,150,1);
	display:block;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-16px;
}

.moreButtonLine:nth-child(2) {
	transform:rotate(90deg);
	-webkit-transform:rotate(90deg);
}

/* Image Banner */

.imageBanner {
	width:100%;
}

.productBannerImage {
	width:100%;
	height:auto;
}

/* Placeholder Contact Form */

/*

.contactForm {
	width:50%;
	margin:auto;
	margin-top:7.5vh;
	margin-bottom:10vh;
	font-size:18px;
	display:none;
}

.formField {
	padding:8px;
	padding-left:0;
	border-bottom:1px solid #ccc;
	margin-bottom:20px;
	transition:border .2s;
}

.formField:hover {
	border-bottom:1px solid #000;
}

.formTextField {
	border:1px solid #ccc;
	padding:10px;
	padding-top:12px;
	height:150px;
	margin-top:30px;
	transition:border .2s;
}

.formTextField:hover {
	border:1px solid #000;
}

.formSubmitButton {
	width:100%;
	padding:10px;
	padding-top:15px;
	border:1px solid #000;
	box-sizing:border-box;
	text-align:center;
	margin-top:30px;
	text-transform:uppercase;
	transition:background-color .2s;
	cursor:pointer;
}

.formSubmitButton:hover {
	background-color:#f6f6f6;
}
*/

/* Live Contact Form */

.contactFormSection {
	overflow:auto;
}

p.contactFormIntro {
	margin-top:15vh;
	font-size:20px;
	line-height:1.4em;
}

span.contactFormTitle {
	display:block;
	font-size:5vw;
	margin-bottom:.75em;
}

#form {
	width:50%;
	margin-left:25%;
	margin-bottom:50px;
	margin-top:50px;
	height:650px;
}

/* Mobile */
@media (max-width: 900px) {

	video::-webkit-media-controls-play-button,
	video::-webkit-media-controls,
	video::-webkit-media-controls-start-playback-button {
		opacity:0;
		pointer-events:none;
		display:none !important;
	}

	.mobileHide {
		display:none !important;
	}

	html, body {
		overflow-x:hidden;
	}

	nav#main {
		background-color:rgba(0,0,0,.9);
	}

	nav#main .navLinks {
		position:fixed;
		top:70px;
		left:0;
		bottom:0;
		right:0;
		background-color:rgba(0,0,0,.9);
		width:100%;
		height:100%;
		display:table;
		padding-bottom:70px; /* Compensate for the 70px of the header */
		opacity:0;
		pointer-events:none;
		transition:opacity .3s;
	}

	nav#main .navLinks.active {
		opacity:1;
		pointer-events:auto;
	}

	body.white nav#main .navLinks {
		background-color: #fff;
	}

	.burgerMenu {
		position:fixed;
		height:19px;
		top:26px;
		left:25px;
		width:32px;
		cursor:pointer;
		display:block;
	}

	.burgerLine {
		display:block;
		width:100%;
		height:3px;
		margin-bottom:5px;
		background-color:#fff;
	}

	body.white .burgerLine {
		background-color:#000;
	}

	.burgerLine:last-child {
		margin-bottom:0;
	}

	/* Burger Menu */

	.burgerMenu.active .burgerLine:nth-child(1) {
		transform:rotate(45deg);
		-webkit-transform:rotate(45deg);
		position:absolute;
		top:7px;
	}

	.burgerMenu.active .burgerLine:nth-child(2) {
		transform:rotate(-45deg);
		-webkit-transform:rotate(-45deg);
		position:absolute;
		top:7px;
	}

	.burgerMenu.active .burgerLine:last-child {
		opacity:0;
	}

	.mobileTableCell {
		display:table-cell;
		vertical-align:middle;
	}

	nav#main a.link {
		display:block;
		text-align:center;
		font-size:9vw;
		margin-bottom:1em;
		margin-right:0;
	}

	#hashtags {
		display:none;
	}

	p {
		width:80%;
	}

	p.medium {
		font-size:6vw;
	}

	p.large {
		font-size:6vw;
		line-height:1.5em;
	}

	/* Chart */

	#chartHolder {
		margin-top:10vh;
	}

	#saasChart {
		width:95%;
		margin-left:2.5%;
		margin-top:0;
	}

	#chartDescription {
		width:80%;
		height:auto;
		font-size:3.5vw;
	}

	/* Image Banner */

	.bannerWrapper {
		height:260px;
	}

	#imageBanner {
		height:200px;
		width:2456px;
		margin-top:7.5vh;
		margin-bottom:0;
		-webkit-animation:mobileScroll 24s linear infinite;
		animation:mobileScroll 24s linear infinite;
	}

	#imageBanner img:first-child {
		height:200px;
		width:1224px;
		position:absolute;
		left:0;
	}

	#imageBanner img:nth-child(2) {
		height:200px;
		width:1224px;
		position:absolute;
		left:1232px;
	}

	@keyframes mobileScroll {
		0%		{margin-left:0;}
		100% 	{margin-left:-1232px;}
	}
	@-webkit-keyframes mobileScroll {
		0%		{margin-left:0;}
		100% 	{margin-left:-1232px;}
	}

	p.small.bannerCaption {
		line-height:1.5em;
	}

	p.small {
		font-size:4.5vw;
	}

	#bannerCaptionHolder {
		line-height:1.5em;
		height:auto;
		margin-top:5vh;
		margin-bottom:10vh;
	}

	/* Bottom section */

	.callToAction {
		width:90%;
	}

	.callToAction a {
		font-size:4.5vw;
	}

	/* Phone Cards */

	img.phone {
		width:220px;
		height:440px;
		margin-left:calc(50% - 110px);
		margin-top:25px;
		margin-bottom:0;
		position:relative;
		z-index:10;
	}

	img.card.onPhone {
		width:158px;
		left:50%;
		margin-left:-79px;
		z-index:11;
	}

	img.card.imageCard 		{ top:105px; }
	img.card.facebookCard	{ top:177px; }
	img.card.youtubeCard	{ top:237px; }
	img.card.twitterCard	{ top:329px; }

	img.card:nth-child(1)	{ width:110px; top:77px;  margin-left:-60vw; }
	img.card:nth-child(2)	{ width:110px; top:200px; margin-left:-44vw; }
	img.card:nth-child(3)	{ width:120px; top:360px; margin-left:-60vw; }
	img.card:nth-child(4)	{ width:90px;  top:40px;  margin-left:32vw;  }
	img.card:nth-child(5)	{ width:150px; top:140px; margin-left:7vw;   }
	img.card:nth-child(6)	{ width:95px;  top:250px; margin-left:37vw;  }
	img.card:nth-child(7)	{ width:100px; top:370px; margin-left:18vw;  }
	img.card:nth-child(8)	{ display:none; }
	img.card:nth-child(9)	{ display:none; }
	img.card:nth-child(10)	{ display:none; }
	img.card:nth-child(11)	{ display:none; }


	/* Fix issue with background-position fixed on mobile */
	#background3 {
		background:url(../../assets/img/backgrounds/crowd-v2.jpg) no-repeat center center; 
		-webkit-background-size:cover;
		-moz-background-size:cover;
		-o-background-size:cover;
		background-size:cover;
		opacity:0;
	}

	#background5 {
		background:url(../../assets/img/backgrounds/footer.jpg) no-repeat center center; 
		-webkit-background-size:cover;
		-moz-background-size:cover;
		-o-background-size:cover;
		background-size:cover;
		opacity:0;
	}

	/* Footer */

	footer#footer {
		height:140px;
	}

	.footerLinks {
		position:absolute;
		height:70px;
		top:0;
		left:0;
		right:0;
		border-bottom:1px solid rgba(255,255,255,.25);
		text-align:center;
		line-height:70px;
	}

	.socialMedia {
		top:92.5px;
		text-align:left;
		left:10px;
		margin:0;
	}

	.copyrightNotice {
		top:70px;
		font-size:11px;
	}

	.gradientFade {
		display:none;
	}

	.productIntro {
		height:65vh;
		margin-top: 70px;
		background:url(../../assets/img/product/intro-v5.jpg) no-repeat; 
		-webkit-background-size:cover;
		-moz-background-size:cover;
		-o-background-size:cover;
		background-size:cover;
		background-position:0 0;
	}

	.productIntro .table {
		display:none;
	}

	.mobileIntro {
		display:block;
		background-color:#222;
		padding-top:5vh;
		padding-bottom:5vh;
	}

	body.white p.mobileIntroTitle {
		font-size:6vw;
		line-height:1.5em;
		margin-bottom:.5em;
		color:#fff;
	}

	body.white p.mobileIntroText {
		font-size:4vw;
		line-height:1.5em;
		color:#ccc;
	}

	.textProductSection {
		padding:10vh;
		padding-left:0;
		padding-right:0;
	}

	p.contactFormIntro {
		margin-top:10vh;
	}

	span.contactFormTitle {
		font-size:10vw;
	}

	/* Product Sections */

	.productSection {
		height:60vw;
	}

	.panelLeft,
	.panelRight {
		overflow:hidden;
	}

	.panelLeft img,
	.panelRight img {
		width:150%;
	}

	.textPanel {
		padding:30px;
	}

	.textPanel .productPanel {
		font-size:14px;
	}

	.moreButton {
		width:28px;
		height:28px;
		margin-left:-14px;
		margin-top:-14px;
	}

	.moreButtonLine {
		width:22px;
		margin-left:-11px;
	}

	.hiddenTab p.productPanel.white {
		font-size:12px;
		width:calc(100% - 40px);
		margin-left:20px;
	}

	.productSection.open .moreButton {
		top:25px;
	}

	span.productPanelTitle {
		font-size:1em;
		color:#ccc;
	}

	.hiddenTab .tableCell {
		padding-top:15px;
	}

	.mobileOnly {
		display:inline;
	}

	nav#main .mobileOnly {
		display:block !important;
	}
	
	/* Contact Form */
	
	#form {
		width:80%;
		margin-left:10%;
		margin-bottom:50px;
		margin-top:50px;
		height:650px;
	}

}

/* Landscape notice */

@media all and (max-device-width: 900px) and (orientation: landscape) {

	#landscapeNotice {
		display:block;
		position:fixed;
		top:0;
		left:0;
		right:0;
		bottom:0;
		z-index:100;
		background-color:#222;
	}

	p.notice {
		width:100%;
		line-height:100vh;
		font-size:3vw;
		color:#fff !important;
	}

}