/* START FREELANCER */

.btn.active,
.btn:active,
.btn:focus,
.navbar .navbar-nav li a:focus,
.navbar a:focus,
.scroll-top .btn:focus,
a,
a.active,
a:active,
a:focus,
a:hover {
	outline: none;
}

html {
	scroll-behavior: smooth;
	-webkit-tap-highlight-color: unset;
}

html,
body {
	height: 100%;
}

/* COLORS */

:root {
	--bgColor: #000;
	--mainColor: #2099EA;
	--blueColor: #2099EA;
	--fontDarkColor: #ccc;
	--secondaryColor: #FFF;
	--btnMainColor: #fc5200;
	--orangeColor: #fc5200;
	--orangeHiglighter: #fc52006e;
	--yellowHiglighter: #ffcd3640;
	--btnSecondaryColor: #111;
	--grey: #dedddd;
	--textFont: 'Inter', sans-serif;
	--titleFont: 'Lato', sans-serif;
	--borderRadius: 5px;
	--bgGrey:#242424;
}

/* START TITLES FONTS */

body {
	font-family: var(--textFont);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: var(--titleFont);
	font-weight: 500;
	line-height: normal;
}

.h3,
h3 {
	font-size: 1.3rem;
}

a {
	color: #FFF;
}

a:hover {
	color: var(--grey);
}

.h1,
h1 {
	font-size: 3.5em;
}

.h2,
h2 {
	display: block;
	font-size: 3em;
	font-weight: 600;
}

/* END TITLES FONTS */

/* IMPORTANT START */


body {
	overflow-x: hidden;
	font-size: 100%;
	color: var(--grey);
	background-color: var(--bgColor);
	counter-reset: section;
}

.index h1 {
	margin-bottom: 15px;
}

h1 {
	font-size: 3.5em;
	font-weight: 700;
	margin: 0 auto;
}

/* NOTIFICATION START */

.notification-toast {
	position: fixed;
	bottom: 20px;
	left: 20px;
	background-color: #fafafa;
	color: #111;
	padding: 10px 16px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: sans-serif;
	font-size: 13px;
	font-weight: 400;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	transition: all 0.4s ease;
	z-index: 10000;
	/* semi-transparente */
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	/* para compatibilidad Safari */
}

.notification-toast img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
}

.notification-toast.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

/* Strava icon: no borde redondo */
.notification-toast .strava-icon {
	border-radius: 0;
	width: 24px;
	height: 24px;
}

/* Posición móvil (arriba y centrado) */
@media (max-width: 767px) {

	.notification-toast {
		top: 0;
		bottom: auto;
		left: 50%;
		transform: translateX(-50%) translateY(-100%);
		width: 90%;
		border-radius: 8px;
		justify-content: center;
		padding: 5px;
		transition: transform 0.4s ease, opacity 0.4s ease;
		/* semi-transparente */
		box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
		/* para compatibilidad Safari */
	}

	.notification-toast.show {
		top: 90px;
		transform: translateX(-50%) translateY(0);
	}
}

/* NOTIFICATION END */

/* MENU START */

.navbar {
	background: var(--bgColor);
}

.navbar .container {
	padding: 0px;
}

.navbar.fixed-top {
	padding: 10px 5px;
}

.navbar-shrink {
	background: #000 !important;
}

.navbar-shrink.navbar a {
	color: #fff;
}

.navbar.navbar-dark li a {
	color: var(--grey);
}

.navbar.navbar-dark li a:hover, .nav-link:hover {
	color: var(--orangeColor) !important;
	text-decoration: none;
}

.navbar.navbar-light li a {
	color: var(--grey);
	border-radius: var(--borderRadius);
	border: 0px;
}

.navbar.navbar-light .language-btn svg path {
	fill: #094AFF;
}

.index .navbar.navbar-light .language-btn svg path {
	fill: #FFF;
}

.navbar a {
	font-weight: 400;
}

.navbar-fixed-top.scrolled {
	background-color: red !important;
	transition: background-color 200ms linear;
}

.navbar-collapse.show .navbar-nav li a {
	color: #fff;
	font-weight: 400;
	font-size: 1rem;
}

.navbar.navbar-light li a:hover {
	text-decoration: none;
	color: var(--mainColor);
}

.navbar-light .navbar-toggler {}

a.btnHeader {
	max-width: 220px;
	color: white;
	padding: 10px 15px !important;
	-webkit-border-radius: var(--borderRadius);
	-moz-border-radius: var(--borderRadius);
	border-radius: var(--borderRadius);
}

.navbar.navbar-dark li a.btnHeader:hover{
	background-color: var(--btnMainColor) !important;
	color: white !important;
}

.blog-content a.btnLiftoffNew{
	color: #fff !important;
}


.navbar-brand picture img {
	width: 200px;
}

.index .navbar-shrink .navbar-brand picture img {
	filter: invert(1);
}

.nav-link {
	padding: 0px !important;
}

.dropdown-menu {
	padding: 0px;
}

.dropdown-menu a {
	color: #666 !important;
	text-align: center;
}

.dropdown-menu a:hover {
	text-decoration: none;
}

.dropdown-item.active,
.dropdown-item:active {
	color: var(--grey) !important;
	background-color: #eaecf4 !important;
}

.dropdown-menu {
	padding: 0px;
}

.navbar-nav .dropdown-menu {
	margin-top: 10px;
}

.navbar-light .navbar-nav .nav-link {
	color: var(--grey) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
	color: var(--mainColor);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
	color: var(--mainColor);
}

.navbar ul li {
	padding: 5px 12px;
	font-size: 15px;
	font-weight: 300;
	font-family: var(--titleFont);
	letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link {
	color: var(--grey) !important;
}

.navbar-toggler {
	color: var(--grey) !important;
	border-color: var(--grey) !important;
}


header {
	text-align: center;
	position: relative;
}

header .main-image img {
	max-width: 100%;

}

/* FAQS START */
.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	cursor: pointer;
	padding: 15px 10px 10px 0px;
	font-size: 1.1em;
	font-weight: 400;
}

