* {
	outline: none;
	-webkit-box-sizing: border-box;   /* Safari 3-4, also probably droppable */
	-moz-box-sizing: border-box;   /* Firefox 1, probably can drop this */
    box-sizing:	border-box;
	-webkit-tap-highlight-color: rgba(0,0,0,0) !important;
	-webkit-font-smoothing: antialiased;
}

html, body, img, p, h1, h2, h3, h4, h5, h6, ul, ol, li, form, blockquote, dl, dt, dd, button, input {
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: 'Idealist-Sans';
	src: url('../fonts/idealist_sans-webfont.eot'); /* IE9 Compat Modes */
	src: url('../fonts/idealist_sans-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	     url('../fonts/idealist_sans-webfont.woff') format('woff'), /* Modern Browsers */
	     url('../fonts/idealist_sans-webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
	     url('../fonts/idealist_sans-webfont.svg#idealist_sans-webfont') format('svg'); /* Legacy iOS */
}

@font-face {
	font-family: 'Idealist-Sans-Light';
	src: url('../fonts/idealist_sans_light-webfont.eot'); /* IE9 Compat Modes */
	src: url('../fonts/idealist_sans_light-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	     url('../fonts/idealist_sans_light-webfont.woff') format('woff'), /* Modern Browsers */
	     url('../fonts/Idealist-Sans-Light.ttf')  format('truetype'), /* Safari, Android, iOS */
	     url('../fonts/idealist_sans_light-webfont.svg#Idealist-Sans-Light') format('svg'); /* Legacy iOS */
}

a, a:hover, a:active, a:visited {text-decoration: none;}

img {
	max-width: 100%;
	vertical-align: middle;
}

.clear {
	width: 100%;
	height: 0px;
	clear: both;
}

.clear.sep {
	height: 1px;
}
p {
	font: 16px/28px 'Idealist-Sans-Light', Helvetica, Arial, sans-serif;
	color: #000000;
}

ul, ol {
	list-style-position: inside;
}

.page-w {
	position: relative;
	width: 1040px;
	margin: 0 auto;
}



			/* INDEX */

body {background: #ffffff;}

html.nav-toggled,
html.nav-toggled body {overflow: hidden;}

#mobile-nav {
	position: fixed;
	width: 220px;
	height: 100%;
	padding-bottom: 20px;
	left: -220px;
	top: 0;
	opacity: 0;
	background: #00afe9;
	overflow: auto;
	z-index: 200;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

html.nav-toggled #mobile-nav {
	left: 0;
	opacity: 1;
}

#mobile-nav h1 {
	padding-left: 20px;
	font: 36px/80px 'Idealist-Sans', Helvetica, Arial, sans-serif;
	color: #ffffff;
}

#mobile-nav ul li {
	list-style: none;
}

#mobile-nav ul li a {
	display: block;
	padding-left: 20px;
	font: 400 16px/36px "Idealist-Sans", Helvetica, Arial, sans-serif;
	color: #ffffff;
}

#mobile-overlay {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background: none;
	cursor: pointer;
	z-index: 150;
}

html.nav-toggled #mobile-overlay {display: block;}

ul#nav {
	position: fixed;
	top: 48px;
	right: 50%;
	margin-right: 640px;
	z-index: 100;
}

ul#nav li {
	position: relative;
	list-style: none;
}

ul#nav li .icon {
	float: left;
	width: 15px;
	height: 31px;
	margin-right: 10px;
	background: url("../i/sprite.png") no-repeat left top;
}

ul#nav li:nth-child(even) .icon {
	margin-left: 31px;
	background-position: -15px top;
}

ul#nav li.test .icon,
ul#nav li.current .icon {background-position: left -31px;}

ul#nav li:nth-child(even).test .icon,
ul#nav li:nth-child(even).current .icon {background-position: -15px -31px;}

ul#nav li a {
	position: absolute;
	width: 210px;
	height: 31px;
	left: 0;
	top: 0;
	padding-left: 22px;
	font: 14px/31px "Idealist-Sans-Light", Helvetica, Arial, sans-serif;
	color: #505050;
	opacity: 0;
	-webkit-transition: opacity .3s ease-in-out;
	-moz-transition: opacity .3s ease-in-out;
	-o-transition: opacity .3s ease-in-out;
	transition: opacity .3s ease-in-out;
	letter-spacing: 0;
}

