important
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type="checkbox"] {
	margin: 0;
}
img {
	max-width: 100%
}

/*--------------------------------------------------------------
## Fonts
--------------------------------------------------------------*/
@font-face {
	font-family: "lato-regular";
	src: url(../fonts/Lato-Regular.ttf);
}

@font-face {
	font-family: "lato-bold";
	src: url(../fonts/Lato-Bold.ttf);
}

@font-face {
	font-family: "lato-heavy";
	src: url(../fonts/Lato-Heavy.ttf);
}

.lato-regular {
	font-family: 'lato-regular';
}

@font-face {
	font-family: "gobold";
	src: url(../fonts/Gobold-Regular.otf);
}

/*---------------------
## EO Fonts
---------------------*/


/*-----------------
## @Lightbox
-----------------*/
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	background-color: rgba(0, 0, 0, 0.7);

	pointer-events: none;
	opacity: 0;
	z-index: 999;
	transition: .4s;
}
	.lightbox.active {
		cursor: pointer;
		pointer-events: auto;
		opacity: 1;
	}

.lightbox-content {
	cursor: auto;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 20px;

	width: auto;
	max-width: 1060px;
	height: 80%;
	max-height: 80%;
	width: 100%;

	-webkit-box-shadow: 0px 4px 9px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 4px 9px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 4px 9px 0px rgba(0,0,0,0.75);
}

.overflow-y {
	overflow-y: auto;
}

.lightbox-close {
	color: #fff;
	background: #333;
	border-radius: 15px;
	display: block;
	border: 2px solid #fff;
	margin: 0 auto;
	height: 31px;
	width: 31px;
	position: absolute;
	top: -10px;
	right: -10px;
	transition: .4s;

	-webkit-box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
}

.lightbox-close:after {
	content: '\2715';
    position: absolute;
    top: 4px;
    right: 6px;
    line-height: 1;
    font-size: 18px;
}

.lightbox-close:hover {
	background: #3f3f3f;
    cursor: pointer;
}

.lightbox-close:active {
	background: #2f2f2f;
    cursor: pointer;
}


/*--------------------------------------------------------------
## Own Defined Classes
--------------------------------------------------------------*/
/* Grid */
.column-2 {
	float: left;
	width: 50%;
	min-height: 1px;
}
	/* v2 */
	.column-2.v2:first-child {
		margin-right: 20px;
		width: 45%;
	}
	.column-2.v2:last-child {
		width: calc(55% - 20px);
	}
	/* v3 */
	.column-2.v3:first-child {
		border-right: 1px solid #999;
		width: 40%;
	}
	.column-2.v3:last-child {
		width: 60%;
		padding-left: 60px;
	}
	.column-2.v3 {
		padding-right: 60px;
	}

.column-3 {
	float: left;
	width: 33.3333333333%;
	min-height: 1px;
}
	/* space between */
	.column-3.space-between {
		margin-right: 20px;
		width: calc(33.333% - 13.333px);
	}
	.column-3.space-between:last-child {
		margin-right: 0;
	}

.column-4 {
	float: left;
	width: 25%;
	min-height: 1px;
}
	/* space between */
	.column-4.space-between {
		margin-right: 20px;
		width: calc(25% - 15px);
	}
	.column-4.space-between:last-child {
		margin-right: 0;
	}

.column-5 {
	float: left;
	width: 20%;
	min-height: 1px;
}
	.column-5.space-between {
		margin-right: 20px;
		width: calc(20% - 16px);
	}
	.column-5.space-between:last-child {
		margin-right: 0;
	}

.w-50 {
	width: 50%;
}