.faq-item {
	border-bottom: 1px solid #ffffff29;
	padding: 12px 0 !important;
	transition: padding-bottom 0.3s ease;
}

.faq-item:first-child {
	border-top: 1px solid #ffffff29;
}

.faq-item.active .faq-question {
	border-bottom: 1px solid transparent;
}

.faq-toggle {
	font-size: 20px;
	transition: transform 0.2s ease;
	user-select: none;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-answer p {
	font-family: var(--textFont);
	margin: 0;
	padding-bottom: 15px;
	font-weight: 300;
}

.faq-answer p a{
	color: var(--grey);
	font-weight: 500;
}

.faq-item .faq-question:hover {
	opacity: 0.75;
}

/* Estado abierto */
.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-item.active summary {
	color: var(--orangeColor);
}

.faq-item.active .faq-answer {
	max-height: 200px;
	/* suficiente para contener el contenido */
}

/* FAQS END */

/* SUCCESS */

.success .success-div {
	display: block;
	margin-bottom: 100px;
}

.success .main-image {
	display: block;
	margin: 0 auto;
	text-align: center;
}

.success header h1 {
	line-height: 45px;
	max-width: 750px;
	margin: 0 auto;
	letter-spacing: 1px;
	font-weight: 500;
	text-align: center;
	color: #fff;
}

.success header h2 {
	max-width: 600px;
	font-size: 19px;
	font-weight: 200;
	line-height: 30px;
	letter-spacing: 1px;
	margin: 0 auto;
	padding-top: 15px;
	color: #fff;
	text-align: center;
}

.success header .fas {
	margin: 0 auto;
	position: relative;
	font-size: 70px;
	margin-bottom: 20px;
	text-align: center;
}

.success header a {
	color: #fff;
}

.success .success-license,
.success .loading-license {
	display: none;
}

.success .fas {
	color: #fff;
}

.success header img {
	display: block;
	margin: 0 auto;
	margin-bottom: 30px;
}

.success header .copied {
	display: none;
	position: absolute;
	background: #139e52;
	color: #FFF;
	padding: 2px 5px;
	font-size: 12px;
	border-radius: var(--borderRadius);
	left: 40px;
	top: 15px;
}

.success header .license-div {
	margin: 0 auto;
}

.success header .license-key {
	margin: 0 auto;
	padding: 10px;
	border: none;
	background: rgba(256, 256, 256, 0.4);
	margin-top: 30px;
}

.btnCopy {
	position: relative;
	padding: 9px 15px;
	border: 0;
	font-size: 20px;
	color: #585858;
	background-color: #eaeaea;
	border-radius: var(--borderRadius);
	margin-left: 10px;
}

.btnCopy:hover {
	background-color: #dfdfdf;
}

.success .lds-dual-ring {
	display: none;
	width: 50px;
	height: 50px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.success .lds-dual-ring:after {
	content: " ";
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 3px solid #fff;
	border-color: #DB3063 transparent #AD31AE transparent;
	animation: lds-dual-ring 1.2s linear infinite;
}

.success #testimonials {
	background-color: #fff5fc;
}

@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* SUCCESS END */

.mta header .container,
.blog header .container {
	padding-top: 0px
}


header .linkMailWaiting {
	position: relative;
	float: right;
	height: 50px;
	top: 2px;
	width: 80%;
}

header .linkMailWaiting::placeholder {
	font-size: 16px;
	text-align: center
}

header .linkMailSuccessWaiting {
	display: none;
	margin-top: 30px;
}

header .intro-text a {
	color: #fff;
}

header .intro-text img {
	width: 100%;
}

header .chart {
	display: block;
	width: 100%;
	margin: 30px 0px 0px;
}

header .chart img {
	max-width: 100%;
}

header .demo-main {
	height: 210px;
}

header .demo-text-div {
	position: relative;
	display: block;
	top: -10px;
	left: -15px;
}

header .demo-text {
	font-size: 40px;
	position: relative;
	left: -160px;
}

header .demo-text img {}

header .demo-video {
	position: relative;
	display: inline-block;
	background: #fff;
	padding: 0px;
	border-radius: 100px;
	border: 0px;
}

header .demo-video a {
	color: #fff;
}

header .demo-video a i {
	font-size: 120px;
	color: #18c96e;
	border: 0px;
}

header .checklist {
	list-style: none;
	padding-left: 0;
	margin: 1rem 0;
	width: fit-content;
	margin: 0 auto;
	font-weight: 500;
}

header .checklist a{
	color: #dedddd;
	font-weight: 500;
}

.checklist li {
	position: relative;
	padding-left: 1.8em;
	margin-bottom: 0.2em;
	text-align: left;
	font-weight: 300;
}

.checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #43B351; /* Verde check, podés cambiarlo */
	font-weight: bold;
	font-size: 1.2em;
	top: 0;
}

.sprite-power-cord,
.sprite-user-plus,
.sprite-cogs {
	margin: 0px;
	zoom: 1;
	-moz-transform: scale(0.6);
	-moz-transform-origin: 0 0;

}

.sprite-logo {
	margin-left: 15px;
}

.sprite-logo-sm {
	margin-bottom: 30px;
}


section {
	padding: 100px 0
}

section h2 {
	margin: 0;
}

section.success {
	color: #fff;
	background: #18bc9c
}

section.success a,
section.success a.active,
section.success a:active,
section.success a:focus,
section.success a:hover {
	outline: 0;
	color: #2c3e50
}

.btn-outline {
	margin-top: 15px;
	border: 2px solid #fff;
	font-size: 20px;
	color: #fff;
	background: 0 0;
	transition: all .3s ease-in-out
}

.btn-outline.active,
.btn-outline:active,
.btn-outline:focus,
.btn-outline:hover {
	border: 2px solid #fff;
	color: #18bc9c;
	background: #fff
}

.btn-social,
.scroll-top .btn {
	width: 50px;
	height: 50px;
	font-size: 20px
}