ul#nav li:nth-child(even) a {padding-left: 55px;}

ul#nav li:hover a {opacity: 1;}

p.step {
	position: relative;
	padding-left: 95px;
	font: 26px/36px 'Idealist-Sans', Helvetica, Arial, sans-serif;
	-webkit-backface-visibility: hidden;
}

p.step span {
	position: absolute;
	left: 0;
	top: 0;
	width: 76px;
	height: 76px;
	background: #00afe9;
	font: 40px/76px "Idealist-Sans", Helvetica, Arial, sans-serif;
	color: #ffffff;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}



		/* HEADER */

header {
	margin-bottom: 80px;
	padding-top: 1px;
}

.toggle-nav {
	display: none;
	position: relative;
	float: left;
	padding: 20px;
	left: -20px;
	top: -1px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.toggle-nav span {
	display: block;
	width: 20px;
	height: 3px;
	margin-top: 4px;
	background: #00afe9;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.toggle-nav span:first-child {margin-top: 0;}

html.nav-toggled .toggle-nav {
	left: 200px;
	background: #00afe9;
}

html.nav-toggled .toggle-nav span {background: #ffffff;}

nav {
	float: left;
	margin-top: 40px;
}

nav ul li {
	float: left;
	list-style: none;
	margin-right: 80px;
}

nav ul li:last-child {margin-right: 0;}

nav ul li a {
	font: 100 16px/28px "Idealist-Sans-Light", Helvetica, Arial, sans-serif;
	color: #000000;
	text-transform: uppercase;
}

.google-play {
	float: right;
	width: 150px;
	height: 52px;
	margin-top: 23px;
	background: url("../i/sprite.png") no-repeat left -62px;
}



		/* MAIN */

main {
	position: relative;
	margin-bottom: -240px;
	overflow: hidden;
}

	/* HOW-IT-WORKS */

#how-it-works {
	position: relative;
	padding-bottom: 370px;
	margin: 0 auto -130px;
	background: url("../i/how-it-works-bgr.png") no-repeat center bottom;
	z-index: 1;
}

#how-it-works .page-w {padding-right: 450px;}

#how-it-works .left-side {
	float: left;
	width: 485px;
}

.logo {
	margin-top: 35px;
}

#how-it-works h1 {
	margin: 10px 0 200px;
	font: 100 32px/32px "Idealist-Sans-Light", Helvetica, Arial, sans-serif;
	color: #000000;
	text-transform: uppercase;
}

#how-it-works p.step {
	margin: 100px 0 0 190px;
	color: #000000;
}

.pagination {
	margin-right: 150px;
	margin-top: 30px;
	text-align: right;
}

.pagination span {display: none;}

.pagination a {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin: 0 5px;
	background: #00afe9;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.pagination a.selected {background: #ee0d5a;}

#phone {
	position: absolute;
	width: 455px;
	height: 815px;
	right: 0;
	bottom: -817px;
	padding: 71px 48px 0 50px;
	background: url("../i/phone.png") no-repeat center top;
}

#phone.animate {
	-webkit-animation-name: phone-desktop;
	-webkit-animation-duration: 1500ms;
	-webkit-animation-delay: 500ms;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-name: phone-desktop;
	-moz-animation-duration: 1500ms;
	-moz-animation-delay: 500ms;
	-moz-animation-fill-mode: forwards;
	animation-name: phone-desktop;
	animation-duration: 1500ms;
	animation-delay: 500ms;
	animation-fill-mode: forwards;
}

#phone .caroufredsel_wrapper {
	background: #ffffff;
	height: 100% !important;
}

.preload {
	position: fixed;
	left: -99999px;
	top: -99999px;
	z-index: -100000;
	opacity: 0;
}

/* phone animation */
@-webkit-keyframes phone-desktop {
	0% {bottom: -817px;}
	
	100% {bottom: -317px;}
}

@keyframes phone-desktop {
	0% {bottom: -817px;}
	
	100% {bottom: -317px;}
}



	/* TOP-FEATURES */

#top-features {
	position: relative;
	z-index: 2;
}