/* Margin & Padding */
.mb-0 {
	margin-bottom: 0 !important;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.mb-half {
	margin-bottom: .5em;
}
.mb-thirds {
	margin-bottom: .75em;
}
.mbm-1 {
	margin-bottom: 1em;
}
.mbm-2 {
	margin-bottom: 2em;
}
.mbm-3 {
	margin-bottom: 3em;
}
.mtm-1 {
	margin-top: 1em;
}
.mtm-2 {
	margin-top: 2em;
}
.mtm-4 {
	margin-top: 4em;
}

.mrx-10 {
	margin-right: 10px;
}
.mrx-20 {
	margin-right: 20px;
}
.mbx-5 {
	margin-bottom: 5px;
}
.mrx-8 {
	margin-right: 8px;
}
.mbx-20 {
	margin-bottom: 20px;
}
.mbx-40 {
	margin-bottom: 40px;
}
.mtx-10 {
	margin-top: 10px;
}
.mtm-2 {
	margin-top: 2em;
}
.mtm-3 {
	margin-top: 3em;
}

.prx-20 {
	padding-right: 20px;
}

.pym-333 {
	padding-bottom: 3.33em;
	padding-top: 3.33em;
}

.w-100 {
	width: 100%;
}
.h-100 {
	height: 100%;
}
.m-w-400px {
	max-width: 400px;
}
.m-w-700px {
	max-width: 700px;
}
.m-w-900px {
	max-width: 900px;
}

.va-middle {
	vertical-align: middle;
}

/* Position */
.relative {
	position: relative;
}

/* Display */
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}
.inline {
	display: inline;
}

/* Text Properties */
.bold{
	font-family: "Lato-Heavy";
}
.italic {
	font-style: italic;
}
.underline {
	text-decoration: underline;
}

.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

.text-lowercase {
	text-transform: lowercase;
}
.text-uppercase {
	text-transform: uppercase;
}
.text-normal {
	text-transform: none;
}

.lh-1 {
	line-height: 1;
}

.big-1 {
	font-size: 1.1em; /* 20px */
}
.big-2 {
	font-size: 1.22em; /* 22px */
}
.big-3 {
	font-size: 1.33em; /* 24px */
}
.big-4 {
	font-size: 1.5em; /* 27px */
}
.super-big {
	font-size: 6em; /* 108px ! */
	line-height: 1;
}

.small-1 {
	font-size: .89em; /* 16px */
}
.small-2 {
	font-size: .78em; /* 14px */
}
.small-3 {
	font-size: .67em; /* 12px s*/
}

.clearfix:after,
.price-list:after,
.packages-row:after,
.package:after,
.package-price:after,
#locations:after,
.feature-and-benefits:after,
.inner-wrap:after,
.big-inner-wrap:after,
.nav-menu:after,
.counter:after {
	content: " ";
	display: block;
	height: 0;
	overflow: hidden;
	clear: both;
}

* {
	box-sizing: border-box;
}

.inner-wrap {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1220px;
	margin-left: auto;
	margin-right: auto;
}
	.inner-wrap.big-inner-wrap {
		max-width: 1330px;
	}

/*--------------------------------------------------------------
## @General
--------------------------------------------------------------*/
body {
	font-size: 18px;
	font-family: "lato-regular","Trebuchet Ms", sans-serif;
	color: #fff;
	background-color: #252525;
	line-height: 1.3;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
	font-size: inherit;
	font-family: inherit;
	color: #333;
}

a {
	color: inherit;
	text-decoration: none;
	transition: .3s;
}
	a:hover {
		opacity: .8;
	}

ul.nav-menu li {
	float: left;
	margin-right: 20px;
}
	ul.nav-menu.vertical-list li {
		float: none;
		margin-right: 0;
		margin-bottom: 10px;
	}
	ul.nav-menu.collapsible li {
		margin-bottom: 10px;
	}
	ul.bullet-list {
		padding-left: 1em;
		list-style: disc;
	}
	ul.inline-list li {
		display: inline-block;
		float: none;
	}

section {
	padding-top: 35px;
	padding-bottom: 35px;
}
	section.bigger-padding {
		padding-top: 50px;
		padding-bottom: 50px;
	}

p {
	margin-bottom: 1em;
}

h1 {
	font-family: "Lato-Heavy", "Trebuchet Ms", sans-serif;
	line-height: 1;
	font-size: 2.78em;
    text-transform: uppercase;
}

