@charset "utf-8";
/* CSS Document */

/* ==========================================================================
   MAIN STYLES
   ========================================================================== */

body {
	font-family: Helvetica, Arial, "sans-serif";
	-webkit-font-smoothing: antialiased;
	color: #000;
	font-size: 13px;
	font-weight: 400;
	background-color: #f2f2f2;
}

@media (min-width: 576px) {
	body {
		font-size: 13px;
	}
}

@media (min-width: 992px) {
	body {
		font-size: 14px;
	}
}

body.navbar-open {
	overflow: hidden;
}

@media (min-width: 992px) {
	body.navbar-open {
		overflow: auto;
	}
}

main {
	position: relative;
	overflow: hidden;
	background-color: #FFF;
}

a {
	color: #0000FF;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

a:hover {
	color: #0000FF;
	text-decoration: none;
}

h1 {
	font-size: 20px;
	font-weight: 700;
}

@media (min-width: 576px) {
	h1 {
		font-size: 32px;
	}
}

h2 {
	font-size: 13px;
	font-weight: 700;
}

@media (min-width: 576px) {
	h2 {
		font-size: 26px;
	}
}

h3 {
	font-size: 18px;
	font-weight: 700;
}

@media (min-width: 576px) {
	h3 {
		font-size: 21px;
	}
}

h5 {
	font-size: 15px;
	font-weight: 700;
}

.repeat {
	background-size: auto 100% !important;
	background-repeat: repeat-x!important;
	background-position: center !important;
}

.purple {
	color: #0000FF;
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */

@media (min-width: 768px) {
	.container {
		max-width: 680px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */

#preloader {
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 10000;
	background: #FFF;
	opacity: 1;
	transition: opacity 0.6s ease-out;
	pointer-events: none;
}

#preloader.loaded {
	opacity: 0;
}

/* ==========================================================================
   HEADER & NAV
   ========================================================================== */

.header {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 100;
	padding: 12px 10px;
}

@media (min-width: 576px) {
	.header {
		padding: 40px 35px;
	}
}

@media (min-width: 992px) {
	.header {
		padding: 35px 0;
	}
}

.navbar-open .header {
	position: fixed;
	height: 100vh;
	overflow-y: auto;
	background: rgb(0,53,170);
	background: -moz-linear-gradient(180deg, rgba(0,53,170,1) 0%, rgba(47,40,127,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(0,53,170,1) 0%, rgba(47,40,127,1) 100%);
	background: linear-gradient(180deg, rgba(0,53,170,1) 0%, rgba(47,40,127,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0035AA",endColorstr="#2F287F",GradientType=1);
}

@media (min-width: 992px) {
	.navbar-open .header {
		position: absolute;
		height: auto;
		overflow: auto;
		background: transparent !important;
		filter: none !important;
	}
}

.navbar-brand img {
	width: 120px;
	height: auto;
	display: block;
}

@media (min-width: 576px) {
	.navbar-brand img {
		width: 200px;
	}
}

@media (min-width: 992px) {
	.navbar-brand img {
		width: 220px;
	}
}

.navbar-nav {
	padding: 48px 0;
}

@media (min-width: 576px) {
	.navbar-nav {
		padding: 80px 0;
	}
}

@media (min-width: 992px) {
	.navbar-nav {
		padding: 0;
	}
}

.navbar-nav .nav-item {
	margin: 0;
}

@media (min-width: 992px) {
	.navbar-nav .nav-item {
		margin: 0 22px;
	}
}

@media (min-width: 992px) {
	.navbar-nav .nav-item:last-child {
		margin-right: 0 !important;
		margin-left: 32px !important;
	}
}

.navbar-nav .nav-link {
	color: #FFF;
	font-weight: 700;
	font-size: 12px;
	border-top: 1px solid #FFF;
	padding: 14px 0;
}

@media (min-width: 576px) {
	.navbar-nav .nav-link {
		font-size: 16px;
		padding: 20px 0;
	}
}

@media (min-width: 992px) {
	.navbar-nav .nav-link {
		border-top: none;
		padding: .5rem 1rem;
	}
}

.navbar-nav .nav-item:last-child .nav-link {
	border-bottom: 1px solid #FFF;
}

@media (min-width: 992px) {
	.navbar-nav .nav-item:last-child .nav-link {
		border-bottom: 2px solid #FFF;
	}
}

@media (min-width: 992px) {
	.navbar-nav .btn-free-trial {
		min-width: 200px;
		white-space: nowrap;
		border: 2px solid #FFF;
		-webkit-border-bottom-left-radius: 10px;
		-moz-border-radius-bottomleft: 10px;
		border-bottom-left-radius: 10px;
		padding-right: 16px !important;
		padding-left: 24px !important;
	}
}

.navbar-nav .btn-free-trial img {
	width: 17px;
	height: auto;
	display: block;
	margin-left: 18px;
}

@media (min-width: 576px) {
	.navbar-nav .btn-free-trial img {
		width: 22px;
	}
}

.navbar-toggler {
	border: none;
	outline: none !important;
	border-radius: 0;
	padding: 0;
	margin: 0 0 0 0;
}

@media (min-width: 576px) {
	.navbar-toggler {
		margin: -40px 0 0 0;
	}
}

.navbar-toggler .menu-toggle {
	position: relative;
	height: 25px;
	width: 30px;
	cursor: pointer;
}

.navbar-toggler .menu-toggle > div {
	width: 30px;
	height: 3px;
	background-color: #FFF;
	display: block;
	position: absolute;
	transition: all .15s ease-in-out;
}

.navbar-toggler.collapsed .menu-toggle .first {
	top: 0;
}

.navbar-toggler.collapsed .menu-toggle .second {
	top: 11px;
	opacity: 1;
}

.navbar-toggler.collapsed .menu-toggle .third {
	bottom: 0;
}

.navbar-toggler:not(.collapsed) .menu-toggle .first {
	top: 11px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .menu-toggle .second {
	opacity: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.navbar-toggler:not(.collapsed) .menu-toggle .third {
	bottom: 11px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* ==========================================================================
   LANDING
   ========================================================================== */

.cover {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}

section.landing {
	padding: 127px 0 37px 0;
}

@media (min-width: 576px) {
	section.landing {
		padding: 240px 0 70px 0;
	}
}

@media (min-width: 992px) {
	section.landing {
		padding: 245px 0 60px 0;
	}
}

section.landing .container {
	position: relative;
}

section.landing .info {
	padding: 35px 0 0 0;
}

@media (min-width: 576px) {
	section.landing .info {
		padding: 80px 0 0 0;
	}
}

section.landing .info h2 {
	color: #FFF;
	margin-bottom: 0;
}

section.landing .info img {
	width: 37px;
	height: auto;
	display: block;
	margin-right: 12px;
	margin-bottom: 2px;
}

@media (min-width: 576px) {
	section.landing .info img {
		width: 60px;
		margin-bottom: 4px;
		margin-right: 18px;
	}
}

/* BUTTON START HERE */

section.landing .btn-start-here {
	white-space: nowrap;
	background-color: #FFF;
	font-size: 20px;
	font-weight: 700;
	color: #0000FF;
	border-radius: 10px;
	width: 250px;
	max-width: 250px;
	padding: 8px 8px 8px 10px;
}

@media (min-width: 576px) {
	section.landing .btn-start-here {
		width: 330px;
		max-width: 330px;
		font-size: 23px;
		padding: 8px 8px 8px 10px;
	}
}

section.landing .btn-start-here span {
	margin-left: 14px;
}

@media (min-width: 576px) {
	section.landing .btn-start-here span {
		margin-left: 18px;
	}
}

section.landing .btn-start-here .arrow {
	width: 34px;
	height: auto;
	display: block;
}

@media (min-width: 576px) {
	section.landing .btn-start-here .arrow {
		width: 45px;
	}
}

/* BUTTON UPLOAD */

section.landing .btn-upload {
	white-space: nowrap;
	background-color: #FFF;
	font-size: 15px;
	font-weight: 700;
	color: #0000FF;
	border-radius: 10px;
	width: 250px;
	max-width: 250px;
	padding: 11px 15px 11px 16px;
}

@media (min-width: 576px) {
	section.landing .btn-upload {
		width: 330px;
		max-width: 330px;
		font-size: 18px;
		padding: 13px 18px 13px 20px;
	}
}

section.landing .btn-upload span {
	margin-left: 14px;
}

@media (min-width: 576px) {
	section.landing .btn-upload span {
		margin-left: 18px;
	}
}

section.landing .btn-upload .icon {
	width: 22px;
	height: auto;
	display: block;
}

@media (min-width: 576px) {
	section.landing .btn-upload .icon {
		width: 27px;
	}
}

section.landing .btn-upload .arrow {
	width: 10px;
	height: auto;
	display: block;
}

@media (min-width: 576px) {
	section.landing .btn-upload .arrow {
		width: 16px;
	}
}

section.landing .doggle-upload {
	display: none;
	position: absolute;
	top: 38px;
	z-index: 90;
	background-color: #FFF;
	white-space: nowrap;
	font-size: 12px;
	font-weight: 700;
	color: #0000FF;
	width: 250px;
	max-width: 250px;
	padding: 10px 10px 3px 10px;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

@media (min-width: 576px) {
	section.landing .doggle-upload {
		top: 50px;
		font-size: 16px;
		width: 330px;
		max-width: 330px;
		padding: 10px 15px 3px 15px;
	}
}

section.landing .doggle-upload.active {
	display: block;
}

section.landing .doggle-upload .inner {
	border-top: 1px solid #0000FF;
	padding: 13px 7px;
}

@media (min-width: 576px) {
	section.landing .doggle-upload .inner {
		padding: 23px 9px;
	}
}

section.landing .doggle-upload .upload-files {
	margin-bottom: 14px;
	width: auto;
}

@media (min-width: 576px) {
	section.landing .doggle-upload .upload-files {
		margin-bottom: 24px;
	}
}

section.landing .doggle-upload .upload-files img {
	width: 18px;
	margin-right: 18px;
}

@media (min-width: 576px) {
	section.landing .doggle-upload .upload-files img {
		margin-right: 22px;
	}
}

section.landing .doggle-upload .upload-audio {
	width: auto;
}

section.landing .doggle-upload .upload-audio img {
	width: 22px;
	margin-right: 14px;
}

@media (min-width: 576px) {
	section.landing .doggle-upload .upload-audio img {
		margin-right: 18px;
	}
}

section.landing .doggle-upload .upload-audio span {
	font-weight: 400;
}

section.landing .doggle-upload .btn-question {
	margin-top: -10px;
	width: 20px;
	position: absolute;
	right: 10px;
	top: 50%;
}

@media (min-width: 576px) {
	section.landing .doggle-upload .btn-question {
		margin-top: -14px;
		width: 24px;
		right: 14px;
	}
}

section.landing .doggle-upload input.upload-files {
	display: none;
}

/* ==========================================================================
   POPUP WINDOW
   ========================================================================== */

.popup-window {
	display: none;
	position: absolute;
	z-index: 95;
	background-color: #FFFF;
	padding: 25px 35px 20px;
	left: 25px;
	right: 25px;
	top: 0;
	border: 1px solid #0000FF;
}

@media (min-width: 576px) {
	.popup-window {
		left: 0;
		right: 0;
		top: -50px;
		padding: 45px 50px 25px;
	}
}

@media (min-width: 768px) {
	.popup-window {
		top: -95px;
		max-width: 500px;
		left: 50%;
		margin-left: -250px;
		right: auto;
	}
}

.popup-window .popup-close {
	position: absolute;
	width: 20px;
	right: 20px;
	top: 20px;
}

.popup-window .popup-icon {
	padding: 0 0 20px;
}

@media (min-width: 576px) {
	.popup-window .popup-icon {
		padding: 10px 0 28px;
	}
}

.popup-window .popup-icon img {
	width: 30px;
}

@media (min-width: 576px) {
	.popup-window .popup-icon img {
		width: 40px;
	}
}

.popup-window .popup-text {
	color: #000;
	font-size: 11px;
	line-height: 1.7;
}


.popup-window button,
.popup-window button:hover {
	background-color: #B3B3B3;
	border-radius: 0;
	border: none;
	color: #FFF;
}

.popup-window button img {
	float: right;
    max-width: 7px;
	margin: 5px 0 0 20px;
}

.popup-window input {
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #999999;
	border-radius: 0;
	padding-left: 0;
}

.popup-window .form-error {
	color: #FF0000;
	display: none;
}

.popup-window .form-error p {
	margin-bottom: 1rem;
}

.popup-window p {
	margin-bottom: 0.5rem;
}

.popup-window .parsley-errors-list {
	display: none !important;
}

.popup-window button.success {
	background-color: #0000FF;
}

/* ==========================================================================
   MARKETING
   ========================================================================== */

section.marketing {
	padding: 10px 10px 30px;
}

@media (min-width: 576px) {
	section.marketing {
		padding: 45px 10px 45px;
	}
}

@media (min-width: 992px) {
	section.marketing {
		padding: 65px 0 25px 0;
	}
}

section.marketing .container {
	max-width: 1170px;
}

section.marketing h3 {
	color: #0000FF;
	margin-bottom: 12px;
	letter-spacing: -0.2px;
}

@media (min-width: 576px) {
	section.marketing h3 {
		margin-bottom: 20px;
	}
}

section.marketing .box {
	margin-bottom: 25px;
	padding: 0 15px;
}

@media (min-width: 576px) {
	section.marketing .box {
		margin-bottom: 50px;
		padding: 0 20px;
	}
}

@media (min-width: 992px) {
	section.marketing .box {
		margin-bottom: 55px;
	}
}

section.marketing .box .icon {
	min-height: 90px;
}

@media (min-width: 576px) {
	section.marketing .box .icon {
		min-height: 70px;
	}
}

section.marketing .box img {
	height: auto;
	display: block;
}

section.marketing .box p {
	line-height: 1.9;
}

@media (min-width: 576px) {
	section.marketing .box p {
		line-height: 1.7;
	}
}

@media (min-width: 992px) {
	section.marketing .box p {
		line-height: 1.5;
	}
}

/* ==========================================================================
   OUR STORY
   ========================================================================== */

section.our-story {
	margin-top: 88px;
	padding: 60px 25px;
	min-height: 75vh;
}

@media (min-width: 576px) {
	section.our-story {
		margin-top: 165px;
		padding: 175px 0;
	}
}

@media (min-width: 992px) {
	section.our-story {
		padding: 140px 0;
	}
}

section.our-story .box {
	background-color: rgba(47,40,127,0.9);
	color: #FFF;
	padding: 30px 30px 20px;
	max-width: 390px;
	font-size: 12px;
	line-height: 1.7;
}

@media (min-width: 576px) {
	section.our-story .box {
		padding: 45px 60px;
		font-size: 13px;
	}
}

section.our-story .icon {
	margin-bottom: 15px;
}

@media (min-width: 576px) {
	section.our-story .icon {
		margin-bottom: 25px;
	}
}

section.our-story .icon img {
	width: 40px;
}

@media (min-width: 576px) {
	section.our-story .icon img {
		width: 55px;
	}
}

section.our-story h1 {
	margin-bottom: 15px;
}

@media (min-width: 576px) {
	section.our-story h1 {
		margin-bottom: 22px;
	}
}

/* ==========================================================================
   SOLUTIONS
   ========================================================================== */

section.solutions {
	margin-top: 88px;
}

@media (min-width: 576px) {
	section.solutions {
		margin-top: 165px;
	}
}

section.solutions .inner-top {
	padding: 150px 25px 0;
}

section.solutions .inner-bottom {
	padding: 0 25px 150px;
}

section.solutions.single .inner {
	padding: 150px 25px;
}

@media (min-width: 576px) {
	section.solutions .inner-top {
		padding: 100px 0 0;
	}
	section.solutions .inner-bottom {
		padding: 0 0 100px;
	}
	section.solutions.single .inner {
		padding: 100px 0;
	}
}

@media (min-width: 992px) {
	section.solutions .inner-top,
	section.solutions .inner-bottom {
		padding: 210px 0;
	}
	section.solutions.single .inner {
		padding: 210px 0;
	}
}

section.solutions .box {
	color: #FFF;
	padding: 55px 30px 50px;
	max-width: 375px;
	font-size: 13px;
	line-height: 1.7;
}

@media (min-width: 576px) {
	section.solutions .box {
		padding: 55px 55px 50px;
		max-width: 375px;
	}
}

@media (min-width: 992px) {
	section.solutions .box {
		max-width: 390px;
		padding: 70px 60px 50px;
	}
	section.solutions.single .box {
		max-width: 780px;
	}
}

section.solutions .box.bg-pink {
	background-color: rgba(195,0,121,0.9);
}

section.solutions .box.bg-purple {
	background-color: rgba(47,40,127,0.9);
}

section.solutions .box.bg-green {
	background-color: rgba(153,194,139,0.9);
}

section.solutions .icon {
	margin-bottom: 25px;
}

@media (min-width: 576px) {
	section.solutions .icon {
		margin-bottom: 30px;
	}
}

section.solutions .icon img {
	width: auto;
	height: 55px;
}

@media (min-width: 576px) {
	section.solutions .icon img {
		width: auto;
		height: 70px;
	}
}

section.solutions h1 {
	margin-bottom: 20px;
}

@media (min-width: 576px) {
	section.solutions h1 {
		margin-bottom: 25px;
	}
}

/* ==========================================================================
   TERMS OF USE
   ========================================================================== */

section.terms-of-use {
	padding: 125px 0 85px 0;
}

@media (min-width: 576px) {
	section.terms-of-use {
		padding: 225px 0 75px 0;
	}
}

@media (min-width: 768px) {
	section.terms-of-use {
		padding: 245px 0 85px 0;
	}
}

section.terms-of-use .title {
	margin-bottom: 25px;
	padding: 0 10px;
}

@media (min-width: 576px) {
	section.terms-of-use .title {
		padding: 0;
		margin-bottom: 50px;
	}
}

section.terms-of-use .title img {
	max-width: 32px;
	margin-right: 12px;
}

@media (min-width: 576px) {
	section.terms-of-use .title img {
		max-width: 43px;
		margin-right: 22px;
	}
}

section.terms-of-use h1 {
	margin: 0;
}

section.terms-of-use h1,
section.terms-of-use h3 {
	color: #0000FF;
}

section.terms-of-use article {
	font-size: 13px;
	line-height: 1.9;
	padding: 0 10px;
}

@media (min-width: 576px) {
	section.terms-of-use article {
		padding: 0;
		line-height: 1.7;
	}
}

@media (min-width: 768px) {
	section.terms-of-use article {
		font-size: 13px;
		line-height: 1.7;
	}
}

section.terms-of-use article h3 {
	margin-bottom: 25px;
	font-size: 18px;
}

@media (min-width: 768px) {
	section.terms-of-use article h3 {
		margin-bottom: 25px;
		font-size: 18px;
	}
}

section.terms-of-use article h5 {
	margin-bottom: 25px;
	font-size: 15px;
}

@media (min-width: 768px) {
	section.terms-of-use article h5 {
		margin-bottom: 25px;
		font-size: 15px;
	}
}

section.terms-of-use article p {
	margin-bottom: 22px;
}

section.terms-of-use article p.padded {
	margin-bottom: 60px;
}

@media (min-width: 576px) {
	section.terms-of-use article p.padded {
		margin-bottom: 66px;
	}
}

/* ==========================================================================
   USER PRIVACY STATMENT
   ========================================================================== */

section.user-privacy-statement {
	padding: 125px 0 85px 0;
}

@media (min-width: 576px) {
	section.user-privacy-statement {
		padding: 225px 0 75px 0;
	}
}

@media (min-width: 768px) {
	section.user-privacy-statement {
		padding: 245px 0 85px 0;
	}
}

section.user-privacy-statement .title {
	margin-bottom: 25px;
	padding: 0 10px;
}

@media (min-width: 576px) {
	section.user-privacy-statement .title {
		padding: 0;
		margin-bottom: 50px;
	}
}

section.user-privacy-statement .title img {
	max-width: 32px;
	margin-right: 12px;
}

@media (min-width: 576px) {
	section.user-privacy-statement .title img {
		max-width: 47px;
		margin-right: 22px;
	}
}

section.user-privacy-statement h1 {
	margin: 0;
}

section.user-privacy-statement h1,
section.user-privacy-statement h3 {
	color: #0000FF;
}

section.user-privacy-statement article {
	font-size: 13px;
	line-height: 1.9;
	padding: 0 10px;
}

@media (min-width: 576px) {
	section.user-privacy-statement article {
		padding: 0;
		line-height: 1.7;
	}
}

@media (min-width: 768px) {
	section.user-privacy-statement article {
		font-size: 13px;
		line-height: 1.7;
	}
}

section.user-privacy-statement article h3 {
	margin-bottom: 25px;
	font-size: 18px;
}

@media (min-width: 768px) {
	section.user-privacy-statement article h3 {
		margin-bottom: 25px;
		font-size: 18px;
	}
}

section.user-privacy-statement article h5 {
	margin-bottom: 25px;
	font-size: 15px;
}

@media (min-width: 768px) {
	section.user-privacy-statement article h5 {
		margin-bottom: 25px;
		font-size: 15px;
	}
}

section.user-privacy-statement article p {
	margin-bottom: 22px;
}

section.user-privacy-statement article p.padded {
	margin-bottom: 60px;
}

@media (min-width: 576px) {
	section.user-privacy-statement article p.padded {
		margin-bottom: 66px;
	}
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
	background-color: #f2f2f2;
	color: #1A1A1A;
	font-size: 13px;
	padding: 25px 10px 20px 10px;
	position: relative;
}

@media (min-width: 576px) {
	.footer {
		font-size: 16px;
		padding: 25px 35px 50px 35px;
	}
}

@media (min-width: 992px) {
	.footer {
		padding: 25px 0 50px 0;
	}
}

.footer .copyright {
	margin-bottom: 25px;
}

@media (min-width: 576px) {
	.footer .copyright {
		padding: 0;
		margin-left: -15px;
		margin-bottom: 0;
	}
}

.footer .nav {
	margin-left: -.6rem;
}

@media (min-width: 576px) {
	.footer .nav {
		margin-left: 0;
		margin-right: -30px;
	}
}

.footer .nav-link {
	padding: .5rem .6rem;
	color: #1A1A1A;
}

@media (min-width: 576px) {
	.footer .nav-link {
		padding: .5rem 1rem;
	}
}

.footer .nav-link.disabled {
	color: #1A1A1A;
}

.footer .scrolltop {
	display: block;
	width: 36px;
	height: 36px;
	position: absolute;
	right: 25px;
	top: -65px;
	z-index: 10;
	cursor: pointer;
}

@media (min-width: 576px) {
	.footer .scrolltop {
		right: 20px;
	}
}

/* ==========================================================================
   POPUP
   ========================================================================== */

section.popup {
	display: none;
	position: absolute;
	padding: 60px 0 40px;
	top: 25px;
	left: 25px;
	right: 25px;
	z-index: 500;
	border: 1px solid #0000FF;
	background: #FFF url(../img/background-popup.png) repeat-x bottom left;
	font-size: 13px;
}

@media (min-width: 576px) {
	section.popup {
		padding: 70px 0 70px;
		margin-left: -300px;
		max-width: 600px;
		left: 50%;
		width: 100%;
		right: auto;
		font-size: 16px;
	}
}

@media (min-height: 480px) {
	section.popup {
		position: fixed;
		top: 50%;
		transform: translateY(-50%);
	}
}

section.popup .close {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 18px;
	right: 20px;
	z-index: 50;
	opacity: 1;
}

section.popup h1 {
	color: #0000FF;
	margin-bottom: 26px;
}

@media (min-width: 576px) {
	section.popup h1 {
		margin-bottom: 1rem;
	}
}

section.popup h1.padded {
	margin-bottom: 25px;
}

@media (min-width: 576px) {
	section.popup h1.padded {
		margin-bottom: 65px;
	}
}

section.popup h2 {
	color: #0000FF;
	font-weight: 700;
	font-size: 20px;
}

@media (min-width: 576px) {
	section.popup h2 {
		font-size: 28px;
	}
}

section.popup p {
	line-height: 1.7;
	color: #000;
}

@media (min-width: 576px) {
	section.popup p {
		line-height: 1.5;
	}
}

section.popup ul.list {
	font-weight: 700;
	list-style-type: none;
	padding: 0;
	line-height: 3;
	margin: 4px 0;
	color: #000;
}

@media (min-width: 576px) {
	section.popup ul.list {
		line-height: 2.9;
		margin: 17px 0;
	}
}

section.popup ul.list img {
	width: 18px;
	height: auto;
	display: inline-block;
	margin-right: 8px;
	margin-top: -4px;
}

@media (min-width: 576px) {
	section.popup ul.list img {
		width: 22px;
		margin-right: 10px;
	}
}

section.popup .actions {
	padding: 17px 0 0;
}

@media (min-width: 576px) {
	section.popup .actions {
		padding: 30px 0 0;
	}
}

section.popup .pricing {
	padding: 65px 0 70px;
}

@media (min-width: 576px) {
	section.popup .pricing {
		padding: 55px 0 70px;
	}
}

#popup-pricing .actions {
	max-width: 150px;
	margin: 0 auto;
}

section.popup .form-group {
	margin-bottom: 10px;
}

@media (min-width: 576px) {
	section.popup .form-group {
		margin-bottom: 20px;
	}
}

section.popup .form-control {
	background-color: transparent;
	color: #999999;
	border: 1px solid #999999;
	outline: none;
	box-shadow: none;
	text-align: left;
	line-height: 1.42857;
	padding: 8px 10px;
	font-size: 12px;
	vertical-align: middle;
	height: auto;
	-webkit-appearance: none;
	border-radius: 0;
}

@media (min-width: 576px) {
	section.popup .form-control {
		font-size: 16px;
		padding: 15px 18px;
	}
}

section.popup button[type="submit"] {
	width: 100%;
	font-size: 12px;
	font-weight: 700;
	background-color: #0000FF;
	opacity: 1;
	height: 35px;
	letter-spacing: 0;
	color: #FFF;
	text-align: center;
	white-space: nowrap;
}

@media (min-width: 576px) {
	section.popup button[type="submit"] {
		font-size: 16px;
		height: 50px;
	}
}

section.popup button[type="submit"] img {
	max-width: 6px;
	margin: 0 0 0 6px;
}

@media (min-width: 576px) {
	section.popup button[type="submit"] img {
		max-width: 9px;
		margin: 0 0 4px 12px;
	}
}

section.popup select {
	-webkit-appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	background: #fff url(../img/icon-arrow-down.svg) 96% 49%/22px 9px no-repeat;
	/* text-indent: 0.01em; */
	border-radius: 0;
	padding-right: 25px;
}

section.popup form {
	padding: 0 10px 0;
}

@media (min-width: 576px) {
	section.popup form {
		padding: 10px 30px 0;
	}
}

section.popup form img {
	width: 100%;
	height: auto;
}

@media (max-width: 575px) {
	#popup-pricing .btn {
		font-size: 16px;
		padding: 15px 20px;
		white-space: nowrap;
	}
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
	border-radius: 0;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 16px;
	text-align: left;
}

@media (min-width: 576px) {
	.btn {
		font-size: 16px;
		padding: 12px 24px;
	}
}

.btn img.icon {
	width: 22px;
	height: auto;
	display: inline-block;
	margin-right: -5px;
}

.btn img.icon.arrow {
	width: 9px;
	height: auto;
	display: inline-block;
	margin-right: -5px;
	margin-left: 12px;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
	background-color: #0000FF !important;
	border-color:  #0000FF !important;
	color: #FFF !important;
}






