* {
	font-family: Roboto,"Helvetica Neue",sans-serif;
	font-weight: 300;
	color: #333;
}

*, *:before, *:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;    
}

p,span,div {
	font-size: 14px;
}

strong {
	font-weight: 600;
}

html,body {
	padding: 0px;
	margin: 0px;
	height: 100%;
	background: #FFF;
}

a,
a:link,
a:active,
a:visited {
	color: #000;
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;   
}

a:hover {
	color:#F15A29;
	border: none;
}


.footer a,
.footer a:link,
.footer a:active,
.footer a:visited {
	color: #000;
	text-decoration: none;
	display: inline-block;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid rgba(255,255,255,0);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;   
}

.footer a:hover {
	color:#F15A29;
	border: 1px solid #F15A29;
}



.button .label {
	padding-left: 5px;
}

.button,
.button:link,
.button:visited,
.button:active {
	display: inline-block;
	padding: 12px 20px 12px 20px;
	font-size: 16px;
    font-weight: 300;
    text-decoration: none;
	color: #FFF;	
	background: #F15A29;
	border-radius: 25px;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
    border: 0px;
    -webkit-appearance: none;
    min-width: 130px;
    text-align: center;
    border: 0px;
}

.button strong {
	color: #FFF;	
}

.button.bigger {
    font-size: 18px;
	padding: 16px 24px 16px 24px;
	border-radius: 50px;
}

.button.border {
    color: #F15A29;
    border: 1px solid #F15A29;
    background: #FFF;
	padding: 10px 20px 10px 20px;
}

.button.border.white {
    color: #FFF;
    border: 1px solid #FFF;
    background: none;
}

.button.large {
    font-size: 25px;
    font-weight: 200;
	padding: 20px 50px 20px 50px;
}


input {
    background: #FFF;
    border-radius: 12px;
	padding: 16px 24px 16px 24px;
    border: 0px;
    font-size: 18px;
}

input[type="submit"] {
    margin-left: -20px;
    position: relative;
}

.button:hover {
	background: #F68E6D;
	color: #FFF;
}

.button:hover i {
	color: #FFF;
}

