.render {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* GLOBALES */
body {
  background: #ffffff;
  font-family: 'Roboto', sans-serif;
}
a,
.btn {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn {
  border-radius: 2px;
  font-weight: 300;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
.btn-primary {
  background: #ff4081;
  border-color: #ff4081;
  border-radius: 3px;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: #ff5a92;
  border-color: #ff5a92;
}
.btn-primary:active,
.btn-primary:focus {
  background: #ff2670;
  border-color: #ff2670;
}
.btn-back {
  background: none;
  border: 2px solid #2196f3;
  border-radius: 3px;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  color: #2196f3;
}
.btn-back:hover {
  background: #39a1f4;
  border-color: #39a1f4;
  color: #fff;
}
.btn-back:active,
.btn-back:focus {
  background: #0d8aee;
  border-color: #0d8aee;
  color: #fff;
}
.btn-bordered {
  font-size: 20px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  color: #2196f3;
  text-transform: uppercase;
  border: 2px solid #2196f3;
  padding: 15px 30px;
}
.btn-bordered:hover {
  background: #2196f3;
  color: #fff;
}
.btn-bordered:active,
.btn-bordered:focus {
  background: #0d8aee;
  box-shadow: none;
  border-color: #0d8aee;
  color: #fff;
}
/* HEADER */
header {
  background: #2196f3;
  position: relative;
  height: 520px;
  background: url('../images/back-header.png');
  background-size: contain;
  background-attachment: fixed;
  margin-bottom: 30px;
}
header .cabecera {
  position: absolute;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  z-index: 10;
}
header .cabecera.affix-top {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
}
header .cabecera.affix {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100%;
  background: #2196f3;
  z-index: 10;
  padding: 10px 24px;
  margin-top: 0;
  -webkit-animation: opacidad 0.5s ease forwards;
  -moz-animation: opacidad 0.5s ease forwards;
  -o-animation: opacidad 0.5s ease forwards;
  animation: opacidad 0.5s ease forwards;
}
header .cabecera.affix .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
header .cabecera.affix #logo img {
  height: 50px;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
header .cabecera.affix small {
  display: none;
}
header .cabecera.affix .navbar {
  margin: 0;
}
header .cabecera.affix .navbar .nav li a {
  padding: 14px 19px;
}
header .cabecera.affix .navbar .nav li a.lang {
  padding: 14px 0;
}
header .container {
  position: relative;
  z-index: 2;
  padding: 20px;
}
header #logo {
  width: 130px;
  background-size: contain;
  float: left;
  margin-right: 15px;
}
header #logo img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header small {
  color: rgba(255, 255, 255, 0.9);
  display: table;
  margin-top: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header small img {
  margin-bottom: 5px;
  margin-right: 0px;
}
header small span {
  display: block;
  color: #fff;
}
header.header-interior {
  background: #2196f3;
}
header.header-interior #logo img {
  height: 50px;
}
header.header-interior small {
  float: right;
  margin-top: 5px;
  margin-bottom: -5px;
}
header .navbar {
  margin-top: 20px;
}
header .navbar .nav {
  float: right;
}
header .navbar .nav li {
  color: #fff;
}
header .navbar .nav li a {
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  padding: 7px 19px;
}
header .navbar .nav li a:hover,
header .navbar .nav li a:focus {
  background: none;
  color: #fff;
}
header .navbar .nav li a.login {
  box-shadow: 0 0 0 2px #fff;
  color: #fff;
  border-radius: 2px;
}
header .navbar .nav li a.lang {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 7px;
  display: inline-block;
}
header .navbar .nav li.active a {
  color: #fff;
  font-weight: bold;
}
header .lead {
  color: #fff;
  font-size: 38px;
  line-height: 50px;
  margin-top: 80px;
  margin-bottom: 40px;
  font-weight: 300;
}
header .input-group {
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.05);
  background: #ff4081;
  border-radius: 10px;
}
header .input-group input {
  box-shadow: none;
  border: 0;
  font-size: 26px;
  height: 70px;
  color: #aaaaaa;
  padding: 10px 25px;
  letter-spacing: 1px;
  font-weight: 300;
}
header .input-group .btn {
  height: 70px;
  padding: 0 40px;
  font-size: 22px;
  line-height: 40px;
  font-weight: 300;
}
header #demo {
  color: #fff;
  font-size: 22px;
  margin-top: 20px;
  display: block;
  font-weight: 300;
  letter-spacing: 1px;
}
header.header-interior {
  height: auto;
}
header.header-interior .container {
  padding: 10px 0;
}
header.header-interior .logo-interior {
  width: 380px;
  display: inline-block;
  text-align: left;
}
main {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
main .the_contract {
  height: 400px;
  overflow: scroll;
  font-size: 15px;
  text-align: left;
  font-family: "arial";
  font-weight: 300;
  text-transform: initial;
  padding: 10px;
  border: 1px solid #e2e2e2;
  background-color: #f6f6f6;
  margin-bottom: 0;
  margin-top: 10px;
}
main .contract_form {
  font-size: 15px;
  text-align: left;
  text-transform: initial;
  margin-top: 20px;
  margin-bottom: 70px;
}
main .spantextmensaje {
  display: block;
  font-size: 18px;
  color: #929292;
}
main .textmensaje {
  width: 100%;
  min-height: 100px;
  border: 1px solid #b6b6b6;
  background-color: #fcfcfc;
}
main .box-form {
  background: #fff;
  padding: 15px 0;
}
main .contract_form input {
  border: 1px solid #7c7c7c;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 3px;
}
main .title {
  text-align: center;
  font-size: 40px;
  color: #212121;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}
main .title p {
  font-size: 18px;
  font-weight: 300;
  color: #969595;
  text-transform: initial;
  font-family: 'Roboto', sans-serif;
  margin-top: 15px;
}
main .title ol {
  margin: 0px;
}
main .title ol li {
  font-size: 15px;
  text-align: left;
  font-weight: 300;
  color: #969595;
  text-transform: initial;
  font-family: 'Roboto', sans-serif;
  padding-bottom: 15px;
}
main .titlealeft {
  text-align: left;
  padding-bottom: 30px;
}
main.interior {
  padding-bottom: 50px;
}
main.interior .texto p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #706f6f;
  text-align: justify;
}
main.interior .texto ul {
  padding-left: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}
main.interior .texto ul li {
  list-style: none;
  margin-bottom: 30px;
}
main.interior .texto ul li p {
  margin-bottom: 5px;
}
main.interior .texto ul li p strong {
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #5C5C5C;
}
main.interior .texto .hex {
  float: left;
  margin-right: 30px;
  width: 90px;
}
main.interior .texto .hex.crawler {
  background: #673AB7;
}
main.interior .texto .hex.proceso {
  background: #FFC107;
}
main.interior .texto .hex.detect {
  background: #00BCD4;
}
main.interior .texto .hex.alerta {
  background: #F44336;
}
main.interior .texto .hex .center i {
  font-size: 40px;
}
main.interior .acciones {
  margin-top: 60px;
}
#what {
  padding: 50px 0 30px;
  margin-bottom: 40px;
  background: #f1f1f1;
  text-align: center;
  margin-top: -30px;
}
#what .container {
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  /*&:before {
			content: '';
			width: 100%;
			height: 50px;
			.background-image(linear-gradient(to top, rgba(241, 241, 241, 1) 0%,rgba(241, 241, 241, 1) 20%, rgba(241, 241, 241, 0) 100%));
			position: absolute;
			bottom: 0;
			left: 0;
			z-index: 1;
		}*/
}
#what .container i {
  font-size: 50px;
  color: #ff4081;
  margin-bottom: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
