@font-face {
  font-family: HelveticaNeue;
  src: url(/assets/fonts/HelveticaNeue.ttf) format("truetype");
}

@font-face {
  font-family: SFProTextRegular;
  src: url(/assets/fonts/SF-Pro-Text-Regular.ttf) format("truetype");
}

@font-face {
  font-family: HelveticaNeueBold;
  src: url(/assets/fonts/HelveticaNeueBold.ttf) format("truetype");
}

@font-face {
  font-family: fontello;
  src: url(/assets/fonts/fontello.ttf) format("truetype");
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  margin: 0;
  min-width: 100%;
  min-height: 100%;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: "HelveticaNeue", Arial, Helvetica, sans-serif;
  width: 100vw;
  margin: 0;
  padding: 0;
  background-attachment: fixed;
  background-size: cover;
  overflow-x: hidden;
}

header.general {
  position: fixed;
  width: 100vw;
  /* height: 7vh; */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  -webkit-box-shadow: -6px 11px 30px -5px rgba(0, 0, 0, 0.52);
  -moz-box-shadow: -6px 11px 30px -5px rgba(0, 0, 0, 0.52);
  box-shadow: -6px 11px 30px -5px rgba(0, 0, 0, 0.52);
  z-index: 100;
}

.social-media {
  position: absolute;
  right: 10vw;
}

.social-media img {
  width: 2em;
}

.burger {
  display: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li a {
  font-family: "SFProDisplay", "HelveticaNeue", Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #092a5d;
  cursor: pointer;
}

ul li a:hover {
  font-weight: 800;
  color: #54565a;
}

a {
  color: #fff;
  text-decoration: none;
}

ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

ul.menu li {
  list-style: none;
  margin-left: 30px;
  font-size: 1.2em;
  padding: 1vh 0;
  margin-right: 2vw;
}

ul.menu li.home {
  display: none;
}

ul.menu li img {
  width: 100px;
  height: 50px;
  object-fit: contain;
}

.btn-fixed {
  position: fixed;
  bottom: 1vh;
  right: 1vw;
  z-index: 98;
}

form input,
form button,
form textarea,
form select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "HelveticaNeue", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  color: #0c1338;
  outline: 0;
  border-radius: 4px;
  border: solid 1px #092a5d;
  font-size: 1em;
  margin-bottom: 1em;
  padding: 0.5em;
  width: 100%;
  line-height: 2em;
}

form input.error,
form button.error,
form textarea.error,
form select.error {
  border: #e14d31 1px solid;
}

form label.error {
  position: relative;
  top: -10px;
}

form select {
  cursor: pointer;
  background: #ffffff;
  padding: 0.5em;
  line-height: 2em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3…c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}

form textarea {
  height: 20vh;
}

button.btn {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "HelveticaNeue", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  outline: 0;
  border-radius: 4px;
  font-size: 1em;
  margin-bottom: 1em;
  padding: 0.5em;
  cursor: pointer;
}

button.btn-primary {
  background-color: #e14d31;
  color: #ffffff;
  border: solid 1px #e14d31;
}

button.btn-secondary {
  background-color: #ffffff;
  color: #092a5d;
  border: solid 1px #092a5d;
}

form button.enviar {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 2em;
  letter-spacing: normal;
  text-align: center;
}

form button.enviar:hover {
  background-color: rgba(0, 56, 122, 0.9);
}

form button.enviar:disabled,
form button.enviar[disabled] {
  border: 1px solid #e14d31;
  /* background-color: rgba(213, 94, 74, 0.7); */
  background-color: #e14d31;
  color: #ffffff;
}