h2 {
	line-height: 1;
	font-family: "Lato-Heavy", "Trebuchet Ms", sans-serif;
	font-size: 2.2em;
    text-transform: uppercase;
}

h3 {
	line-height: 1;
	font-size: 1.65em;
	font-family: "Lato-Heavy", "Trebuchet Ms", sans-serif;
}

/*---------------------------------
## @Objects
---------------------------------*/
.red {
	color: #cc3333;
}
	.red-2 {
		color: #da4047;
	}

.grey {
	color: #999;
}

.white-bg {
	background-color: #fff;
	color: #333;
}

.white-bg-v2 {
	background-color: #f2f2f2;
	color: #333;
}

.bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.bg-1 {
	background-image: url(../img/bg-1.png);
	
}

.bg-2 {
	background-image: url(../img/bg-2.jpg);
}

.bg-3 {
	background-image: url(../img/bg-3.jpg);
}

/*
.big-green-btn {
	display: inline-block;
	font-size: 1.67em;
	color: #fff;
	font-family: "Lato-Heavy", "Trebuchet Ms", sans-serif;
	border: none;
	background-color: #5fb760;
	width: 100%;
	max-width: 400px;
	padding: .8em 1.67em;
	text-align: center;
	border-radius: 5px;
	outline: 0;
	cursor: pointer;
	transition: .4s;
	-webkit-appearance: none;
}
	.big-green-btn:hover {
		background-color: #095a09;
	}
*/

.big-green-btn,
input[type="submit"] {
	display: inline-block;
	font-size: 1.67em;
	color: #fff;
	font-family: "Lato-Heavy", "Trebuchet Ms", sans-serif;
	border: none;
	background-color: #5fb760;
	width: 100%;
	max-width: 400px;
	padding: .8em;
	text-align: center;
	    border: 5px solid #5ec80b;
    border-radius: 50px;
	outline: 0;
	cursor: pointer;
	transition: .2s;
	-webkit-appearance: none;
 
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b4e391+0,4a980a+28,65d10c+100 */
background: #b4e391; /* Old browsers */
background: -moz-linear-gradient(top, #b4e391 0%, #4a980a 28%, #65d10c 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #b4e391 0%,#4a980a 28%,#65d10c 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #b4e391 0%,#4a980a 28%,#65d10c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4e391', endColorstr='#65d10c',GradientType=0 ); /* IE6-9 */

}
	input[type="submit"].w-100 {
		max-width: 100%;
		width: 100%;
	}
	.big-green-btn:hover,
	input[type="submit"]:hover {
		transform: scale(.985);
		opacity: 1;
	}

.regular-btn {
	display: inline-block;
}

.regular-btn.black-btn {
	color: #fff;
	background-color: #333;
	padding: .7em .89em .8em;
	border-radius: 5px;
	transition: .3s;
	font-size: .89em;
	font-family: "Lato-Heavy", "Trebuchet Ms", sans-serif;
}
	.black-btn:hover {
		background-color: #da4047;
		opacity: 1;
	}

.regular-btn.green-btn {
	color: #fff;
	/*background-color: #5fb760;*/
	padding: .7em .89em .8em;
	border-radius: 5px;
	font-size: .89em;
	font-family: "Lato-Heavy", "Trebuchet Ms", sans-serif;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b4e391+0,4a980a+28,65d10c+100 */
background: #b4e391; /* Old browsers */
background: -moz-linear-gradient(top, #b4e391 0%, #4a980a 28%, #65d10c 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #b4e391 0%,#4a980a 28%,#65d10c 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #b4e391 0%,#4a980a 28%,#65d10c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4e391', endColorstr='#65d10c',GradientType=0 ); /* IE6-9 */

}
	.green-btn:hover {
		transform: scale(.985);
		opacity: 1;
	}

/*---------------------------------
## @Header
---------------------------------*/
#header {
	background-color: #da4047;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 0 14px;
	z-index: 999;
	height: 45px;
}
	#body {
		margin-top: 45px;
	}