.lazy-bg {
	min-height: 500px;
	/* Asegúrate de que el contenedor tiene tamaño */
	width: 100%;
	background-size: cover;
	background-position: center;
	background-color: rgb(17, 17, 17);
	color: #ffffff;
	padding: 0px;
}

.lazy-bg.loaded {
	transition: background-image 0.5s ease-in-out;
	/* Transición opcional */
}

footer h3 {
	margin-bottom: 30px
}

footer .footer-col {
	margin-bottom: 50px
}

footer .footer-below {
	padding-top: 50px;
}

.btn-social {
	display: inline-block;
	border: 2px solid #fff;
	border-radius: 100%;
	text-align: center;
	line-height: 45px
}

.scroll-top {
	z-index: 1049;
	position: fixed;
	right: 2%;
	bottom: 2%;
	width: 50px;
	height: 50px
}

.scroll-top .btn {
	border-radius: 100%;
	line-height: 28px
}

/* END FREELANCER */

/* START LIFTOFF THEME */

iframe {
	display: none;
}

b,
strong {
	font-weight: 600;
}

h1 strong,
h2 strong {
	font-weight: 500;
}

.tagline,
.feature header .tagline {
	font-size: 1em;
	font-weight: 700;
	margin: 0 auto;
	display: inline-block;
	border-radius: var(--borderRadius);
	color: #FFF;
}

.tagline p, .tagline p a {
	color: #dedddd !important;
	font-size: 1rem;
	font-weight: 400;
	padding: 0 10px;
	line-height: 25px;
}

.tagline p a{
	padding: 0px;
}

header .description {
	font-family: var(--textFont);
	font-size: 1rem;
	font-weight: 300;
	color: var(--grey);
}

p.subtitle,
h3.subtitle {
	font-size: 1.3rem;
	font-weight: 300;
	margin-top: 20px;
}

.langs {
	text-align: right;
	font-size: 12px;
	width: 100%;
	z-index: 1000;
	margin: 0 auto;
	color: #FFF;
	height: 18px;
	position: relative;
	z-index: 10;
	top: -8px;
}

.langs a {
	color: #FFF;
}

.langs a:hover {
	font-size: 14px;
	color: #5cc7ff;
	text-decoration: none;
}

.langs .selected {
	font-size: 14px;
}



/* HEADER */


header .intro-text h2,
header .intro-text .h2 {
	display: block;
	font-family: var(--textFont);
	font-size: 1.2rem;
	font-weight: 400;
	margin: 0px;
	line-height: inherit;
}

header .intro-text {
	display: table;
	padding: 0px 15px;
}

/* BUTTONS */

.btnLiftoffNew {
	font-family: var(--titleFont);
	font-weight: 700;
	background: var(--btnMainColor);
	background-image: none !important;
	color: var(--secondaryColor);
	box-shadow: 0 6px 0 0 #b9601c, 0 1px 3px 0 rgb(0 0 0 / 30%), 0 5px 10px 0 rgb(0 0 0 / 25%), 0 10px 10px 0 rgb(0 0 0 / 20%), 0 15px 20px 0 rgb(0 0 0 / 10%);
	transition: background-color 0.3s ease, color 0.3s ease;
}

.btnLiftoffNew {
	box-shadow: none;
	text-decoration: none;
	padding: 15px 40px;
	border-radius: var(--borderRadius);
	text-align: center;
}

.btnLiftoffNew .fab {
	position: relative;
	top: 1px;
}

.header-content .btMain {
	margin-bottom: 30px;
}

.btnLiftoffNew:hover,
.btnLiftoffNew:active,
.btnLiftoffNew:focus,
.header-content .btMain {
	box-shadow: 0 4px 15px 0 rgba(10, 28, 62, .2) !important;
	top: unset !important;
	color: var(--grey);
	background-color: #da4903; /* un poco más oscuro */
	box-sizing: border-box;
	text-decoration: none;
}

.btnLiftoffNew::after, .header-content .btMain::after, .btnStartPlan::after {
	content: " →";
	display: inline-block;
	transition: transform 0.3s ease;
	padding-left: 5px;
	cursor: pointer;
}

.btnLiftoffNew:hover::after, .header-content .btMain:hover::after, .btnStartPlan:hover::after  {
	transform: translateX(4px);
}

