@font-face {
  font-family: Switzer;
  src: url('../fonts/Switzer-VariableItalic.ttf') format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Switzer;
  src: url('../fonts/Switzer-Variable.ttf') format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --111: transparent;
  --100: white;
  --accent-light: #fff0d1;
  --400: #dbdbdb;
  --700: #202221;
  --600: #2e3130;
  --300: #ebebeb;
  --800: #171918;
  --_colors---white: white;
  --_colors---black: #2d2d2d;
  --accent: #ffc44d;
  --_colors---gris: #efefef;
  --_colors---naranja: #ff773a;
  --200: #f7f7f7;
  --accent-medium: #ffda8f;
  --_colors---lila: #dfc1e1;
  --_colors---amarillo: #f2c012;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--111);
  color: var(--100);
  font-family: Switzer, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

h1 {
  color: var(--100);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

h2 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.1;
}

h3 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h5 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}

h6 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}

p {
  opacity: .72;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

a {
  color: var(--100);
  letter-spacing: -.01em;
  font-weight: 500;
  text-decoration: none;
  transition: transform .25s, opacity .25s;
  display: inline-block;
}

a:hover {
  opacity: .84;
}

a:active {
  transform: scale(.98);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

li {
  letter-spacing: .015em;
  margin-bottom: .25rem;
  margin-left: 1.5rem;
  padding-left: 1.25rem;
}

label {
  margin-bottom: .5rem;
  font-weight: 500;
  display: block;
}

strong {
  font-weight: 500;
}

blockquote {
  background-color: var(--accent-light);
  color: var(--111);
  border: .0625rem #000;
  border-radius: .75rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  font-family: Switzer, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

figcaption {
  color: var(--400);
  text-align: center;
  letter-spacing: .015em;
  margin-top: .75rem;
  font-size: .875rem;
}

.style-guide-block {
  margin-bottom: 2rem;
}

.form-error {
  color: var(--100);
  background-color: #fce3e3;
  border-radius: .375rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  font-weight: 600;
}

.form {
  margin-bottom: .5rem;
}

.form-radio-button, .form-checkbox {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.text-input {
  background-color: var(--700);
  color: var(--100);
  border: .125rem solid #0000;
  border-radius: .5rem;
  min-height: 3.5rem;
  margin-bottom: 0;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: border .25s, background-color .25s;
}

.text-input:hover {
  background-color: var(--600);
}

.text-input:focus {
  border: .125rem solid var(--400);
}

.text-input::placeholder {
  color: var(--300);
}

.text-input.form {
  background-color: var(--800);
  min-height: 7.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  line-height: 1.4em;
}

.text-input.form:hover {
  background-color: var(--700);
}

.text-input.area {
  min-height: 10.5rem;
}

.paragraph {
  opacity: 1;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, Verdana, sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
}

.paragraph.small {
  font-size: .875rem;
  line-height: 1.5;
}

.paragraph.extra-large {
  font-size: 1.75rem;
  line-height: 1.4;
}

.paragraph.large {
  opacity: 1;
  color: var(--_colors---white);
  font-family: Satoshi, Verdana, sans-serif;
  font-size: 1.25rem;
  line-height: 1.45;
}

.paragraph.large.black_p {
  opacity: .8;
  color: var(--_colors---black);
  font-weight: 400;
}

.radio-button {
  border-width: .1875rem;
  border-color: var(--100);
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0;
  margin-left: -1.5rem;
  margin-right: 1rem;
}

.radio-button.w--redirected-checked {
  border-width: .5rem;
  border-color: var(--accent);
}

.visible-spacer {
  background-color: var(--600);
  border-radius: .25rem;
  display: inline-block;
}

.form-dropdown {
  background-color: var(--800);
  color: var(--300);
  border: .125rem solid #0000;
  border-radius: .75rem;
  width: 100%;
  min-height: 3.5rem;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem 1rem 1.375rem;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}

.form-dropdown:hover {
  background-color: var(--700);
}

.form-dropdown:focus-visible, .form-dropdown[data-wf-focus-visible] {
  border: .125rem solid var(--300);
}

.form-dropdown::placeholder {
  color: #999;
  font-size: .9375rem;
}

.rich-text {
  line-height: 1.5;
}

.rich-text h3 {
  margin-top: 4.5rem;
  margin-bottom: 1.5rem;
}

.rich-text a {
  text-decoration: underline;
}

.rich-text h1 {
  margin-top: 5.5rem;
  margin-bottom: 2.5rem;
}

.rich-text h2 {
  margin-top: 5.5rem;
  margin-bottom: 2rem;
}

.rich-text h4 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}

.rich-text h5 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.rich-text h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.rich-text img {
  border-radius: .5rem;
  width: 100%;
}

.rich-text p {
  margin-bottom: 2rem;
}

.style-guide-colour-block {
  width: 12.5%;
  padding-right: 1rem;
  display: inline-block;
}

.check-box {
  border-width: .1875rem;
  border-color: var(--100);
  border-radius: .5rem;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0;
  margin-left: -1.5rem;
  margin-right: 1rem;
}

.check-box.w--redirected-checked {
  border-color: var(--accent);
  background-color: var(--accent);
  background-position: 50%;
  background-size: 1rem;
  border-radius: .5rem;
}

.color-block {
  background-color: var(--111);
  border-radius: .3125rem;
  width: 100%;
  height: 3.75rem;
  margin-bottom: .625rem;
  margin-left: 0;
  margin-right: 0;
}

.form-success {
  text-align: left;
  background-color: #ecfce3;
  border-radius: .375rem;
  padding: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.style-guide-colour-grid {
  flex-wrap: wrap;
  margin-top: 1.5rem;
  display: flex;
}

.field-block {
  z-index: 1;
  border: .0625rem #0000;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  min-width: 3.125rem;
  min-height: 1.25rem;
  margin-bottom: .5rem;
  display: flex;
}

.heading {
  letter-spacing: -.02em;
  font-family: Switzer, sans-serif;
  font-weight: 400;
}

.heading.medium {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.heading.extra-small {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}

.heading.small {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Switzer, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}

.heading.regular {
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.heading.regular.perfil_text {
  text-transform: none;
  font-family: Satoshi, Verdana, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.heading.extra-large {
  color: var(--_colors---black);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: .5rem;
  font-family: Switzer, sans-serif;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

.heading.large {
  color: var(--_colors---white);
  text-align: left;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-right: 0;
  font-family: Syne, sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
}

.heading.large.center {
  text-align: center;
}

.button-secondary {
  color: var(--_colors---black);
  text-align: center;
  background-color: #ffffff14;
  border: 1px solid #2d2d2d;
  border-radius: 1px;
  flex: none;
  min-height: 3.5rem;
  padding: 1rem 1.75rem;
  font-family: Syne, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: transform .25s, opacity .25s;
}

.button-secondary:hover {
  opacity: .72;
}

.button-secondary:active {
  transform: scale(.98);
}

.button-secondary.small {
  border-style: none;
  border-radius: .375rem;
  min-height: 2.5rem;
  padding: .5625rem 1.25rem;
  font-size: .9375rem;
}

.button-secondary.full-width {
  width: 100%;
}

.style-guide-section-header {
  margin-bottom: 3rem;
}

.text-box {
  max-width: 43.75rem;
}

.text-box._600px {
  max-width: 37.5rem;
  min-height: 4rem;
}

.text-box._500px {
  max-width: 31.25rem;
  min-height: 4rem;
}

.text-box._400px {
  max-width: 25rem;
  min-height: 4rem;
}

.text-box._800px {
  max-width: 50rem;
  min-height: 4rem;
}

.text-box._700px {
  max-width: 43.75rem;
  min-height: 4rem;
}

.text-box._900px {
  max-width: 56.25rem;
}

.style-guide-label {
  color: var(--400);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.25;
}

.field-label {
  color: var(--100);
  font-size: 1rem;
  font-weight: 500;
}

.block-quote {
  background-color: var(--accent-light);
  border-radius: .75rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  font-family: Switzer, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.section {
  background-color: var(--_colors---black);
  padding: 8rem;
  overflow: hidden;
}

.section.banner {
  background-color: var(--800);
  background-color: var(--600);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .75rem;
  display: flex;
}

.section.login {
  background-color: var(--111);
  align-items: center;
  height: 100vh;
  display: flex;
}

.section.is-relative {
  position: relative;
}

.section.hero {
  margin-top: -80px;
  padding: 0;
}

.section.gradiente {
  position: relative;
}

.section.degr_bg_2 {
  background-color: var(--_colors---white);
  background-image: url('../images/bg_3_worthit.jpg');
  background-position: 0 0;
  background-size: cover;
}

.section.degr_bg_2.footer_padding {
  padding: 0;
}

.section.white {
  background-color: var(--_colors---white);
  position: relative;
}

.section.white.vh {
  height: auto;
  padding-top: 10rem;
}

.section.vector_bg {
  background-color: var(--_colors---gris);
  background-image: url('../images/Vector.png');
  background-position: 50% 100%;
  background-size: cover;
  height: 100vh;
}

.section.no-margin {
  padding-top: 0;
}

.text-color-light-purple {
  color: var(--accent-light);
}

.container-large {
  z-index: 0;
  width: 100%;
  max-width: 90rem;
  margin-left: 0;
  margin-right: 0;
}

.container-large.centred {
  margin-left: auto;
  margin-right: auto;
}

.container-large.columnas {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container-large.top_padding {
  padding: 2rem 8rem 5rem;
}

.container-large.footer_padding {
  padding: 8rem 10rem 0;
}

.grid-2-column {
  grid-column-gap: 4.5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: start;
  display: grid;
}

.grid-2-column.align-baseline {
  align-items: baseline;
}

.grid-2-column.vertically-centred {
  align-items: center;
}

.nav-link {
  color: var(--_colors---black);
  border-radius: .5rem;
  align-items: center;
  min-height: 2.5rem;
  margin-left: .125rem;
  margin-right: .125rem;
  padding: 0 .875rem;
  font-size: .9375rem;
  transition: transform .25s, background-color .25s, opacity .25s;
  display: flex;
}

.nav-link:hover {
  opacity: .84;
  color: var(--_colors---black);
  background-color: #0000;
  border-radius: 0;
}

.nav-link.w--current {
  z-index: 1;
  background-color: var(--700);
  color: var(--100);
}

.nav-link.w--current:hover {
  opacity: 1;
}

.nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(.3rem);
  backdrop-filter: blur(.3rem);
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  display: flex;
  position: sticky;
  top: 0;
}

.nav-menu {
  margin-right: -.25rem;
  display: flex;
}

.logo {
  margin-bottom: .25rem;
  padding-left: 0;
  display: inline-block;
  position: static;
}

.logo:hover {
  opacity: .72;
}

.nav-container {
  z-index: 0;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  max-width: 100rem;
  height: 100%;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
  position: relative;
}

.logo-wrapper {
  grid-column-gap: 3rem;
  color: var(--_colors---black);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-family: Syne, sans-serif;
  font-weight: 400;
  display: flex;
}

.footer-link {
  opacity: .85;
  color: var(--_colors---black);
  font-family: Satoshi, Verdana, sans-serif;
  font-weight: 400;
  text-decoration: none;
}

.footer-link.w--current {
  font-family: Satoshi, Verdana, sans-serif;
}

.footer-link.text-color-muted {
  color: var(--_colors---black);
  font-family: Syne, sans-serif;
  font-size: 1rem;
}

.footer-link.hide {
  display: none;
}

.grid-license-images {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-license-fonts {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.centre {
  margin-left: auto;
  margin-right: auto;
}

.button {
  background-color: var(--_colors---black);
  color: var(--_colors---white);
  text-align: center;
  flex: none;
  min-height: 3.5rem;
  padding: 1rem 1.75rem;
  font-family: Syne, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: transform .25s, opacity .25s;
}

.button:hover {
  opacity: .88;
}

.button:active {
  transform: scale(.98);
}

.button.small {
  border-radius: .5rem;
  min-height: 2.5rem;
  padding: .5625rem 1rem;
  font-size: .9375rem;
}

.button.small.hide-mobile-portrait {
  text-transform: uppercase;
  border-radius: 0;
}

.button.full-width {
  width: 100%;
}

.button.lineal {
  border: 1px solid var(--_colors---gris);
  padding-left: 2rem;
  padding-right: 2rem;
}

.license-image {
  border: .0625rem solid #0000000f;
  border-radius: .5rem;
  width: 100%;
}

.visible-text-box {
  background-color: var(--600);
  border-radius: .375rem;
}

.text-color-200 {
  color: var(--200);
}

.text-color-100 {
  color: var(--100);
}

.text-color-300 {
  color: var(--300);
}

.text-color-400 {
  color: var(--400);
}

.social-proof-logos-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.social-proof-logo {
  opacity: .5;
  max-width: 6rem;
  max-height: 1.25rem;
  display: inline-flex;
}

.nav-menu-button {
  padding: 0;
}

.actions-wrapper {
  grid-column-gap: 3rem;
  display: flex;
}

.button-group {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-wrap: wrap;
  display: flex;
}

.faq-question {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.25rem 2rem 2.5rem;
  display: flex;
}

.faq-accordion {
  background-color: var(--800);
  border-style: none;
  border-width: .0625rem;
  border-radius: .75rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq-content {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 33.75rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.faq-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: flex;
}

.faq-answer {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  overflow: hidden;
}

.faq-list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.image-wrapper {
  border-radius: 0;
  width: 100%;
  overflow: hidden;
}

.text-weight-semibold {
  font-weight: 600;
}

.feature-content {
  max-width: 100%;
}

.feature-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.feature-item.product_fit {
  grid-template-columns: 1fr;
}

.card-list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template: "." minmax(auto, 527px)
  / 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  display: grid;
}

.card-item {
  border: 1px solid #fff;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 50%;
  height: auto;
  min-height: 100%;
  padding: 2.5rem;
  display: flex;
}

.card-item.featured {
  background-color: var(--111);
  position: relative;
  overflow: hidden;
}

.card-item.login {
  z-index: 1;
  background-color: var(--111);
  width: 36rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem;
  display: flex;
  position: relative;
}

.card-item.img {
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.divider-line {
  background-color: var(--_colors---black);
  text-align: center;
  justify-content: center;
  align-items: center;
  height: .0625rem;
}

.footer-column {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--_colors---black);
  flex-direction: column;
  align-items: flex-start;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
}

.footer-column.black_font {
  width: 80%;
  font-family: Syne, sans-serif;
  font-size: 1rem;
}

.footer-column.less_padding {
  margin-left: 61px;
}

.icon-large {
  color: var(--accent);
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
}

.features-list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.header-content {
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 60rem;
  display: flex;
}

.testimonials-list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  display: none;
}

.pricing-features-list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 2.5rem;
  display: flex;
}

.pricing-feature {
  grid-column-gap: .75rem;
  display: flex;
}

.text-color-accent {
  color: var(--accent);
}

.gradient-image {
  z-index: 0;
  mix-blend-mode: luminosity;
  object-fit: cover;
  background-image: linear-gradient(#000000bf, #000000bf), url('../images/Ethereal-Abstract-Art_1Ethereal Abstract Art.avif');
  background-position: 0 0, 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.pricing-card-content {
  z-index: 1;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.cta-card-content {
  z-index: 1;
  grid-column-gap: 4rem;
  text-align: center;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-grid {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 2.5fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: space-between;
  place-items: start stretch;
  width: 100%;
  display: grid;
}

.form-block {
  width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.error-message {
  color: #bf1935;
  text-align: center;
  background-color: #ffe6ea;
  border-radius: .75rem;
  max-width: 33.75rem;
  min-height: 3.5rem;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.25rem .9375rem;
  font-weight: 500;
}

.success-message {
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: .75rem;
  max-width: 33.75rem;
  min-height: 3.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.25rem;
  font-weight: 500;
}

.success-message.alternate {
  background-color: var(--111);
}

.login-form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.text-weight-regular {
  font-weight: 400;
}

.text-weight-medium {
  font-weight: 500;
}

.pricing-list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.feature-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.feature-image.luminosity {
  mix-blend-mode: luminosity;
}

.icon-24 {
  color: var(--accent);
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
}

.text-link {
  color: var(--accent-medium);
  font-size: .875rem;
}

.text-color-accent-light {
  color: var(--accent-light);
}

.testimonial-details {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--400);
  align-items: center;
  display: flex;
}

.testimonial-image {
  object-fit: cover;
  flex: none;
  width: 100%;
  height: 100%;
}

.testimonial-image-wrapper {
  border-radius: .5rem;
  width: 5rem;
  height: 5rem;
  position: relative;
  overflow: hidden;
}

.faq-icon {
  color: var(--accent);
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
}

.text-block {
  color: #b81832;
}

.text-color-600 {
  color: var(--600);
}

.text-color-700 {
  color: var(--700);
}

.text-color-800 {
  color: var(--800);
}

.text-color-900 {
  color: var(--111);
}

.background-color-100 {
  background-color: var(--100);
}

.background-color-300 {
  background-color: var(--300);
}

.background-color-400 {
  background-color: var(--400);
}

.background-color-600 {
  background-color: var(--600);
}

.background-color-700 {
  background-color: var(--700);
}

.background-color-800 {
  background-color: var(--800);
}

.background-color-900 {
  background-color: var(--111);
}

.text-color-muted {
  opacity: .7;
  color: var(--_colors---black);
  font-family: Syne, sans-serif;
  font-size: 1.2rem;
}

.benefit-item {
  color: var(--_colors---black);
  border: 0 solid #000;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.benefit-item.vertical {
  flex-flow: column;
}

.icon-medium {
  color: var(--accent);
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}

.text-gradient-overlay {
  color: var(--_colors---white);
  text-transform: uppercase;
  font-family: Syne, sans-serif;
  font-weight: 400;
}

.text-gradient-overlay.black_font {
  color: var(--_colors---black);
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  display: inline;
}

.text-gradient-overlay.black_font.no-capitalize {
  text-transform: none;
}

.text-gradient-overlay.black_font.no-capitalize.nohide {
  padding-right: 27px;
  display: block;
}

.text-gradient-overlay.lila {
  color: var(--_colors---lila);
}

.text-gradient-overlay.size_medium {
  font-size: 3rem;
  font-weight: 400;
}

.header-layout {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.grid-3-column {
  grid-column-gap: 1.2rem;
  grid-row-gap: 1.2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: start;
  display: grid;
}

.grid-3-column.real_3_column {
  grid-template-columns: 1fr 1fr 1fr;
}

.container-small {
  z-index: 0;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background-color: var(--800);
  border-radius: .75rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  display: flex;
}

.testimonials-card {
  background-color: var(--800);
  border-radius: 1.25rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 2.5rem;
  display: flex;
}

.testimonials-content-top {
  font-weight: 400;
}

.footer-bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
  font-weight: 400;
  display: flex;
}

.testimonial-details-text {
  grid-column-gap: .125rem;
  grid-row-gap: .125rem;
  color: var(--400);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.testimonial-logo {
  max-width: 6rem;
  max-height: 1.25rem;
  display: inline-flex;
}

.image-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  display: grid;
}

.about-grid-image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-grid-image-wrapper {
  border-radius: .75rem;
  width: 100%;
  overflow: hidden;
}

.background-color-accent {
  background-color: var(--accent);
}

.background-color-accent-medium {
  background-color: var(--accent-medium);
}

.background-color-accent-light {
  background-color: var(--accent-light);
}

.spacer-4 {
  background-color: #0000;
  flex: none;
  width: .25rem;
  height: .25rem;
}

.spacer-8 {
  background-color: #0000;
  flex: none;
  width: .5rem;
  height: .5rem;
}

.spacer-16 {
  background-color: #0000;
  flex: none;
  width: 1rem;
  height: 1rem;
  display: block;
}

.spacer-24 {
  text-transform: uppercase;
  background-color: #0000;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
}

.spacer-32 {
  background-color: #0000;
  border-radius: .375rem;
  flex: none;
  width: 2rem;
  height: 2rem;
}

.spacer-40 {
  background-color: #0000;
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
}

.spacer-48 {
  background-color: #0000;
  border-radius: .375rem;
  flex: none;
  width: 3rem;
  height: 3rem;
}

.spacer-64 {
  background-color: #0000;
  flex: none;
  width: 4rem;
  height: 4rem;
}

.spacer-80 {
  background-color: #0000;
  flex: none;
  width: 5rem;
  height: 5rem;
}

.spacer-96 {
  background-color: #0000;
  flex: none;
  width: 6rem;
  height: 6rem;
}

.spacer-128 {
  background-color: #0000;
  flex: none;
  width: 8rem;
  height: 8rem;
}

.background-color-200 {
  background-color: var(--100);
  color: var(--200);
}

.section-2 {
  background-image: url('../images/bg_worthit.jpg');
  background-position: 50%;
  background-size: cover;
  padding: 10rem 8rem 8rem;
  display: block;
}

.spacer-6 {
  background-color: #0000;
  flex: none;
  width: 1rem;
  height: 1rem;
  display: block;
}

.div-block {
  z-index: 5;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-family: Syne, sans-serif;
  display: flex;
}

.tag_position {
  color: var(--_colors---naranja);
  text-align: left;
  font-family: Syne, sans-serif;
}

.job_position {
  opacity: .85;
  text-transform: uppercase;
  font-family: Syne, sans-serif;
  font-weight: 400;
}

.img_member {
  position: relative;
}

.div-block-2 {
  border: 1px solid #fff;
  flex-flow: column;
  padding: 14px;
  font-family: Syne, sans-serif;
  display: block;
}

.text-block-2 {
  color: var(--_colors---naranja);
  font-size: 16px;
}

.text-block-3 {
  font-size: 1.5rem;
}

.text-block-4 {
  font-family: Syne, sans-serif;
  font-weight: 300;
}

.collection-item {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.collection-list-wrapper {
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.div-block-3 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.link {
  color: var(--_colors---lila);
}

.div-block-4 {
  z-index: 2;
  background-image: url('../images/degrade_effect.png');
  background-position: 50% 100%;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.split-lines {
  color: var(--800);
  text-align: center;
  font-size: 5em;
  position: relative;
}

.heading_wrap {
  text-transform: uppercase;
  width: 100%;
}

.page-wrapper-2 {
  width: 100%;
  font-size: 1em;
  position: relative;
  overflow: hidden;
}

.html {
  width: 0;
  height: 0;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 100em;
  margin-left: auto;
  margin-right: auto;
  padding: 51vh 8.3em;
}

.underline {
  background-color: #ffffff4d;
  width: 100%;
  height: 1px;
  margin-top: 8.9em;
  margin-bottom: 8.9em;
}

.benefit_text {
  flex-flow: column;
  display: block;
}

.sub_text_dark {
  color: var(--_colors---black);
  font-family: Satoshi, Verdana, sans-serif;
  font-size: 20px;
}

.sub_text_dark.syne {
  font-family: Syne, sans-serif;
}

.divider {
  border: .5px solid #4f4f4f33;
}

.collection-item-2 {
  padding-bottom: 10px;
}

.image {
  border-radius: 3px;
  width: 100%;
  min-height: 100%;
  display: inline-flex;
}

.div-block-5 {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.link-2 {
  color: var(--_colors---black);
}

.txt_desktop {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: flex-end;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.div-block-6 {
  position: absolute;
  inset: 0%;
}

.div-block-7 {
  z-index: 0;
  border-radius: 3px;
  padding-bottom: 1rem;
}

.div-block-8 {
  z-index: 2;
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.text-block-5 {
  width: 100%;
  font-family: Satoshi, Verdana, sans-serif;
}

.startups_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  display: flex;
}

.startups_wrapper {
  flex-flow: column;
  width: 100%;
  overflow: hidden;
}

.startups_wrapper.hide {
  display: none;
}

.startups-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 30rem;
}

.logo_startup {
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.testimonio_txt {
  font-family: Satoshi, Verdana, sans-serif;
  font-size: 1.3rem;
}

.owner_wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2rem;
  display: flex;
}

.grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  justify-content: start;
}

.div-block-9 {
  flex-flow: column;
  display: flex;
}

.text-block-6 {
  text-transform: uppercase;
  font-family: Syne, sans-serif;
  font-weight: 400;
}

.text-block-7 {
  text-transform: uppercase;
  font-family: Syne, sans-serif;
  font-size: 1.5rem;
}

.collection-item-4 {
  border: 1px solid var(--_colors---white);
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 2.5rem;
  display: flex;
}

.collection-list-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.text-block-8 {
  font-family: Satoshi, Verdana, sans-serif;
}

.split-lines-2 {
  text-align: center;
  font-family: Syne, sans-serif;
  font-size: 4em;
  font-weight: 400;
  position: relative;
}

.section-4 {
  background-color: #460f0f;
}

.heading_wrap-2 {
  width: 64%;
}

.div-block-10 {
  position: relative;
}

.text_sticky {
  justify-content: center;
  align-items: center;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
}

.svg_logo {
  position: absolute;
}

.txt-display {
  z-index: 2;
  color: var(--_colors---black);
  display: block;
  position: relative;
}

.txt-display.scroll-highlight {
  color: var(--_colors---naranja);
  padding: 0;
  font-size: 4rem;
  font-weight: 400;
}

.slide {
  width: 100%;
}

.slider {
  background-color: #0000;
  height: auto;
}

.mask {
  width: 33.3%;
  overflow: visible;
}

.fs-slider_slide {
  background-color: #0000;
}

.swiper.startups {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.swiper-wrapper.startups {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.swiper-slide {
  border: 1px solid #d9d9d933;
  border-radius: 3px;
  flex: none;
  width: 50%;
  min-height: 35rem;
  padding: 2rem;
}

.swiper-slide.startups {
  border-width: 0;
  width: 18rem;
  min-height: 0;
  padding: 0;
}

.image-4 {
  flex: none;
}

.final_footer {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: flex-end;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.final_footer.hide {
  display: block;
}

.no_tocar_frase {
  border-top: 0 #000;
  border-bottom: 0 #e22929;
  justify-content: center;
  align-items: flex-end;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.content_slider {
  border: 1px solid #d9d9d933;
  border-radius: 3px;
  height: 320px;
  padding: 2rem 1.5rem;
}

.wrapp {
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.collection-list-3 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-items: center;
  display: grid;
}

.swipper-wrapper.startups {
  display: flex;
}

.swipper-slide.startups {
  flex: none;
  width: 25rem;
}

.team-image-wrapper {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.team-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.team-info-wrapper {
  border: 1px solid #d9d9d933;
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  min-height: 18rem;
  margin-top: 1rem;
  padding: 1rem 1rem 0;
  display: flex;
}

.swiper-navigation {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  height: 5rem;
  display: flex;
}

.div-block-11 {
  width: 3.5rem;
  height: 3.5rem;
}

.swipper-button.swiper-btn-prev, .swipper-button.swiper-btn-next {
  border: 1px solid #d9d9d933;
  border-radius: 100px;
  width: 3.5rem;
  height: 3.5rem;
  padding: 8px;
}

.footer_txt {
  color: var(--_colors---black);
  padding-right: 36px;
  font-family: Syne, sans-serif;
  font-size: 3.2rem;
}

.button-animation {
  box-shadow: none;
  color: #fff;
  text-align: center;
  background-color: #2d2d2d;
  border: 1px #0000;
  border-radius: 3px;
  justify-content: flex-start;
  align-items: center;
  width: 13rem;
  height: 4rem;
  padding: 1.25rem 1rem;
  font-weight: 400;
  transition-property: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-animation:hover {
  box-shadow: none;
  opacity: 1;
}

.button-animation.small_height {
  height: 3rem;
}

.button-animation.border {
  border-style: solid;
  border-color: var(--_colors---gris);
}

.icon-2-5x2-5 {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-2-5x2-5.is-left {
  position: absolute;
  left: 1.5rem;
}

.icon-2-5x2-5.is-left.hide {
  display: none;
}

.icon-2-5x2-5.is-right {
  display: none;
  position: absolute;
  right: 1.5rem;
}

.button-text-animation {
  text-transform: uppercase;
  font-family: Syne, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  position: absolute;
  left: 3rem;
}

.card_content {
  opacity: 0;
  background-image: linear-gradient(#00000080, #00000080);
  flex-flow: column;
  justify-content: flex-end;
  padding: 24px;
  transition: opacity .4s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.card_content:hover {
  opacity: 1;
}

.text-block-9 {
  font-family: Satoshi, Verdana, sans-serif;
  font-size: 1.1rem;
}

.content_card_jaime {
  opacity: 0;
  background-image: linear-gradient(#00000080, #00000080);
  justify-content: center;
  align-items: flex-end;
  padding: 50px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.content_card_jaime:hover {
  opacity: 1;
}

.jaime_card {
  z-index: 50;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
  position: relative;
}

.image-5 {
  object-fit: cover;
  flex: none;
  width: 100%;
  height: 650px;
}

.div-block-12 {
  position: relative;
}

.text-block-10 {
  font-family: Satoshi, Verdana, sans-serif;
  font-size: 1.2rem;
}

.img_txt {
  z-index: 20;
  height: 100vh;
  position: absolute;
  inset: -6% auto 0% 0%;
}

.image-6 {
  z-index: 20;
  height: 100vh;
  position: sticky;
}

.section-5 {
  background-color: #2d2d2d;
  padding: 8rem;
  overflow: hidden;
}

.content-testimonio {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.right-arrow {
  background-color: #dfc1e1;
  border-radius: 100px;
  justify-content: flex-end;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  transform: translate(5rem);
}

.right-arrow.estilo {
  background-color: #0000;
  border: 1px solid #d9d9d933;
}

.collection-list-4 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.tes_pagination {
  margin-top: 2rem;
  position: static;
}

.collection-list-wrapper-2 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.slide-2 {
  height: auto;
}

.left-arrow {
  background-color: #dfc1e1;
  border-radius: 100px;
  justify-content: flex-start;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  transform: translate(-5rem);
}

.left-arrow.estilo {
  background-color: #0000;
  border: 1px solid #d9d9d933;
}

.tes_slider {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 50rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.tes_mask {
  height: auto;
}

.code-embed {
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 2.5rem;
  display: flex;
  transform: rotateX(0)rotateY(-180deg)rotateZ(0);
}

.code-embed.is-right {
  transform: none;
}

.testimonio_content {
  border: 1px solid #d9d9d933;
  border-radius: 3px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  display: flex;
}

.testimonio_logo {
  max-width: 11rem;
  height: auto;
  object-fit: contain;
}

.testimonio_avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.text-block-11 {
  font-family: Satoshi, Verdana, sans-serif;
  font-size: 1.2rem;
}

.div-block-13 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.text-block-12 {
  font-family: Syne, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.div-block-14 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.text-block-13 {
  opacity: .6;
  text-transform: uppercase;
}

.hand_mobile.hide {
  display: none;
}

.link-3 {
  color: var(--_colors---black);
}

.link-3.new_color {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 3.5rem;
  }

  .style-guide-block {
    margin-bottom: 2.5rem;
  }

  .form-error {
    padding-left: .25rem;
  }

  .paragraph {
    font-size: 1rem;
  }

  .paragraph.extra-large {
    font-size: 1.5rem;
  }

  .form-dropdown {
    padding-right: .25rem;
  }

  .form-success {
    padding-top: .25rem;
  }

  .heading.medium {
    font-size: 20px;
  }

  .heading.regular {
    font-size: 1.2rem;
  }

  .button-secondary {
    position: relative;
  }

  .section {
    padding: 6rem 4rem;
  }

  .container-large {
    overflow: hidden;
  }

  .container-large.columnas {
    grid-template-columns: 2fr;
  }

  .container-large.top_padding, .container-large.footer_padding {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nav-link {
    color: var(--_colors---gris);
    border-radius: 0;
    min-height: 3.5rem;
    margin: 1rem 0;
    font-family: Satoshi, Verdana, sans-serif;
    font-size: 1.2rem;
    transition: transform .25s, background-color .25s, opacity .25s;
  }

  .nav-link:hover {
    color: var(--_colors---naranja);
  }

  .nav-menu {
    border-bottom: .0625rem solid var(--600);
    background-color: var(--_colors---black);
    align-items: flex-start;
    width: 100vw;
    min-width: 100vw;
    height: 100vh;
    margin-right: 0;
    padding: 1rem 3.125rem 2rem;
  }

  .nav-container {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .button {
    position: relative;
  }

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .nav-menu-button {
    flex-direction: row;
    justify-content: center;
    margin-left: 1rem;
    margin-right: -.5rem;
    padding: 0;
    display: flex;
  }

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

  .actions-wrapper {
    align-items: center;
  }

  .menu-icon-line-bottom {
    background-color: var(--100);
    border-radius: .0625rem;
    width: 2rem;
    height: .15625rem;
    margin-top: .25rem;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon-line-top {
    background-color: var(--100);
    border-radius: .0625rem;
    width: 2rem;
    height: .15625rem;
    margin-bottom: .25rem;
    padding-bottom: 0;
    padding-right: 0;
  }

  .faq-wrapper {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .faq-answer {
    padding-right: 2.5rem;
  }

  .feature-item {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    align-items: center;
    min-height: auto;
  }

  .card-item {
    height: 500px;
    padding: 1.5rem 1.2rem;
  }

  .divider-line {
    border: 1px solid var(--_colors---black);
  }

  .testimonials-list {
    grid-template-columns: 1fr;
  }

  .cta-card-content {
    grid-column-gap: 2rem;
  }

  .text-gradient-overlay.black_font {
    text-transform: uppercase;
    font-size: 3rem;
  }

  .text-gradient-overlay.size_medium {
    font-size: 2.5rem;
  }

  .header-layout {
    grid-template-columns: 1fr;
  }

  .grid-3-column {
    grid-column-gap: 3rem;
  }

  .grid-3-column.real_3_column {
    grid-template-columns: 1fr 1fr;
  }

  .container-small {
    overflow: hidden;
  }

  .image-grid {
    grid-column-gap: 3rem;
    grid-auto-flow: row;
    min-height: auto;
  }

  .spacer-8 {
    display: none;
  }

  .spacer-32 {
    display: block;
  }

  .spacer-32.black, .spacer-48, .spacer-80 {
    display: none;
  }

  .div-block {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    padding-left: 0;
    padding-right: 0;
  }

  .tag_position, .job_position {
    font-size: 16px;
  }

  .text-block-3 {
    font-size: 18px;
    line-height: 1.1;
  }

  .text-block-4 {
    font-size: 16px;
  }

  .heading_wrap {
    width: 90%;
  }

  .container {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .div-block-5 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-8 {
    padding: 1.6rem;
  }

  .text-block-5 {
    width: 100%;
  }

  .startups_list {
    grid-column-gap: 1rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .testimonio_txt {
    font-size: 1.25rem;
  }

  .text-block-6 {
    font-family: Satoshi, Verdana, sans-serif;
    font-size: .87rem;
    font-weight: 300;
  }

  .text-block-7 {
    font-size: 1.3rem;
  }

  .collection-item-4 {
    width: 100%;
    height: 100%;
  }

  .collection-list-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .heading_wrap-2 {
    width: 90%;
  }

  .txt-display.scroll-highlight {
    font-size: 3.5rem;
  }

  .final_footer.hide {
    display: none;
  }

  .team-info-wrapper {
    min-height: 23rem;
  }

  .button-animation {
    white-space: nowrap;
  }

  .button-animation.small_height {
    display: none;
  }

  .content_card_jaime {
    padding: 30px;
  }

  .jaime_card {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding-left: 0;
    padding-right: 0;
  }

  .image-5 {
    height: 500px;
  }

  .text-block-10 {
    font-size: 1rem;
  }

  .img_txt {
    left: 0%;
  }

  .section-5 {
    padding: 6rem 4rem;
  }

  .right-arrow.hide {
    display: none;
  }

  .collection-list-4 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .left-arrow.hide {
    display: none;
  }

  .tes_slider {
    background-color: #0000;
    width: 100%;
  }

  .collection-item-5 {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  h6 {
    letter-spacing: -.02em;
  }

  .style-guide-colour-block {
    width: 25%;
  }

  .field-block {
    min-height: auto;
  }

  .heading.medium {
    font-size: 18px;
  }

  .heading.extra-large {
    font-size: 3.25rem;
  }

  .heading.large {
    min-width: 2.5px;
    font-size: 2.5rem;
  }

  .section.banner {
    display: block;
  }

  .container-large {
    width: 100%;
  }

  .container-large.columnas {
    grid-template-columns: 2fr;
  }

  .grid-2-column {
    grid-column-gap: 2rem;
    grid-row-gap: 3.5rem;
    grid-template-columns: 1fr;
  }

  .nav-link.w--current {
    background-position: 0%;
  }

  .nav-menu {
    border-right: .0625rem solid var(--700);
    background-color: var(--_colors---black);
    -webkit-backdrop-filter: blur(.375rem);
    backdrop-filter: blur(.375rem);
    margin-right: 0;
  }

  .logo-wrapper {
    display: flex;
  }

  .social-proof-logos-wrapper {
    width: auto;
    padding-top: 1rem;
  }

  .faq-wrapper, .feature-item {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .card-list {
    grid-template-columns: 1fr;
  }

  .card-item {
    width: 80%;
  }

  .card-item.login {
    width: 100%;
    padding: 2.5rem;
  }

  .footer-column.black_font {
    display: none;
  }

  .footer-column.less_padding {
    margin-left: 0;
  }

  .features-list {
    grid-row-gap: 9rem;
  }

  .testimonials-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
  }

  .pricing-list {
    grid-template-columns: 1fr;
  }

  .grid-3-column {
    grid-column-gap: 2rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .grid-3-column.real_3_column {
    grid-template-columns: 1fr;
  }

  .container-small {
    width: 100%;
  }

  .image-grid {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .spacer-4, .spacer-8, .spacer-16, .spacer-24 {
    height: 2.5rem;
  }

  .spacer-32 {
    height: 2.5rem;
    display: block;
  }

  .spacer-40, .spacer-48 {
    height: 2.5rem;
  }

  .spacer-64 {
    width: 3.5rem;
    height: 3.5rem;
  }

  .spacer-80 {
    width: 3.5rem;
    height: 3.5rem;
    display: block;
  }

  .spacer-96 {
    width: 4.5rem;
    height: 4.5rem;
  }

  .spacer-128, .spacer-6 {
    height: 2.5rem;
  }

  .div-block {
    flex-flow: column;
    width: 80%;
    height: auto;
  }

  .img_member {
    text-align: center;
  }

  .div-block-2 {
    text-align: left;
    width: 80%;
  }

  .collection-item {
    justify-content: center;
    align-items: center;
  }

  .heading_wrap {
    width: 90%;
  }

  .container {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .sub_text_dark {
    font-weight: 400;
  }

  .div-block-5 {
    justify-content: center;
    align-items: flex-end;
  }

  .div-block-8 {
    padding: 0;
  }

  .startups_list {
    grid-template-columns: 1fr;
  }

  .testimonio_txt {
    font-size: 1rem;
  }

  .text-block-6 {
    font-size: .87rem;
  }

  .text-block-7 {
    font-size: 1.1rem;
  }

  .heading_wrap-2 {
    width: 90%;
  }

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

  .txt-display.scroll-highlight {
    padding-left: 0;
    padding-right: 0;
    font-size: 3rem;
  }

  .swiper-slide {
    width: 100%;
    min-height: 25rem;
    padding: 1.5rem;
  }

  .content_slider {
    height: auto;
    padding: 1rem;
  }

  .collection-list-3 {
    flex-flow: row;
    display: flex;
  }

  .jaime_card {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .div-block-12 {
    padding-bottom: 0;
  }

  .img_txt {
    left: 0%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.125rem;
  }

  h4 {
    font-size: 1.375rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  p {
    font-size: .9375rem;
  }

  li {
    padding-left: .75rem;
  }

  blockquote {
    padding-left: 1.5rem;
  }

  .text-input {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1rem;
  }

  .paragraph {
    font-size: 1rem;
  }

  .paragraph.extra-large {
    font-size: 1.375rem;
  }

  .paragraph.large {
    font-size: 1.0625rem;
  }

  .paragraph.hide_mobile {
    display: none;
  }

  .rich-text h3 {
    margin-top: 3rem;
  }

  .rich-text h1, .rich-text h2 {
    margin-top: 3.5rem;
  }

  .rich-text h4 {
    margin-top: 2.5rem;
  }

  .rich-text h5 {
    margin-top: 2rem;
  }

  .rich-text h6 {
    margin-top: 1.5rem;
  }

  .check-box {
    flex: none;
  }

  .color-block {
    margin-bottom: 1.25rem;
  }

  .heading.medium {
    font-size: 18px;
  }

  .heading.extra-small {
    font-size: 1.125rem;
  }

  .heading.small {
    font-size: 1.25rem;
  }

  .heading.regular {
    font-size: 1.3rem;
  }

  .heading.regular.perfil_text {
    font-size: 1rem;
  }

  .heading.extra-large {
    font-size: 2.5rem;
  }

  .heading.large {
    font-size: 2.125rem;
  }

  .button-secondary {
    font-size: 1rem;
  }

  .button-secondary.small.hide-mobile-portrait {
    display: none;
  }

  .style-guide-section-header {
    margin-bottom: 2rem;
  }

  .block-quote {
    padding-left: 1.5rem;
  }

  .section {
    padding: 3.5rem 2.5rem;
  }

  .section.white {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .section.white.vh {
    height: 100vh;
  }

  .section.white.vh.section-con-highlight {
    height: auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .container-large {
    overflow: visible;
  }

  .container-large.top_padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .grid-2-column {
    grid-row-gap: 2.5rem;
  }

  .nav-link {
    color: var(--_colors---white);
    font-family: Satoshi, Verdana, sans-serif;
  }

  .nav-menu {
    background-color: var(--_colors---black);
    color: var(--_colors---gris);
    padding-left: 1.625rem;
    padding-right: 1.625rem;
  }

  .nav-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .footer-link {
    font-family: Satoshi, Verdana, sans-serif;
  }

  .footer-link.text-color-muted {
    text-align: center;
  }

  .button {
    font-size: 1rem;
  }

  .button.small.hide-mobile-portrait {
    display: none;
  }

  .button.lineal {
    margin-top: 1rem;
  }

  .text-color-300 {
    font-size: .875rem;
  }

  .social-proof-logos-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 1.5rem;
    justify-content: center;
  }

  .button-group {
    flex-direction: column;
    flex: 1;
    width: 100%;
  }

  .faq-question {
    padding: 1.5rem 1.75rem 1.5rem 2rem;
  }

  .faq-accordion {
    border-radius: 1rem;
  }

  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .faq-answer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .feature-item, .card-list {
    grid-template-columns: 1fr;
  }

  .card-item {
    z-index: 10;
    width: 100%;
    height: auto;
    padding: 1rem;
    position: relative;
  }

  .card-item.login {
    padding: 2rem;
  }

  .footer-column {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .icon-large {
    width: 2rem;
    height: 2rem;
  }

  .features-list {
    grid-row-gap: 2rem;
  }

  .testimonials-list {
    grid-template-columns: 1fr;
  }

  .pricing-features-list {
    margin-bottom: 2rem;
  }

  .footer-grid {
    grid-column-gap: 1.25rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .login-form {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .pricing-list {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    border-radius: 1rem;
  }

  .text-gradient-overlay {
    letter-spacing: 0;
  }

  .text-gradient-overlay.black_font {
    text-align: left;
    font-size: 2.125rem;
  }

  .text-gradient-overlay.size_medium {
    font-size: 2.125rem;
    font-weight: 400;
  }

  .header-layout {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    place-items: end stretch;
    display: block;
  }

  .grid-3-column {
    grid-row-gap: 1rem;
  }

  .grid-3-column.real_3_column {
    grid-template-columns: 1fr;
  }

  .pricing-card, .testimonials-card {
    border-radius: 1rem;
    padding: 2rem;
  }

  .footer-bottom {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
    justify-content: center;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .about-grid-image-wrapper {
    border-radius: 1rem;
  }

  .spacer-4 {
    height: 1.8rem;
  }

  .spacer-16.none, .spacer-16.hide, .spacer-32.hide {
    display: none;
  }

  .spacer-64 {
    width: 3rem;
    height: 3rem;
  }

  .spacer-80 {
    width: 3rem;
    height: 3rem;
    display: block;
  }

  .spacer-80.hide {
    display: none;
  }

  .spacer-96 {
    width: 3.5rem;
    height: 3.5rem;
  }

  .section-2 {
    padding: 6rem 1rem 3.5rem;
  }

  .spacer-6 {
    width: 1px;
    height: 1rem;
  }

  .div-block {
    justify-content: center;
    align-items: stretch;
    width: 100%;
  }

  .job_position {
    opacity: .4;
    font-size: 14px;
    font-weight: 400;
  }

  .div-block-2 {
    width: 100%;
  }

  .text-block-4 {
    opacity: .4;
    font-size: 14px;
  }

  .collection-item {
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
  }

  .heading_wrap {
    width: 90%;
  }

  .container {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .sub_text_dark {
    font-size: 16px;
    font-weight: 300;
  }

  .collection-item-2 {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .image {
    background-image: none;
    height: 100%;
    line-height: 0;
  }

  .div-block-5 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .div-block-7 {
    background-image: none;
    line-height: 0;
  }

  .div-block-8 {
    height: auto;
    padding: 0 1rem;
  }

  .text-block-5 {
    padding-bottom: 10px;
  }

  .startups_list {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .testimonio_txt {
    font-size: 1rem;
  }

  .owner_wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-9 {
    justify-content: center;
    align-items: center;
  }

  .text-block-7 {
    font-size: 1.2rem;
  }

  .collection-item-4 {
    padding: 1.5rem;
  }

  .text-block-8 {
    padding-bottom: 10px;
  }

  .heading_wrap-2 {
    width: 90%;
  }

  .txt-display.scroll-highlight {
    font-size: 2rem;
    font-weight: 500;
  }

  .swiper-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .swiper-slide {
    width: 100%;
    min-height: auto;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .no_tocar_frase {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .collection-list-3 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .swiper-navigation {
    margin-top: 2rem;
  }

  .footer_txt {
    color: var(--800);
  }

  .content_card_jaime {
    padding: 15px;
  }

  .image-5 {
    height: auto;
  }

  .div-block-12 {
    z-index: 5;
  }

  .img_txt {
    height: 35rem;
    top: -2%;
    left: -10%;
  }

  .section-5 {
    padding: 3.5rem 2.5rem;
  }

  .right-arrow.estilo {
    display: none;
  }

  .tes_pagination {
    margin-top: .25rem;
  }

  .left-arrow.estilo {
    display: none;
  }

  .text-block-11 {
    font-size: 1rem;
  }

  .div-block-13 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .div-block-14 {
    justify-content: center;
    align-items: center;
  }

  .text-block-13 {
    text-align: center;
  }

  .hand_mobile {
    justify-content: flex-end;
    align-items: center;
    height: 4rem;
    display: flex;
  }

  .hand_mobile.hide.no-hide {
    display: flex;
  }

  .image-7 {
    width: 2.5rem;
    transform: rotate(-12deg);
  }
}

#w-node-bc3d16ac-3234-79ed-c2d3-99939c5b9097-60a93437, #w-node-efd69b65-81cd-bc89-0e0d-15211aea424d-60a93437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-baf29804-cf32-8ed0-ae6b-1d71ccfa2d95-60a93437 {
  place-self: stretch center;
}

#w-node-fdf6862f-e12e-d5ae-138f-2ac4e7e8fe2e-60a93437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-abad23f6-3206-d95e-518e-2548f4c469b0-f4c46996 {
  justify-self: end;
}

#w-node-abad23f6-3206-d95e-518e-2548f4c4699b-f4c46996 {
  justify-self: center;
}

#w-node-e7e52461-2e87-3abf-710f-75ecdb9ea0df-60a93440 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_71c7ba8d-5400-61c0-f158-3059e3081963-60a93437 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e7e52461-2e87-3abf-710f-75ecdb9ea0df-60a93440, #w-node-b170b778-91f3-a691-491a-53d43b7c593f-60a93440, #w-node-_167a9262-f5dd-6e48-6c33-3bad0ee38821-60a93440 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_05c97b58-b1ac-eabe-afbc-3861dce3b03d-60a93437 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fdf6862f-e12e-d5ae-138f-2ac4e7e8fe2e-60a93437 {
    align-self: center;
  }
}


@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-VariableItalic.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