#main-site-nav {
	float: left;
	width: 718px;
	text-transform: uppercase;
	font-size: .8em;
}
	#main-site-nav ul.nav-menu li {
		margin-right: 0;
	}
	#main-site-nav ul.nav-menu li a {
		padding: 16px 10px;
		display: inline-block;
	}

#site-contact-info {
	float: right;
	text-align: right;
	width: calc(100% - 718px);
	padding: 10px 0;
}
	#site-contact-info a.menu-link {
		font-size: .8em;
		text-transform: uppercase;
		margin-right: 0;
	}
	#site-contact-info p {
		display: inline-block;
	}

.free-trial-badge.free-trial-badge-home {
	position: absolute;
    top: 55px;
    right: -40px;
}
	.free-trial-badge.free-trial-badge-home img {
		width: 130px;
	}

.free-trial-badge {
	position: absolute;
    top: 0;
    right: 50px;
}
	.free-trial-badge img {
		width: 90px;
	}

@media only screen and (max-width: 650px) { 
	.free-trial-badge:not(.free-trial-badge-home) {
		display: none !important;
	}
}

@media only screen and (min-width: 1046px) and (max-width: 1280px) { 
	.free-trial-badge.free-trial-badge-home {
		display: none !important;
	}
}

@media only screen and (max-width: 1045px) {
	.free-trial-badge.free-trial-badge-home {
	    top: 90px;
	    right: 30px;
	}
}

@media only screen and (max-width: 600px) {
	.free-trial-badge.free-trial-badge-home {
	    display: none !important;
	}
}

/*---------------------------------
## @Footer
---------------------------------*/
#footer {
	background-color: #202020;
	color: #ccc;
	font-size: .9em;
}

#footer a {
	color: #999;
}

/* Footer Content */
.footer-content {
	padding-top: 60px;
	padding-bottom: 50px;
}

.footer-content h3 {
	font-size: 1rem;
	color: #ccc;
	text-transform: uppercase;
	margin-bottom: 10px;
}

ul.social-media-list li {
	margin-right: 10px;
	margin-bottom: 10px;
}

.column-5-offset {
	float: right;
	width: 40%;
	margin-top: 20px;
}

/* Colophon */
#colophon {
	background-color: #161616;
	padding: 30px 0;
}

.footer-logo {
	width: 200px;
	margin-right: 20px;
	float: left;
}

.copyright {
	width: calc(100% - 220px);
	float: left;
	padding-top: 10px;
}
	.copyright ul {
		text-align: center;
	}
	.copyright ul li {
		float: none;
		display: inline-block;
	}


/*-------------------------------------------------------------
## @Pages
-------------------------------------------------------------*/
#image-col img {
	display: block;
}

#main-content {
	padding-top: 0;
	padding-bottom: 0;
}

#page-header {
	background-color: #333;
}

.page-title {
	margin-bottom: 10px;
}

.box {
	padding: 2em;
	background-color: #fff;
	color: #333;
	position: relative;
}
	.box:after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border: 0 solid #da4047;
		transition: .5s;
		pointer-events: none;
	}
	.box:hover::after,
	.box:focus-within::after {
		border-width: 5px;
	}

.column-labeled {
	position: relative;
}

.column-label {
	position: absolute;
	top: 30px;
	left: 0;
	background-color: #333;
	padding: 15px 30px;
}

.column-labeled img {
	width: 100%;
}

/*----------------------------
## @Forms
----------------------------*/
.form-header {
	margin-bottom: 1em;
}

.form-row {
	margin-bottom: 10px;
}

.form-row.form-submit {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}
	.form-row.form-submit.mb-0 {
		margin-bottom: 0;
	}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
	padding: 12px 15px;
	border: 1px solid #ccc;
	width: 100%;
}

textarea {
	min-height: 50px;
	min-width: 100%;
}


/*----------------------------
## @Contact
----------------------------*/
.location {
	margin-bottom: 20px;
}

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

.location img {
	display: block;
}

/*----------------------------
## @Price Form
----------------------------*/
.packages-row {
	margin-bottom: 20px;
}