.btnStartPlan {
	font-family: var(--titleFont);
	font-weight: 700;
	border: 1px solid var(--grey);
	background: #555555;
	color: white !important;
	border-radius: var(--borderRadius);
	display: block;
	text-align: center;
	padding: 5px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.btnStartPlan:hover{
	color: white !important;
	background-color: var(--btnMainColor);
	box-sizing: border-box;
	text-decoration: none;
	border: 1px solid var(--btnMainColor);
}


header .btnMainSuper.btnOrange {
	color: #fff !important;
	font-weight: 500;
	webkit-box-shadow: 0 6px 0 0 #A04257, 0 1px 3px 0 rgba(0, 0, 0, 0.298039), 0 5px 10px 0 rgba(0, 0, 0, 0.247059), 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 15px 20px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 6px 0 0 #A04257, 0 1px 3px 0 rgba(0, 0, 0, 0.298039), 0 5px 10px 0 rgba(0, 0, 0, 0.247059), 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 15px 20px 0 rgba(0, 0, 0, 0.1);
}

header .btnMainSuper.btnOrange:hover {
	webkit-box-shadow: 0 6px 0 0 #A04257, 0 1px 3px 0 rgba(0, 0, 0, 0.298039), 0 5px 10px 0 rgba(0, 0, 0, 0.247059), 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 15px 20px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 6px 0 0 #A04257, 0 1px 3px 0 rgba(0, 0, 0, 0.298039), 0 5px 10px 0 rgba(0, 0, 0, 0.247059), 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 15px 20px 0 rgba(0, 0, 0, 0.1);
	text-decoration: none;

}

.sub_plans .btnMainSuper.btnOrange {
	background: #18c96e;
	color: #fff !important;
	font-weight: 500;
	webkit-box-shadow: 0 6px 0 0 #3b6932, 0 1px 3px 0 rgb(0 0 0 / 30%), 0 5px 10px 0 rgb(0 0 0 / 25%), 0 10px 10px 0 rgb(0 0 0 / 20%), 0 15px 20px 0 rgb(0 0 0 / 10%);
	box-shadow: 0 6px 0 0 #3b6932, 0 1px 3px 0 rgb(0 0 0 / 30%), 0 5px 10px 0 rgb(0 0 0 / 25%), 0 10px 10px 0 rgb(0 0 0 / 20%), 0 15px 20px 0 rgb(0 0 0 / 10%);
}

.sub_plans .btnMainSuper.btnOrange:hover {
	background: #18c96e !important;
	webkit-box-shadow: 0 6px 0 0 #3b6932, 0 1px 3px 0 rgb(0 0 0 / 30%), 0 5px 10px 0 rgb(0 0 0 / 25%), 0 10px 10px 0 rgb(0 0 0 / 20%), 0 15px 20px 0 rgb(0 0 0 / 10%);
	box-shadow: 0 6px 0 0 #3b6932, 0 1px 3px 0 rgb(0 0 0 / 30%), 0 5px 10px 0 rgb(0 0 0 / 25%), 0 10px 10px 0 rgb(0 0 0 / 20%), 0 15px 20px 0 rgb(0 0 0 / 10%);
	text-decoration: none;

}

header .btnMainSuper.btnGreen {
	background: #85bf31;
	color: #fff !important;
	font-weight: 500;
	webkit-box-shadow: 0 6px 0 0 #52761d, 0 1px 3px 0 rgba(0, 0, 0, 0.298039), 0 5px 10px 0 rgba(0, 0, 0, 0.247059), 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 15px 20px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 6px 0 0 #52761d, 0 1px 3px 0 rgba(0, 0, 0, 0.298039), 0 5px 10px 0 rgba(0, 0, 0, 0.247059), 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 15px 20px 0 rgba(0, 0, 0, 0.1);
}

header .btnMainSuper.btnGreen:hover {
	background: #85bf31 !important;
	webkit-box-shadow: 0 6px 0 0 #52761d, 0 1px 3px 0 rgba(0, 0, 0, 0.298039), 0 5px 10px 0 rgba(0, 0, 0, 0.247059), 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 15px 20px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 6px 0 0 #52761d, 0 1px 3px 0 rgba(0, 0, 0, 0.298039), 0 5px 10px 0 rgba(0, 0, 0, 0.247059), 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 15px 20px 0 rgba(0, 0, 0, 0.1);
	text-decoration: none;

}

header .btnMainSuper.btnOrange:focus {
	text-decoration: none;
}

input {
	border-radius: var(--borderRadius);
	border: 1px solid var(--bgColor);
	padding: 10px;
}

.founders-section {
	display: flex;
	width: fit-content;
	max-width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 5px;
	padding: 5px 8px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 9999px;
	background: rgba(0, 0, 0, 0.18);
	color: var(--grey);
	font-family: system-ui, sans-serif;
	font-size: 1rem;
}

.founders-text {
	order: 2;
	margin: 0;
	line-height: 1;
	color: var(--grey);
	font-size: 0.8rem;
}

.founders-avatars {
	order: 1;
	display: flex;
	gap: 4px;
	padding: 0;
}

.founders-avatars img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #1a1a1a;
	/* Optional: slight border to blend with background */
	margin-left: -20px;
}

.founders-avatars img:first-child {
	margin-left: 0;
}

@media (max-width: 767px) {
	.founders-avatars img.founder-7,
	.founders-avatars img.founder-3 {
		display: none;
	}
}

/* MODAL START */

.modal {
	color: #111;
}

.modal .btnConfirm {
	position: relative;
	background: var(--btnMainColor);
	border: 1px solid var(--btnMainColor);
}

.modal label {
	font-weight: 700;
	color: var(--blueColor);
}

.lds-ripple {
	display: none;
	position: relative;
	width: 20px;
	height: 20px;
	vertical-align: middle;
}

.lds-ripple div {
	position: absolute;
	border: 2px solid #fff;
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}