.button:hover i.anim {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.button i {
	color: #FFF;	
    pointer-events: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}


.header {
	width: 100%;
	height: 80px;
	top:0px;
	left: 0px;
	color: #FFF;
	position: fixed;	
    z-index: 100;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;    
}

.header.close {
    background: #FFF;    
}


.wrapper {	
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding: 50px 30px 70px 30px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	
}

.wrapper * {
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}


.header.close .wrapper {
	padding: 15px 30px 50px 30px;
}

.header .logo {
	float: left;
	display: inline-block;
}

.header.close .logo {
	margin-top: 10px;
}

.header.close .logo img {
	width: 100px;
	height: 30px;
}

/*
.header .logo::after {
    content: 'BETA';
    display: inline-block;
    font-size: 10px;
    vertical-align: top;
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -o-transform: scale(0,0);
    transform: scale(0,0);
    
    -webkit-animation:show-beta .5s 1;
    -moz-animation:show-beta .5s 1;
    -o-animation:show-beta .5s 1;
    animation:show-beta .5s 1;
    -webkit-animation-delay: .5s;
    -moz-animation-delay: .5s;
    -o-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
*/

.header.close .logo::after {
    font-size: 8px;
}

@-webkit-keyframes show-beta {
    0%   {
        -webkit-transform: scale(0,0);
        -webkit-transform-origin: 50% 50%;
    }100% {
        -webkit-transform: scale(1,1);
        -webkit-transform-origin: 50% 50%;
    }
}
@-moz-keyframes show-beta {
    0%   {
        -moz-transform: scale(0,0);
        -moz-transform-origin: 50% 50%;
    }100% {
        -moz-transform: scale(1,1);
        -moz-transform-origin: 50% 50%;
    }
}
@-o-keyframes show-beta {
    0%   {
        -o-transform: scale(0,0);
        -o-transform-origin: 50% 50%;
    }100% {
        -o-transform: scale(1,1);
        -o-transform-origin: 50% 50%;
    }
}
@keyframes show-beta {
    0%   {
        transform: scale(0,0);
        transform-origin: 50% 50%;
    }100% {
        transform: scale(1,1);
        transform-origin: 50% 50%;
    }
}


.header .nav {
    position: absolute;
    right: 8%;
    margin-top: 5px;
}

h1 {
	font-size: 60px;
	line-height: 62px;
	margin: 0px;
	color: #666;
	font-weight: 200;
	max-width: 350px;
}

h2 {
	font-size: 22px;
	margin: 10px 0px 30px 5px;
	font-weight: 200;
	max-width: 400px;	
}

h3 {
	font-weight: 200;
	font-size: 44px;
	text-align: center;
	padding: 25px 0px 25px 0px;
}

.body,
.main {
	height: 100%;	
}

body {
	
}

.promo {
	background: #FDEFDE url('/img/header-bg-new.svg') no-repeat bottom center;
	background-size: cover;
	background-position-y: 100%;
	text-align: left;
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.promo .title {
	padding: 20px;
	padding-top: 200px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.promo .beta-invite {
	padding: 20px 20px 50px 20px;
}

.main .intro {
	background: #3CBECC;
/* 	max-width: 1000px; */
	padding: 20px;
	margin-left: auto;
	margin-right: auto;
/* 	position: relative; */
}

.main .intro a,
.main .intro a:link,
.main .intro a:active,
.main .intro a:visited {
	font-size: 18px;
	color: #FFF;
	text-decoration: underline;
}

.main .intro a:hover {
	opacity: .8;
}

.main .intro a i {
	color: #FFF;
	padding-left: 10px;
}

.main .intro h3 {
	color: #FFF;
}

.main .intro img {
	margin-left: 50px;
}

.main .intro p,
.main .firsttime p,
.main .users p {
	line-height: 28px;
	font-size: 20px;
	color: #FFF;
	text-align: center;
}

.main .firsttime p {
	color: #666;
	font-weight: 200;
	padding-bottom: 50px;
}

.main .firsttime {
    background: #FFFF;
    text-align: center;
	margin-top: 0px;
}

.main .firsttime h3 {
	color: #F15A29;
}

.main .firsttime * {
    color: #333;
}

.main .firsttime .button.large {
	margin: 30px;
	display: inline-block;
	color: #F15A29;
	border-radius: 50px;
}

.main .firsttime .button.large:hover {
	color: #FFF;
}

.main .firsttime .title-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: space-between;
    align-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-around;
    justify-content: space-around; 
    padding-bottom: 50px;
}

.main .firsttime .title {
    font-size: 55px;
    color: #FFF;
    padding-left: 20px;
    padding-bottom: 20px;
    min-width: 300px;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
    line-height: 350px;
    text-align: left;
}

.main .firsttime .wrapper {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.main .firsttime .image {
    text-align: right;
    min-width: 300px;
    max-height: 400px;
    margin-top: -50px;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
}

.main .firsttime .image img {
	height: 100%;
	max-height: 400px;
	width: 400px;
	max-width: 90%;
}

.main .cols-container {
    margin-left: auto;
    margin-right: auto;
}

.main .cols {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: space-between;
    align-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}


.main .cols .col {
    max-width: 300px;
    min-width: 200px;
    padding-bottom: 30px;
    padding-right: 10px;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
}



.main .firsttime .step-subtitle {
    padding-bottom: 10px;
}

.main .firsttime .step-subtitle .subtitle {
    font-size: 24px;
    color: #FFF;
    padding-left: 8px;
}

.main .cols .col .text {
    font-size: 16px;
    color: #FFF;
    padding-bottom: 30px;
}

.main .cols .col .example {
    color: #FFF;
    height: 125px;
}
.main .cols .col .example strong {
    display: block;
    font-weight: 300;
}

.main .firsttime .title,
.main .firsttime .step-subtitle .subtitle,
.main .cols .col .text {
    color: #666;
}

.main .firsttime .cols .col .example .exnser {
    padding-right: 3px;
    border-radius: 100px;
	color: #666;
	-webkit-animation:anim-example 5s infinite;
    -moz-animation:anim-example 5s infinite;
    -o-animation:anim-example 5s infinite;
    animation:anim-example 5s infinite;	
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.main .firsttime .cols .col .example .phone {
    padding: 5px;
    border-radius: 100px;
    margin: 3px;
    line-height: 30px;
    background: #FFF;
    color: #F15A29;
}

.main .firsttime .cols .col .example .phone {
    background: #EEE;
}

.main .firsttime .cols .col .example .exkey {
    display: inline-block;
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -o-transform: scale(0,0);
    transform: scale(0,0);

    padding: 5px 8px 5px 8px;
    border-radius: 100px;
    margin: 3px;
    line-height: normal;
    background: #F15A29;
    color: #FFF;
    
    -webkit-animation:anim-key 5s infinite;
    -moz-animation:anim-key 5s infinite;
    -o-animation:anim-key 5s infinite;
    animation:anim-key 5s infinite;
}

.main .firsttime .cols .col .example .exnsers {
    margin: 5px;
    display: block;
    border-radius: 10px;
    margin-top: -40px;
    -webkit-animation:anim-groups 5s infinite;
    -moz-animation:anim-groups 5s infinite;
    -o-animation:anim-groups 5s infinite;
    animation:anim-groups 5s infinite;
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.main .firsttime .cols .col .example .exgroupnser {
    color: #F15A29;
    padding: 5px;
    margin: 3px;
    border-radius: 100px;
    line-height: 30px;

    background: #EEE;
	-webkit-animation:anim-groups-nser 5s infinite;
    -moz-animation:anim-groups-nser 5s infinite;
    -o-animation:anim-groups-nser 5s infinite;
    animation:anim-groups-nser 5s infinite;    
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.main .firsttime .cols .col .example .glue {
    background: #333;
    color: #FFF;
    padding: 5px 8px 5px 8px;
    margin: 5px;
    border-radius: 100px;
    display: inline-block;
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -o-transform: scale(0,0);
    transform: scale(0,0);   
    -webkit-animation:anim-groups-glue 5s infinite;
    -moz-animation:anim-groups-glue 5s infinite;
    -o-animation:anim-groups-glue 5s infinite;
    animation:anim-groups-glue 5s infinite;
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.main .firsttime .cols .col .example .exkey.key1 {
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.main .firsttime .cols .col .example .exkey.key2 {
    -webkit-animation-delay: 3s;
    -moz-animation-delay: 3s;
    -o-animation-delay: 3s;
    animation-delay: 3s;
}

.main .firsttime .cols .col .example .exkey.key3 {
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s;
    animation-delay: 2s;
}

.main .firsttime .cols .col .example .exkey.key4 {
    -webkit-animation-delay: 3.5s;
    -moz-animation-delay: 3.5s;
    -o-animation-delay: 3.5s;
    animation-delay: 3.5s;
}





@-webkit-keyframes anim-example {
    0%   {
        padding: 0px;
        padding-right: 3px;
        margin: 0px;
        line-height: 0px;
        background: none;
        color: #666;
    }10% {
        padding: 5px;
        margin: 3px;
        line-height: 30px;
        background: #EEE;
        color: #F15A29;
    }50% {
        padding: 5px;
        margin: 3px;
        line-height: 30px;
        background: #EEE;
        color: #F15A29;
    }60%   {
        padding: 0px;
        padding-right: 3px;
        margin: 0px;
        line-height: 0px;
        background: none;
        color: #666;
    }100%   {
        padding: 0px;
        padding-right: 3px;
        margin: 0px;
        line-height: 00px;
        background: none;
        color: #666;
    }
}
@-moz-keyframes anim-example {
    0%   {
        padding: 0px;
        padding-right: 3px;
        margin: 0px;
        line-height: 0px;
        background: none;
        color: #666;
    }10% {
        padding: 5px;
        margin: 3px;
        line-height: 30px;
        background: #EEE;
        color: #F15A29;
    }50% {
        padding: 5px;
        margin: 3px;
        line-height: 30px;
        background: #EEE;
        color: #F15A29;
    }60%   {
        padding: 0px;
        padding-right: 3px;
        margin: 0px;
        line-height: 0px;
        background: none;
        color: #666;
    }100%   {
        padding: 0px;
        padding-right: 3px;
        margin: 0px;
        line-height: 00px;
        background: none;
        color: #666;
    }
}
@-o-keyframes anim-example {
    0%   {
        padding: 0px;
        padding-right: 3px;
        margin: 0px;
        line-height: 0px;
        background: none;
        color: #666;
    }10% {
        padding: 5px;
        margin: 3px;
        line-height: 30px;
        background: #EEE;
        color: #F15A29;
    }50% {
        padding: 5px;
        margin: 3px;
        line-height: 30px;
        background: #EEE;
        color: #F15A29;
    }60%   {
        padding: 0px;
        padding-right: 3px;
        margin: 0px;
        line-height: 0px;
        background: none;
        color: #666;
    }100%   {
        padding: 0px;
        padding-right: 3px;
        margin: 0px;
        line-height: 00px;
        background: none;
        color: #666;
    }
}
@keyframes anim-example {
    0%   {
        padding: 0px;
        padding-right: 3px;
        margin: 0px;
        line-height: 0px;
        background: none;
        color: #666;
    }10% {
        padding: 5px;
        margin: 3px;
        line-height: 30px;
        background: #EEE;
        color: #F15A29;
    }50% {
        padding: 5px;
        margin: 3px;
        line-height: 30px;
        background: #EEE;
        color: #F15A29;
    }60%   {
        padding: 0px;
        padding-right: 3px;
        margin: 0px;
        line-height: 0px;
        background: none;
        color: #666;
    }100%   {
        padding: 0px;
        padding-right: 3px;
        margin: 0px;
        line-height: 00px;
        background: none;
        color: #666;
    }
}






@-webkit-keyframes anim-key {
    0%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }10%   {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }50%   {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }60%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }100%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }
}


@-moz-keyframes anim-key {
    0%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }10%   {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }50%   {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }60%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }100%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }
}


@-o-keyframes anim-key {
    0%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }10%   {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }50%   {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }60%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }100%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }
}