.spinner {
  margin: 25px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.range-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.range-wrapper .money {
  font-size: 1.5em;
}

.link-whatsapp img {
  width: 200px;
}

input[type="range"] {
  -webkit-appearance: none;
  margin: 18px 0;
  width: 100%;
  border: none;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: linear-gradient(to right, #e14d31, #e14d31 80%);
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #0c1338;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #0c1338;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #0c1338;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #0c1338;
}

input[type="range"]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -14px;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: linear-gradient(to right, #e14d31, #e14d31 80%);
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: linear-gradient(to right, #e14d31, #e14d31 80%);
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}

input[type="range"]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

input[type="range"]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}

input[type="range"]::-ms-fill-lower {
  background: linear-gradient(to right, #e14d31, #e14d31 80%);
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

input[type="range"]::-ms-fill-upper {
  background: linear-gradient(to right, #e14d31, #e14d31 80%);
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

input[type="range"]::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

input[type="range"]:focus::-ms-fill-lower {
  background: linear-gradient(to right, #e14d31, #e14d31 80%);
}

input[type="range"]:focus::-ms-fill-upper {
  background: linear-gradient(to right, #e14d31, #e14d31 80%);
}

main.content {
  font-family: "HelveticaNeue", Arial, Helvetica, sans-serif;
}

article#home header.h-article {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 7vh;
  background: url(/assets/images/hero.png) no-repeat center center;
  width: 100vw;
  height: 30vh;
  object-fit: contain;
  background-size: cover;
  padding: 0 16px;
}
article#home header.h-article .logo-brand img {
  width: 16em;
}

article#home header.h-article .title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 2.5em;
  color: #ffffff;
  text-align: right;
}
article#home header.h-article .title.bco {
  display: flex;
  width: unset;
  flex-direction: column;
}
article#home header.h-article .title.bco .title3 {
  font-size: 1.2em;
  letter-spacing: -1.1px;
  margin: 0;
  align-self: center;
  margin-bottom: -25px;
  margin-top: 25px;
}
article#home header.h-article .title .bco-logo {
  width: unset;
  height: 5em;
  margin-bottom: .6em;
}

article#home header.h-article .title .title1 {
  font-size: 3em;
  letter-spacing: -1.1px;
}

article#home header.h-article .title .title2 {
  font-size: 3.9em;
  letter-spacing: -1.5px;
}

article#home .content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 3em;
}

article#home .content .resultado .msg header {
  height: 4em;
  width: 80vw;
}
article#home .content .resultado .close {
  border: none;
  background: none;
  position: absolute;
  right: 0;
  cursor: pointer;
  padding: 0;
}

article#home .content .resultado h2 {
  font-size: 3.5em;
  color: #092a5d;
  margin-top: 0;
  margin-bottom: 0em;
  width: 60vw;
  text-align: center;
}

article#home .content .resultado p {
  color: #0c1338;
  font-size: 2em;
}

article#home .content .resultado .pregunta .action {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

article#home .content .resultado .msg {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 90vh;
}

article#home .content .resultado .pregunta {
  display: flex;
  flex-direction: column;
  min-width: 60vw;
}

article#home .content .resultado .pregunta p {
  font-size: 1.8em;
  text-align: center;
}

article#home section {
  width: 50vw;
  max-width: 600px;
}

article#home section header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

article#home section header .title {
  display: flex;
  flex-direction: column;
  font-size: 1.6em;
  color: #0c1338;
}

article#home section header .title strong {
  font-size: 1.3em;
  line-height: 0.8em;
}

article#home .spot {
  width: 2em;
  height: 2em;
  border-radius: 250px;
  font-size: 1.8em;
  font-weight: 600;
  line-height: 2em;
  color: #fff;
  text-align: center;
  background-color: #092a5d;
  margin-right: 0.6em;
}

article#home form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2em 5em;
}

article#home .content.open .simula,
article#home .content.open .solicita {
  filter: blur(10px);
  pointer-events: none;
}

article#home .content.open {
  overflow: hidden;
}

article#home .content.open .resultado {
  height: 70vw;
  position: absolute;
}

article#home .content .resultado {
  height: unset;
}

article#home .content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hide {
  display: none !important;
}

article#home .content .resultado {
  display: flex;
  align-content: start;
  position: absolute;
  height: 70%;
}

article#home .content .resultado button {
  padding: 1em 3em;
  font-weight: 800;
  font-size: 1.3em;
}

article#home .content .resultado .continuar2 .pregunta {
  width: 60vw;
}

article#home .content .resultado .continuar2 button {
  margin-top: 3em;
}

article#home .content .resultado .lds-ring.hide {
  display: none;
}

article#home .simula .comentario {
  font-family: "Roboto Mono", sans-serif;
  color: #9b9b9b;
  font-size: 0.7em;
  text-align: justify;
}

.fee-field {
  margin-top: 25px;
  padding: 20px;
  min-height: 48px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 5px;
  outline: 0;
  background-color: #e0e0e0;
  width: 100%;
}

.fee-field .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fee-field .info.result {
  flex-direction: row;
  justify-content: space-evenly;
}

.fee-field .message .price {
  font-size: 1.5em;
  font-weight: 900;
  color: #092a5d;
}

article#pasos header {
  background: url(/assets/images/tres-pasos.png) no-repeat center center;
  width: 100vw;
  object-fit: contain;
  background-size: cover;
}