.modal .lds-ripple {
	display: none;
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.modal .lds-ripple div {
	position: absolute;
	border: 2px solid var(--blueColor);
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes lds-ripple {
	0% {
		top: 9px;
		left: 9px;
		width: 0;
		height: 0;
		opacity: 0;
	}

	4.9% {
		top: 9px;
		left: 9px;
		width: 0;
		height: 0;
		opacity: 0;
	}

	5% {
		top: 9px;
		left: 9px;
		width: 0;
		height: 0;
		opacity: 1;
	}

	100% {
		top: 0px;
		left: 0px;
		width: 18px;
		height: 18px;
		opacity: 0;
	}
}

/* MODAL END */

.btnMain.btnTry {
	padding: 15px 30px;
	font-size: 17px;
	margin: 10px auto;
	margin-top: 14px;
	margin-bottom: 20px;
	max-width: 400px;
	background-color: #2883d8;
	color: #FFF !important;
	text-align: center;
	-webkit-box-shadow: 0 6px 0 0 #1c5387, 0 1px 3px 0 rgba(0, 0, 0, 0.298039), 0 5px 10px 0 rgba(0, 0, 0, 0.247059), 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 15px 20px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 6px 0 0 #1c5387, 0 1px 3px 0 rgba(0, 0, 0, 0.298039), 0 5px 10px 0 rgba(0, 0, 0, 0.247059), 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 15px 20px 0 rgba(0, 0, 0, 0.1);
}

.btnMain.btnTry:hover {
	transform: scale(1.05);
	animation: none;
	text-decoration: none;

}

.white {
	background-color: #FFF;
	color: #0076be;
}

.shadow {
	-webkit-box-shadow: 0px 4px 1px -1px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 4px 1px -1px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 4px 1px -1px rgba(0, 0, 0, 0.5);
}

.shadow:hover {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.know {
	font-size: 0.9rem;
	font-weight: 300;
	color: var(--grey);
	display: block;
	text-align: center;
}

.know svg {
	width: 30px;
	height: 30px;
	display: inline-block;
	margin-top: 5px;
	padding-right: 5px;
}

.know i {
	padding-right: 5px;
}

.know .attribute {
	font-size: 0.7rem;
	margin-top: 5px;
}

.sub_plans .know {
	font-size: 14px;
	font-weight: 400;
	color: #000f23;
	letter-spacing: 0.5px;
}

.btnMain.white:hover {
	color: #000;
	text-decoration: none;
	background-color: #fff;
}

.index h4,
p.h4 {
	margin: 20px auto;
	font-weight: 400;
}

.charts1 {
	margin-top: 50px;
}

.featured {
	position: relative;
	/*bottom: 5%;
	left: 50%;
	transform: translate(-50%, 0%);*/
}

.seen {
	padding-top: 10px;
}

.seen img {
	width: 100%;
	display: block;
}

.index .charts1 {
	width: 100%;
	margin-top: 0px;
}

}

@media (min-width: 1000px) {
	#pain-points .pain-points {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
}


@media (max-width: 991px) {

	header .main-image img {
		margin-top: 0px;
	}

}

@media (max-width: 760px) {

	section {
		padding: 50px 0
	}

	.index h1 {
		margin-top: 0px;
		margin-bottom: 15px;
	}

	.navbar.fixed-top .container {
		max-width: unset;
		width: 100%;
	}

	.new-plan {
		font-size: 35px;
	}

	.ig #pain-points .pain-points-list {
		flex-wrap: wrap;
		display: block;
		margin: 0px;
		padding: 0px;
	}

	.ig section {
		padding: 20px 0px;
	}

	.counter .counter-offer {
		padding: 10px 0px 0px 0px;
	}

	.features {
		padding-top: 0px;
	}

	.countdown {
		text-align: center !important
	}

}


/* END HEADER  */


/* PAIN POINTS */

#pain-points .pain-points-list {
	display: flex;
	flex-direction: row;
	flex-wrap: inherit;
}

#pain-points .pain-points {
	display: block;
	background-color: var(--bgGrey);
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
	transition: all 0.3s ease-in-out;
	border-radius: 8px;
	box-sizing: border-box;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	padding: 40px;
	margin: 10px;
	text-align: left;
}

#pain-points .pain-points:hover {
	box-shadow: 0 0 0 1px var(--btnMainColor);
}

#pain-points .pain-points p {
	font-size: 1em;
	text-align: left;
	color: var(--grey);
	margin-bottom: 0px;
	display: inline-block;
}

#pain-points .h2 {
	padding-top: 10px;
}

#pain-points .pain-points h2,
#pain-points .pain-points .h2 {
	font-size: 1.3em;
	text-align: left;
	margin-bottom: 10px;
}

#pain-points .icons {
	display: inline;
	font-size: 35px;
	background: linear-gradient(135deg, #2175c5 0, #2d8be3 50%, #6cbdff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#pain-points .pain-points img {
	max-width: 40px;
}

#pain-points .fa,
#pain-points .fas,
#pain-points .fab,
#pain-points .fa-solid {
	display: inline-block;
	font-size: 1.5em;
	background: var(--grey);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#pain-points .pain-points:hover .fa-solid{
	background-color: var(--btnMainColor);
}

.pain-point {
	opacity: 0;
	transform: translateX(0);
	transition: all 0.8s ease-out;
}

.pain-point-left {
	transform: translateX(-50px);
}

.pain-point-right {
	transform: translateX(50px);
}

.pain-point.visible {
	opacity: 1;
	transform: translateX(0);
}



/* END PAIN POINTS */


/* START PILAR */

/* END PILAR */

/* PLANS */

.strikethrough {
	position: relative;
}

.strikethrough:before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	right: 0;
	border-top: 1px solid;
	border-color: inherit;
	-webkit-transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-o-transform: rotate(-5deg);
	transform: rotate(-5deg);
}

#plans-page #plans {
	padding-top: 0px;
}

#plans-page .plan-icon {
	display: block;
	width: 90px;
	height: 90px;
	margin: 0 auto;
	margin-bottom: 20px;
}

#plans-page #plans h1 {
	margin-top: 50px;
	text-align: center;
}

#plans-page .item-faq {
	margin-top: 40px;
}

#plans-page .item-faq a {
	text-decoration: underline;
}

#plans-page #contact h2 {
	margin: 60px;
	color: #000;
}

#plans-page .under_price {
	font-weight: 400;
	margin: inherit;
	background: #fff;
	color: #111;
	border-radius: var(--borderRadius);
	padding: 5px;
	font-size: 0.7rem;
	display: block;
	width: fit-content;
}

#plans-page h5 {
	font-size: 1.75rem;
	margin-top: 35px;
}

#plans-page .footer-above p {
	font-size: 1em;
	font-weight: 400;
	letter-spacing: -0.009em;
}

#plans-page .more-questions {
	margin-top: 50px;
}

#plans-page .footer-above a {
	font-weight: 500;
}

#plans-page .popular {
	background: #f3fbfe;
	color: #2576BE;
	font-size: 14px;
	vertical-align: bottom;
	border-left: 1px #CCC solid;
	border-right: 1px #CCC solid;
	border-top: 1px #CCC solid;
	padding: 5px 0px;
	font-weight: 700;
}

#plans-page .old-plan {
	color: #4b6856;
	font-family: var(--titleFont);
	font-size: 2rem;
	position: relative
}

.old_price {
	height: 45px;
}

.offer {
	background: #fff;
	color: #111;
	border-radius: var(--borderRadius);
	padding: 5px;
	font-size: 0.8rem;
	position: absolute;
	font-weight: 700;
	top: 10px;
	right: 10px;
}

#plans-page .limited_time_offer {
	display: block;
	font-size: 1rem;
	border: 1px #18c96e solid;
	border-radius: var(--borderRadius);
	padding: 5px;
	margin: 2px auto;
	color: #15a55a;
	background-color: #fff;
	font-weight: 500;
}

