/* ------------ */
/* Font Imports */
/* ------------ */

@font-face {
    font-family: 'Brown Light';
    src: url('../fonts/BrownEntrataWeb-Light.eot');
    src: local(':)'),
    	url('../fonts/BrownEntrataWeb-Light.woff') format('woff'),
    	url('../fonts/BrownEntrataWeb-Light.svg') format('svg'),
    	url('../fonts/BrownEntrataWeb-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Brown';
    src: url('../fonts/BrownEntrataWeb-Regular.eot');
    src: local(':)'),
    	url('../fonts/BrownEntrataWeb-Regular.woff') format('woff'),
    	url('../fonts/BrownEntrataWeb-Regular.svg') format('svg'),
    	url('../fonts/BrownEntrataWeb-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Brown Bold';
    src: url('../fonts/BrownEntrataWeb-Bold.eot');
    src: local(':)'),
    	url('../fonts/BrownEntrataWeb-Bold.woff') format('woff'),
    	url('../fonts/BrownEntrataWeb-Bold.svg') format('svg'),
    	url('../fonts/BrownEntrataWeb-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Brown Glyph';
    src: url('../fonts/BrownEntrataWeb-Display.eot');
    src: local(':)'),
    	url('../fonts/BrownEntrataWeb-Display.woff') format('woff'),
    	url('../fonts/BrownEntrataWeb-Display.svg') format('svg'),
    	url('../fonts/BrownEntrataWeb-Display.ttf') format('truetype');
}

/* --- Global Styling --- */
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

html,
body {
	height: 100%;
	width: 100%;
}

body {
	margin: 0;
	padding: 0;
	background: #FFFFFF;
}

p,
h1,
h2,
h3,
h4,
h5 {
	line-height: 1em;
	margin: 0;
	padding: 0;
	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
}

h1 {
	font-family: 'Brown Bold';
	font-size: 2.5em;
	color: #FFFFFF;
}

h1::after {
	content: '';
	border-top: 7px solid #FFFFFF;
	width: 65px;
	margin: 50px 0px 0px 120px;
	height: 7px;
	display: block;
}

/* --- Slider Mobile --- */
.animate {
	transition: transform 0.3s ease-out;
}

.ms-touch.slider {
	overflow-x: scroll;
	overflow-y: hidden;

	-ms-overflow-style: none;
	/* Hides the scrollbar. */

	-ms-scroll-chaining: none;
	/* Prevents Metro from swiping to the next tab or app. */

	-ms-scroll-snap-type: mandatory;
	/* Forces a snap scroll behavior on your images. */

	-ms-scroll-snap-points-x: snapInterval(0%, 100%);
	/* Defines the y and x intervals to snap to when scrolling. */
}

/* --- Nav Content --- */
#sticky-nav {
	height: 70px;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	display: none;
}

.main-logo {
	height: 70px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    margin: 16px 32px;

	img {
		width: 70px;
	}

	.theme-toggle-btn {
		background-color: #fff;
		padding: 16px 32px;
		color: #B02D29;
		border: none;
		font-weight: 700;
		font-size: 18px;
	}
}

.right-nav-block {
	float: right;
	margin-right: 125px;
}

.nav-burger {
	width: 35px;
	height: 23px;
	display: inline-block;
	margin: 0px 35px;
	position: fixed;
	top: 28px;
	right: 0px;
	z-index: 20;
	cursor: pointer;
}

.burger-top {
	width: 35px;
	height: 3px;
	background-color: #FFFFFF;
	position: relative;
	top: 0px;
	transform: rotate(0deg);
	transform-origin: 100%;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.burger-top-rotate {
	transform: rotate(-45deg);
	transform-origin: 100%;
	top: -2px;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.burger-middle {
	width: 35px;
	height: 3px;
	background-color: #FFFFFF;
	position: relative;
	margin-left: 0px;
	top: 7px;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.burger-middle-rotate {
	width: 0px;
	margin-left: 20px;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.burger-bottom {
	width: 35px;
	height: 3px;
	background-color: #FFFFFF;
	position: relative;
	top: 14px;
	transform: rotate(0deg);
	transform-origin: 100%;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.burger-bottom-rotate {
	transform: rotate(45deg);
	transform-origin: 100%;
	top: 16px;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

a.rpap-outline-btn {
	font-family: 'Brown Light';
	font-size: 1em;
	color: #FFFFFF;
	text-decoration: none;
	background-color: rgba(255, 255, 255, 0.0);
	border: 1px solid #FFFFFF;
	padding: 10px 15px;
	display: inline-block;
	margin: 20px 15px;;
	cursor: pointer;
	position: relative;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

a.rpap-outline-btn:hover {
	background-color: rgba(255, 255, 255, 0.25);
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.pop-in-nav {
	width: 100%;
	height: 100%;
	background-color: #333333;
	padding: 100px 20px;
	position: fixed;
	top: 0px;
	left: 110%;
	z-index: 18;
	transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	-webkit-transition: all 1s;
}

.big-nav {
	font-family: 'Brown Bold';
	font-size: 1.75em;
	color: #FFFFFF;
	line-height: 2;
	text-align: center;
	border-bottom: 1px solid #FFFFFF;
}

.big-nav a {
	color: #FFFFFF;
	text-decoration: none;
}

.big-nav a:hover {
	color: #E42127;
	text-decoration: underline;
}

.move-nav {
	left: 0%;
	transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	-webkit-transition: all 1s;
}

.nav-entrata-logo {
	width: 100px;
	height: 20px;
	position: absolute;
	bottom: 50px;
	right: 50px;
}

.pop-in-btns {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0px auto;
}

.nav-logo {
	width: 100px;
	height: 20px;
	position: absolute;
	right: 50px;
	bottom: 50px;
}

/*--------------------*/
/*-- Header Section --*/
/*--------------------*/

/*-- Animated Background --*/
#rpap-header {
	height: 100%;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.rpap-header-color-start {
	height: 100%;
	width: 100%;
	background: linear-gradient(90deg, #E42127, #AC2E29);
	background-size: 400% 400%;
	position: absolute;
	z-index: 0;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

/* -- Language Select --- */
.language-select,
.language-select-nav {
	font-family: 'Brown';
	font-size: 0.88em;
	color: #FFFFFF;
	position: absolute;
	bottom: 20px;
}

.language-select {
	left: 20px;
}

.language-select-nav {
	left: 10%;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropbtn {
	width: 140px;
	font-family: 'Brown';
	font-size: 0.88em;
	border: 2px solid #FFFFFF;
	background-color: #FFFFFF;
	color: #E42127;
	padding: 5px 10px;
	margin: 10px 0px;
	cursor: pointer;
	text-align: right;
}

.drop-content {
	font-family: 'Brown';
	font-size: 0.88em;
	display: none;
	position: absolute;
	bottom: 40px;
	background-color: #F1F1F1;
	width: 140px;
	text-align: right;
}

.drop-content a {
	text-decoration: none;
	display: block;
	color: #E42127;
	padding: 5px 10px;
}

.drop-content a:hover {
	background-color: #DDDDDD;
	color: #000000;
}

.dropdown:hover .drop-content {
	display: block;
}

/*-------------------------*/
.intro-content {
	width: 100%;
	padding: 0px 10%;
	display: block;
	position: absolute;
	z-index: 2;
	text-align: center;
}

.intro-content h1:after {
	margin: 50px auto;
}

.start-align {
	width: 250px;
	margin: 50px auto;
}

.start-button {
	font-family: 'Brown';
	font-size: 1.13em;
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
	padding: 15px 40px;
	width: 250px;
	margin: 20px 0px;
	display: inline-block;
	float: none;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0);
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.start-button:hover {
	background-color: rgba(255, 255, 255, 0.2);
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.landing-content {
	width: 100%;
	padding: 0px 10%;
	display: block;
	position: absolute;
	z-index: 2;
}

.landing-nav {
	border-left: 1px solid #FFFFFF;
	margin-top: 50px;
}

.landing-nav a {
	width: auto;
	font-family: 'Brown Light';
	color: #FFFFFF;
	font-size: 1.25em;
	text-decoration: none;
	margin: 15px;
	display: table;
	position: relative;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.landing-nav a:first-of-type {
	margin-top: 0px;
	padding-top: 1px;
}

.landing-nav a:last-of-type {
	margin-bottom: 0px;
	padding-bottom: 1px;
}

.landing-nav a:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0px;
	left: 0px;
	background-color: rgba(255, 255, 255, 0.5);
	visibility: hidden;
	transform: scaleX(0);
	-webkit-transform: scaleX(0);
	transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
}

.landing-nav a:hover:before {
	visibility: visible;
	transform: scaleX(1);
	-webkit-transform: scaleX(1);
}

.one-third {
	width: 0%;
	float: left;
	display: none;
}

.two-third {
	width: 100%;
	float: left;
}

.small-font {
	font-family: 'Brown Light';
	font-size: 0.7em;
}

.display-font {
	font-family: 'Brown Glyph';
}

.reg-font {
	font-family: 'Brown Light';
}

.fouroh-switch,
.app-switch {
	font-family: 'Brown';
	font-size: .88em;
	color: white;
	text-decoration: underline;
	cursor: pointer;
	position: absolute;
	left: 10%;
	bottom: 100px;
}

/* --- Scroll Animation --- */
.scroll-prompt {
	height: 80px;
	width: 180px;
	font-family: 'Brown Light';
	text-align: center;
	font-size: 1em;
	color: #FFFFFF;
	position: absolute;
	bottom: 0px;
	left: 50%;
	margin-left: -90px;
	display: none;
}

.scroll-arrow {
	width: 25px;
	height: 50px;
	position: relative;
	margin: 0px auto;
	text-align: center;
}

.scroll-arrow img {
	width: 25px;
	position: absolute;
	left: 0px;
}

.scroll-arrow img:nth-of-type(1) {
	top: 10px;
}

.scroll-arrow img:nth-of-type(2) {
	top: 17px;
}

.scroll-arrow img:nth-of-type(3) {
	top: 24px;
}

.first-scroll-arrow {
	opacity: 0.3;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.second-scroll-arrow {
	opacity: 0.6;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.third-scroll-arrow {
	opacity: 1.0;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.accent-logo {
	background-image: url('../images/rp_outline.svg');
	background-repeat: no-repeat;
	height: 25%;
	width: 25%;
	position: absolute;
	bottom: -5%;
	left: 63%;
	display: block;
	opacity: 0.5;
}

/*------------------*/
/*-- Sticky Title --*/
/*------------------*/

.sticky-title {
	display: none;
	width: 350px;
	position: fixed;
	transform: rotate(90deg);
	transform-origin: top left;
	top: 200%;
	right: -300px;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	z-index: 5;
}

.sticky-title:before {
	content:'';
	width: 150px;
	border-top: 1px solid #E42127;
	display: inline-block;
	margin: 5px 15px 5px 0px;
}

.move-sticky-title {
	top: 10%;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.sticky-lettering {
	font-family: 'Brown Bold';
	font-size: 1em;
	color: #E42127;
	width: 0px;
	overflow: hidden;
	display: inline-block;
	white-space: nowrap;
	opacity: 0;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.video-sticky-title {
	overflow: hidden;
}

.features-sticky-title {
	overflow: hidden;
}

.tips-sticky-title {
	overflow: hidden;
}

.faqs-sticky-title {
	overflow: hidden;
}

.contact-sticky-title {
	overflow: hidden;
}

.visible-sticky-title {
	width: 150px;
	opacity: 1;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

/*--------------------*/
/*-- Videos Section --*/
/*--------------------*/
#app-videos {
	width: 100%;
	height: auto;
	outline: none;
	position: relative;
	padding-top: 75px;
}

.video-playlist {
	width: 94%;
	padding-bottom: 54%;
	margin: 3%;
	position: relative;
}

#video-placeholder {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
}

.video-window iframe,
.video-window object,
.video-window embed {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-text-holder {
	width: 70%;
	margin: 5% 15%;
	display: block;
}

.video-text {
	opacity: 0;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

/*-------------------*/
/*-- Guide Section --*/
/*-------------------*/
.guides-content {
	width: 100%;
	height: 100vh;
	padding: 0px;
	margin: 50px 0px;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto 50vh;
}

.guide-left {
	width: 100%;
	height: 100%;
	grid-column: 1 / 2;
	grid-row: 1 / 2;
}

.guide-left h3 {
	font-family: 'Brown';
	font-size: 1.44em;
	color: #666666;
	font-weight: bold;
	padding: 15px;
}

.guide-right {
	width: 100%;
	height: 120%;
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}

.guide-list {
	width: 100%;
	border-left: none;
}

.guide-item {
	font-family: 'Brown';
	font-size: 0.88em;
	color: #666666;
	padding: 15px;
	margin: 0px;
	border-bottom: 1px solid #CCCCCC;
	cursor: pointer;
}

.guide-item:last-of-type {
	border-bottom: none;
}

.guide-item:hover {
	color: #E42127;
}

.guides {
	height: 100%;
}

.guides-w {
	height: 100%;
}

.guide-slide-viewport {
	width: 100%;
	height: 100%;
	background-color: #F2F2F2;
	margin: 0px;
	position: relative;
}

.guides .slide-image {

}

.guidesw .slide-image {

}

.guides .slide-text {
	padding: 50px 0px 200px 0px;
}

.guides-w .slide-text {
	padding: 20px 0px 200px 0px;
}

.guide-1-slides,
.guide-2-slides,
.guide-3-slides,
.guide-4-slides,
.guide-5-slides,
.guide-6-slides {
	width: 100%;
	height: auto;
	padding: 30px 30px 15px 30px;
	position: absolute;
	left: 0px;
	top: 0px;
	opacity: 0;
	z-index: 1;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: 40% 35% 20%;
}

.guide-arrows-1,
.guide-arrows-2,
.guide-arrows-3,
.guide-arrows-4,
.guide-arrows-5,
.guide-arrows-6 {
	width: 100%;
	position: absolute;
	top: 30%;
	z-index: 5;
}

.guide-back1,
.guide-back2,
.guide-back3,
.guide-back4,
.guide-back5,
.guide-back6,
.guide-forward1,
.guide-forward2,
.guide-forward3,
.guide-forward4,
.guide-forward5,
.guide-forward6 {
	background-color: #E42127;
	cursor: pointer;
}

.guide-back1,
.guide-back2,
.guide-back3,
.guide-back4,
.guide-back5,
.guide-back6 {
	float: left;
}

.guide-forward1,
.guide-forward2,
.guide-forward3,
.guide-forward4,
.guide-forward5,
.guide-forward6 {
	float: right;
}

.guide-back1 img,
.guide-back2 img,
.guide-back3 img,
.guide-back4 img,
.guide-back5 img,
.guide-back6 img,
.guide-forward1 img,
.guide-forward2 img,
.guide-forward3 img,
.guide-forward4 img,
.guide-forward5 img,
.guide-forward6 img {
	height: 40px;
	width: auto;
	padding: 7px 13px;
}

.guide-back1 img,
.guide-back2 img,
.guide-back3 img,
.guide-back4 img,
.guide-back5 img,
.guide-back6 img {
	transform: rotate(180deg);
}

.slide-image {
	width: 90%;
	height: auto;
	margin: 0px auto;
	grid-column: 1 / 2;
	grid-row: 1 / 2;
}

.slide-text {
	width: 90%;
	height: auto;
	margin: 0px auto;
	font-family: 'Brown';
	font-size: 1em;
	color: #666666;
	line-height: 1.5;
	text-align: justify;
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}

/*----------------------*/
/*-- Features Section --*/
/*----------------------*/
#app-features {
	width: 100%;
	height: auto;
	outline: none;
	position: relative;
	clear: both;
	margin-top: 50px;
}

.alexa-top-grid {
	height: auto;
	display: block;
}

.alexa-banner {
	position: relative;
	background-image: linear-gradient(to right, #E42127, #AC2E29);
	background-size: cover;
	padding: 40px 0px 80px 10%;
	order: 0;
	width: 100%;
	margin: 100px 0px;
}

.alexa-quote-icon {
	height: 100%;
	width: 100%;
	background-image: url('../images/alexa_bkg.svg');
	background-repeat: no-repeat;
	position: absolute;
	top: 0px;
	left: 0px;

}

.alexa-top-grid h3 {
	font-family: "Brown";
	font-size: 2em;
	line-height: 1.5;
	color: #FFFFFF;
	text-indent: -0.4em;
}

.lower-alexa-icon {

}

.lower-alexa-prompt {
	font-family: 'Brown';
	font-size: 1em;
	color: #FFFFFF;
	padding-top: 60px;
}

/*----------*/
.alexa-image {
	width: 120px;
	position: absolute;
	left: 65%;
	top: 125px;
}

.alexa-blurb:before {
	content: '';
	border-top: 3px solid #E42127;
	width: 45px;
	padding-bottom: 70px;
	display: none;
}

.alexa-blurb {
	font-family: 'Brown Light';
	font-size: 1em;
	color: #666666;
	line-height: 1.5;
	padding: 20px;
	order: 1;
	width: 100%;
	margin: 200px 0px 0px 0px;
}

.alexa-bottom-grid {
	width: 100%;
	padding: 50px 0px;
	display: block;
	position: relative;
}

.bottom-grid-bkg {
	background-color: #F2F2F2;
	width: 100%;
	height: 45%;
	position: absolute;
	z-index: -1;
}

.feature-list,
.feature4-list {
	font-family: 'Brown Bold';
	font-size: 1em;
	width: 100%;
	order: 0;
	text-align: right;
	line-height: 2.5;
	display: none;
}

.feature-list a,
.feature4-list a {
	color: #888888;
	text-decoration: none;
}

.feature-list a:hover,
.feature4-list a:hover {
	color: #666666;
	text-decoration: underline;
}

.feature-nav {
	list-style: none;
	padding: 30px 100px;
}

.feature-mobile-nav,
.feature4-mobile-nav {
	display: block;
	width: 100%;
	height: 50px;
	position: absolute;
	top: 275px;
	z-index: 10;
}

.app-feature-mobile-left,
.app-feature-mobile-right,
.web-feature-mobile-left,
.web-feature-mobile-right {
	width: 40px;
	height: 50px;
	cursor: pointer;
	display: block;
}

.app-feature-mobile-left,
.web-feature-mobile-left {
	float: left;
}

.app-feature-mobile-right,
.web-feature-mobile-right {
	float: right;
}

.app-feature-mobile-left img,
.app-feature-mobile-right img,
.web-feature-mobile-left img,
.web-feature-mobile-right img {
	height: 40px;
	width: auto;
	padding: 5px 13px;
}

.app-feature-mobile-left img,
.web-feature-mobile-left img {
	transform: rotate(180deg);
}

.feature-list li {
	cursor: pointer;
}

.feature-explode,
.feature4-explode {
	width: 94%;
	order: 1;
	margin: 0px 3%;
}

.alexa-feature {
	margin-top: 60px;
	background-color: #E42127;
	width: 100%;
	padding-top: 100%;
	position: relative;
}

.alexa-feature p {
	font-family: 'Brown Light';
	font-size: 1em;
	color: #FFFFFF;
	line-height: 1.5;
	position: absolute;
	text-align: center;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	padding: 50px;
	z-index: 2;
}

.app-feature-slide,
.web-feature-slide {
	opacity: 0;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.feature-icon {
	width: 50px;
	height: 50px;
	margin: 0px auto;
}

.visible {
	opacity: 1;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

/*------------------*/
/*-- Tips Section --*/
/*------------------*/
#app-tips {
	width: 100%;
	outline: none;
	position: relative;
	clear: both;
	overflow: hidden;
	padding-top: 50px;
}

.tip-bkg {
	background-image: url('../images/phone_bkg.jpg');
	background-size: 320px 588px;
	background-position: top center;
	background-repeat: no-repeat;
	width: 100%;
	height: 317px;
	display: block;
	position: relative;
}

.tip-slider {
	width: 600%;
	height: 100%;
	position: absolute;
	left: 50%;
	margin-left: -170px;
}

.tip-text {
	width: 227px;
	height: 231px;
	background-image: linear-gradient(#E42127, #AC2E29);
	background-size: 100%;
	font-family: 'Brown Bold';
	font-size: 1em;
	color: #FFFFFF;
	text-align: center;
	padding: 30px;
	margin: 86px 50px 0px 50px;
	display: inline-table;
	vertical-align: middle;
	opacity: 1;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.tip-text p {
	height: 100%;
	width: 100%;
	display: table-cell;
	vertical-align: middle;
}

.tip-arrow-placement {
	width: 227px;
	height: 40px;
	top: 185px;
	left: 50%;
	margin-left: -119px;
	position: absolute;
	z-index: 10;
}

.slider-arrow-left,
.slider-arrow-right {
	background-color: transparent;
	width: 20px;
	height: 40px;
	cursor: pointer;
	margin-right: 3px;
}

.slider-arrow-left {
	float: left;
}

.slider-arrow-right {
	float: right;
}

.slider-arrow-left img,
.slider-arrow-right img {
	height: 20px;
	width: auto;
}

.slider-arrow-right img {
	margin: 10px 3px 10px 10px;
}

.slider-arrow-left img {
	transform: rotate(180deg);
	margin: 10px 10px 10px 3px;
}

.slider-dot-row {
	width: 100%;
	margin-top: 30px;
	margin-left: -10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.slider-dots {
	background-color: #CCCCCC;
	width: 6px;
	height: 6px;
	margin-top: 0px;
	margin-right: 50px;
	cursor: pointer;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.selected-dot {
	background-color: #E42127;
	width: 8px;
	height: 8px;
	margin-top: 1px;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.slider-dots:last-of-type {
	margin-right: 0px;
}

.slider-not-selected {
	opacity: 0.5;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.slider-really-not-selected {
	opacity: 0.15;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

/*----------------------*/
/*-- App FAQS Section --*/
/*----------------------*/
#app-faqs {
	width: 100%;
	outline: none;
	position: relative;
	clear: both;
	margin: 75px 0px 0px 0px;
	background-image: linear-gradient(#FFFFFF, #F0F0F0);
	padding-bottom: 75px;
}

.section-block {
	width: 94%;
	display: inline-flex;
	justify-content: space-evenly;
	margin: 70px 3% 20px 3%;
	text-align: center;
}

.question-section {
	display: none;
}

.faq-section {
	font-family: 'Brown';
	font-size: 0.69em;
	color: #999999;
	border-right: 1px solid #E42127;
	flex-grow: 1;
	text-align: center;
	padding: 20px 0px;
	cursor: pointer;
}

/*-- 4.0 FAQS Section --*/
#four-faqs {
	width: 100%;
	outline: none;
	position: relative;
	clear: both;
	margin: 75px 0px 0px 0px;
	background-image: linear-gradient(#FFFFFF, #F0F0F0);
	padding-bottom: 75px;
}

.faq4-section {
	font-family: 'Brown';
	font-size: 0.69em;
	color: #999999;
	border-right: 1px solid #E42127;
	flex-grow: 1;
	text-align: center;
	padding: 20px 0px;
	cursor: pointer;
}

.faq4-section:last-of-type {
	border-right: none;
}
/*------------------------*/

.faq-section-selected {
	color: #E42127;
}

.faq-show-section {
	display: block;
}

.faq-section:last-of-type {
	border-right: none;
}

.faq-questions-block {
	background-color: #FFFFFF;
	padding: 25px;
	font-size: 1em;
	color: #999999;
	margin-bottom: 7px;
}

.faq-question {
	font-family: 'Brown';
	width: 95%;
	cursor: pointer;
}

.faq-open-btn {
	height: 16px;
	width: 16px;
	float: right;
	cursor: pointer;
	transform: rotate(0deg);
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.faq-open-vert {
	content: '';
	height: 16px;
	width: 2px;
	background-color: #E42127;
	display: block;
	position: absolute;
	left: 7px;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.faq-open-hori {
	content: '';
	height: 2px;
	width: 16px;
	background-color: #E42127;
	display: block;
	position: absolute;
	top: 7px;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.faq-close-btn {
	transform: rotate(45deg);
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.color-change {
	background-color: #333333;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.faq-answer {
	font-family: 'Brown Light';
	line-height: 1.5;
	overflow: hidden;
	height: 0px;
	opacity: 0;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.faq-answer:before {
	content: '';
	border-top: 1px solid #E42127;
	width: 200px;
	height: 2px;
	display: block;
	margin-bottom: 25px;
	margin-top: 25px;
}

.faq-answer-open {
	overflow: visible;
	height: auto;
	opacity: 1;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.question-block {
	width: 94%;
	margin: 0px 3%;

}

/*---------------------*/
/*-- Contact Section --*/
/*---------------------*/
#app-contact {
	width: 100%;
	outline: none;
	position: relative;
	clear: both;
	background-color: #F0F0F0;
}

.contact-content {
	width: 100%;
	padding: 50px 20px;
	display: block;
}

.contact-header {
	width: 20%;
	font-family: 'Brown Bold';
	font-size: 1.44em;
	color: #E42127;
	padding: 10px 50px 10px 10px;
	border-right: 3px solid #E42127;
	display: none;
}

.contact-form {
	width: 100%;
	padding: 20px;
}

.contact-form p {
	font-family: 'Brown';
	font-size: 1em;
	color: #333333;
	line-height: 2;
	padding-bottom: 10px;
}

.contact-form ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.contact-form .contact-form-field {
	font-family: 'Brown';
	font-size: 1em;
	color: #666666;
	width: 90%;
	border: 1px solid #999999;
	padding: 8px 20px 5px 20px;
	margin: 10px 0px;
}

.contact-form .req {
	font-family: 'Brown';
	font-size: 1em;
	line-height: 2.5;
	color: #E42127;
	padding: 10px;
	position: relative;
	vertical-align: top;
}

.contact-drop-wrap {
	position: relative;
	width: 90%;
}

.contact-drop {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-family: 'Brown';
	font-size: 1em;
	color: #666666;
	width: 90%;
	border: 1px solid #999999;
	border-radius: 0px;
	padding: 8px 20px 5px 20px;
	margin: 10px 0px;
}

.contact-arrow {
	background-image: url('../images/drop_arrow.svg');
	cursor: pointer;
	height: 7px;
	width: 15px;
	position: absolute;
	top: 7px;
	right: 20px;
	display: inline-block
}

.form-textarea {
	font-family: 'Brown';
	font-size: 1em;
	color: #666666;
	width: 90%;
	border: 1px solid #999999;
	padding: 8px 20px 5px 20px;
	margin: 10px 0px;
}

.contact-outline-btn {
	font-family: 'Brown Bold';
	font-size: 1.15em;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #E42127;
	border: 1px solid #FFFFFF;
	padding: 10px 25px;
	display: inline-block;
	margin: 10px 0px;
	cursor: pointer;
	position: relative;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.contact-outline-btn:hover {
	background-color: #C61A2F;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.contact-sub {
	font-family: 'Brown Light';
	font-size: 0.75em;
	color: #E42127;
	padding: 10px 0px;
}

/*--------------------*/
/*-- Footer Section --*/
/*--------------------*/
#app-footer {
	width: 100%;
	background-color: #FFFFFF;
	position: relative;
}

.footer-nav {
	width: 94%;
	margin: 50px 3%;
	display: inline-flex;
	justify-content: space-evenly;
}

.footer-nav-rows {
	flex-grow: 1;
	text-align: center;
}

.footer-nav-rows a {
	font-family: 'Brown Light';
	font-size: 1em;
	color: #999999;
	line-height: 2;
	text-decoration: none;
}

.footer-nav-rows a:hover {
	text-decoration: underline;
}

img.footer-logos {
	width: 150px;
	height: 35px;
	text-align: center;
	margin: 20px auto;
	display: block;
}

.footer-copyright {
	font-family: 'Brown Light';
	font-size: 0.75em;
	color: #999999;
	text-align: center;
	width: 100%;
	padding: 20px;
}

.to-top {
	width: 35px;
	height: 35px;
	background-color: #E42127;
	position: absolute;
	bottom: 0px;
	right: 0px;
	display: none;
	z-index: 3;
	transform: rotate(180deg);
}

.to-top img {
	width: 16px;
	position: absolute;
	left: 50%;
	margin-left: -9px;
}

.to-top img:nth-of-type(1) {
	top: 10px;
}

.to-top img:nth-of-type(2) {
	top: 15px;
}

.to-top img:nth-of-type(3) {
	top: 20px;
}

/*------------------*/
/*-- Float Titles --*/
/*------------------*/

/*-- Float Title --*/
.float-video-title,
.float-features-title,
.float-tips-title,
.float-contact-title {
	font-family: 'Brown Bold';
	font-size: 1em;
	color: #E42127;
	position: absolute;
	right: auto;
	left: 20px;
	z-index: 10;
}

.float-video-title,
.float-contact-title {
	top: 30px;
}

.float-features-title {
	top: 470px;
}

.float-tips-title {
	top: 20px;
}

.float-video-title:before,
.float-features-title:before,
.float-tips-title:before,
.float-faqs-title:before,
.float-contact-title:before {
	content: '';
	position: relative;
	top: -4px;
	margin-right: 20px;
	background-color: #E42127;
	height: 1px;
	width: 150px;
	display: inline-block;
}

/*-- Fixed Title --*/
.float-faqs-title {
	font-family: 'Brown Bold';
	font-size: 1em;
	color: #E42127;
	position: absolute;
	top: 30px;
	right: auto;
	left: 30px;
}

@media screen and (min-width: 48em) {
	/* -- Landing Content -- */
	#sticky-nav {
		display: block;
	}

	h1 {
		font-size: 5.88em;
	}

	.small-font {
		font-size: 0.40em;
	}

	.one-third {
		width: 34%;
		display: block;
	}

	.two-third {
		width: 66%;
	}

	.pop-in-nav {
		padding: 150px 150px 100px 150px;
	}

	.big-nav {
		font-size: 3.25em;
	}

	/* -- Float Title Display on Desktop -- */
	.sticky-title {
		display: block;
	}
	/* -- Start Buttons -- */
	.start-align {
		width: 580px;
		margin: 50px auto;
	}

	.start-button {
		width: 250px;
		margin: 20px;
		display: inline-block;
		float: left;
	}

	.scroll-prompt {
		display: block;
	}

	/* -- Video Content -- */
	#app-videos {
		padding-top: 0px;
	}

	.video-playlist {
		width: 70%;
		padding-bottom: 39.375%;
		margin: 5% 15%;
	}
	/* -- Guide Content -- */
	.guides-content {
		height: auto;
		grid-template-columns: 30% 70%;
		grid-template-rows: 100%;
		padding: 0% 10%;
		margin: 125px 0px;
	}

	.guide-left {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}

	.guide-left h3 {
		padding: 30px 0px;
	}

	.guide-right {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}

	.guide-list {
		border-left: 2px solid #CCCCCC;
	}

	.guide-item {
		font-size: 1em;
		padding: 30px 0px;
		margin: 0px 30px;
	}

	.guide-slide-viewport {
		margin: 0px 30px;
	}

	.guide-1-slides,
	.guide-2-slides,
	.guide-3-slides,
	.guide-4-slides,
	.guide-5-slides,
	.guide-6-slides {
		grid-template-rows: 60% 35% 5%;
		padding: 100px 150px 30px 150px;
	}

	.guide-arrows-1,
	.guide-arrows-2,
	.guide-arrows-3,
	.guide-arrows-4,
	.guide-arrows-5,
	.guide-arrows-6 {
		top: 40%;
	}

	.slide-image {
		width: 75%;
	}

	.slide-text {
		width: 75%;
		height: 100%;
	}

	/* -- Feature Content -- */
	.alexa-top-grid {
		display: inline-flex;
	}

	.alexa-banner {
		width: 56%;
		padding: 40px 0px 40px 10%;
	}

	.alexa-top-grid h3 {
		font-size: 4em;
		text-indent: -0.4em;
		line-height: 1.25;
	}

	.alexa-image {
		width: 200px;
		top: 0px;
		left: 50%;
	}

	.alexa-blurb:before {
		content: '';
		display: block;
	}

	.alexa-blurb {
		padding: 0px 13% 0px 8%;
		width: 40%;
		margin: 100px 0px;
	}

	.alexa-bottom-grid {
		display: inline-block;
		padding: 150px 0px;
	}

	.feature-list,
	.feature4-list {
		width: 50%;
		display: block;
		float: left;
	}

	.feature-nav {
		list-style: none;
		padding: 30px 100px;
	}

	.feature-mobile-nav,
	.feature4-mobile-nav {
		display: none;
	}

	.feature-explode,
	.feature4-explode {
		width: 50%;
		order: 1;
		margin: 0px;
		float: left;
	}

	.alexa-feature {
		margin-top: 60px;
		width: 60%;
		padding-top: 60%;
	}

	.alexa-feature p {
		font-size: 1em;
		line-height: 1.5;
		padding: 100px;
	}

	.feature-icon {
		width: 75px;
		height: 75px;
		margin: 0px auto;
	}

	/* -- Tips Section -- */
	#app-tips {
		padding-top: 0px;
	}

	.tip-bkg {
		background-size: 500px 919px;
		width: 100%;
		height: 500px;
	}

	.tip-slider {
		width: 200%;
		height: 100%;
		margin-left: -238px;
	}

	.tip-text {
		width: 357px;
		height: 367px;
		font-size: 1.5em;
		padding: 30px;
		margin: 133px 50px 0px 50px;
	}

	.tip-arrow-placement {
		width: 357px;
		height: 40px;
		top: 300px;
		left: 50%;
		margin-left: -187px;
	}

	/* -- FAQ Content -- */
	#app-faqs {
		margin: 125px 0px 0px 0px;
		padding-bottom: 200px;
	}

	.section-block {
		width: 70%;
		margin: 50px 15% 20px 15%;
	}

	.faq-section {
		font-size: 1.2em;
	}

	.question-block {
		width: 70%;
		margin: 0px auto;
	}

	#four-faqs {
		margin: 125px 0px 0px 0px;
		padding-bottom: 200px;
	}

	.faq4-section {
		font-size: 1.2em;
	}

	/* -- Contact Content -- */
	.contact-content {
		width: 100%;
		padding: 5% 15%;
		display: inline-flex;
	}

	.contact-header {
		display: block;
	}

	.contact-form {
		width: 80%;
		padding: 10px 10px 10px 50px;
	}

	.contact-form .contact-form-field {
		width: 50%;
	}

	.contact-drop-wrap {
		width: 50%;
	}

	.contact-drop {
		width: 50%;
	}

	.form-textarea {
		width: 50%;
	}

	/* -- Footer Content -- */
	.footer-nav {
		width: 70%;
		margin: 50px 15%;
	}

	.to-top {
		display: block;
	}

	/* -- Float Titles -- */
	.float-video-title,
	.float-features-title,
	.float-tips-title,
	.float-faqs-title,
	.float-contact-title {
		display: none;
	}

}

.selected {
	color: #E42127;
}

.hide-this {
	display: none;
}

.clear {
	clear: both;
}

.guides-w .slide-text-padding-top {
	padding-top: 20px;
}