article#pasos header .title {
  opacity: 0.75;
  background-color: #e14d31;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  font-size: 1.6em;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.3px;
  text-align: center;
  color: #ffffff;
  padding: 2vh 0;
}

article#pasos ul.pasos {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

article#pasos ul.pasos {
  width: 100vw;
  padding: 1em 2em;
  z-index: 1;
}

article#pasos .spot {
  width: 6em;
  height: 6em;
  border-radius: 250px;
  font-size: 1.8em;
  font-weight: 600;
  line-height: 6em;
  color: #fff;
  text-align: center;
  background-color: rgba(12, 19, 56, 0.75);
}

article#pasos .spot .content {
  line-height: 1em;
  padding: 1em;
}

article#pasos .spot img {
  width: 2em;
  margin: 7px auto;
}

article#pasos li.paso {
  padding: 2em 1em;
  width: 25vw;
  max-width: 500px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

article#pasos .benefit {
  background: linear-gradient(to bottom, #0c1338, rgba(12, 19, 56, 0)),
    url(/assets/images/bg-benefit.jpg) no-repeat center center;
  width: 100vw;
  padding-bottom: 4em;
  object-fit: contain;
  background-size: cover;
}

article#pasos .benefit .legend {
  width: 100vw;
  padding: 5em 1em 0em;
  text-align: center;
}

article#pasos .benefit .legend strong {
  color: #e14d31;
  font-size: 3.5em;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
}

article#pasos .benefit .legend p {
  font-size: 2em;
  font-weight: 100;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #ffffff;
  position: relative;
  top: -1em;
}

article#pasos .benefit .belt {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  padding: 0 10vw;
}

article#pasos .benefit .belt span {
  font-size: 3em;
  border: 1px solid black;
  border-radius: 18px;
  padding: 8px;
}

article#pasos .benefit .arrow.back img {
  transform: rotate(180deg);
}

article#pasos .benefit .belt .arrow {
  height: 4vh;
}

article#pasos .benefit .belt .item {
  padding: 2em 1em;
  text-align: center;
}

article#pasos .benefit .belt .item img {
  width: 4em;
  margin: 0 auto;
}

article#requisitos {
  background: url(/assets/images/R-bg.jpg) no-repeat center center;
  width: 100vw;
  object-fit: contain;
  background-size: cover;
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: #ffffff;
  padding: 3em;
}

article#requisitos .title {
  padding: 3em;
}

article#requisitos .title title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-family: "HelveticaNeue", Arial, Helvetica, sans-serif;
  font-size: 2.5em;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: right;
  display: block;
  padding-left: 4em;
}

article#requisitos .title img {
  position: relative;
  top: -6em;
}

article#requisitos .title img.icon {
  position: relative;
  top: 1em;
  left: 5em;
}

article#requisitos ul {
  padding-top: 7vh;
  font-size: 1.2em;
}

article#requisitos ul li {
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.56;
  letter-spacing: -0.5px;
  list-style-type: disc;
}

article#experiences .msgs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

article#experiences div.msg {
  width: 50vw;
  height: 50vh;
  object-fit: contain;
  background-size: cover;
  font-family: "SFProDisplay", "HelveticaNeue", Arial, Helvetica, sans-serif;
  font-size: 1.6em;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 8%;
  line-height: 1.5em;
}

article#experiences div.msg span {
  font-family: "Ranga", "HelveticaNeue", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #e14d31;
  font-style: normal !important;
}

article#experiences div.msg span small {
  font-family: "SFProDisplay", "HelveticaNeue", Arial, Helvetica, sans-serif;
  font-weight: 100;
}

article#experiences div.msg1 {
  background: linear-gradient(
      to bottom,
      rgba(12, 19, 56, 0.75),
      rgba(12, 19, 56, 0.75)
    ),
    url(/assets/images/msg1.jpg) no-repeat center center;
  background-size: cover;
}

article#experiences div.msg2 {
  background: linear-gradient(
      to bottom,
      rgba(12, 19, 56, 0.75),
      rgba(12, 19, 56, 0.75)
    ),
    url(/assets/images/msg2.jpg) no-repeat center center;
  background-size: cover;
}

article#faq {
  background: url(/assets/images/faq-bg.svg) repeat center center;
  width: 100vw;
  object-fit: contain;
  background-size: contain;
  display: flex;
  flex-direction: column;
  padding: 10vh 0;
}