#top-features section {
	position: relative;
	width: 120%;
	height: 800px;
	left: -10%;
	padding: 0px 0 0; /* 105 */	
	background: #ee0d5a;
	-webkit-transform: rotate(-2.5deg);
	-moz-transform: rotate(-2.5deg);
	-o-transform: rotate(-2.5deg);
	transform: rotate(-2.5deg);
	-webkit-backface-visibility: hidden;
	z-index: 1;
}

#top-features .page-w {
	position: relative;
	height: 100%;
	margin-bottom: -545px;
	padding: 105px 0;
	-webkit-transform: rotate(2.5deg);
	-moz-transform: rotate(2.5deg);
	-o-transform: rotate(2.5deg);
	transform: rotate(2.5deg);
	-webkit-backface-visibility: hidden;
	z-index: 10;
}

#top-features p.step {
	width: 400px;
	color: #ffffff;
}

#top-features p.step.three {
	position: absolute;
	right: 0;
	bottom: 160px;
}

.watch {
	position: relative;
	left: -556px;
}

#top-features.animate .watch {
	-webkit-animation-name: watch-desktop;
	-webkit-animation-duration: 800ms;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-name: watch-desktop;
	-moz-animation-duration: 800ms;
	-moz-animation-fill-mode: forwards;
	animation-name: watch-desktop;
	animation-duration: 800ms;
	animation-fill-mode: forwards;
	-webkit-transform: rotate(2.5deg);
	-moz-transform: rotate(2.5deg);
	-o-transform: rotate(2.5deg);
	transform: rotate(2.5deg);
	-webkit-backface-visibility: hidden;
}

/* watch animation */
@-webkit-keyframes watch-desktop {
	0% {
		left: -556px;
	}
	
	100% {
		left: 50%;
		margin-left: -630px;
	}
}

@keyframes watch-desktop {
	0% {
		left: -556px;
	}
	
	100% {
		left: 50%;
		margin-left: -630px;
	}
}

#top-features .bubble {
	position: absolute;
	left: 50%;
	top: 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	opacity: 0;
	-webkit-transform: rotate(2.5deg) scale(0);
	-moz-transform: rotate(2.5deg) scale(0);
	-o-transform: rotate(2.5deg) scale(0);
	transform: rotate(2.5deg) scale(0);
	-webkit-backface-visibility: hidden; /* needed if the animation is 2D only */
}

#top-features.animate .bubble {
	-webkit-animation-name: fadeIn-desktop;
	-webkit-animation-duration: 300ms;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-name: fadeIn-desktop;
	-moz-animation-duration: 300ms;
	-moz-animation-fill-mode: forwards;
	animation-name: fadeIn-desktop;
	animation-duration: 300ms;
	animation-fill-mode: forwards;
}

#top-features .bubble.small,
#top-features .bubble.large {background: #ffffff}

#top-features .bubble.small {
	width: 48px;
	height: 48px;
	margin-left: -75px;
	margin-top: 335px;
	-webkit-animation-delay: 1100ms;
	-moz-animation-delay: 1100ms;
	animation-delay: 1100ms;
}

#top-features .bubble.large {
	width: 88px;
	height: 88px;
	margin-left: -34px;
	margin-top: 360px;
	-webkit-animation-delay: 1400ms;
	-moz-animation-delay: 1400ms;
	animation-delay: 1400ms;
}

#top-features .bubble.img-1 {
	margin-left: 155px;
	margin-top: 300px;
	z-index: 3;
	-webkit-animation-delay: 2300ms;
	-moz-animation-delay: 2300ms;
	animation-delay: 2300ms;
}

#top-features .bubble.img-2 {
	margin-left: 10px;
	margin-top: 160px;
	z-index: 1;
	-webkit-animation-delay: 1700ms;
	-moz-animation-delay: 1700ms;
	animation-delay: 1700ms;
}

#top-features .bubble.img-3 {
	margin-left: 190px;
	margin-top: 30px;
	z-index: 2;
	-webkit-animation-delay: 2000ms;
	-moz-animation-delay: 2000ms;
	animation-delay: 2000ms;
}