@keyframes anim-key {
    0%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }10%   {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }50%   {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }60%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }100%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }
}









@-webkit-keyframes anim-groups {
    0%   {
        padding: 0px;
        margin-top: -40px;
        background: none;
    }10% {
        padding: 5px 10px 5px 10px;
        margin-top: 0px;
        background: #EEE;
    }50% {
        padding: 5px 10px 5px 10px;
        margin-top: 0px;
        background: #EEE;
    }60%   {
        padding: 0px;
        margin-top: -40px;
        background: none;
    }100%   {
        padding: 0px;
        margin-top: -40px;
        background: none;
    }
}

@-moz-keyframes anim-groups {
    0%   {
        padding: 0px;
        margin-top: -40px;
        background: none;
    }10% {
        padding: 5px 10px 5px 10px;
        margin-top: 0px;
        background: #EEE;
    }50% {
        padding: 5px 10px 5px 10px;
        margin-top: 0px;
        background: #EEE;
    }60%   {
        padding: 0px;
        margin-top: -40px;
        background: none;
    }100%   {
        padding: 0px;
        margin-top: -40px;
        background: none;
    }
}

@-o-keyframes anim-groups {
    0%   {
        padding: 0px;
        margin-top: -40px;
        background: none;
    }10% {
        padding: 5px 10px 5px 10px;
        margin-top: 0px;
        background: #EEE;
    }50% {
        padding: 5px 10px 5px 10px;
        margin-top: 0px;
        background: #EEE;
    }60%   {
        padding: 0px;
        margin-top: -40px;
        background: none;
    }100%   {
        padding: 0px;
        margin-top: -40px;
        background: none;
    }
}
@keyframes anim-groups {
    0%   {
        padding: 0px;
        margin-top: -40px;
        background: none;
    }10% {
        padding: 5px 10px 5px 10px;
        margin-top: 0px;
        background: #EEE;
    }50% {
        padding: 5px 10px 5px 10px;
        margin-top: 0px;
        background: #EEE;
    }60%   {
        padding: 0px;
        margin-top: -40px;
        background: none;
    }100%   {
        padding: 0px;
        margin-top: -40px;
        background: none;
    }
}