article#faq header {
  text-align: center;
}

article#contacto header title,
article#faq header title {
  display: block;
  font-size: 2em;
  font-weight: 100;
  font-style: normal;
  font-stretch: normal;
  line-height: 0.8em;
  letter-spacing: normal;
  color: #9b9b9b;
}

article#contacto header p.description,
article#faq header p.description {
  font-family: "HelveticaNeue", Arial, Helvetica, sans-serif;
  font-size: 2.4em;
  font-weight: 900;
  color: #092a5d;
}

article#faq .popup header title {
  color: #092a5d;
}

article#faq .answers {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.answers div.action {
  background-color: rgba(0, 86, 188, 0.05);
  font-family: "SFProDisplay", "HelveticaNeue", Arial, Helvetica, sans-serif;
  font-size: 1.4em;
  display: block;
  margin: 0.6em 0;
  color: #0c1338;
  width: 50vw;
  padding: 1em 2em;
  cursor: pointer;
}

.answers div.action span {
  color: #0075ff;
}

article#contacto {
  background: url(/assets/images/bg-contact.jpg) no-repeat center center;
  width: 100vw;
  object-fit: contain;
  background-size: cover;
  display: flex;
  flex-direction: column;
}

article#contacto .content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 5em 2em;
}

article#contacto footer p {
  font-size: 0.5em;
  text-align: justify;
}

article#contacto .content header {
  width: 50vw;
  max-width: 700px;
  padding: 1em 4em;
}

article#contacto .content header p.data {
  padding-right: 6em;
  line-height: 1.5em;
}

article#contacto .content .container {
  width: 50vw;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.7);
  padding: 3em;
}

article#contacto .container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

form .msg .invalid,
form .msg .error,
form .msg .reset,
form .msg .success {
  display: none;
}

/* MODAL */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  text-align: center;
  top: 20%;
  left: 20%;
  margin: -100px 0 0 -150px;
  background: #fff;
  width: 80vw;
  height: 80vh;
  -webkit-box-shadow: 0 0 125px 0 rgba(0, 0, 0, 1),
    0 0 10000px 500px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 125px 0 rgba(0, 0, 0, 1),
    0 0 10000px 500px rgba(0, 0, 0, 0.75);
  border-radius: 5px;
  overflow-y: auto;
}

.popup header {
  position: fixed;
  height: 4em;
  width: 80vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: #fff;
  -webkit-box-shadow: -6px 11px 30px -5px rgba(0, 0, 0, 0.52);
  -moz-box-shadow: -6px 11px 30px -5px rgba(0, 0, 0, 0.52);
  box-shadow: -6px 11px 30px -5px rgba(0, 0, 0, 0.52);
}

.popup header title {
  padding-left: 2vw;
  padding-top: 2vh;
}

.popup header span {
  font-size: 2.5em;
  padding-right: 0.3em;
  cursor: pointer;
}

.popup .content {
  padding: 1.5em;
  margin-top: 2em;
  background: url(/assets/images/faq-bg.svg) repeat center center;
  width: 100%;
  object-fit: contain;
  background-size: contain;
}

.popup .content h5 {
  font-size: 1.4em;
  font-weight: 900;
  color: #54565a;
}

footer p {
  font-size: 0.5em;
  padding: 0 5vw;
}

article#termsandconditions p {
  font-family: "Roboto Mono", sans-serif;
  color: #9b9b9b;
  font-size: 1em;
  padding: 1em 5em;
  text-align: justify;
}

/* Menu */
#menuToggle {
  display: block;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #fc122d;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  color: #212529;
  font-weight: bold;
  text-align: center;
  position: absolute;
  width: 22vw;
  height: 100vh;
  left: -15vw;
  top: -12vh;
  padding-top: 20vh;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.burger {
  position: relative;
  display: none;
}

.burger-icon {
  cursor: pointer;
  display: block;
  position: absolute;
  width: 36px;
  height: 32px;
  background-image: url(/assets/images/burger.svg);
  background-repeat: no-repeat;
}

.header .menu-btn {
  display: none;
}

/* MODAL */
@media (min-width: 60em) {
  .modaloverlay .modal {
    height: 75%;
    margin: 5% auto;
    max-height: 57em;
    max-width: 66em;
    width: 85%;
  }
}

.modaloverlay .modal > iframe,
.modaloverlay .modal > div {
  border: none;
  width: 100%;
  height: 100%;
}