/* Fade In animation on Bubbles */
@-webkit-keyframes fadeIn-desktop {
	0% {
		opacity: 0;
		-webkit-transform: rotate(2.5deg) scale(0);
		-moz-transform: rotate(2.5deg) scale(0);
		-o-transform: rotate(2.5deg) scale(0);
		transform: rotate(2.5deg) scale(0);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: rotate(2.5deg) scale(1);
		-moz-transform: rotate(2.5deg) scale(1);
		-o-transform: rotate(2.5deg) scale(1);
		transform: rotate(2.5deg) scale(1);
		-webkit-backface-visibility: hidden;
	}
}
@keyframes fadeIn-desktop {
	0% {
		opacity: 0;
		-webkit-transform: rotate(2.5deg) scale(0);
		-moz-transform: rotate(2.5deg) scale(0);
		-o-transform: rotate(2.5deg) scale(0);
		transform: rotate(2.5deg) scale(0);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: rotate(2.5deg) scale(1);
		-moz-transform: rotate(2.5deg) scale(1);
		-o-transform: rotate(2.5deg) scale(1);
		transform: rotate(2.5deg) scale(1);
		-webkit-backface-visibility: hidden;
	}
}



	/* MORE-FEATURES */

#more-features {
	position: relative;
	width: 120%;
	left: -10%;
	margin: 0 0 60px;
	padding: 140px 0 180px;
	background: #d3ecf4;
	-webkit-transform: rotate(-2.5deg);
	-moz-transform: rotate(-2.5deg);
	-o-transform: rotate(-2.5deg);
	transform: rotate(-2.5deg);
	-webkit-backface-visibility: hidden;
	z-index: 3;
}

#more-features .page-w {
	-webkit-transform: rotate(2.5deg);
	-moz-transform: rotate(2.5deg);
	-o-transform: rotate(2.5deg);
	transform: rotate(2.5deg);
	-webkit-backface-visibility: hidden;
}

.more-features-list li {
	float: left;
	width: 33%;
	list-style: none;
	text-align: center;
}

.more-features-list img {
	margin-bottom: 10px;
	border: 3px solid #ffffff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.more-features-list p.step {
	width: 225px;
	font: 100 15px/26px "Idealist-Sans-Light", Helvetica, Arial, sans-serif;
	text-align: left;
	padding: 90px 0 0 50px;
}



	/* FOOTER */

footer {
	position: relative;
	padding-top: 240px;
	z-index: 4;
	background-color: gray;
}

.feedback-carousel {
	position: relative;
	float: right;
	width: 675px;
	height: 420px;
	margin-top: -95px;
	padding-right: 25px;
}


.feedback-carousel .caroufredsel_wrapper {height: 100% !important;}
/*
.feedback-carousel ul {
	width: 100% !important;
	height: 100% !important;
}
*/

.feedback-carousel ul li {
	float: left;
	list-style: none;
	height: 100% !important;
}

.feedback-carousel img {
	float: right;
	position: relative;
	margin-left: 10px;
}

.feedback-carousel p {
	padding-top: 70px;
	font: 100 25px/35px "Idealist-Sans-Light", Helvetica, Arial, sans-serif;
	color: #ee0d5a;
	-webkit-transform: rotate(-2.5deg) translate3d(0,0,0);
	-moz-transform: rotate(-2.5deg) translate3d(0,0,0);
	-o-transform: rotate(-2.5deg) translate3d(0,0,0);
	transform: rotate(-2.5deg) translate3d(0,0,0);
	-webkit-backface-visibility: hidden;
}

.feedback-carousel .prev,
.feedback-carousel .next {
	position: absolute;
	width: 15px;
	height: 23px;
	background-image: url("../i/sprite.png");
	background-repeat: no-repeat;
	top: 190px;
}

.feedback-carousel .prev {
	background-position: left -114px;
	right: 295px;
}
.feedback-carousel .next {
	background-position: left -137px;
	right: 0;
}

#feedback .page-w > p {
	position: absolute;
	width: 63%;
	left: 0;
	bottom: 65px;
}






		/*** MEDIA QUERIES ***/

@media screen and (max-width: 1450px) {
	ul#nav {margin-right: 560px;}
	
	ul#nav li a {
		width: 55px;
		opacity: 0 !important;
	}

} /* /mediaquery */



@media screen and (max-width: 1330px) {
	ul#nav {display: none;}
	
	main {margin-bottom: 0;}
	
	#feedback {padding-top: 180px;}

}/* /mediaquery */



