:root {
  --verde_elusiona: #adc821;
  --white: white;
  --black: black;
  --blue-violet: #6e2ed8;
  --deep-pink: #fc0a7e;
  --medium-violet-red: #b32e6e;
  --dim-grey: #6b6b6b;
  --medium-slate-blue: #955df1;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 10vh;
  font-weight: 700;
  line-height: 10vh;
}

h2 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
}

h3 {
  color: #6b6b6b;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
}

h4 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  color: #6b6b6b;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 30px;
}

a {
  color: #000;
  text-decoration: underline;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section.center {
  background-color: var(--verde_elusiona);
  color: #333;
  background-image: linear-gradient(135deg, #adc821, #839a0a);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 40px;
  display: flex;
  position: static;
}

.section.wide {
  background-color: #1b1b1b;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  padding: 40px 10vh;
  display: flex;
}

.section.wide.img {
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 0;
}

.section.wide.purple {
  background-image: linear-gradient(to bottom, var(--verde_elusiona), var(--verde_elusiona));
  color: var(--white);
  background-size: auto;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  padding: 40px 10vh;
}

.hero {
  z-index: 99;
  clear: none;
  background-color: #0000;
  border: 1px #000;
  flex-flow: column;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 10px 5vw 0;
  display: block;
  position: static;
  top: 0;
  left: 0;
}

.nav {
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  height: auto;
  display: flex;
  position: static;
}

.nav-inner {
  border-bottom: 1px #ffffff1a;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.body {
  background-color: #0000;
  font-family: Gothic A1, sans-serif;
}

.feature-content {
  border: 1px #000;
  flex: none;
  width: 50vw;
  max-width: 450px;
  padding-left: 4vw;
  padding-right: 4vw;
}

.feature-content.icons {
  text-align: center;
  flex-direction: column;
  flex: none;
  align-items: center;
  width: 33.33%;
  max-width: none;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.feature-content.icons.numbers {
  width: 25%;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #141414;
  border-radius: 6px;
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  transition: background-color .5s cubic-bezier(.789, .159, .25, 1), color .2s cubic-bezier(.789, .159, .25, 1);
  display: inline-block;
  position: static;
}

.button:hover {
  color: #6b6b6b;
  background-color: #fff;
}

.button.contact {
  background-color: #0000;
  margin-left: 10px;
  box-shadow: inset 0 0 0 2px #fff3;
}

.button.contact:hover {
  color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

.button.form-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1), cubic-bezier(.215, .61, .355, 1);
}

.button.form-button:hover {
  color: #fff;
  background-color: #000;
}

.button.verde {
  background-color: var(--verde_elusiona);
  width: 200px;
  display: none;
}

.button.verde:hover {
  background-color: var(--black);
  color: #fff;
}

.wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  max-width: 1200px;
  height: 30%;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.wrap {
  opacity: 1;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  margin-bottom: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.title {
  color: #a8a8a8;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px #2e2e2e;
  padding-bottom: 5px;
  font-size: 12px;
  display: inline-block;
}

.image-2 {
  flex: none;
}

.button-wrap {
  justify-content: center;
  width: auto;
  margin-top: 5vh;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.nav-link {
  color: #fff;
  flex: 0 auto;
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 600;
}

.nav-link:hover {
  box-shadow: inset 0 -5px 0 0 var(--black);
  color: #fff;
}

.hero-image {
  text-align: left;
  vertical-align: baseline;
  flex: 0 auto;
  width: 450px;
  min-width: auto;
  height: 450px;
  min-height: auto;
  margin-top: 0;
  margin-left: 20px;
  padding-bottom: 0;
  padding-right: 0;
  display: block;
  position: static;
  bottom: 0;
  right: 3vw;
}

.black-text {
  color: #000;
}

.hero-content {
  z-index: 90;
  width: 100%;
  min-width: 850px;
  height: 100%;
  margin-top: 50px;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.feature-wrap {
  border: 1px #000;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 90vw;
  margin-top: 10vh;
  margin-bottom: 10vh;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.feature-wrap.reverse {
  flex-direction: row-reverse;
  justify-content: space-around;
  margin-top: 40px;
  margin-bottom: 0;
}

.feature-wrap.logos {
  border-style: none;
  height: auto;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.feature-wrap.icons {
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}

.feature-image {
  border: 1px #000;
  justify-content: center;
  align-items: center;
  width: 50vw;
  display: flex;
}

.hero-subhead {
  color: #fff;
  max-width: 60%;
  font-size: 30px;
  line-height: 44px;
}

.bottom-image-wrap {
  max-width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.feature-icon {
  height: 35px;
  margin-bottom: 30px;
}

.purple {
  color: #b32e6e;
}

.footer {
  background-color: #1b1b1b;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 1px;
  display: flex;
}

.footer-link {
  color: #fff;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 12px;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--verde_elusiona);
}

.footer-list {
  margin-top: 0;
  padding-top: 29px;
  padding-bottom: 29px;
}

.form-2 {
  margin-top: 40px;
  display: flex;
}

.input {
  clear: none;
  color: #000;
  background-color: #fff;
  border-style: none;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  flex: 0 auto;
  height: 70px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 0;
  transition: box-shadow .3s cubic-bezier(.215, .61, .355, 1);
  box-shadow: inset 0 0 #fc0a7e;
}

.input:hover, .input:focus {
  box-shadow: inset 0 0 0 2px #fc0a7e;
}

.input::placeholder {
  color: #555;
}

.arrow {
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
}

.quote-slider {
  background-color: #0000;
  width: 90vw;
  height: 60vh;
  margin-top: 10vh;
}

.slider-arrow {
  color: #d6d6d6;
}

.quote-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50vw;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.quote-attribution {
  justify-content: center;
  align-items: center;
  display: flex;
}

.quote-dash {
  background-color: #d3d3d3;
  flex: none;
  width: 30px;
  height: 1px;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
}

.quote-icon {
  margin-bottom: 45px;
}

.slide-nav {
  font-size: 7px;
}

.number {
  font-size: 60px;
  line-height: 90px;
}

.nav-logo-wrap {
  flex: none;
}

.image-licensing {
  background-color: #0000000d;
  border: 1px solid #0000001a;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 15px;
  line-height: 24px;
}

.image-licensing-wrap {
  flex: 1;
  max-width: 600px;
}

.heading-3 {
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  width: auto;
  min-width: 500px;
  height: auto;
  margin-top: 0;
  font-size: 60px;
  font-style: normal;
  line-height: 60px;
}

.image-5 {
  border: 0 solid #000;
  border-top: 10px solid #fff0;
  display: block;
  position: static;
}

.heading-4 {
  color: #adc821;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 10px;
  display: flex;
}

.heading-7 {
  color: var(--verde_elusiona);
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 200px;
  line-height: 200px;
  text-decoration: none;
  display: flex;
}

.button_negativo {
  border: 2px none var(--verde_elusiona);
  color: #141414;
  text-align: center;
  mix-blend-mode: normal;
  background-color: #fff;
  border-radius: 6px;
  margin-right: 0;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  transition: background-color .5s cubic-bezier(.789, .159, .25, 1), color .2s cubic-bezier(.789, .159, .25, 1);
  display: inline-block;
}

.button_negativo:hover {
  color: #fff;
  background-color: #adc821;
}

.grupo-casos {
  border: 2px solid var(--black);
  background-color: #f7f4f4;
  border-radius: 6px;
  flex: 0 auto;
  width: 100%;
  max-width: 960px;
  height: auto;
  margin: 0 auto 20px;
  padding: 20px;
  display: block;
}

.tag {
  color: #fff;
  border-radius: 3px;
  padding: 3px 6px;
  font-size: .9em;
}

.tag.tag-ofimatica {
  background-color: var(--black);
}

.tag.tag-audio {
  background-color: var(--blue-violet);
}

.tag.tag-base-datos {
  background-color: var(--deep-pink);
}

.tag.tag-bi {
  background-color: var(--medium-violet-red);
}

.tag.tag-blog {
  background-color: #ff6b6b;
}

.tag.tag-calendario {
  background-color: #4ecdc4;
}

.tag.tag-chatbot {
  background-color: #45b7d1;
}

.tag.tag-conversion-formatos {
  background-color: #f7b731;
}

.tag.tag-correo {
  background-color: #5d5d5d;
}

.tag.tag-crm {
  background-color: #6ab04c;
}

.tag.tag-ecommerce {
  background-color: #9b59b6;
}

.tag.tag-facturacion {
  background-color: #3498db;
}

.tag.tag-formularios {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--dim-grey);
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: var(--dim-grey);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--dim-grey);
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: var(--dim-grey);
  color: #000;
  background-color: #ff0;
}

.tag.tag-gestion-pagos {
  background-color: #8a2be2;
}

.tag.tag-gestion-proyectos {
  background-color: brown;
}

.tag.tag-gestion-tareas {
  background-color: #deb887;
}

.tag.tag-gestion-tickets {
  background-color: coral;
}

.tag.tag-gestion-tiempo {
  background-color: #dc143c;
}

.tag.tag-ia {
  background-color: #b8860b;
}

.tag.tag-marketing {
  background-color: #006400;
}

.tag.tag-mensajeria-instantanea {
  background-color: #ff8c00;
}

.tag.tag-oofimatica {
  background-color: #483d8b;
}

.tag.tag-canal-rss {
  background-color: #00b400;
}

.tag.tag-sms {
  background-color: #ff1493;
}

.tag.tag-redes-sociales {
  background-color: #00bfff;
}

.tag.tag-video-conferencia {
  background-color: #696969;
}

.tag.tag-video {
  background-color: green;
}

.titulo-caso-uso {
  flex-flow: row;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  min-width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-right: 0;
  font-size: 18px;
  font-weight: 700;
  display: block;
}

.mensajeria-instantanea {
  color: var(--verde_elusiona);
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 28px;
  display: block;
}

.botonaccordion {
  color: #959595;
  background-color: #dcdbdb;
  border: 2px solid #c5c4c4;
  border-radius: 20px;
  align-self: center;
  width: 30px;
  height: 30px;
  margin-bottom: 0;
  margin-left: 0;
  padding: 5px;
  font-size: 30px;
  font-weight: 700;
  display: block;
}

.cabecera-caso {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  cursor: pointer;
  border: 0 solid #000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.contenido-caso {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border: 2px solid var(--verde_elusiona);
  border-radius: 6px;
  margin-top: 10px;
  padding: 10px;
}

.tags-caso {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  flex-flow: wrap;
  width: auto;
}

.descripcion-caso {
  text-align: left;
  justify-content: center;
  width: auto;
  margin-top: 15px;
  font-size: 16px;
  display: block;
}

.caso {
  border-bottom: 2px solid #e4e4e4;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 10px;
  display: block;
}

.caso.paso03 {
  border-bottom-style: none;
}

.contenido {
  border: 0 solid #000;
  flex-flow: column;
  flex: 1;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.bold-text {
  border: 0 solid #000;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  display: block;
}

.div-block-2 {
  flex: 1;
}

.texto-titulo {
  flex: 1;
  margin-bottom: 0;
  display: flex;
}

.boton-titulo {
  width: auto;
}

.caso-uso {
  border-bottom: 2px solid #e4e4e4;
  width: 100%;
  padding: 10px;
}

.wrapper-boton-seleccion {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.button-2 {
  background-color: var(--verde_elusiona);
  border-radius: 6px;
  height: 35px;
}

.boton-interesa {
  background-color: var(--verde_elusiona);
  border: 2px #000;
  border-radius: 6px;
  width: 120px;
  height: 40px;
  padding: 10px 20px;
}

.contenido-casos-uso {
  width: 85%;
  max-width: 960px;
  margin-bottom: 60px;
  display: block;
}

.wrapper-insercion-email {
  background-color: var(--verde_elusiona);
  border: 2px solid #000;
  border-radius: 6px;
  width: 85%;
  max-width: 960px;
  height: auto;
  margin: 0 auto 60px;
  padding: 20px;
}

.wrapper-texto-email {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.paragraph {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.text-field {
  text-align: left;
  border: 2px solid #e4e4e4;
  border-radius: 6px;
  width: 50%;
  max-width: 900px;
  margin-top: 10px;
}

.form-3 {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-2 {
  color: #fff;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
}

.error-message {
  text-align: center;
}

.input-email {
  color: #6b6b6b;
  text-align: center;
  border: 2px solid #000;
  border-radius: 6px;
  width: 50%;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
}

.eliminar {
  color: orange;
  margin-top: 200px;
}

.boton-confirmar-email {
  color: #fff;
  text-align: center;
  background-color: #141414;
  border-radius: 6px;
  width: auto;
  padding: 10px 20px;
  font-weight: 700;
  display: block;
}

.wrapper-boton-confirmar-email {
  text-align: left;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.aviso-formato-email {
  text-align: center;
  background-color: #0000;
  border-radius: 6px;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  width: auto;
  height: auto;
  margin-top: 20px;
  display: none;
}

.paragraph-3 {
  color: #fff;
  text-align: center;
  background-color: maroon;
  border: 0 solid #000;
  border-radius: 0;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.image-6 {
  vertical-align: middle;
  width: 30px;
  max-width: 100%;
  height: 30px;
  margin-left: 10px;
  padding-top: 0;
  display: block;
}

.icono-ok {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: none;
}

.titulo-grupo {
  color: var(--white);
  background-color: #141414;
  border: 2px solid #000;
  border-radius: 6px;
  flex: 0 auto;
  width: auto;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 22px;
}

.div-titulo-grupo-casos {
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0;
  padding-right: 0;
  display: block;
}

.aviso-email-no-coincidente {
  justify-content: center;
  margin-top: 20px;
  display: none;
}

.div-block-4 {
  flex-flow: wrap;
  align-items: stretch;
  max-width: 1000px;
  margin-top: 0;
  display: flex;
}

.form-block-2 {
  text-align: left;
  align-self: center;
  width: 100%;
}

.text-field-2 {
  border: 2px solid var(--verde_elusiona);
  border-radius: 6px;
  height: 240px;
  line-height: 20px;
}

.text-field-3 {
  border: 2px solid var(--verde_elusiona);
  white-space: normal;
  overflow-wrap: normal;
  border-radius: 6px;
  height: 80px;
}

.field-label {
  color: #6b6b6b;
  margin-top: 40px;
  font-size: 16px;
}

.field-label-2 {
  color: #6b6b6b;
  margin-top: 30px;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
}

.div-block-5 {
  justify-content: center;
  display: flex;
}

.texto-aviso-envio {
  text-align: center;
  width: 80%;
  margin-top: 20px;
  margin-right: 40px;
  padding-right: 0;
  font-weight: 400;
}

.aviso-envio-ok {
  color: var(--verde_elusiona);
  text-align: center;
  flex: 1;
  font-weight: 700;
  display: none;
}

.paragraph-4 {
  color: red;
  text-align: center;
  width: 100%;
}

.boton-enviar {
  background-color: var(--verde_elusiona);
  border-radius: 6px;
  align-self: center;
  padding: 10px 20px;
}

.wrapper-paso03-fondo-negro {
  background-color: #1b1b1b;
  flex-flow: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.button-3 {
  border-radius: 6px;
}

.input-objetivo, .input-aplicaciones {
  border: 2px solid var(--verde_elusiona);
  color: #6b6b6b;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
}

.grid {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  transform: translate(0);
}

.image-8 {
  width: 840px;
  height: 530px;
}

.parrilla-iconos {
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 40px;
  display: flex;
}

.wrapper-paso04-fondo-blanco {
  flex-flow: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.pedir-formacion {
  background-color: var(--verde_elusiona);
  border-radius: 6px;
  align-self: center;
  padding-top: 8px;
  display: block;
}

.div-boton-pedir-informe {
  justify-content: center;
  width: 250px;
  display: flex;
}

.text-block {
  color: var(--verde_elusiona);
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 50px;
  font-weight: 800;
  display: flex;
}

.heading-8 {
  width: auto;
  min-width: 400px;
  font-size: 35px;
  line-height: 50px;
}

.div-block-7 {
  width: auto;
  padding-left: 20px;
}

.wrapper-paso05-fondo-negro {
  background-color: #1b1b1b;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 0;
  display: flex;
}

.titulo-finalizar {
  color: var(--verde_elusiona);
  font-weight: 700;
}

.image-9 {
  width: 120px;
}

.aviso-pedir-informe-ok {
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  font-weight: 400;
  display: none;
}

.image-10 {
  cursor: auto;
}

.image-11 {
  cursor: pointer;
}

.checkbox-label {
  color: #6b6b6b;
  margin-right: 20px;
  font-size: 16px;
  display: block;
}

.comentario {
  margin-left: 20px;
  font-size: 14px;
}

.texto-form {
  font-size: 16px;
  font-weight: 700;
}

.checkbox {
  border: 1px solid var(--black);
  border-radius: 2px;
  width: 25px;
  height: 20px;
  margin-left: 10px;
  margin-right: 10px;
  padding-right: 0;
}

.checkbox-field {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.checkbox-field-2, .checkbox-field-3 {
  margin-bottom: 10px;
  display: flex;
}

.bold-text-2 {
  display: inline;
}

.div-block-8 {
  margin-bottom: 0;
}

.div-block-9 {
  flex-flow: column;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.div-reservar-llamada {
  border: 1px solid orange;
  border-radius: 6px;
  flex-flow: column;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 10px 20px;
  display: block;
}

.div-pedir-informe {
  border: 1px solid var(--verde_elusiona);
  border-radius: 6px;
  flex-flow: column;
  align-items: center;
  width: 600px;
  min-width: 600px;
  margin-bottom: 40px;
  padding: 10px 25px 20px;
  display: flex;
}

.pastilla-ahorro {
  background-color: #fff7d8;
  border: 2px solid #ffa600;
  border-radius: 6px;
  flex-flow: row;
  align-items: center;
  width: 290px;
  height: 40px;
  padding-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.text-block-2 {
  padding-right: 10px;
  font-size: 14px;
}

.text-block-3 {
  text-align: center;
  background-color: #ffa600;
  border: 2px solid #ffa600;
  border-radius: 20px;
  width: 25px;
  height: 25px;
  padding-top: 2px;
  font-size: 16px;
  font-weight: 700;
}

.titulo-pedir-cita {
  color: orange;
  font-weight: 700;
}

.titulo-pedir-informe {
  color: var(--verde_elusiona);
  font-weight: 700;
}

.flecha-pedir-cita {
  color: orange;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 50px;
  font-weight: 800;
  display: flex;
}

.flecha-pedir-informe {
  color: var(--verde_elusiona);
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 50px;
  font-weight: 800;
  display: flex;
}

.div-calendly {
  border: 0 orange;
  border-radius: 0;
  flex-flow: column;
  align-self: stretch;
  align-items: center;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
}

.div-boton-reservar-llamada {
  justify-content: center;
  width: 250px;
  display: flex;
}

.titulo-seleccionar-llamada {
  color: var(--verde_elusiona);
  text-align: center;
  justify-content: center;
  margin-bottom: 0;
  font-weight: 700;
  display: flex;
}

.code-embed {
  border-radius: 6px;
  margin-bottom: 0;
  padding: 0;
}

.contenido-calendario {
  background-color: #1b1b1b;
  border: 1px #fff;
  border-radius: 6px;
  flex-flow: column;
  justify-content: space-around;
  align-self: stretch;
  align-items: stretch;
  padding: 5px;
  display: block;
}

.div-explicacion-casos-uso {
  align-items: center;
}

.texto-linea-01 {
  color: #6b6b6b;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 700;
}

.icono-boton-mas {
  color: #959595;
  background-color: #dcdbdb;
  border: 2px solid #c5c4c4;
  border-radius: 20px;
  align-self: center;
  width: 30px;
  height: 30px;
  margin-bottom: 0;
  margin-left: 10px;
  padding: 5px;
  font-size: 30px;
  font-weight: 700;
  display: block;
}

.icono-boton-me-interesa {
  background-color: var(--verde_elusiona);
  border: 2px #000;
  border-radius: 6px;
  width: 120px;
  margin-left: 10px;
  padding: 10px 20px;
}

.linea-horizontal-02, .linea-horizontal-03 {
  margin-left: 20px;
}

.aviso-email-no-existe {
  justify-content: center;
  margin-top: 20px;
  display: none;
}

.button-confirmar-email {
  color: #fff;
  text-align: center;
  background-color: #141414;
  border-radius: 6px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  transition: background-color .5s cubic-bezier(.789, .159, .25, 1), color .2s cubic-bezier(.789, .159, .25, 1);
  display: inline-block;
}

.button-confirmar-email:hover {
  color: #6b6b6b;
  background-color: #fff;
}

.button-confirmar-email.contact {
  background-color: #0000;
  margin-left: 10px;
  box-shadow: inset 0 0 0 2px #fff3;
}

.button-confirmar-email.contact:hover {
  color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

.button-confirmar-email.form-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1), cubic-bezier(.215, .61, .355, 1);
}

.button-confirmar-email.form-button:hover {
  color: #fff;
  background-color: #000;
}

.button-confirmar-email.verde {
  background-color: var(--verde_elusiona);
  width: 200px;
  display: none;
}

.button-confirmar-email.verde:hover {
  background-color: var(--black);
  color: #fff;
}

.wrapper-boton-seleccion-automatizacion, .wrapper-boton-formacion {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.list-item, .list-item-2 {
  font-weight: 700;
  list-style-type: decimal;
}

.list {
  padding-left: 100px;
}

.aviso-generando-informe, .aviso-pedir-informe-nok {
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  font-weight: 400;
  display: none;
}

.flex-block-servicios {
  align-items: center;
  width: auto;
  max-width: 90%;
}

.paragraph-5 {
  color: #fff;
  text-align: justify;
  width: 100%;
  max-width: 85%;
  display: block;
}

.list-2 {
  text-align: justify;
  width: 100%;
  min-width: 0%;
  max-width: 85%;
  font-size: 16px;
  line-height: 30px;
}

.paragraph-5-inferior {
  color: #fff;
  text-align: right;
  width: 60%;
  max-width: 60%;
  font-weight: 700;
}

.flex-block-contacto {
  flex-flow: column;
  align-items: center;
  width: auto;
  max-width: 90%;
  margin-bottom: 20px;
}

.paragraph-6 {
  color: #fff;
  text-align: justify;
  width: auto;
  max-width: none;
  display: block;
}

.flex-block-formulario {
  max-width: 90%;
}

.field-label-3, .mensaje {
  color: #fff;
}

.input-form-contacto {
  border: 2px solid var(--verde_elusiona);
  color: #6b6b6b;
  border-radius: 6px;
  width: 600px;
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 600;
}

.email, .asunto {
  color: #fff;
}

.input-textarea-contacto {
  aspect-ratio: 2.39;
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: var(--verde_elusiona);
  border-right-style: solid;
  border-right-width: 2px;
  border-right-color: var(--verde_elusiona);
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: var(--verde_elusiona);
  border-left-style: solid;
  border-left-width: 2px;
  border-left-color: var(--verde_elusiona);
  color: #6b6b6b;
  resize: none;
  border-radius: 6px;
  width: 600px;
  height: 600px;
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 600;
  overflow: auto;
}

.enviar-formulario {
  background-color: var(--verde_elusiona);
  text-align: center;
  border-radius: 6px;
  align-self: center;
  width: 80px;
  padding-top: 8px;
  display: block;
}

.form-4 {
  flex-flow: column;
  align-items: stretch;
  padding: 10px;
  display: flex;
}

.pedir-formacion-copy {
  background-color: var(--verde_elusiona);
  border-radius: 6px;
  padding-top: 8px;
  display: block;
}

.div-block-10 {
  flex-flow: column;
  max-width: 85%;
  display: flex;
}

.aviso-envio-formulario-ok {
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  font-weight: 400;
  display: none;
}

.aviso-envio-formulario-nok, .aviso-campos-obligatorios {
  color: #e65d5d;
  text-align: center;
  margin-top: 20px;
  font-weight: 400;
  display: none;
}

.aviso-envio-nok {
  color: var(--medium-violet-red);
  text-align: center;
  flex: 1;
  font-weight: 700;
  display: none;
}

.aviso-formacion-ok {
  color: var(--verde_elusiona);
  text-align: center;
  flex: 1;
  font-weight: 700;
  display: none;
}

.aviso-formacion-nok {
  color: var(--medium-violet-red);
  text-align: center;
  flex: 1;
  font-weight: 700;
  display: none;
}

.recaptcha {
  align-self: center;
  margin-top: 20px;
}

.image-12 {
  align-self: auto;
  width: 600px;
  height: 300px;
}

.div-cabecera {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  margin-top: 0;
  display: flex;
}

.grupo-automatizacion-a-medida, .grupo-formacion-a-medida {
  border: 2px solid var(--black);
  background-color: #f7f4f4;
  border-radius: 6px;
  flex: 0 auto;
  width: 85%;
  max-width: 960px;
  height: auto;
  margin: 0 auto 20px;
  padding: 0 20px;
  display: block;
}

.list-3 {
  text-align: justify;
  width: 100%;
  min-width: 0%;
  max-width: 85%;
  padding-left: 100px;
  font-size: 16px;
  line-height: 30px;
}

.wrap-paso-01 {
  opacity: 1;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 10px;
  display: flex;
}

.wrap-boton-comenzamos {
  opacity: 1;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 60px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.telefono-email {
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.datos-contacto {
  display: inline;
}

.paragraph-7 {
  color: #fff;
  text-align: center;
  font-size: 12px;
}

.checkbox-label-2 {
  color: #fff;
}

.checkbox-2 {
  width: 30px;
}

.cbprivacidad {
  width: 30px;
  margin-top: 12px;
  margin-bottom: 10px;
}

.aviso-aceptar-privacidad {
  color: #e65d5d;
  text-align: center;
  margin-top: 20px;
  font-weight: 400;
  display: none;
}

.texto-checkbox-privacidad {
  color: #fff;
  margin-top: 10px;
}

.aviso-email-invalido {
  color: #e65d5d;
  text-align: center;
  margin-top: 20px;
  font-weight: 400;
  display: none;
}

.section-mobile {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: none;
}

.section-mobile.center {
  background-color: var(--verde_elusiona);
  color: #333;
  background-image: linear-gradient(135deg, #adc821, #839a0a);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 40px;
  display: flex;
  position: static;
}

.section-mobile.wide {
  background-color: #1b1b1b;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  padding: 40px 10vh;
  display: flex;
}

.section-mobile.wide.img {
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 0;
}

.section-mobile.wide.purple {
  background-image: linear-gradient(to bottom, var(--verde_elusiona), var(--verde_elusiona));
  color: var(--white);
  background-size: auto;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  padding: 40px 10vh;
}

.heading--mobile {
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  width: auto;
  min-width: 500px;
  height: auto;
  margin-top: 0;
  font-size: 60px;
  font-style: normal;
  line-height: 60px;
}

.titulo-moble {
  width: auto;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.plantilla-popup-modal {
  z-index: 9980;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 6px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 70vw;
  max-width: 70rem;
  height: 80vh;
  margin: 10vh auto;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup-content {
  justify-content: center;
  align-items: stretch;
  width: 90%;
  height: 85%;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  overflow: auto;
}

.paragraph-10 {
  text-align: justify;
  width: auto;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px;
  font-weight: 400;
}

.popup-navbar {
  background-color: #141414;
  border: 1px solid #ccc;
  border-radius: 6px 6px 0 0;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 40px;
  padding-right: 10px;
  display: flex;
}

.boton-cerrar-popup {
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 6px;
  height: 36px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.popup-modal-aviso-legal, .popup-modal-politica-privacidad, .popup-modal-politica-cookies {
  z-index: 9980;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 6px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 70vw;
  max-width: 70rem;
  height: 80vh;
  margin: 10vh auto;
  display: none;
  position: fixed;
  inset: 0%;
}

.boton-cerrar-popup-politica-privacidad, .boton-cerrar-popup-aviso-legal, .boton-cerrar-popup-politica-cookies {
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 6px;
  height: 36px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.checkbox-privacidad-verificacion-email {
  margin-top: 10px;
}

.cbprivacidadverificacionemail {
  width: 30px;
  margin-top: 14px;
  margin-bottom: 10px;
}

.aviso-aceptar-privacidad-verificacion-email {
  justify-content: center;
  margin-top: 20px;
  display: none;
}

.texto-verificando-email {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: none;
}

.paragraph-11 {
  color: #fff;
  margin-bottom: 10px;
  margin-left: 0;
  padding-top: 10px;
  padding-left: 20px;
  font-weight: 700;
  display: block;
}

.aviso-enviando-formulario {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: none;
}

.fs-consent_component {
  display: none;
}

.fs-consent_banner {
  z-index: 9999;
  background-color: #f5f5f5;
  border: 2px solid #000;
  border-radius: 6px;
  max-width: 45rem;
  padding: 2rem;
  display: block;
  position: fixed;
  inset: auto 0% 0% auto;
}

.fs-consent_banner_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.fs-consent_banner_paragraph {
  margin-bottom: 0;
}

.fs-consent_banner_buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  display: flex;
}

.fs-consent_prefs_submit {
  background-color: #000;
  border: 1px solid #000;
  border-radius: 6px;
  padding: .5rem 1rem;
  display: block;
}

.fs-consent_prefs_buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.fs-consent_allow {
  border: 1px solid var(--verde_elusiona);
  background-color: var(--verde_elusiona);
  color: #fff;
  border-radius: 6px;
  padding: .5rem 1rem;
  text-decoration: none;
  display: block;
}

.fs-consent_prefs_popup {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  padding: 2rem;
  display: flex;
  overflow: scroll;
}

.fs-consent_prefs_header {
  border-bottom: 1px solid #0003;
  padding-bottom: 1.5rem;
}

.fs-consent_prefs_heading {
  font-size: 1.25rem;
}

.fs-consent_prefs_close {
  color: #fff;
  cursor: pointer;
  background-color: #000;
  padding: .5rem;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.fs-consent_prefs_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.fs-consent_prefs_form-block {
  z-index: 2;
  justify-content: center;
  align-items: center;
  margin-top: 10vh;
  margin-bottom: 10vh;
  display: flex;
  position: relative;
}

.fs-consent_decline {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 6px;
  padding: .5rem 1rem;
  text-decoration: none;
  display: block;
}

.fs-consent_prefs_wrapper {
  z-index: 997;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  position: fixed;
  inset: 0%;
}

.fs-consent_prefs_overlay {
  z-index: 1;
  background-color: #0000001a;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-consent_prefs {
  z-index: 9990;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
}

.fs-consent_prefs_close-icon {
  width: 1rem;
  line-height: 0;
}

.fs-consent_prefs_form {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 6px;
  width: 100%;
  max-width: 36.25rem;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-consent_open-prefs {
  z-index: 9998;
  color: #333;
  -webkit-text-decoration: block;
  text-decoration: block;
  cursor: pointer;
  background-color: #ddd;
  border: 1px solid #000;
  border-radius: 6px;
  display: block;
  position: fixed;
  inset: auto auto .75rem .75rem;
}

.fs-consent_open-prefs_wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  background-color: #000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem .75rem;
  display: flex;
}

.fs-consent_open-prefs_icon {
  width: 1.5rem;
  line-height: 0;
  display: flex;
}

.fs-consent_prefs_link {
  color: #333;
  border: 2px solid #000;
  border-radius: 6px;
  padding: .5rem 5px;
  text-decoration: none;
}

.fs-consent_prefs_option {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-bottom: 1px solid #0003;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding-bottom: 1rem;
  display: flex;
}

.fs-consent_checkbox_field {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.fs-consent_checkbox_label {
  margin-bottom: 0;
  margin-right: .75rem;
}

.fs-consent_prefs_description {
  margin-bottom: 0;
  font-size: 12px;
}

.fs-consent_checkbox_field-2 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.fs-consent_checkbox {
  margin-top: 0;
  margin-right: .5rem;
}

.caso_oculto_por_repetido {
  border-bottom: 2px solid #e4e4e4;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 10px;
  display: none;
}

.caso_oculto_por_repetido.paso03 {
  border-bottom-style: none;
}

.caso_oculto_por_repetido2 {
  border-bottom: 2px solid #e4e4e4;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 10px;
  display: none;
}

.caso_oculto_por_repetido2.paso03 {
  border-bottom-style: none;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 34px;
    line-height: 44px;
  }

  h3 {
    font-size: 20px;
    line-height: 32px;
  }

  .section.center {
    flex-direction: column;
    height: auto;
    padding-top: 0;
    display: block;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .nav, .nav-inner {
    width: 100vw;
  }

  .nav-link {
    padding-top: 20px;
  }

  .nav-link:hover {
    box-shadow: none;
  }

  .hero-image {
    width: 70%;
    height: auto;
    margin: 40px auto 7vw;
    display: none;
    position: relative;
    inset: auto 0 0;
  }

  .hero-content {
    min-width: 650px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .feature-wrap {
    margin-top: 5vh;
    margin-bottom: 5vh;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-wrap.logos {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .hero-subhead {
    font-size: 24px;
    line-height: 31px;
  }

  .bottom-image-wrap {
    background-image: none;
    height: auto;
  }

  .feature-icon {
    flex: none;
  }

  .quote-slider {
    width: 100vw;
    height: auto;
    min-height: 500px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .quote-wrap {
    width: 70vw;
  }

  .menu-icon {
    color: #fff;
    font-size: 40px;
  }

  .menu-button.w--open {
    background-color: #000;
  }

  .nav-menu-2 {
    background-color: #000;
    min-width: 240px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand {
    padding-left: 18px;
  }

  .heading-3 {
    white-space: normal;
    word-break: break-all;
    overflow-wrap: normal;
    max-height: none;
    font-size: 8vw;
  }

  .boton-interesa {
    min-width: 120px;
  }

  .div-block-7 {
    width: auto;
  }

  .image-9 {
    width: 120px;
  }

  .pastilla-ahorro {
    width: 290px;
    min-width: 290px;
  }

  .icono-boton-me-interesa {
    min-width: 120px;
  }

  .flex-block-formulario {
    align-items: center;
    max-width: 90%;
  }

  .input-form-contacto, .input-textarea-contacto {
    width: 500px;
  }

  .form-4 {
    align-items: stretch;
  }

  .aviso-envio-formulario-ok, .aviso-envio-formulario-nok {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .aviso-campos-obligatorios {
    margin-top: 10px;
  }

  .div-cabecera {
    flex-flow: row;
  }

  .wrap-paso-01 {
    max-width: none;
  }

  .telefono-email {
    color: var(--white);
    text-align: center;
    align-self: center;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 700;
  }

  .div-block-11, .datos-contacto {
    display: inline;
  }

  .aviso-aceptar-privacidad {
    margin-top: 10px;
    margin-bottom: 10px;
    display: none;
  }

  .checkbox-privacidad {
    margin-bottom: 0;
  }

  .texto-checkbox-privacidad {
    font-weight: 700;
  }

  .aviso-email-invalido {
    margin-top: 10px;
  }

  .section-mobile {
    background-color: var(--verde_elusiona);
    display: none;
  }

  .section-mobile.center {
    flex-direction: column;
    height: auto;
    padding-top: 15vh;
    display: block;
  }

  .brand-mobile {
    padding-left: 18px;
  }

  .heading--mobile {
    white-space: normal;
    word-break: break-all;
    overflow-wrap: normal;
    min-width: 300px;
    max-height: none;
    font-size: 5vw;
    line-height: 40px;
  }

  .titulo-moble {
    text-align: center;
    width: auto;
    margin-top: 40px;
  }

  .aviso-formatos-disponibles {
    justify-content: space-between;
    width: 150px;
    margin-top: 0;
    padding-top: 0;
    display: flex;
  }

  .div-tablet, .div-desktop {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .paragraph-8 {
    color: #fff;
    margin-bottom: 0;
  }

  .paragraph-9 {
    color: var(--white);
    margin-top: 40px;
    font-weight: 700;
  }

  .texto-aviso-formato-no-disponible {
    color: var(--black);
    border: 2px solid #000;
    border-radius: 6px;
    width: 350px;
    min-width: 350px;
    margin-top: 40px;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    display: none;
  }

  .image-13, .image-14 {
    margin-bottom: 10px;
  }

  .texto-aviso-formatos-disponibles {
    color: var(--white);
    margin-top: 0;
    font-size: 14px;
    font-weight: 400;
  }

  .div-formatos-disponibles {
    border: 2px solid #fff;
    border-radius: 6px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 350px;
    min-width: 350px;
    margin-top: 20px;
    padding: 10px;
    display: flex;
  }

  .checkbox-privacidad-verificacion-email {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .section, .section.center, .section.wide, .section.wide.img, .section.wide.purple {
    display: none;
  }

  .feature-content.icons {
    text-align: left;
    align-items: flex-start;
    width: auto;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-content.icons.numbers {
    flex: none;
    align-items: center;
    width: 50%;
  }

  .button.form-button {
    border-top-right-radius: 0;
    border-bottom-left-radius: 3px;
  }

  .wrap {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    padding-left: 15vw;
    padding-right: 15vw;
    display: flex;
  }

  .hero-image {
    margin-bottom: 10vw;
  }

  .hero-content {
    margin-bottom: 5vh;
  }

  .feature-wrap {
    flex-direction: row;
  }

  .feature-wrap.icons {
    flex-flow: wrap;
    display: block;
  }

  .feature-wrap.icons.numbers {
    display: flex;
  }

  .footer {
    display: none;
  }

  .footer-link {
    margin-bottom: 10px;
    display: inline-block;
  }

  .form-2 {
    flex-direction: column;
  }

  .input {
    text-align: center;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
    padding-left: 22px;
    padding-right: 22px;
  }

  .quote-attribution {
    flex-direction: row;
    align-items: center;
  }

  .menu-icon {
    font-size: 30px;
  }

  .heading-3 {
    height: auto;
  }

  .form-block {
    width: 100%;
  }

  .image-9 {
    width: 150px;
    padding-right: 20px;
  }

  .button-confirmar-email.form-button {
    border-top-right-radius: 0;
    border-bottom-left-radius: 3px;
  }

  .aviso-campos-obligatorios {
    display: none;
  }

  .wrap-paso-01, .wrap-boton-comenzamos {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    padding-left: 15vw;
    padding-right: 15vw;
    display: flex;
  }

  .checkbox-label-2 {
    margin-bottom: 0;
    padding-top: 3px;
    padding-left: 5px;
    font-weight: 700;
    position: static;
  }

  .checkbox-2, .cbprivacidad {
    width: 18px;
    height: 18px;
  }

  .aviso-aceptar-privacidad {
    display: none;
  }

  .texto-checkbox-privacidad {
    margin-bottom: 0;
    padding-top: 3px;
    padding-left: 5px;
    font-weight: 700;
    position: static;
  }

  .link {
    color: #fff;
    text-decoration: none;
  }

  .link-checkbox-privacidad {
    color: #fff;
    margin-left: 5px;
    text-decoration: none;
    display: none;
  }

  .aviso-email-invalido {
    display: none;
  }

  .section-mobile {
    justify-content: center;
    display: flex;
  }

  .heading--mobile {
    text-align: center;
    width: 400px;
    min-width: 400px;
    height: auto;
    font-size: 25px;
    line-height: 35px;
  }

  .texto-aviso-formatos-disponibles {
    text-align: center;
    font-size: 16px;
  }

  .div-formatos-disponibles {
    width: 400px;
    min-width: 400px;
  }

  .cbprivacidadverificacionemail {
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 60px;
    line-height: 70px;
  }

  h3 {
    font-size: 16px;
  }

  .section {
    display: none;
  }

  .section.center {
    padding-bottom: 10vh;
    display: none;
  }

  .section.wide, .section.wide.img, .section.wide.purple {
    display: none;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-inner {
    width: 100vw;
  }

  .feature-content {
    width: auto;
  }

  .feature-content.icons.numbers {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .button.contact {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }

  .wrap {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .image-2 {
    width: 100%;
  }

  .button-wrap {
    flex-direction: column;
    width: 90vw;
  }

  .hero-image {
    width: 80%;
  }

  .feature-wrap, .feature-wrap.reverse {
    flex-direction: column;
  }

  .feature-image {
    width: auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .feature-icon {
    margin-bottom: 20px;
  }

  .footer {
    display: none;
  }

  .form-2 {
    flex-direction: column;
    width: 90vw;
  }

  .quote-slider {
    width: 100vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .slider-arrow {
    font-size: 24px;
  }

  .left-arrow, .right-arrow {
    width: 15vw;
  }

  .number {
    font-size: 40px;
  }

  .heading-3 {
    height: auto;
    font-size: 40px;
    line-height: 56px;
  }

  .button-confirmar-email.contact {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }

  .wrap-paso-01, .wrap-boton-comenzamos {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .section-mobile {
    text-align: left;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .section-mobile.center {
    padding-bottom: 10vh;
  }

  .heading--mobile {
    width: 220px;
    min-width: 220px;
    height: auto;
    font-size: 30px;
    line-height: 40px;
  }

  .titulo-moble {
    text-align: center;
    align-self: center;
    width: 220px;
    min-width: 220px;
  }

  .div-formatos-disponibles {
    width: 200px;
    min-width: 200px;
  }

  .fs-consent_banner_buttons {
    text-align: center;
    flex-flow: column;
    align-items: stretch;
  }

  .fs-consent_prefs_heading {
    font-size: 1rem;
  }
}