.packages-row > div {
	float: left;
}
	.packages-row > div:first-child {
		width: 150px;
		padding: 0 20px;
	}
	.packages-row > div:last-child {
		width: calc(100% - 150px);
	}

.package-name {
	font-size: 1.2em;
	text-transform: uppercase;
	font-family: "Lato-Heavy", "Trebuchet Ms", sans-serif;
	margin-top: 25px;
	display: inline-block;
}

.package {
	background-color: #fff;
	color: #333;
	padding: 15px 0 15px 12px;
	display: table;
	width: 100%;
	cursor: pointer;
	min-height: 82px;
	border: 1px solid #b6b6b6;
	font-family: "Lato-Heavy", "Trebuchet Ms", sans-serif;
	transition: .2s;
}
	.package:not(.active):hover {
		opacity: .8;
	}
	.package.active {
		border-color: #9e373c;
		background-color: #da4047;
		color: #fff;
	}
	.package input[type="radio"] {
		transform: scale(1.25);
		-webkit-transform: scale(1.25);
		margin: 0;
		cursor: pointer;
	}
	.package .unit {
		font-size: 1.1em;
		vertical-align: top;
	}
	.package .amount {
		font-size: 3.2em;
		line-height: .8;
	}
	.package .per-month {
		font-size: .78em;
		position: absolute;
		left: 0;
		text-transform: uppercase;
		float: left;
		margin-top: 5px;
	}
	.package-price > * {
		float: left;
	}
	.package-price > .relative {
		min-width: 95px;
	}
	.package > span {
		text-align: center;
		width: 35px;
		padding: 0 12px;
	}
	.package > div {
		width: calc(100% - 35px);
		padding: 0 12px;
	}
	.package > * {
		display: table-cell;
		vertical-align: middle;
	}

/*-------------------------------------------------------------
## @Index
-------------------------------------------------------------*/
/* Phone Demo */
#visual-phone .column-2.v2 {
	margin-right: 0;
}
	#visual-phone .column-2.v2:first-child {
		width: 530px;
	}
	#visual-phone .column-2.v2:last-child {
		width: calc(100% - 530px);
	}

#live-app-demo {
	position: relative;
}
#live-app-demo video {
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
}

#green-btn-home {
	display: inline-block;
	margin: 0 15px;
}
	#green-btn-home img {
		vertical-align: middle;
		margin-bottom: 10px;
	}