@media screen and (max-width: 1080px) {
	.page-w {
		width: 100%;
		padding: 0 20px;
	}
	
	#top-features section {padding: 0 10%;}
	#top-features .page-w {
		width: 100%;
		padding: 105px 20px 0;
	}
	
	nav ul li {margin-right: 50px;}
	
	#how-it-works p.step {
		width: 400px;
		margin: 100px auto 0;
	}
	
	.pagination {
		margin-right: 0;
		text-align: center;
	}
	
	#more-features {padding: 100px 10% 120px;}
	
	.more-features-list li {padding: 0 10px;}
	
	.more-features-list img {width: 80%;}
	
	.more-features-list p.step {width: 100%;}
	
	#feedback .page-w > p {
		width: 50%;
		left: 20px;
		font-size: 14px;
		line-height: 26px;
	}

}/* /mediaquery */



@media screen and (max-width: 950px) {
	header {margin-bottom: -10px;}
	
	nav {display: none;}
	
	.toggle-nav {display: block;}
	
	.google-play {margin: 5px 0 20px;}
	
	#how-it-works {padding-bottom: 500px;}
	
	#how-it-works .page-w {padding-right: 20px;}
	
	#how-it-works .left-side {
		float: none;
		width: 100%;
		text-align: center;
	}
	
	.logo {
		width: 340px;
		margin-top: 0;
	}
	
	#how-it-works h1 {
		font-size: 22px;
		margin-bottom: 25px;
	}
	
	#how-it-works .left-side p {padding: 0 30px;}
	
	p.step {
		padding-left: 70px;
		font-size: 24px;
		line-height: 30px;
	}
	
	p.step span {
		width: 56px;
		height: 56px;
		font-size: 28px;
		line-height: 56px;
	}
	
	#how-it-works p.step {
		width: 380px;
		margin: 120px 0 0 20px;
	}
	
	.pagination {
		padding-left: 140px;
		text-align: left;
	}
	
	#phone {
		width: 340px;
		height: 620px;
		bottom: -717px;
		padding: 54px 35px 89px 38px;
		background-size: contain;
	}
	
	#phone.animate {
		-webkit-animation-name: phone-tablet;
		-moz-animation-name: phone-tablet;
		animation-name: phone-tablet;
	}
	
	/* phone animation */
	@-webkit-keyframes phone-tablet {
		0% {bottom: -717px;}
		
		100% {bottom: -430px;}
	}
	
	@keyframes phone-tablet {
		0% {bottom: -717px;}
		
		100% {bottom: -430px;}
	}
	
	#top-features section {height: auto;}
	
	#top-features .page-w {
		height: auto;
		margin-bottom: 0;
		padding: 70px 20px 0 8%;
	}
	
	#top-features p.step {margin: 0 auto;}
	
	#top-features p.step.three {
		width: 340px;
		right: 50%;
		margin-right: -170px;
		bottom: -650px;
	}
	
	.bubble-holder {
		position: relative;
		width: 140%;
		height: 650px;
		padding: 0 30%;
		left: -20%;
		background: #ee0d5a;
	}
	
	#top-features.animate .watch {
		margin: 40px 0 -180px;
		-webkit-animation-name: watch-tablet;
		-moz-animation-name: watch-tablet;
		animation-name: watch-tablet;
	}
	
	@-webkit-keyframes watch-tablet {
		0% {
			left: -565px;
		}
		
		100% {
			left: 50%;
			margin-left: -370px;
		}
	}
	
	@keyframes watch-tablet {
		0% {
			left: -565px;
		}
		
		100% {
			left: 50%;
			margin-left: -370px;
		}
	}
	
	/* -250px */
	#top-features .bubble.small {margin-left: -325px;}
	#top-features .bubble.large {margin-left: -284px;}
	#top-features .bubble.img-1 {margin-left: -95px;}
	#top-features .bubble.img-2 {margin-left: -240px;}
	#top-features .bubble.img-3 {margin-left: -60px;}
	
	/* +100px */
	#top-features .bubble.small {margin-top: 435px;}
	#top-features .bubble.large {margin-top: 460px;}
	#top-features .bubble.img-1 {margin-top: 400px;}
	#top-features .bubble.img-2 {margin-top: 260px;}
	#top-features .bubble.img-3 {margin-top: 130px;}
	
	#top-features.animate .bubble {
		-webkit-animation-name: fadeIn-tablet;
		-moz-animation-name: fadeIn-tablet;
		animation-name: fadeIn-tablet;
	}
	
	@-webkit-keyframes fadeIn-tablet {
		0% {
			opacity: 0;
			-webkit-transform: rotate(2.5deg) scale(0);
			-moz-transform: rotate(2.5deg) scale(0);
			-o-transform: rotate(2.5deg) scale(0);
			transform: rotate(2.5deg) scale(0);
		}
		
		100% {
			opacity: 1;
			-webkit-transform: rotate(2.5deg) scale(1);
			-moz-transform: rotate(2.5deg) scale(1);
			-o-transform: rotate(2.5deg) scale(1);
			transform: rotate(2.5deg) scale(1);
			-webkit-backface-visibility: hidden;
		}
	}
	
	@keyframes fadeIn-tablet {
		0% {
			opacity: 0;
			-webkit-transform: rotate(2.5deg) scale(0);
			-moz-transform: rotate(2.5deg) scale(0);
			-o-transform: rotate(2.5deg) scale(0);
			transform: rotate(2.5deg) scale(0);
		}
		
		100% {
			opacity: 1;
			-webkit-transform: rotate(2.5deg) scale(1);
			-moz-transform: rotate(2.5deg) scale(1);
			-o-transform: rotate(2.5deg) scale(1);
			transform: rotate(2.5deg) scale(1);
			-webkit-backface-visibility: hidden;
		}
	}
	
	.more-features-list p.step {
		padding-top: 50px;
		font-size: 13px;
		line-height: 22px;
	}
	
	.feedback-carousel p {
		font-size: 20px;
		line-height: 30px;
	}

}/* /mediaquery */