#plans-page .limited_mobile {
	background: #fff;
	color: #00b654 !important;
	padding: 5px 20px;
	margin-top: 5px;
	display: inline-block;
	border-radius: var(--borderRadius);
	font-size: 10px;
}

img.icon_plan {
	display: block;
	margin: 0 auto;
	margin-bottom: 10px;
	width: 90px;
}

.toggle-control {
	position: relative;
	padding-left: 55px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.toggle-control input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.toggle-control input:checked~.control {
	background-color: #54a3d4;
}

.toggle-control input:checked~.control:after {
	left: 33px;
}

.toggle-control .control {
	position: absolute;
	top: 0;
	left: 0;
	height: 31px;
	width: 60px;
	border-radius: 25px;
	background-color: #54a3d4;
	transition: background-color 0.15s ease-in;
}

.toggle-control .control:after {
	content: "";
	position: absolute;
	left: 5px;
	top: 4px;
	width: 22px;
	height: 22px;
	border-radius: 25px;
	background: white;
	transition: left 0.15s ease-in;
}

.content-annual-month {
	display: block;
	text-align: right;
	height: 80px;
	position: relative;
	top: -10px;
	width: 90%;
	margin: 0 auto;
}

.content-annual-month div {
	display: inline-block;
}

.content-annual-month .text {
	position: relative;
	top: 30px;
	margin-left: 10px;
	font-weight: bold;
}

.content-annual-month .text p {
	font-weight: 100;
	font-style: italic;
}

.content-annual-month .text:first-child {
	margin-right: 10px;
	top: 10px;
}

.item_price.annual {
	display: none;
}

.content-annual-month.popup {
	width: 90%;
	margin: 0 auto;
	top: -35px;
}

.plan_title {
	height: 50px;
	line-height: 50px;
	font-weight: bold;
}

.plan_item {
	height: 60px;
	line-height: 60px;
	border-top: 1px #dadddf solid;
}

.plan_color_1 .plan_title,
.plan_color_1 .plan_item {
	background-color: #eff2f3;
}

.plan_color_2 .plan_title,
.plan_color_2 .plan_item {
	background-color: #f5f8f9;
}

.item_p {
	font-weight: 600;
	color: #333;
}

.sub_plans {
	margin-top: 30px;
}

.col-lg-3.wo_padding.text-center.plan_color_1 {
	margin-left: 50px;
}

.planes.just-desktop {
	font-size: 1rem;
	position: relative;
	z-index: 6;
	margin-top: 60px;
	padding: 50px 30px 30px 50px !important;
	background: var(--bgGrey);
	border-radius: 8px;
}

.price-line {
	display: flex;
	align-items: center;
}


.lh_m {
	line-height: 48px !important;
}

.btnMain.plan {
	padding: 9px 40px;
	font-size: 15px;
	margin-top: 20px;
}

.plan_medio {
	position: relative;
	top: -31px;
	width: 220px;
	z-index: 10;
}

.plan_medio .shadow {
	-webkit-box-shadow: 6px 6px 0px 2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 6px 6px 0px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 6px 6px 0px 2px rgba(0, 0, 0, 0.2);
}

.plan_medio .plan_item {
	height: 70px;
	line-height: 70px;
}

span.plan_detail {
	display: block;
	position: relative;
	top: -30px;
	font-size: 12px;
	color: #666;
}

.item_price {
	color: var(--grey);
	margin-bottom: 10px;
	margin-top: 1px;
	display: block;
}

.period {
	font-size: 12px;
	color: var(--grey);
	font-weight: normal;
	display: flex;
	flex-direction: column;
	margin-left: 8px;
}


.plus {
	font-size: 25px;
	color: #8898aa;
	font-weight: 200;
	top: -5px;
	position: relative;
}

.columnplan1 {
	font-size: 13px;
	width: 185px;
}

.detail_plan {
	font-size: 15px;
	display: block;
	font-weight: normal;
}

.detail_plan::before {
	content: " ";
	display: block;
	background: url(../images/check-circle-regular.svg) left 3px no-repeat;
	background-size: 16px auto;
	padding-left: 30px;
	margin-bottom: 10px;
}

.table_plan {
	width: 100%;
	text-align: left;
	margin: 0 auto;
	border-radius: 0px 0px 8px 8px;
}

.div_price {
	margin: 0px;
	position: relative;
}

.plan_name {
	display: table;
	width: 100%;
	text-align: left;
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
}

.plan_features {
	padding-bottom: 30px;
}

.plan_feature {
	text-align: left;
}

.new-plan {
	font-weight: 700;
	font-size: 2.8em;
	color: #fff;
}

.fee {
	font-size: 20px;
	font-weight: 700;
	vertical-align: middle;
	top: -5px;
	display: inline-block;
	position: relative;
}

#plans-page .table_plan tr:last-child,
#plans-page .table_plan td:first-child {
	border-bottom-left-radius: 5px;
}

#plans-page .table_plan tr:last-child,
#plans-page .table_plan td:last-child {
	border-bottom-right-radius: 5px;
}

.table_plan tr {
	height: 50px;
}

.table_plan .popular-tr {
	height: 30px;
}

.table_plan hr {
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 15px;
	margin-top: 15px;
}

.title_plan {
	font-size: 22px;
	font-weight: bold;
}

.border_top {
	border-top: 5px #0b4e92 solid;
	border-left: 1px #CCC solid;
	border-right: 1px #CCC solid;
	padding-top: 20px;
}

.border_left_right {
	border-left: 1px #CCC solid;
	border-right: 1px #CCC solid;
}

.border_bottom {
	border-bottom: 1px #CCC solid;
	border-left: 1px #CCC solid;
	border-right: 1px #CCC solid;
	padding-bottom: 20px;
}

.enterprise_contact {
	text-decoration: underline;
	font-size: 21px;
	margin-bottom: 28px;
	margin-top: 5px;
}

.enterprise_contact:hover {
	color: #000;
}