.triangle-top {
	position: relative;
}
	.triangle-top:before {
		content: "";
		display: block;
		width: 69px;
		height: 60px;
		background-image: url('../img/icons/triangle.png');
		background-position: center;
		background-size: cover;

		position: absolute;
		top: -30px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

.feature-and-benefits {
	padding-bottom: 50px;
}

.fnb-item {
	text-align: center;
	padding: 20px;
	float: left;
	width: 33.33333%;
}
	.fnb-item:nth-child(4) {
		clear: both;
	}

.fnb-icon {
	margin-bottom: .89em;
}

.fnb-item .fnb-title {
	display: block;
	margin-bottom: .66em;
	padding-bottom: .66em;
	position: relative;
}
	.fnb-item .fnb-title:after {
		content: "";
		display: block;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		height: 3px;
		width: 60px;
		background-color: #fff;
	}

.easy-123 {
	text-align: center;
}
	.easy-123 .column-3 {
		width: calc(33.33333% - 46.66666px);
		margin-right: 70px;
	}
	.easy-123 .column-3:last-child {
		margin-right: 0;
	}
	/*
	.easy-123 .column-3 .easy-123-img {
		position: relative;
	}
	.easy-123 .column-3 .easy-123-img:after {
		content: "";
		background-image: url(../img/icons/right-arrow.png);
		background-size: cover;
		background-position: center;
		display: block;
		width: 17px;
		height: 33px;
		position: absolute;
		right: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	*/

.one-hundred-percent {
	margin-bottom: 2em;
	padding-bottom: 1.4em;
	border-bottom: 1px solid #a5a5a5;
}

/*---------------------------------
## @Price
---------------------------------*/
.price-item {
	text-align: center;
	position: relative;
	color: #333;
	text-transform: uppercase;
	background-color: #fff;
	cursor: pointer;
}
	.price-sm .price-item {
		text-transform: none;
	}
	.price-item:after {
		content: "";
		border: 1px solid #ccc;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		transition: .2s;
		pointer-events: none;
	}
	.price-item:hover::after {
		border: 5px solid #cc3333;
	}

.price-header {
	background-color: #cccccc;
	font-family: "Lato-Heavy", "Trebuchet Ms", sans-serif;
	padding: 1.35em;
	transition: .2s;
	text-transform: uppercase;
}
	.price-item:hover .price-header {
		background-color: #cc3333;
		color: #fff;
	}

.price-name,
.price-per-month {
	display: block;
}

.price-name {
	font-size: 1.33em;
	margin-bottom: 7px;
}
	.price-sm .price-name {
		display: inline-block;
		padding-bottom: 2px;
		border-bottom: 2px solid;
	}

.price-header .unit,
.price-header .cent {
	font-size: .35em;
	position: absolute;
    top: 3px;
}
	.price-header .unit {
		left: -.6em;
	}
	.price-header .cent {
		right: -1.5em;
	}

.price-amount {
	font-size: 4.778em;
	position: relative;
	display: inline-block;
	margin-bottom: 10px;
	line-height: .8;
}
	.price-sm .price-amount {
		font-size: 3.15em;
	}

.price-sm .price-per-month.custom,
.price-per-month.custom {
	font-size: 1.1em;
	margin-top: .8em;
	text-transform: none;
}
	.price-per-month {
		font-size: .89em;
	}
	.price-sm .price-per-month {
		font-size: .78em;
	}

.price-content {
	
}

.price-row {
	font-size: 1.1em;
	border-bottom: 2px solid #999;
	font-family: "Lato-Heavy", "Trebuchet Ms", sans-serif;
	padding: 1.1em .3em;
}
	.price-row.last {
		border-bottom: none;
		padding-bottom: 2.2em;
	}
	.price-sm .price-row {
		font-size: "Lato-Regular", "Trebuchet Ms", sans-serif;
		font-size: .89em;
		padding-top: .55em;
		padding-bottom: .55em;
		border-color: #ddd;
	}
	.price-sm .price-row .bold {
		font-family: "Lato-Heavy", "Trebuchet Ms", sans-serif;
	}

.price-sub-content {
	padding-left: 3.3em;
	padding-right: 3.3em;
}
	.price-sm .price-sub-content {
		padding-left: 1.3em;
		padding-right: 1.3em;
	}

.price-sub-content .price-row {
	border-bottom-color: #ddd;
	font-family: "Lato-Regular", "Trebuchet Ms", sans-serif;
	font-size: .88em;
	padding-left: 0;
	padding-right: 0;
}
	.price-sm .price-sub-content .price-row {
		font-size: .89em;
	}

.response {
    padding: .8em;
    text-align: center;
    font-family: "Lato-Heavy";
    text-transform: uppercase;
}

.success {
	/*background-color: #0cc40b;*/
}

.error {
	background-color: #da4047;
}

.price-sm .price-item {
	position: relative;
}

.price-sm .price-row.last {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.price-sm .price-content.last .price-row.last {
	position: static;
}

.get-the-app-footer {
	margin-left: 1.2em;
}

.our-partners-footer {
	margin-left: 2.6em;
	margin-top: 1em;
}

form.requestCustom .not-requestCustom,
form .requestCustom {
	display: none;
}
form.requestCustom .requestCustom {
	display: block;
}

form.hide {
	display: none;
}

.us-patent {
	margin-top: 12em;
	text-align: center;
}

ul.nav-menu.our-partners li {
	margin-right: 10px;
	width: calc(50% - 5px);
}
	ul.nav-menu.our-partners li:last-child {
		margin-right: 0;
	}

@media only screen and (max-width: 1045px){
	.packages-hide {
		display: none !important;
	}
}