#what.on .container {
  max-height: 500px;
}
#what.on .btn-border i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#what .lead {
  font-size: 26px;
  font-weight: 300;
  color: #212121;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#what p {
  font-size: 16px;
  line-height: 24px;
  color: #595959;
}
#what .btn-border {
  display: inline-block;
  margin-top: 10px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#what .btn-border i {
  font-size: 22px;
  vertical-align: sub;
  margin-left: -5px;
  display: inline-block;
}
#what .col-sm-4:hover .lead {
  color: #ff4081;
}
#what .col-sm-4:hover .btn-border {
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-border {
  text-transform: uppercase;
  color: #ff4081;
  border: 1px solid #ff4081;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 50px;
}
.btn-border:hover,
.btn-border:focus {
  text-decoration: none;
  background: #ff4081;
  color: #fff;
}
.process {
  margin-top: 60px;
  min-height: 750px;
  position: relative;
  opacity: 0;
}
.process.active {
  -webkit-animation: opacidad 0.5s ease forwards;
  -moz-animation: opacidad 0.5s ease forwards;
  -o-animation: opacidad 0.5s ease forwards;
  animation: opacidad 0.5s ease forwards;
}
.process.active lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes opacidad{ 0%{ opacity: 0; } 100%{ opacity: 1 }}
@-moz-keyframes opacidad{ 0%{ opacity: 0; } 100%{ opacity: 1 }}
@-o-keyframes opacidad{ 0%{ opacity: 0; } 100%{ opacity: 1 }}
@keyframes opacidad{ 0%{ opacity: 0; } 100%{ opacity: 1 };
}
.process.active .step {
  position: relative;
  width: 200px;
  text-align: center;
}
.process.active .step:before {
  position: absolute;
  left: 25px;
  top: 5px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: bold;
  background: #ccc;
  border: 3px solid #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 33px;
  border-radius: 50%;
  z-index: 2;
}
.process.active .step .points {
  position: absolute;
}
.process.active .step p {
  color: #969595;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 300;
}
.process.active .step p strong {
  font-size: 26px;
  display: block;
  color: #212121;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}
.process.active .step.step1 {
  position: absolute;
  left: 50%;
  margin-left: -100px;
  z-index: 1;
}
.process.active .step.step1:before {
  content: '1';
  background: #7C4DFF;
}
.process.active .step.step1 .hex {
  background: #7C4DFF;
}
.process.active .step.step1 .points {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 70px;
  right: -175px;
}
.process.active .step.step2 {
  position: absolute;
  right: 0;
  top: 140px;
  z-index: 2;
  -webkit-animation: move1 0.5s ease;
  -moz-animation: move1 0.5s ease;
  -o-animation: move1 0.5s ease;
  animation: move1 0.5s ease;
}
.process.active .step.step2:before {
  content: '2';
  background: #FFC107;
}
.process.active .step.step2 .hex {
  background: #FFC107;
}
.process.active .step.step2 .points {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 250px;
  left: -180px;
}
.process.active .step.step2 lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes move1{ 0%{ -webkit-transform:translate3d(-387px,-140px,0); opacity: 0; } 100%{ -webkit-transform:translate3d(0,0,0); opacity: 1 }}
@-moz-keyframes move1{ 0%{ -moz-transform:translate3d(-387px,-140px,0); opacity: 0; } 100%{ -moz-transform:translate3d(0,0,0); opacity: 1 }}
@-o-keyframes move1{ 0%{ -o-transform:translate3d(-387px,-140px,0); opacity: 0; } 100%{ -o-transform:translate3d(0,0,0); opacity: 1 }}
@keyframes move1{ 0%{-webkit-transform:translate3d(-387px,-140px,0);-moz-transform:translate3d(-387px,-140px,0);-ms-transform:translate3d(-387px,-140px,0);transform:translate3d(-387px,-140px,0); opacity: 0; } 100%{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0); opacity: 1 };
}
.process.active .step.step3 {
  position: absolute;
  left: 50%;
  margin-left: -100px;
  top: 390px;
  z-index: 3;
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-animation: move2 0.5s ease forwards;
  -moz-animation: move2 0.5s ease forwards;
  -o-animation: move2 0.5s ease forwards;
  animation: move2 0.5s ease forwards;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.process.active .step.step3:before {
  content: '3';
  background: #00BCD4;
}
.process.active .step.step3 .hex {
  background: #00BCD4;
}
.process.active .step.step3 .points {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  top: -15px;
  left: -180px;
}
.process.active .step.step3 lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes move2{ 0%{ -webkit-transform:translate3d(387px,-250px,0); opacity: 0; } 100%{ -webkit-transform:translate3d(0,0,0); opacity: 1 }}
@-moz-keyframes move2{ 0%{ -moz-transform:translate3d(387px,-250px,0); opacity: 0; } 100%{ -moz-transform:translate3d(0,0,0); opacity: 1 }}
@-o-keyframes move2{ 0%{ -o-transform:translate3d(387px,-250px,0); opacity: 0; } 100%{ -o-transform:translate3d(0,0,0); opacity: 1 }}
@keyframes move2{ 0%{-webkit-transform:translate3d(387px,-250px,0);-moz-transform:translate3d(387px,-250px,0);-ms-transform:translate3d(387px,-250px,0);transform:translate3d(387px,-250px,0); opacity: 0; } 100%{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0); opacity: 1 };
}
.process.active .step.step4 {
  position: absolute;
  left: 0;
  top: 140px;
  z-index: 4;
  -webkit-animation: move3 1.5s ease;
  -moz-animation: move3 1.5s ease;
  -o-animation: move3 1.5s ease;
  animation: move3 1.5s ease;
}
.process.active .step.step4:before {
  content: '4';
  background: #F44336;
}
.process.active .step.step4 .hex {
  background: #F44336;
}
.process.active .step.step4 .points {
  top: -70px;
  right: -175px;
}
.process.active .step.step4 lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes move3{ 0%{ -webkit-transform:translate3d(387px,250px,0); opacity: 0; } 75%{ -webkit-transform:translate3d(387px,250px,0); opacity: 0; } 100%{ -webkit-transform:translate3d(0,0,0); opacity: 1 }}
@-moz-keyframes move3{ 0%{ -moz-transform:translate3d(387px,250px,0); opacity: 0; } 75%{ -moz-transform:translate3d(387px,250px,0); opacity: 0; } 100%{ -moz-transform:translate3d(0,0,0); opacity: 1 }}
@-o-keyframes move3{ 0%{ -o-transform:translate3d(387px,250px,0); opacity: 0; } 75%{ -o-transform:translate3d(387px,250px,0); opacity: 0; } 100%{ -o-transform:translate3d(0,0,0); opacity: 1 }}
@keyframes move3{ 0%{-webkit-transform:translate3d(387px,250px,0);-moz-transform:translate3d(387px,250px,0);-ms-transform:translate3d(387px,250px,0);transform:translate3d(387px,250px,0); opacity: 0; } 75%{-webkit-transform:translate3d(387px,250px,0);-moz-transform:translate3d(387px,250px,0);-ms-transform:translate3d(387px,250px,0);transform:translate3d(387px,250px,0); opacity: 0; } 100%{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0); opacity: 1 };
}
.process.active .step .opacidad {
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-animation: opacidad 1s linear forwards;
  -moz-animation: opacidad 1s linear forwards;
  -o-animation: opacidad 1s linear forwards;
  animation: opacidad 1s linear forwards;
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.process.active .step .opacidad lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes opacidad{ 0%{ opacity: 0; } 100%{ opacity: 1 }}
@-moz-keyframes opacidad{ 0%{ opacity: 0; } 100%{ opacity: 1 }}
@-o-keyframes opacidad{ 0%{ opacity: 0; } 100%{ opacity: 1 }}
@keyframes opacidad{ 0%{ opacity: 0; } 100%{ opacity: 1 };
}
.process .btn-bordered {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -92px;
  margin-top: -41px;
  z-index: 3;
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.process .opacidad2 {
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-animation: opacidad2 1s linear forwards;
  -moz-animation: opacidad2 1s linear forwards;
  -o-animation: opacidad2 1s linear forwards;
  animation: opacidad2 1s linear forwards;
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  -o-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.process .opacidad2 lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes opacidad2{ 0%{ opacity: 0; } 100%{ opacity: 1 }}
@-moz-keyframes opacidad2{ 0%{ opacity: 0; } 100%{ opacity: 1 }}
@-o-keyframes opacidad2{ 0%{ opacity: 0; } 100%{ opacity: 1 }}
@keyframes opacidad2{ 0%{ opacity: 0; } 100%{ opacity: 1 };
}
.hex {
  position: relative;
  visibility: hidden;
  width: 115px;
  color: #fff;
  margin: auto;
}
.hex > * {
  visibility: visible;
}
.hex .hook {
  position: absolute;
  background-color: inherit;
  width: 100%;
  height: 50%;
  top: 25%;
  left: auto;
  border-radius: 5% / 20%;
  opacity: 0.85;
}
.hex .hook::before,
.hex .hook::after {
  border-radius: 5% / 20%;
  content: '';
  background-color: inherit;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.hex .hook::before {
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}
.hex .hook::after {
  -webkit-transform: rotate(-60deg);
  -moz-transform: rotate(-60deg);
  -o-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.hex::after {
  content: '';
  display: block;
  padding-top: 115.47344%;
}
.hex .center {
  text-align: center;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hex .center i {
  font-size: 60px;
  line-height: inherit;
}
#pricing {
  padding: 50px 0;
  background: #F5F5F5;
  margin-top: 80px;
}
#pricing .lead {
  font-size: 30px;
  margin-bottom: 15px;
  color: #212121;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}
#pricing .nav-tabs {
  border-bottom: 0;
}
#pricing .nav-tabs li.active a {
  color: #2196f3;
}
#pricing .nav-tabs li a {
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  padding-right: 20px;
  color: #cecece;
}
#pricing .nav-tabs li a:hover {
  color: #2196f3;
}
#pricing .tab-content {
  margin-top: 20px;
}
#pricing .tab-content p {
  font-size: 16px;
  color: #6f6f6f;
  margin-bottom: 0;
  font-weight: 300;
}
#pricing .tab-content small {
  font-size: 18px;
  color: #595959;
  display: block;
  margin-bottom: 20px;
}
#pricing .btn-primary {
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 30px;
}
.form-group .col-sm-6 {
  position: relative;
}
.form-group .form-control {
  border: 0;
  box-shadow: none;
  font-size: 18px;
  height: 45px;
  color: #212121;
  border-radius: 0;
  background: none;
  border-bottom: 1px solid #BBBBBB;
  padding-left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.form-group .form-control:focus {
  box-shadow: 0 -1px 0 0 #2196f3 inset;
  border-color: #2196f3;
}
.form-group .form-control:focus + .label-control,
.form-group .form-control:-webkit-autofill + .label-control,
.form-group .form-control:valid + .label-control {
  font-size: 12px;
  top: -10px;
  color: #2196f3;
}
.form-group .label-control {
  position: absolute;
  left: 15px;
  top: 10px;
  font-weight: 300;
  font-size: 18px;
  color: #999;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.form-group .checkbox {
  margin-bottom: 10px;
}
.form-group .checkbox a {
  color: #b6b6b6;
  font-size: 14px;
  text-decoration: underline;
}
.form-group .checkbox a:hover {
  color: #ff4081;
  text-decoration: none;
}
.interior .title {
  font-size: 30px;
}
.interior p {
  color: #565656;
}
.interior ol li {
  color: #565656;
  margin-bottom: 10px;
}
.interior .btn-primary {
  font-size: 18px;
  padding: 10px 30px;
}
.interior .check {
  background: #4CAF50;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 40px auto 20px;
  text-align: center;
}
.interior .check i {
  font-size: 60px;
  color: #fff;
  line-height: 100px;
}
.interior .title {
  margin-bottom: 10px;
}
.interior .text-p {
  font-size: 22px;
  font-weight: 300;
  text-align: center;
}
.contract_data {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  min-width: 280px;
  padding: 20px;
  background-color: #e7e7e7;
  text-align: left;
}
footer {
  background: #2196f3;
  padding: 40px 0 0;
}
footer a {
  color: #ffffff;
}
footer .lead {
  font-size: 32px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 300;
}
footer p {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
}
footer .text-center {
  padding-top: 10px;
}
footer .text-center img {
  margin-bottom: 20px;
}
footer .text-center p {
  font-size: 18px;
  color: #cae4f0;
  font-weight: lighter;
}
footer .text-center p img {
  margin-bottom: 0;
}
footer .text-center p .semseo {
  margin-left: 5px;
}
footer .copyright {
  margin-top: 40px;
  padding: 10px 0;
  background: #0d8aee;
  font-size: 14px;
  color: #fff;
}
footer .copyright .text-center {
  padding-top: 0;
}
footer .copyright a {
  color: #fff;
}
footer .copyright a:hover {
  text-decoration: underline;
}
/*** RESPONSIVE DESIGN ***/
@media (max-device-width: 1280px) and (orientation: landscape) {
  header {
    background-size: inherit;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header #logo {
    float: none;
  }
  header small {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header {
    text-align: center;
    height: 430px;
    background-size: inherit;
  }
  header .container {
    padding: 15px 0 0;
  }
  header #logo {
    float: none;
    display: inline-block;
    margin-right: 5px;
  }
  header small {
    display: inline-block;
    text-align: left;
    margin-top: 0;
    vertical-align: middle;
  }
  header .navbar {
    position: absolute;
    top: -90px;
    right: 15px;
  }
  header .navbar .nav li {
    display: none;
  }
  header .navbar .nav li.visible {
    display: block;
  }
  header .cabecera.affix .navbar {
    top: -50px;
  }
  header .lead {
    margin-top: 60px;
    padding: 0 40px;
    font-size: 36px;
  }
  #what {
    /*.container {
			max-height: 150px;
		}*/
  }
  #what .lead {
    font-size: 28px;
  }
  #pricing .lead {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  header {
    text-align: center;
    height: auto;
    background-size: cover;
    padding-bottom: 40px;
  }
  header.header-interior {
    height: 70px;
  }
  header .row {
    margin: 0;
  }
  header .container {
    padding: 15px 0 0;
  }
  header #logo {
    float: none;
    display: inline-block;
    margin-right: 5px;
  }
  header small {
    display: none;
  }
  header .navbar {
    position: absolute;
    top: -90px;
    right: 15px;
  }
  header .navbar .nav li {
    display: none;
  }
  header .navbar .nav li.visible {
    display: block;
  }
  header .cabecera.affix .navbar {
    top: -55px;
    right: 0;
  }
  header .lead {
    margin-top: 40px;
    padding: 0 20px;
    font-size: 26px;
    line-height: 40px;
  }
  header .col-sm-10.col-sm-offset-1 {
    padding-left: 0;
    padding-right: 0;
  }
  header .input-group {
    background: none;
    box-shadow: none;
    width: 100%;
  }
  header .input-group .btn {
    width: 100%;
    border-radius: 2px!important;
  }
  header .input-group-addon,
  header .input-group-btn,
  header .input-group .form-control {
    display: block;
    border-radius: 2px!important;
    margin-bottom: 10px;
    width: 100%;
  }
  .collapse {
    display: block;
  }
  #what .container {
    max-height: inherit;
  }
  #what .container .col-sm-4 {
    margin-bottom: 30px;
  }
  #what .btn-border {
    display: none;
  }
  #what {
    margin-bottom: 20px;
  }
  .process.active .step {
    position: relative!important;
    width: 100%;
    text-align: center;
    left: 0!important;
    margin-left: 0!important;
    top: inherit!important;
    margin-bottom: 30px;
  }
  .process.active .step:before {
    top: -10px;
    margin-left: -60px;
    left: 50%;
  }
  main .title p {
    margin-top: 0;
  }
  #pricing {
    margin-top: 20px;
  }
  #pricing .col-sm-5 {
    margin-top: 30px;
  }
  #pricing .lead {
    font-size: 28px;
  }
  #pricing .form-group .col-sm-6 {
    padding-left: 15px!important;
    padding-right: 15px!important;
  }
  #pricing .form-group .label-control {
    left: 15px!important;
  }
  .navbar-header {
    display: none;
  }
  .navbar-collapse {
    border: 0;
    max-height: inherit;
    box-shadow: none;
  }
  .interior .title {
    font-size: 26px;
  }
  .interior .btn-primary {
    white-space: normal;
  }
  main .contract_form {
    margin-bottom: 0;
  }
}