.modaloverlay .close {
  background-color: turquoise;
  color: white;
  font-size: 24px;
  padding: 8px 12px;
  position: absolute;
  right: 0;
  text-align: center;
  text-decoration: none;
  top: 0;
  z-index: 1;
}

article#pasos .icon {
  display: none;
}

header.general .logo.mobile {
  display: none;
}

@media screen and (min-width: 320px) and (max-width: 820px) {
  header.general {
    justify-content: space-between;
    height: 3em;
  }

  header.general .logo.mobile {
    width: 70vw;
    z-index: 100;
    display: block;
  }

  header.general .logo img {
    margin-left: 2em;
    width: 6em;
  }

  header.general .social-media {
    display: none;
  }

  ul.menu {
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 3em;
    left: 100vw;
    background: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: left 0.5s ease;
    z-index: 99;
  }

  header .menu li.home {
    display: block;
  }

  ul li a {
    font-size: 1.1em;
  }

  header .menu li {
    margin: 0.6em 0;
  }

  header .menu .close {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .menu-open {
    overflow: hidden;
  }

  .menu-open header .menu {
    left: -100vw;
    top: -3vh;
  }

  .menu li {
    padding: 5px 0;
    font-size: 22px;
  }

  .burger {
    display: block;
    right: 16vw;
    top: -1.2em;
    z-index: 100;
  }

  article#home header.h-article {
    margin-top: 3em;
    height: unset;
    flex-direction: column;
    padding-top: 2em;
  }

  .menu-open ul.menu li.logo {
    display: none;
  }

  article#home header.h-article .title {
    width: 100vw;
    padding: 2em 0;
    text-align: center;
  }
  article#home header.h-article .title.bco .title3 {
    font-size: .8em;
    letter-spacing: -0.1px;
    align-self: center;
    margin-bottom: -25px;
    margin-top: 25px;
  }
  article#home header.h-article .title .bco-logo {
    width: unset;
    margin-bottom: 1em;
    margin-left: .6em;
  }
  article#home header.h-article .title.bco {
    width: unset;
    padding: 0;
    justify-content: center;
    flex-direction: column;
  }

  article#home header.h-article .title .title1,
  article#home header.h-article .title .title2 {
    font-size: 9vw;
  }

  article#home section header .title strong {
    font-size: 1em;
  }

  .range-wrapper .money {
    font-size: 1.3em;
  }

  article#home .content {
    flex-direction: column;
    padding: 2em 0em;
    align-items: center;
  }

  article#home section {
    width: 100vw;
  }
  article#home .content.open {
    display: flex;
    align-items: flex-end;
  }

  article#home form {
    padding: 1em 1em;
  }

  html.open article#home header.h-article {
    filter: blur(10px);
    pointer-events: none;
  }

  article#home .content.open .resultado {
    position: unset;
    display: unset;
    height: unset;
  }

  article#home .content .resultado .loader,
  article#home .content .resultado .msg {
    justify-content: flex-start;
  }
  article#home .content .resultado .msg {
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
  }

  article#home .content .resultado header {
    position: relative;
    width: 100vw;
    height: 10vh;
  }
  article#home .content .resultado header .close {
    right: 4vw;
    margin-top: unset;
  }

  article#home .content .resultado .continuar2 .pregunta {
    width: 90vw;
  }

  article#home .content.open .simula {
    display: none;
  }

  article#home .content .resultado button {
    width: unset;
  }

  article#home .content.open .resultado {
    position: absolute;
    width: 100vw;
  }

  article#home .content .resultado .continuar1 button {
    font-size: 1.2em;
    width: 90vw;
  }

  article#home .content .resultado h2 {
    width: 90vw;
    font-size: 2.2em;
  }

  article#home .content .resultado .pregunta p,
  article#home .content .resultado p {
    font-size: 1.2em;
    text-align: center;
    padding: 0 5vw;
  }

  article#pasos li.paso {
    width: 100vw;
    padding: 2em 0em;
    text-align: center;
  }

  article#pasos .icon {
    display: block;
    position: absolute;
    font-size: 5em;
    color: #0c1338;
    margin-top: 20vh;
    cursor: pointer;
  }

  article#pasos .icon.icon-angle-right {
    right: 0;
  }

  article#pasos .icon.icon-angle-left {
    left: 0;
  }

  article#pasos li.paso .description {
    width: 75%;
    padding: 0em;
  }

  article#pasos .benefit .legend {
    padding: 5em 2em 3em;
  }

  article#pasos .benefit .legend strong {
    font-size: 1.8em;
  }

  article#pasos .benefit .legend p {
    font-size: 1.4em;
  }

  article#requisitos {
    flex-direction: column;
    background: url(/assets/images/R-bg.jpg) no-repeat center right;
    background-size: cover;
  }

  article#requisitos .title {
    position: relative;
    padding: 3em 0;
  }

  article#requisitos .title title {
    padding-left: 0;
    text-align: center;
  }

  article#requisitos .title img {
    top: -11em;
  }

  article#requisitos .title .bg {
    position: absolute;
  }

  article#requisitos ul {
    padding-top: 1vh;
    font-size: 1em;
  }

  article#requisitos ul li {
    text-align: center;
    list-style-type: none;
  }

  article#experiences {
    width: 100vw;
  }

  article#experiences .controls {
    position: absolute;
    color: #ffffff;
    z-index: 98;
  }

  article#pasos .pasos button.controls:after,
  article#experiences button.controls:after {
    background-color: rgba(255, 255, 255, 0.4);
  }

  article#pasos .pasos .controls.prev:after,
  article#experiences .controls.prev {
    right: 0;
    margin-right: 1em;
  }

  article#pasos .pasos .controls.next:after,
  article#experiences .controls.next {
    left: 0;
    margin-left: 1em;
  }

  article#experiences div.msg {
    padding: 3em;
    font-size: 1.2em;
    text-align: center;
  }

  article#experiences div.msg i {
    font-size: 0.8em;
  }

  article#experiences div.msg i small {
    font-size: 0.8em;
  }

  article#contacto header title,
  article#faq header title {
    font-size: 1.5em;
  }

  article#contacto header p.description,
  article#faq header p.description {
    font-size: 1.5em;
  }

  .answers div.action {
    width: 80vw;
    margin: 0.3em 0;
    padding: 1em;
    font-size: 1.2em;
  }

  article#contacto {
    flex-direction: column;
  }

  article#contacto .content {
    flex-direction: column;
    padding: 0;
    align-items: center;
  }

  article#contacto .content header {
    width: 100vw;
    text-align: center;
    padding-top: 8vh;
  }

  article#contacto .content .container {
    width: 100vw;
  }

  article#contacto .content header p.data {
    padding-right: unset;
  }

  .popup {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    margin: 0;
    bottom: 0;
    right: 0;
    top: unset;
    left: unset;
  }

  .popup header {
    width: 100vw;
    -webkit-box-shadow: -6px 11px 30px -5px rgba(0, 0, 0, 0.52);
    -moz-box-shadow: -6px 11px 30px -5px rgba(0, 0, 0, 0.52);
    box-shadow: -6px 11px 30px -5px rgba(0, 0, 0, 0.52);
  }

  .popup header title {
    padding-left: 1em;
    padding-top: 0.7em;
  }

  .link-whatsapp img {
    width: 150px;
  }

  article#termsandconditions p {
    font-size: 0.7em;
    padding: 1em 2em;
  }

  .loader {
    font-size: 1em !important;
    padding-top: 10vh;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 70vh;
  }
}