@-webkit-keyframes anim-groups-nser {
    0%   {
        background: #EEE;
        padding: 5px;
        margin: 3px;
        border-radius: 100px;   
    }10% {
        background: none;
        padding: 0px;
        margin: 0px;
        border-radius: 100px;
    }50% {
        background: none;
        padding: 0px;
        margin: 0px;
        border-radius: 100px;
    }60%   {
        background: #EEE;
        padding: 5px;
        margin: 3px;
        border-radius: 100px; 
    }100%   {
        background: #EEE;
        padding: 5px;
        margin: 3px;
        border-radius: 100px; 
    }
}
@-moz-keyframes anim-groups-nser {
    0%   {
        background: #EEE;
        padding: 5px;
        margin: 3px;
        border-radius: 100px;   
    }10% {
        background: none;
        padding: 0px;
        margin: 0px;
        border-radius: 100px;
    }50% {
        background: none;
        padding: 0px;
        margin: 0px;
        border-radius: 100px;
    }60%   {
        background: #EEE;
        padding: 5px;
        margin: 3px;
        border-radius: 100px; 
    }100%   {
        background: #EEE;
        padding: 5px;
        margin: 3px;
        border-radius: 100px; 
    }
}
@-o-keyframes anim-groups-nser {
    0%   {
        background: #EEE;
        padding: 5px;
        margin: 3px;
        border-radius: 100px;   
    }10% {
        background: none;
        padding: 0px;
        margin: 0px;
        border-radius: 100px;
    }50% {
        background: none;
        padding: 0px;
        margin: 0px;
        border-radius: 100px;
    }60%   {
        background: #EEE;
        padding: 5px;
        margin: 3px;
        border-radius: 100px; 
    }100%   {
        background: #EEE;
        padding: 5px;
        margin: 3px;
        border-radius: 100px; 
    }
}