.recom_plan.border_big {
	border-top: 5px #180d9b solid;
}

.symbol_plan {
	font-size: 15px;
	position: relative;
	top: -10px;
	font-weight: normal;
}

.plan_line {
	background-color: #54a3d3;
	height: 5px;
	width: 100%;
}

img.icon_plan {
	display: block;
	margin: 0 auto;
	margin-bottom: 10px;
	width: 90px;
}

.recom_plan .btnBlue:hover {
	text-decoration: none;
}

#plans-page .btnMain.btnTry {
	display: block;
}


/* END PLANS */

/* TERMS & PRIVACY POLICY*/

.auxiliar section {
	padding-top: 100px;
	font-family: var(--textFont);
}

.auxiliar h1 {
	margin-bottom: 30px;
}

.auxiliar h4 {
	margin-top: 30px;
}

.auxiliar p {
	font-size: 18px;
	width: 100%;
}

.auxiliar ol li {
	font-size: 18px;
	padding: 10px 0px;
	font-weight: 100;
}

/* END TERMS & PRIVACY POLICY*/


/* SUCCESS */

.success #testimonials {
	background-color: #f4f4f4;
}

/* LANDING */

.landing h1 {
	font-size: 3.5rem;
	display: inline-block;
	margin-bottom: 15px;
}

.landing .h1 {
	font-size: 3.5em;
	font-weight: 700;
}


.landing .navbar-shrink {
	background: #2b2d38 !important;
}

.landing .navbar .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.landing .navbar-brand-inv {
	display: none;
}

.landing header .btnMainSuper {
	margin: 40px 0px 20px;
}


.landing a.btnHeader {
	font-size: 13px;
}

.landing a.btnHeader:hover {
	text-decoration: none;
}

.mt-6 {
	margin-top: 50px !important;
}


/* LANDINGS END  */

/* BLOG START*/

.blog #content {
	background-color: #F5F7FA;
}

/* BLOG END */

/* MEDIA QUERY START */

@media (max-width: 1150px) {

	.plan_medio {
		position: relative;
		top: 0px;
		width: inherit;
		z-index: 10;
	}

	.plan_medio .plan_item {
		height: 60px;
		line-height: 60px;
	}

	.btnMain.plan {
		padding: 4px 30px;
		font-size: 15px;
		margin-top: 14px;
	}

	.tips .indice {
		width: 170px;
	}

}

@media (max-width: 992px) {

	#pain-points .container {
		max-width: none;
	}

	#pain-points {
		top: 0 !important;
	}

	#plans-page .old-plan {
		top: 0px;
		position: relative;
		padding: 0px 4px;
		font-weight: 400;
	}

	.just-lg {
		display: none !important;
	}

	.just-md {
		display: block;
	}

	.container.pain {
		width: 100%;
		max-width: none;
	}

	.graph.just-mobile {
		padding: 0px;

	}

	.navbar-nav {
		padding-top: 50px;
		height: 100vh;
		color: #FFF;
		background: var(--bgColor);
	}

	.navbar-expand .navbar-nav {
		height: auto;
	}

	.navbar ul li {
		padding: 10px 15px;
		font-size: 0.8px;
		font-weight: 200;
		font-family: var(--titleFont);
		letter-spacing: 1px;
		text-align: center;
	}

	.tips .indice {
		margin-top: 20px;
		padding: 20px;
		width: 100%;
		position: relative;
		margin-bottom: 40px;
	}

	.plan-option {
		position: relative;
		display: block;
	}

	.plan-option a {
		display: block;
	}

	.plans-list {
		border-radius: var(--borderRadius);
		padding: 0px;
	}

	#plans-page .plan-icon {
		width: 60px;
		height: 60px;
		float: right;
		vertical-align: middle;
	}

	#plans .plan-option h4 {
		font-size: 1rem;
		color: #424141;
	}

	#plans .plan-option h4 .agency-plan {
		font-size: 12px;
	}

	.recom_plan {
		position: relative;
		top: 0px;
		border-radius: var(--borderRadius);
		padding: 20px;
		background-color: var(--bgGrey);
		box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
	}

	.recom_plan .btnBlue {
		padding: 20px;
		background-color: #FFAC4A;
		box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
		border-radius: var(--borderRadius);
	}

	.recom_plan .btnLiftoffNew:hover {
		text-decoration: none;
	}

	.recom_plan h4,
	.recom_plan p {
		color: var(--grey);
	}

	#plans .plan-option.recom_plan h4 {
		font-size: 1.2em;
	}

	#plans .plan-option p span {
		color: #000;

	}

	#plans .plan-option.recom_plan p span {
		color: #fff;
		font-weight: 700;
	}

	.planes {
		margin-top: 20px;
	}

	.navbar-shrink #navbarSupportedContent {
		display: none !important;
	}

	#navbarSupportedContent {
		display: none;
	}

	#navbarSupportedContent.show {
		display: block !important;
	}

}