/* ICONS */

button.controls.next:after {
  background-position: -5% 0;
  left: 0;
}

button.controls.prev:after {
  background-position: 105% 0;
  right: 0;
}

button.controls:link,
button.controls:visited {
  opacity: 0.4;
}

button.controls:hover,
button.controls:focus {
  opacity: 0.8;
  outline: none;
}

button.controls {
  border: 0;
  background: unset;
}

button.controls:after {
  content: "";
  background-image: url("/assets/images/arrows.svg");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  text-align: center;
  text-indent: 0;
  line-height: 2.8em;
  color: #0c1338;
  font-weight: 800;
  position: absolute;
  width: 2.8em;
  height: 2.8em;
  border-radius: 50%;
  cursor: pointer;
}

/**
 * ----------------------------------------
 * animation slide-in-fwd-center
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.slide-in-fwd-center {
  -webkit-animation: slide-in-fwd-center 0.4s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-fwd-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.loader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  font-size: 1.2em;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  margin: 3vw auto;
  text-align: center;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #e14d31;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #e14d31 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

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

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

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

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

.close {
  cursor: pointer;
}

.close:after,
.close:before {
  content: "";
  height: 28px;
  width: 28px;
  border-top: 2px solid #000;
  position: absolute;
  top: 7px;
  right: -8px;
  transform: rotate(-45deg);
}

.close:before {
  right: 10px;
  transform: rotate(45deg);
}