@media screen and (max-width: 750px) {
	.feedback-carousel p {
		padding-left: 20px;
		font-size: 16px;
		line-height: 26px;
	}

}/* /mediaquery */



@media screen and (max-width: 700px) {
	.google-play {
		width: 130px;
		height: 45px;
		background-position: 0 -160px;
	}
	
	#how-it-works {
		padding-bottom: 625px;
		background: url("../i/how-it-works-bgr-2.png") no-repeat center bottom;
	}
	
	.logo {width: 280px;}
	
	#how-it-works h1 {
		font-size: 20px;
		margin: 5px 0 15px;
	}
	
	#how-it-works .left-side p {
		padding: 0;
		font-size: 14px;
		line-height: 24px;
	}
	
	#how-it-works p.step {margin-top: 50px;}
	
	.pagination {margin-top: 20px;}
	
	#phone {
		width: 280px;
		height: 510px;
		padding: 44px 29px 73px 31px;
		right: 50%;
		margin-right: -140px;
		bottom: -770px;
	}
	
	#phone.animate {
		-webkit-animation-name: phone-phone;
		-moz-animation-name: phone-phone;
		animation-name: phone-phone;
	}
	
	/* phone animation */
	@-webkit-keyframes phone-phone {
		0% {bottom: -770px;}
		
		100% {bottom: -550px;}
	}
	
	@keyframes phone-phone {
		0% {bottom: -770px;}
		
		100% {bottom: -550px;}
	}
	
	#top-features.animate .watch {
		width: 350px;
		max-width: none;
		margin-bottom: -100px;
		-webkit-animation-name: watch-tablet-2;
		-moz-animation-name: watch-tablet;
		animation-name: watch-tablet;
	}
	
	/* watch animation */
	@-webkit-keyframes watch-tablet-2 {
		0% {
			left: -350px;
		}
		
		100% {
			left: 50%;
			margin-left: -220px;
		}
	}
	
	@keyframes watch-tablet-2 {
		0% {
			left: -350px;
		}
		
		100% {
			left: 50%;
			margin-left: -220px;
		}
	}
	
	#top-features p.step.three {bottom: -480px;}
	
	.bubble-holder {height: 420px;}
	
	#top-features .bubble.small {
		width: 24px;
		height: 24px;
		margin-top: 295px;
		margin-left: -155px;
	}
	#top-features .bubble.large {
		width: 44px;
		height: 44px;
		margin-top: 310px;
		margin-left: -135px;
	}
	#top-features .bubble.img-1 {
		width: 92px;
		margin-top: 270px;
		margin-left: -45px;
	}
	#top-features .bubble.img-2 {
		width: 121px;
		margin-top: 200px;
		margin-left: -120px;
	}
	#top-features .bubble.img-3 {
		width: 166px;
		margin-top: 140px;
		margin-left: -20px;
	}
	
	#top-features.animate .bubble {
		-webkit-animation-name: fadeIn-phone;
		-moz-animation-name: fadeIn-phone;
		animation-name: fadeIn-phone;
	}
	
	@-webkit-keyframes fadeIn-phone {
		0% {
			opacity: 0;
			-webkit-transform: rotate(2.5deg) scale(0);
			-moz-transform: rotate(2.5deg) scale(0);
			-o-transform: rotate(2.5deg) scale(0);
			transform: rotate(2.5deg) scale(0);
		}
		
		100% {
			opacity: 1;
			-webkit-transform: rotate(2.5deg) scale(1);
			-moz-transform: rotate(2.5deg) scale(1);
			-o-transform: rotate(2.5deg) scale(1);
			transform: rotate(2.5deg) scale(1);
			-webkit-backface-visibility: hidden;
		}
	}
	@keyframes fadeIn-phone {
		0% {
			opacity: 0;
			-webkit-transform: rotate(2.5deg) scale(0);
			-moz-transform: rotate(2.5deg) scale(0);
			-o-transform: rotate(2.5deg) scale(0);
			transform: rotate(2.5deg) scale(0);
		}
		
		100% {
			opacity: 1;
			-webkit-transform: rotate(2.5deg) scale(1);
			-moz-transform: rotate(2.5deg) scale(1);
			-o-transform: rotate(2.5deg) scale(1);
			transform: rotate(2.5deg) scale(1);
			-webkit-backface-visibility: hidden;
		}
	}
	
	#more-features {padding-bottom: 0;}
	
	.more-features-list li {
		width: 100%;
		margin-bottom: 100px;
		padding: 0;
	}
	
	.more-features-list img {
		width: auto;
		margin-bottom: 20px;
	}
	
	.more-features-list p.step {
		width: 280px;
		margin: 0 auto;
		padding-top: 0;
		padding-left: 70px;
	}
	
	#feedback .page-w > p {
		position: relative;
		width: 100%;
		left: auto;
		bottom: auto;
		margin-bottom: 20px;
	}
	
	.feedback-carousel {
		float: none;
		width: 100%;
		padding: 0;
		margin-top: 0;
	}

}/* /mediaquery */