@media (max-width: 770px) {

	#plans-page .under_price{
		font-size: 0.7rem;
		display: block;
		width: fit-content;
		padding: 5px 10px;
		margin: inherit;
		margin-bottom: 10px;
	}

	.landing a.btnHeader {
		font-size: 10px;
	}

	.landing h1,
	.index h1 {
		font-size: 2.25rem;
		padding: 0px 10px;
		margin-top: 0px;
		text-align: left;
	}

	.tagline p {
		font-size: 1rem !important;
		font-weight: 400;
		text-align: left;
		padding: 0 10px;
		line-height: normal;
	}

	.tagline p, .tagline p a {
		color: #dedddd !important;
		font-size: 1rem;
		font-weight: 400;
		padding: 0 10px;
		line-height: 25px;
	}

	.tagline p a{
		padding: 0px;
	}

	header .description {
		padding: 5px;
		font-size: 1rem;
	}

	.offer {
		background: #fff;
		color: #111 !important;
		border-radius: var(--borderRadius);
		padding: 5px;
		font-size: 0.8rem;
		position: relative;
		font-weight: 500;
		display: inline-block;
		top: -3px;
		left: 10px;
	}

	#plans .plan-option.recom_plan h4 {
		color: #FFF;
	}

	#plans-page .price {
		font-size: 2.5rem;
		display: inline-block;
		color: #fff;
	}

	.table_plan {
		text-align: left;
		background: none;
	}

	.table_plan ul {
		margin: 20px 0px 0px !important;
		padding-left: 0px !important;
	}

	.table_plan ul li {
		list-style: none;
		background: url(../images/check-circle-regular.svg) left 3px no-repeat;
		background-size: 16px auto;
		padding-left: 30px;
		margin-bottom: 10px;
	}

	.landing .h1 {
		font-size: 3rem;
	}

	section {
		padding: 50px 0;
	}

	body {
		font-size: 16px;
	}

	h1,
	.h1 {
		font-size: 2.5em;
		padding-top: 10px;
	}

	.h2,
	h2 {
		font-size: 2.5em;
	}

	.h2 {
		padding-top: 20px;
	}

	.tagline,
	.feature header .tagline {
		padding: 0px;
	}

	header .intro-text {
		padding: 0px 15px;
	}

	header .main-image {
		padding: 0px;
	}

	.navbar-dark .navbar-toggler,
	.navbar-light .navbar-toggler {
		margin-right: 10px;
	}

	.just-md {
		display: block;
	}

	.tablet-no {
		display: none !important;
	}

	.tips .main {
		padding: 10px !important;
	}

	#pain-points .pain-points {
		margin: 30px 0px;

	}

	p.subtitle,
	h3.subtitle {
		margin: 0px;
	}

	.plan_item {
		line-height: 12px;
		padding-top: 20px;
	}

	#pain-points .pain-points p {
		font-size: 1em;
		padding-top: 10px;
	}

	.plan_medio .plan_item {
		line-height: 12px;
	}

	.lh_m {
		line-height: 10px !important;
	}

	span.plan_detail {
		top: 3px;
		font-size: 11px;
	}

	.btnMain.plan {
		padding: 4px 10px;
		font-size: 15px;
		margin-top: 14px;
	}

	.symbol_plan {
		top: 0px;
	}


	.col-lg-3.wo_padding.text-center.plan_color_1 {
		margin-left: 0px;
	}

	.item_price {
		font-size: 24px;
		color: var(--grey);
	}

	.enterprise_contact {
		font-size: 16px;
		margin-bottom: 44px;
	}

	.plan_medio .shadow {
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}

	#plans-page .new-plan {
		font-size: 2.4rem;
	}

	#plans-page .border_bottom {
		border-left: 0px;
		border-right: 0px;
	}

	#plans-page .footer-above p {
		margin-bottom: 20px;
	}

	#plans-page .more-questions {
		margin-top: 20px;
	}

	#pain-points .pain-points-list {
		display: table;
	}

	.index h4,
	p.h4 {
		margin: 0px;
	}

	#plans-page #plans {
		margin-bottom: 0px;
	}

		section h2 {
			margin: 0;
			font-size: 1.8em;
			text-align: left;
			padding: 0px;
		}

		p.subtitle {
			font-size: 1rem;
			text-align: left;
			padding: 10px 0 0 0;
		}

		#faqs .faq-question {
			padding: 10px 5px;
			font-size: 1em;
		}

	#plans-page h5 {
		margin-top: 10px;
		font-weight: 700;
	}

	#features .sprite {
		transform: scale(0.6);

	}

	.navbar-brand {
		margin-left: 0px;
	}

	.navbar-brand picture img {
		width: 150px;
	}

	.sub_plans {
		width: 90%;
		margin: 40px auto;

	}

	.btnMain {
		font-size: 15px;
	}

	.btnMain.btnTry {
		padding: 15px 40px;
		font-size: 15px;
		margin: 20px auto;
		max-width: 400px;
	}

	.index .benefit h2 {
		font-size: 1.5em;
		margin-top: 20px;
		font-weight: 600;
		padding-left: 10px;
	}

	.tips {
		padding: 0;
	}

	.tips .indice {
		position: relative;
		margin-top: 100px;
	}

	.tips .title {
		margin-top: 80px;
	}

	.tips .img-responsive {
		width: 80%;
	}

	#pain-points ul li {
		margin-top: 15px !important;
	}


	.btnMain {
		padding: 14px 30px !important;
	}

	.logo {
		width: 120px !important;
		margin-left: 30px;
	}

	#pain-points .pain-points img {
		max-width: 40px;
	}

	.success header .container {
		padding-top: 100px
	}

	header .intro-text h2,
	header .intro-text .h2 {
		display: block;
		line-height: inherit;
	}

	.planes {
		position: relative;
	}

	#plans-page #plans h1 {
		margin-top: 0px;
	}

	.features-icons .feature-icon {
		padding: 25px 10px;
		height: 120px;
		font-size: 12px;
		max-width: 100%;
	}

	.features-icons .fa,
	.features-icons .fas,
	.features-icons .fab {
		font-size: 35px;
	}

	header .intro-text {
		padding-top: 0px;
	}

	header .form {
		display: block;
		width: 70%;
		margin: 0 auto;
		position: relative;
	}

	.btnMainSuper.Waiting {
		width: 90%;
		position: relative;
		display: table;
		clear: both;
		margin: 0 auto;
		padding: 15px 5% !important;
		margin-top: 20px;
	}

	header .linkMailWaiting {
		width: 100%;
		margin-right: 0px;
	}

	header .main-image img {
		max-width: 90%
	}

}

@media (max-width: 600px) {

	#plans-page .item-faq {
		margin-top: 0px;
	}

	header .demo-text {
		left: 0px;
	}

	.know {
		font-size: 12px;
	}

	.know svg {
		width: 25px;
		height: 25px;
	}
}

@media (max-width: 400px) {

	#plans .plan-option.recom_plan h4 {
		font-size: 1.8rem;
		font-weight: 700;
	}

	.btnLiftoffNew.btnLiftoffNew {
		font-size: 0.9em;
	}
}
