/**
 * Base Stylings
 */
body{
	font-family: 'Open Sans', sans-serif;
	line-height: 1;
}

a{
	color:#FFF;
	text-decoration: none;
}

a:hover{
	color:inherit;
}

button{
	border: none;
	outline: none;
	background-color: transparent;
}

ul{
	list-style: none;
}

@media (max-width: 700px){
	body{
		text-align: center;
	}
}

/**
 * Skeleton overrides
 */

/** column--flipped is used when you want the first column to be on the right for large screen sizes and on top for small screen sizes*/
.column--flipped:first-child{
	float:right;
}

.container {
	width: 95%;
}

@media (min-width: 700px){
	.column--flippped:first-child{
		margin-left: 4%;
	}

	.column--flipped{
		margin-left:0;
	}
}

/*
 * Utilities
 */

.u-centerComplete{
  position:absolute;
  top:50%;
  left:50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

.u-clickable{
	cursor: pointer;
}

.u-hidden{
	display:none;
}

.u-noScroll{
	overflow:hidden;
}

.u-rightMargin{
	margin-right:12px;
}

.u-rightMargin2x{
	margin-right:24px;
}

@media (max-width: 400px){
	.u-hiddenSm{
		display:none;
	}
}

@media (min-width: 401px){
	.u-visibleSm{
		display:none;
	}
}

/*
 * Nav
 */
.Nav{
	height:64px;
	width:100%;
	font-size:14px;
	box-sizing: border-box;
	background:#03A9F4;
	color:#FFF;
}

.Nav--fixed{
	position:fixed;
	z-index:1;
	background: #FFF;
	color: #979797;
	border-color: #979797;
	border-bottom: 1px solid rgba(0,0,0,0.12);
	top:-64px;
	transition: 0.2s transform ease-out;
}

.Nav--fixed--visible{
	-webkit-transform: translate3d(0,64px,0);
	-ms-transform: translate3d(0,64px,0);
	transform: translate3d(0,64px,0);
}

.Nav-link{
	margin-top:25px;
	text-transform: uppercase;
	font-weight: 600;
	color: inherit;
}

/*
 * Log In Button
 */
.LogInBtn{
	text-align: center;
	text-transform: uppercase;
	border: 1px solid;
	border-radius: 5px;
	margin-top: 16px;
}

.Nav .LogInBtn{
	line-height: 32px;
	height: 32px;
	padding: 0 12px;
}

.Hero .LogInBtn{
	height: 44px;
	line-height: 44px;
	width: 284px;
	display: inline-block;
	margin-bottom: 16px;
}

.Hero .LogInBtn:hover{
	color: #FFF;
}

/*
 * Logo
 */
.Nav .Logo{
	margin-top:10px;
}

/*
 * Hero
 */

.Hero{
	background: #03A9F4;
	width: 100%;
	margin-bottom: -80px;
}

.Hero-appName{
	margin-top: 24px;
	margin-bottom:12px;
	display:block;
}

.Hero-description{
	color: #ffffff;
	font-size: 4.2rem;
	font-weight:300;
	line-height: 47px;
}

.Hero-phone{
	max-height:638px;
}

.Hero-videoCallToAction{
	color:#FFF;
	font-weight:600;
	text-transform: uppercase;
	line-height:1.4;
	font-size: 14px;
	display: inline;
}

.Hero-videoCallToAction-text{
	display: inline-block;
}

@media (max-width: 700px){
	.Hero-appName{
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 700px){
	.Hero-phone{
		float:right;
	}
}

/*
 * Download Buttons
 */
.DownloadBtnContainer{
	margin: 24px 0;
}

.FooterCallToAction .DownloadBtnContainer{
	margin-top: 32px;
	margin-bottom: 0px;
}

.DownloadBtn{
	height:44px;
	width:128px;
}

/*
 * Icon buttons
 */
.Icon-btn{
	display: inline-block;
	padding: 0;
}

.Icon-btn--videoCallToAction{
	height: 24px;
	width: 24px;
	position: relative; 
	top: 6px;
}

.Icon-btn--social{
	height: 44px;
	width: 44px;
}

/*
 * Feature
 */

.Feature{
	background-color:#FFF;
	padding:32px 0;
	color: #666;
}

.Feature:first-child{
	padding-top: 112px;
}

.Feature:nth-child(even){
	background-color: #F5F5F5;
}

.Feature-title{
	color: #03A9F4;
	font-size: 30px;
}

.Feature-subtitle{
	font-size: 24px;
}

.Feature-description{
	font-size:17px;
	line-height:24px;
}

.Feature-image{
	max-height:333px;
}

@media (max-width: 700px){
	.Feature-title{
		padding-top: 24px;
	}
}

/*
 * Footer Call To Action
 */

.FooterCallToAction{
	color:#FFF;
	background:#03A9F4;
	padding: 32px 0;
	text-align: center;
}

.FooterCallToAction-title{
	font-size: 30px;
}

/*
 * Footer
 */

.Footer{
	background-color: #3B3841;
	padding-top: 48px;
	font-size: 16px;
}

.Footer-links{
	color:#FFF;
}

.Footer-links li{
	margin-bottom:44px;
}

.Footer-description{
	color: rgba(255,255,255,0.5);
	line-height:1.25;
}


.Footer-socialLinks li{
	display:inline-block;
}

@media (min-width: 700px){
	.Footer-socialLinks{
		position: absolute;
		bottom: 18px;
	}
}

@media (max-width: 700px){
	.Footer-links{
		margin-bottom: 0; 
	}
}

/*
 * Button that controls scrolling back to the top of the page
 */
.ScrollToTopBtn{
	background: #E14185;
	height: 56px;
	width: 56px;
	border-radius: 50%;
	position:absolute;
	right:0px;
	bottom: -70px;
}

/*
 * Copyright
 */
.CopyrightContainer{
	color: rgba(255,255,255,0.5);
	background: #2C2933;
	height: 84px;
	box-sizing:border-box;
	position: relative;
}

.CopyrightContainer-companyName{
	color:#FFF;
}

/*
 * Video
 */
.VideoOverlay{
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	background: rgba(0,0,0,0.8);
}