@keyframes anim-groups-nser {
    0%   {
        background: #EEE;
        padding: 5px;
        margin: 3px;
        border-radius: 100px;   
    }10% {
        background: none;
        padding: 0px;
        margin: 0px;
        border-radius: 100px;
    }50% {
        background: none;
        padding: 0px;
        margin: 0px;
        border-radius: 100px;
    }60%   {
        background: #EEE;
        padding: 5px;
        margin: 3px;
        border-radius: 100px; 
    }100%   {
        background: #EEE;
        padding: 5px;
        margin: 3px;
        border-radius: 100px; 
    }
}


@-webkit-keyframes anim-groups-glue {
    0%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);   
    }10% {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }50% {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }60%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }100%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }
}

@-moz-keyframes anim-groups-glue {
    0%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);   
    }10% {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }50% {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }60%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }100%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }
}

@-o-keyframes anim-groups-glue {
    0%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);   
    }10% {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }50% {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }60%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }100%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }
}

@keyframes anim-groups-glue {
    0%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);   
    }10% {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }50% {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }60%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }100%   {
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }
}

.main .firsttime .step {
    background: #F15A29;
    width: 36px;
    height: 36px;
    border-radius: 25px;
    color: #FFF;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    padding: 0px 0px 0px 5px;
}


.main .users {
	background: #FDEFDE url('/img/features-bg.svg') no-repeat bottom right;
	background-size: contain;
	background-position-y: 101%;
	padding-bottom: 200px;
}

.main .users h3,
.main .users p {
	color: #666;
}	

.main .users .col {
	text-align: center;	
}

.main .users h4 {
	font-size: 22px;
	color: #666;
}

.main .users p {
	font-size: 16px;
}

.main .users .col p {
	line-height: 20px;
}

.main .users .feature-icon {
	background: #F15A29;
	width: 80px;
	height: 80px;
	border-radius: 120px;
	display: inline-block;
}

.main .pricing {
	background: #3CBECC;
}

.main .pricing h3 {
	color: #FFF;
}

.main .pricing h4 {
	font-size: 30px;
	font-weight: 200;
}

.main .pricing .price {
	font-size: 60px;
	line-height: 60px;
	font-weight: 500;
	color: #F15A29;
	margin: 0px;
	height: 80px;	
}

.main .pricing .reason {
	font-size: 20px;	
}

.main .pricing * {
	text-align: center;
}

.main .pricing ul {
	list-style: none;
}

.main .pricing ul li {
	text-align: left;
	font-size: 16px;
	line-height: 18px;
	color: #666;
	padding-bottom: 15px;
}

.main .pricing ul li i {
	position: relative;
	margin-left: -20px;
	color: #CCC;
}

.main .pricing .col {
	background: #FFF;
	border-radius: 25px;
	padding: 20px;
	margin: 20px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;   
	
}

.main .pricing .col:hover {
	background: #F15A29;
	-webkit-transform: scale(1.05,1.05);
    -moz-transform: scale(1.05,1.05);
    -o-transform: scale(1.05,1.05);
    transform: scale(1.05,1.05);	
	
}

.main .pricing .col:hover * {
	color: #FFF;

}

.footer {
	padding: 30px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.footer .copyright {
	display: inline-block;
	padding: 10px;
}

.footer .nav {
	float: right;
}

#terms .main,
#privacy .main {
	padding-top: 150px;
}



@media only screen and (max-width: 1000px) {

	.main .firsttime .image {
		text-align: center;
	}
	
	.main .firsttime .title {
		text-align: center;
		line-height: 100px;
		
	}

}

@media only screen and (max-width: 600px) {
	
	h1 {
		font-size: 48px;	
		max-width: 260px;
	}
	
	h2 {
		font-size: 16px;
		max-width: 75%;
	}
	
	.promo {
		height: 500px;
		background-size: 200% auto;	
	}
	
	.button.betainvite {
		display: none;
	}
	.main .firsttime .image {
		text-align: center;
		width: 250px;
	}
	
	.main .firsttime .title {
		line-height: 100px;
		text-align: center;
	}
     
}





#body-push h2 {
	margin-bottom: 30px;
}

#body-push .button {
}

#body-push .button.agreed {
    margin-left: 30px; 
    margin-right: 30px; 
    margin-bottom: 30px;
}

#body-push .email-container {
	display: inline-block;
/* 	white-space: nowrap; */
	vertical-align: top;	
}

#body-push #email {
	border: 1px solid #EEE;
	display: inline-block;
    padding: 8px 20px 8px 14px;
    margin-bottom: 10px;
    height: 38px;
    vertical-align: top;
    font-size: 14px;
}

#body-push .button.email {
	margin-left: -23px;
	min-width: auto;
	background: #EEE;
}