@media screen and (max-width: 550px) {
	.google-play {margin-bottom: 30px;}
	
	.feedback-carousel {height: 200px;}
	
	.feedback-carousel p {padding-top: 30px;}
	
	.feedback-carousel img {
		width: auto;
		height: 200px;
	}
	
	.feedback-carousel .prev,
	.feedback-carousel .next {
		top: 140px;
		left: 50%;
		right: auto;
	}
	
	.feedback-carousel .prev {margin-left: -100px;}
	
	.feedback-carousel .next {margin-left: -65px;}

}/* /mediaquery */



@media screen and (max-width: 450px) {
	#how-it-works h1 {line-height: 24px;}
	
	p.step {
		width: 280px;
		padding-left: 60px;
		font-size: 20px;
		line-height: 26px;
	}
	
	p.step span {
		width: 46px;
		height: 46px;
		font-size: 24px;
		line-height: 46px;
	}
	
	#how-it-works p.step,
	#top-features p.step,
	#top-features p.step.three {width: 280px;}
	
	#how-it-works p.step {margin-top: 30px;}
	
	.pagination {
		padding: 0;
		text-align: center;
	}
	
	#top-features p.step.three {margin-right: -160px;}
	
	#more-features {padding: 70px 0 0;}
	
	.more-features-list li {margin-bottom: 70px;}
	
	.more-features-list img {width: 250px;}
	
	.feedback-carousel p {
		font-size: 14px;
		line-height: 22px;
	}
	
}/* /mediaquery */



@media screen and (max-width: 400px) {
	.feedback-carousel p {padding-top: 10px;}
	
	.feedback-carousel .prev,
	.feedback-carousel .next {top: 160px;}

}/* /mediaquery */



@media screen and (max-width: 350px) {
	#how-it-works p.step {margin: 30px auto 0;}
	
}/* /mediaquery */












































































































