:root {
  --white-smoke: #fbf9f6;
  --black: #323232;
  --dim-grey: #525252;
  --white: white;
  --light-steel-blue: #aca7fc;
  --tittle-text: #131315;
  --khaki: #eeff8b;
  --cornflower-blue: #87a2fe;
  --light-salmon: #fe9878;
  --grey-text: #55555e;
}

.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;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

p {
  margin-bottom: 0;
}

.navigation {
  background-color: var(--white-smoke);
  justify-content: space-between;
  align-items: center;
  min-height: 10svh;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.navigation.mobile {
  display: none;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

.container.nabvar {
  padding-left: 40px;
  padding-right: 40px;
}

.container.banner {
  max-width: 1000px;
  padding-left: 40px;
  padding-right: 40px;
}

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

.navbar-brand {
  max-width: 300px;
}

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.hero {
  background-color: var(--white-smoke);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.button-filled {
  grid-column-gap: 12px;
  grid-row-gap: 0px;
  background-color: var(--black);
  cursor: pointer;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  height: 46px;
  padding-bottom: 0;
  padding-left: 32px;
  padding-right: 32px;
  text-decoration: none;
  transition: all .5s;
  display: flex;
}

.button-filled:hover {
  background-color: #5d5d5d;
}

.button-filled.shadow {
  box-shadow: 0 4px 18px #0000003d;
}

.button-filled.shadow:hover {
  box-shadow: 0 4px 18px #0000000d;
}

.button-filled.shadow.bigger {
  min-width: 280px;
  height: auto;
  min-height: 58px;
}

.button-filled.shadow.hero-button {
  height: 48px;
  transition-duration: .8s;
}

.button-filled.shadow.hero-button:hover {
  background-color: #5d5d5d;
}

.button-filled.shadow.medium {
  min-width: 250px;
  height: auto;
  min-height: 50px;
}

.button-filled.shadow2 {
  border: 1px solid var(--black);
  box-shadow: 0 4px 18px #0000003d;
}

.button-filled.shadow2:hover {
  border: 1px solid #000;
  box-shadow: 0 4px 18px #0000000d;
}

.button-filled.shadow2.bigger {
  min-width: 280px;
  height: auto;
  min-height: 58px;
}

.button-filled.shadow2.hero-button {
  height: 48px;
  transition-duration: .6s;
}

.button-filled.shadow2.hero-button:hover {
  background-color: var(--dim-grey);
}

.button-filled.shadow2.medium {
  min-width: 250px;
  height: auto;
  min-height: 50px;
}

.button-filled.shadow3 {
  box-shadow: 0 4px 18px #0000003d;
}

.button-filled.shadow3:hover {
  box-shadow: 0 4px 18px #0000000d;
}

.button-filled.shadow3.bigger {
  min-width: 280px;
  height: auto;
  min-height: 58px;
}

.button-filled.shadow3.hero-button {
  height: 48px;
  transition-duration: .6s;
}

.button-filled.shadow3.hero-button:hover {
  background-color: var(--dim-grey);
}

.button-filled.shadow3.medium {
  min-width: 250px;
  height: auto;
  min-height: 50px;
}

.button-text-outlined {
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.buttons-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-end;
  display: flex;
}

.button-outlined {
  grid-column-gap: 12px;
  grid-row-gap: 0px;
  border: 1px solid var(--black);
  color: var(--black);
  cursor: pointer;
  background-color: #0000;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  height: 46px;
  padding: 0 32px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all .5s;
  display: flex;
}

.button-text-filled {
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.button-text-filled.bigger {
  font-size: 22px;
}

.button-text-filled.medium {
  font-size: 20px;
}

.button-text-filled.small {
  font-size: 18px;
}

._2-col-wrapper {
  align-items: stretch;
  display: flex;
}

.col-1 {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 70%;
  display: flex;
}

.icon-text {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
}

.heading-1 {
  color: var(--black);
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 110%;
}

.violet-span {
  color: var(--light-steel-blue);
  display: block;
}

.hero-paragraph {
  color: var(--dim-grey);
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.hero-paragraph.left-space {
  margin-left: 10px;
}

.hero-paragraph.left-space.black {
  color: var(--black);
}

.hero-paragraph.left-space.black.space {
  text-align: center;
  margin-top: 20px;
  margin-left: 0;
}

.hero-paragraph.left-space.black.s {
  font-size: 18px;
}

.text-block-hero-span {
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
  transition: all .4s;
}

.text-block-hero-span._100 {
  margin-left: -10px;
  transition: all .4s;
}

.text-block-hero-span.white {
  color: var(--white);
  font-size: 17px;
}

.text-block-hero-span.black {
  color: var(--tittle-text);
}

.text-block-hero-span.bold {
  font-weight: 500;
}

.text-block-hero-span.bold.l {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  display: flex;
}

.star-icon-outlined {
  width: 30px;
  height: 31px;
  transition: all .4s;
}

.button-icon {
  width: 15px;
}

.button-icon.light {
  z-index: 2;
  position: absolute;
  inset: auto auto 0% 0%;
}

.button-icon.dark {
  z-index: 1;
  position: absolute;
  inset: auto auto 0% 0%;
}

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

.bold-text.whie {
  color: var(--white);
  font-size: 17px;
}

.main {
  padding-top: 80px;
  padding-bottom: 100px;
}

.main.background {
  background-color: var(--white-smoke);
  background-image: linear-gradient(to bottom, var(--white-smoke), white);
}

.plan-banner {
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  border-radius: 35px;
  flex-direction: row;
  min-height: 560px;
  padding: 60px;
  display: flex;
  position: sticky;
  top: 100px;
}

.plan-banner.independiente {
  background-color: var(--khaki);
  margin-bottom: 0;
  top: 60px;
}

.plan-banner.mantenimiento-tecnico {
  background-color: var(--cornflower-blue);
  margin-bottom: 0;
  top: 100px;
}

.precio-plan {
  grid-column-gap: 24px;
  flex-wrap: nowrap;
  align-items: center;
  display: flex;
}

.tagline-plan {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: -16px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  line-height: 100%;
}

.tagline-plan.white {
  color: var(--white);
}

.paragraph-plan {
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.paragraph-plan.white {
  color: var(--white);
}

.paragraph-plan.white.testimonio {
  color: #fff;
  font-size: 21px;
}

.plan-inner-block {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 550px;
  display: flex;
}

.plan-inner-block.testimonio {
  width: 600px;
}

.heading-2 {
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
}

.heading-2.white {
  color: var(--white);
}

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

.text-block-2 {
  color: var(--black);
  text-align: left;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}

.text-block-2.white {
  color: var(--white);
}

.text-block-2.white.testimonio {
  font-size: 22px;
}

.precio-plan-span {
  color: var(--black);
  flex: none;
  font-family: Poppins, sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 100%;
}

.precio-plan-span.white {
  color: var(--white);
}

.precio-plan-span.s {
  font-size: 35px;
  text-decoration: none;
}

.text-span {
  font-size: 32px;
  font-weight: 400;
}

.text-span.s {
  font-size: 16px;
  text-decoration: line-through;
}

.precio-plan-setup {
  background-color: #ffffff94;
  border-radius: 15px;
  flex: none;
  margin-top: 8px;
  padding: 10px 8px 8px;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 100%;
}

.plan-img {
  height: 100%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.plan-img.hide-desktop {
  display: none;
}

.planes-wrapper {
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
  position: relative;
}

.partners-y-alianzas {
  margin-top: 100px;
}

.partners-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  justify-content: space-between;
  margin-top: 40px;
  display: flex;
}

.partner-img {
  opacity: .5;
  filter: invert() saturate(0%);
  width: 137px;
  height: 137px;
  transition: all 1s;
}

.partner-img:hover {
  opacity: 1;
  filter: saturate();
}

.inner-container {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

.features {
  background-color: #fbf9f6;
  padding-top: 80px;
  padding-bottom: 80px;
}

._6-features {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 40px;
  display: flex;
  position: relative;
}

.feature-banner {
  border-radius: 24px;
  align-items: center;
  min-height: 280px;
  padding: 60px 50px 60px 40px;
  display: flex;
  position: sticky;
}

.feature-banner.color1 {
  background-color: var(--light-steel-blue);
  top: 60px;
}

.feature-banner.color2 {
  background-color: var(--khaki);
  top: 80px;
}

.feature-banner.color3 {
  background-color: var(--light-salmon);
  top: 100px;
}

.feature-banner.color4 {
  background-color: var(--cornflower-blue);
  top: 120px;
}

.feature-banner.color5 {
  background-color: var(--khaki);
  top: 140px;
}

.feature-banner.color6 {
  background-color: var(--light-steel-blue);
  background-color: var(--light-salmon);
  top: 160px;
}

.feature-banner.color8 {
  background-color: var(--khaki);
  top: 180px;
}

.feature-banner.color7 {
  background-color: var(--light-steel-blue);
  top: 180px;
}

.feature-img {
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  padding-top: 4px;
}

.feature-info {
  grid-column-gap: 0px;
  grid-row-gap: 20px;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.feature-h3 {
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 120%;
}

.feature-paragraph {
  color: var(--dim-grey);
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
}

.feature-icon {
  object-fit: scale-down;
  width: 100%;
  height: 100%;
}

.feature-icon.capa {
  filter: contrast(70%);
}

.feature-icon.skew {
  transform: skew(0deg, -10deg);
}

.tabs-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  margin-top: 140px;
  display: flex;
}

.violet-span-inline {
  color: var(--light-steel-blue);
  display: inline;
}

.tabs-menu {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  margin-right: 60px;
  display: flex;
}

.tabs {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.tab {
  grid-column-gap: 20px;
  background-color: #0000;
  border-radius: 24px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.tab.w--current {
  background-color: var(--khaki);
  border-radius: 24px;
  transition: all .5s;
}

.tab-text {
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
}

.tabs-content {
  background-color: var(--white);
  border-radius: 30px;
  width: 50%;
  min-height: 360px;
}

.tab-icon-filled, .tab-icon-outline {
  position: absolute;
}

.tab-icon-wrapper {
  width: 58px;
  height: 58px;
  position: relative;
}

.tab-pane {
  color: var(--dim-grey);
  padding: 40px;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
}

.listo-para-elegir {
  background-color: var(--white-smoke);
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-validador {
  z-index: 99;
  grid-column-gap: 16px;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background-color: #fff9;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  padding: 20px 24px;
  display: flex;
  position: absolute;
  inset: 26% auto auto 22%;
  box-shadow: 0 6px 16px #4545451a;
}

.hero-validador._2 {
  inset: auto auto 32% 20%;
}

.hero-validador._3 {
  background-color: #ffffffb3;
  inset: 35% -30px auto auto;
}

.validador-text {
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 130%;
}

.bold-text-2 {
  letter-spacing: .3px;
  font-size: 23px;
  font-weight: 600;
}

.validador-icon {
  width: 40px;
  height: 40px;
}

.validador-icon._2 {
  transform: rotate(-9deg);
}

.hero-img {
  z-index: 20;
  object-fit: contain;
  max-width: 130%;
  margin-left: -13%;
  padding-top: 10px;
  position: static;
  inset: auto -100px 0% auto;
}

.hero-img-wrapper {
  align-items: flex-start;
  width: 55%;
  height: 85svh;
  min-height: 800px;
  display: flex;
  position: relative;
}

.plan-banner-3 {
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  border-radius: 35px;
  flex-direction: row;
  padding: 60px;
  display: flex;
  position: sticky;
  top: 100px;
}

.plan-banner-3.wp-team {
  background-color: var(--light-salmon);
  margin-bottom: 0;
  top: 140px;
}

.faq-content-wrap {
  background-color: #0000;
  display: block;
  position: static;
  overflow: hidden;
}

.faq-content-wrapper {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  margin-top: 40px;
  display: flex;
}

.body-small {
  color: var(--dim-grey);
  text-align: left;
  letter-spacing: 0;
  margin-bottom: 10px;
  padding-top: 12px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.icon-wrapper {
  cursor: pointer;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .4s;
  display: flex;
  position: relative;
}

.icon-wrapper:hover {
  background-color: #0000;
}

.faq-name {
  color: var(--black);
  text-align: left;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
}

.faq-item {
  width: 100%;
  font-size: 16px;
  display: block;
}

.faq-item-toggle {
  border-bottom: 1px solid var(--dim-grey);
  color: #000;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-weight: 600;
  display: flex;
}

.faq-icon {
  object-fit: contain;
  background-color: #0000;
  width: 22px;
  height: 22px;
  position: absolute;
}

.tab-content {
  padding: 20px;
  line-height: 36px;
}

.faq-icon-2 {
  object-fit: contain;
  background-color: #0000;
  width: 22px;
  height: 22px;
  position: absolute;
}

.planes-wrapper-minimal {
  grid-row-gap: 40px;
  flex-direction: column;
  margin-top: 40px;
  display: flex;
}

.plan-banner-minimal {
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  border-radius: 35px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 270px;
  padding: 40px;
  display: flex;
  position: relative;
}

.plan-banner-minimal.independiente {
  background-color: var(--khaki);
}

.plan-banner-minimal.mantenimiento-tecnico {
  background-color: var(--cornflower-blue);
}

.plan-banner-minimal.wp-team {
  background-color: var(--light-salmon);
}

.inner-footer {
  grid-row-gap: 20px;
  background-color: var(--black);
  border-radius: 30px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 24px;
  display: flex;
}

.footer-container {
  background-color: var(--white-smoke);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
}

.image {
  width: 200px;
}

.footer-paragraph {
  color: var(--white);
  text-align: center;
  width: 700px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.footer-paragraph.smaller {
  font-size: 14px;
}

.footer-aviso-legal {
  color: var(--white);
  font-family: Poppins, sans-serif;
  line-height: 150%;
}

.link {
  text-decoration: none;
}

.plan-inner-block-right {
  z-index: 1;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.plan-inner-block-left {
  grid-row-gap: 32px;
  flex-direction: column;
  align-items: flex-start;
  width: 48%;
  display: flex;
}

.precio-plan-minimal {
  grid-column-gap: 24px;
  flex-flow: column;
  align-items: flex-end;
  display: flex;
}

.plan-img-minimal {
  z-index: 0;
  opacity: .5;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.precio-plan-span-minimal {
  color: var(--black);
  flex: none;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 100%;
}

.precio-plan-span-minimal.white {
  color: var(--white);
}

.tagline-plan-minimal {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: -24px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  line-height: 100%;
}

.tagline-plan-minimal.white {
  color: var(--white);
}

.text-span-minimal {
  font-size: 24px;
  font-weight: 400;
}

.precio-plan-setup-miminal {
  text-align: center;
  background-color: #ffffff94;
  border-radius: 15px;
  flex: none;
  margin-top: 8px;
  padding: 10px 8px 8px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
}

.precio-plan-setup-miminal.oculto {
  display: none;
}

.cta-container {
  grid-row-gap: 40px;
  flex-direction: column;
  margin-top: 180px;
  display: flex;
}

.cta-container.sales-hackers {
  margin-top: 40px;
}

.cta-banner {
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  background-color: var(--white);
  border-radius: 35px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 944px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
  position: relative;
}

.cta-img {
  z-index: 0;
  height: 130%;
  position: absolute;
  inset: auto 5% 0% auto;
}

.page-heading-1 {
  color: var(--black);
  align-self: center;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 42px;
  font-weight: 600;
}

.paragraph-2 {
  color: var(--dim-grey);
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.inner-container-legal {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.page-footer {
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.cta-plan-inner-block {
  grid-row-gap: 32px;
  flex-direction: column;
  align-items: flex-start;
  width: 48%;
  display: flex;
}

.feature-banner-inner {
  grid-column-gap: 20px;
  align-items: flex-start;
  display: flex;
}

.aviso-legal-div {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.aviso-legal-div.slide-in {
  transition: all .3s;
}

.legal-heading {
  align-self: center;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 130%;
}

.heading-4, .heading-5, .heading-6, .heading-7, .heading-8 {
  align-self: center;
}

.star-icon-outlined-footer {
  width: 24px;
  height: 24px;
  transition: all .4s;
}

.testimonios {
  padding-top: 100px;
  padding-bottom: 40px;
}

.testimonio-baanner {
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  background-color: var(--light-steel-blue);
  border-radius: 35px;
  flex-direction: row;
  width: 80%;
  min-height: 360px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
  display: flex;
  position: sticky;
  top: 100px;
}

.testimonio-baanner.independiente {
  background-color: var(--khaki);
  margin-bottom: 0;
  top: 60px;
}

.testimonio-baanner.mantenimiento-tecnico {
  background-color: var(--cornflower-blue);
  margin-bottom: 0;
  top: 100px;
}

.cargo-span {
  color: #fff9;
  font-size: 18px;
  font-weight: 400;
}

.image-2 {
  width: 260px;
}

.ratings-img {
  width: 140px;
  transition: all .4s;
}

.button-icon-wrapper {
  width: 15px;
  height: 15px;
  position: relative;
}

.button-icon-light {
  z-index: 2;
  width: 15px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.button {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
}

.button-icon-dark {
  z-index: 1;
  width: 15px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.button-outline {
  grid-column-gap: 12px;
  grid-row-gap: 0px;
  background-color: var(--white);
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  height: 46px;
  padding-bottom: 0;
  padding-left: 32px;
  padding-right: 32px;
  text-decoration: none;
  transition: all .5s;
  display: flex;
}

.button-outline:hover {
  background-color: #161616;
}

.button-outline.shadow {
  box-shadow: 0 4px 18px #0000003d;
}

.button-outline.shadow:hover {
  box-shadow: 0 4px 18px #0000000d;
}

.button-outline.shadow.bigger {
  min-width: 280px;
  height: auto;
  min-height: 58px;
}

.button-outline.shadow.hero-button {
  height: 48px;
  transition-duration: .8s;
}

.button-outline.shadow.hero-button:hover {
  background-color: #707070;
}

.button-outline.shadow.medium {
  min-width: 250px;
  height: auto;
  min-height: 50px;
}

.button-outline.shadow2 {
  box-shadow: 0 4px 18px #0000003d;
}

.button-outline.shadow2:hover {
  box-shadow: 0 4px 18px #0000000d;
}

.button-outline.shadow2.bigger {
  min-width: 280px;
  height: auto;
  min-height: 58px;
}

.button-outline.shadow2.hero-button {
  height: 48px;
  transition-duration: .6s;
}

.button-outline.shadow2.hero-button:hover {
  background-color: var(--dim-grey);
}

.button-outline.shadow2.medium {
  min-width: 250px;
  height: auto;
  min-height: 50px;
}

.button-outline.shadow3 {
  box-shadow: 0 4px 18px #0000003d;
}

.button-outline.shadow3:hover {
  box-shadow: 0 4px 18px #0000000d;
}

.button-outline.shadow3.bigger {
  min-width: 280px;
  height: auto;
  min-height: 58px;
}

.button-outline.shadow3.hero-button {
  height: 48px;
  transition-duration: .6s;
}

.button-outline.shadow3.hero-button:hover {
  background-color: var(--dim-grey);
}

.button-outline.shadow3.medium {
  min-width: 250px;
  height: auto;
  min-height: 50px;
}

.button-text-outline {
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.button-text-outline.bigger {
  font-size: 22px;
}

.button-text-outline.medium {
  font-size: 20px;
}

.button-text-outline.small {
  font-size: 18px;
}

.main-copy {
  padding-top: 80px;
  padding-bottom: 100px;
}

.main-copy.background {
  background-color: var(--white-smoke);
  background-image: linear-gradient(to bottom, var(--white-smoke), white);
}

.heading-title-wrap {
  width: 100%;
  max-width: 550px;
}

.feature-card-column {
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.feature-card-column.blue {
  color: #70c9d7;
}

.feature-card-column.purple {
  color: #8870d7;
}

.feature-card-column.red {
  color: #d77070;
}

.feature-card-column.green {
  color: #70d789;
}

.feature-card-column.yellow {
  color: #d7c970;
}

.h6-heading {
  color: #131315;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.paragraph-small {
  color: #55555e;
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.feature-card-b {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: left;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  flex: 1;
  align-items: flex-start;
  width: 325px;
  padding: 32px 20px;
  display: flex;
}

.feature-card-b:hover {
  box-shadow: 0 4px 20px #0000001f;
}

.feature-line-v {
  background-color: #e4e4e7;
  width: 1.5px;
  height: 50px;
}

.h2-heading {
  color: var(--tittle-text);
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 64px;
}

.h2-heading._70 {
  width: 90%;
}

.overline {
  color: #9797a1;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.overline.text-color-purple {
  color: var(--light-steel-blue);
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.margin-bottom-12 {
  margin-bottom: 12px;
}

.grid-three-column {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-wrap-r {
  grid-column-gap: 40px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin-bottom: 56px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.paragraph-regular {
  color: var(--grey-text);
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 32px;
}

.paragraph-regular.black {
  color: var(--black);
}

.icon-large {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.section-large {
  padding: 0 0%;
  position: relative;
}

.highlight-span {
  color: var(--white);
  background-color: #323232;
  border-radius: 32px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 15.5px;
  text-decoration: none;
  display: inline-block;
}

.container-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.div-color {
  border: 1px solid #000;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 2px;
  display: flex;
}

.div-color.amarillo {
  background-color: var(--khaki);
  border-style: none;
}

.div-color.naranja {
  background-color: var(--light-salmon);
  border-style: none;
}

.div-color.azul {
  background-color: var(--cornflower-blue);
  border-style: none;
}

.div-color.morado {
  background-color: var(--light-steel-blue);
  border-style: none;
}

.image-3 {
  width: 22px;
}

.grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 20px;
  margin-bottom: 20px;
}

.grid-second {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.image-4 {
  width: 24px;
}

.image-5, .image-6, .image-7 {
  width: 20px;
}

.div-block-2 {
  margin-bottom: 40px;
}

.responsive {
  display: none;
}

.div-block-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-span-2 {
  font-weight: 500;
  text-decoration: underline;
}

.link-2 {
  color: var(--black);
  text-decoration: none;
}

.div-block-4 {
  align-items: center;
  display: flex;
}

.image-8 {
  margin-left: 10px;
}

.image-8.space {
  margin-right: 10px;
}

.div-block-5 {
  align-items: center;
  display: flex;
}

.text-span-3 {
  color: var(--black);
  font-weight: 600;
}

.div-block-6 {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-7 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-8 {
  margin-top: 40px;
}

.div-block-9 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sub {
  text-decoration: line-through;
}

._2-col-wrapper-grid {
  align-items: stretch;
  display: flex;
}

.image-8-1 {
  background-color: #14101b;
  border-radius: 50px;
  width: 60px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 2px;
}

.image-8-1.space {
  margin-right: 10px;
}

.image-8-2 {
  width: 160px;
  margin-left: 10px;
}

.image-8-2.space {
  margin-right: 10px;
}

.image-8-2.dos {
  width: 180px;
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
  }

  .container.banner {
    max-width: 1130px;
  }

  .col-1 {
    width: 65%;
  }

  .bold-text {
    font-weight: 700;
  }

  .plan-inner-block {
    width: 650px;
  }

  .text-block-2 {
    font-weight: 600;
  }

  .precio-plan-setup.oculto {
    display: none;
  }

  .hero-validador, .hero-validador._2 {
    left: 10%;
  }

  .hero-img {
    margin-left: -22%;
  }

  .precio-plan-setup-miminal.oculto {
    display: none;
  }

  .heading-title-wrap {
    max-width: 650px;
  }

  .feature-card-column.green {
    height: 100%;
  }

  .h6-heading {
    font-family: Poppins, sans-serif;
    line-height: 28px;
  }

  .paragraph-small {
    color: var(--grey-text);
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }

  .feature-card-b {
    box-shadow: none;
    width: 376px;
    padding-left: 32px;
    padding-right: 32px;
    transition-property: none;
  }

  .feature-card-b:hover {
    box-shadow: 0 4px 20px #0000001f;
  }

  .feature-line-v {
    height: 55%;
  }

  .h2-heading {
    font-family: Poppins, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 64px;
  }

  .h2-heading.space {
    margin-bottom: 20px;
  }

  .h2-heading._70 {
    width: 80%;
  }

  .overline.text-color-purple {
    color: var(--light-steel-blue);
    font-family: Poppins, sans-serif;
    font-size: 20px;
    line-height: 24px;
  }

  .heading-wrap-r {
    grid-column-gap: 40px;
    grid-row-gap: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1.3fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .paragraph-regular {
    color: #55555e;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    line-height: 32px;
  }

  .section-large {
    padding: 0 0%;
  }

  .highlight-span {
    color: #fff;
    background-color: #323232;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
  }

  .container-large {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-color {
    border: 1px solid #000;
    border-radius: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 2px;
    display: flex;
  }

  .image-3 {
    width: 45px;
    height: 22px;
  }

  .grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .grid-second {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .image-4 {
    width: 22px;
  }

  .image-5 {
    width: 19px;
  }

  .div-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    display: flex;
  }

  .div-block-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    display: flex;
  }

  .image-8-2 {
    width: 180px;
  }

  .image-8-2.dos {
    width: 190px;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: 1300px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .container.banner {
    max-width: 1300px;
  }

  .inner-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-validador {
    left: 5%;
  }

  .hero-validador._2 {
    left: 6%;
  }

  .image-8-2 {
    width: 180px;
  }

  .image-8-2.dos {
    width: 200px;
  }
}

@media screen and (max-width: 991px) {
  .navigation.mobile {
    display: flex;
  }

  .navigation.desktop {
    display: none;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .container.banner {
    max-width: 700px;
  }

  .navbar-brand {
    max-width: 200px;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-two {
    z-index: 99;
    grid-row-gap: 20px;
    background-color: #fff;
    border-radius: 16px;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    display: flex;
    position: relative;
  }

  .menu-button {
    color: var(--black);
    padding: 12px;
  }

  .menu-button.w--open {
    color: var(--black);
    background-color: #0000;
  }

  .hero {
    padding-top: 40px;
  }

  .button-filled.shadow.bigger, .button-filled.shadow.medium, .button-filled.shadow2.bigger, .button-filled.shadow2.medium, .button-filled.shadow3.bigger, .button-filled.shadow3.medium {
    min-height: 48px;
  }

  .button-text-outlined {
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    text-decoration: none;
  }

  .button-text-filled, .button-text-filled.bigger, .button-text-filled.medium {
    font-size: 18px;
  }

  ._2-col-wrapper {
    flex-wrap: wrap;
  }

  .col-1 {
    align-items: center;
    width: 100%;
  }

  .icon-text, .heading-1, .hero-paragraph {
    text-align: center;
  }

  .plan-banner {
    min-height: auto;
    padding: 30px;
  }

  .plan-banner.independiente {
    top: 30px;
  }

  .plan-banner.mantenimiento-tecnico {
    top: 60px;
  }

  .precio-plan {
    flex-wrap: wrap;
  }

  .tagline-plan {
    font-size: 18px;
  }

  .paragraph-plan {
    font-size: 16px;
  }

  .paragraph-plan.white.testimonio {
    font-size: 18px;
  }

  .plan-inner-block {
    width: 60%;
  }

  .plan-inner-block.testimonio {
    width: 360px;
  }

  .heading-2 {
    font-size: 36px;
  }

  .heading-2.cta {
    font-size: 30px;
  }

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

  .text-block-2.white.testimonio {
    font-size: 20px;
  }

  .precio-plan-span {
    font-size: 40px;
  }

  .precio-plan-setup {
    font-size: 18px;
  }

  .plan-img {
    max-width: 46%;
    height: auto;
  }

  .plan-img.hide-mobile {
    max-width: 42%;
  }

  .partners-y-alianzas {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .partners-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .partner-img {
    width: 120px;
    height: 120px;
  }

  .inner-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .features-wrapper {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  ._6-features {
    grid-row-gap: 30px;
  }

  .feature-banner {
    min-height: 200px;
    padding: 30px;
  }

  .feature-img {
    width: 45px;
    height: 45px;
  }

  .feature-h3 {
    font-size: 28px;
  }

  .feature-paragraph {
    font-size: 16px;
  }

  .tabs-wrapper {
    margin-top: 100px;
  }

  .tabs-menu {
    grid-row-gap: 20px;
    margin-right: 40px;
  }

  .tab {
    padding: 12px 20px;
  }

  .tab-text {
    font-size: 18px;
  }

  .tabs-content {
    min-height: auto;
  }

  .tab-pane {
    padding: 30px;
  }

  .tab-paragraph {
    font-size: 16px;
  }

  .hero-validador {
    z-index: 98;
    padding: 12px 16px;
    inset: 25% auto auto 20%;
  }

  .hero-validador._2 {
    inset: auto auto 30% 17%;
  }

  .hero-validador._3 {
    inset: 35% 0% auto auto;
  }

  .validador-text {
    font-size: 15px;
  }

  .bold-text-2 {
    font-size: 20px;
  }

  .validador-icon {
    width: 24px;
  }

  .hero-img {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-img-wrapper {
    z-index: 0;
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .plan-banner-3 {
    padding: 30px;
  }

  .plan-banner-3.wp-team {
    top: 90px;
  }

  .faq-content-wrapper {
    width: 100%;
  }

  .body-small {
    font-size: 16px;
  }

  .faq-name {
    font-size: 18px;
    font-weight: 500;
  }

  .plan-banner-minimal {
    padding: 30px;
  }

  .footer-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .precio-plan-span-minimal {
    font-size: 40px;
  }

  .tagline-plan-minimal, .precio-plan-setup-miminal {
    font-size: 18px;
  }

  .cta-container {
    margin-top: 100px;
  }

  .cta-img {
    height: 110%;
  }

  .mobile-nav-link {
    line-height: 100%;
    text-decoration: none;
  }

  .inner-container-legal {
    padding-left: 24px;
    padding-right: 24px;
  }

  .testimonios {
    padding-top: 80px;
  }

  .testimonio-baanner {
    width: 100%;
    min-height: auto;
    padding: 30px;
  }

  .testimonio-baanner.independiente {
    top: 30px;
  }

  .testimonio-baanner.mantenimiento-tecnico {
    top: 60px;
  }

  .image-2 {
    width: 200px;
  }

  .button-outline.shadow.bigger, .button-outline.shadow.medium, .button-outline.shadow2.bigger, .button-outline.shadow2.medium, .button-outline.shadow3.bigger, .button-outline.shadow3.medium {
    min-height: 48px;
  }

  .button-text-outline, .button-text-outline.bigger, .button-text-outline.medium {
    font-size: 18px;
  }

  .h2-heading {
    font-size: 35px;
  }

  .h2-heading._70 {
    width: 100%;
  }

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

  .heading-wrap-r {
    flex-direction: column;
    align-content: end;
    align-items: end;
  }

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

  .responsive {
    flex-direction: column;
    display: flex;
  }

  .div-block-3 {
    display: none;
  }

  ._2-col-wrapper-grid {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .hero {
    padding-top: 40px;
  }

  .button-filled, .button-filled.shadow.bigger {
    min-width: 100%;
  }

  .button-filled.shadow.hero-button {
    grid-column-gap: 0px;
    min-width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-filled.shadow2.bigger, .button-filled.shadow2.medium, .button-filled.shadow3.bigger, .button-filled.shadow3.medium {
    min-width: 100%;
  }

  .heading-1 {
    font-size: 46px;
  }

  .text-block-hero-span {
    text-align: left;
    font-size: 18px;
  }

  .button-icon {
    margin-left: 10px;
  }

  .main {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .plan-banner {
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  .precio-plan {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .plan-inner-block, .plan-inner-block.testimonio {
    width: 100%;
  }

  .heading-2.cta {
    font-size: 28px;
  }

  .precio-plan-span {
    font-size: 44px;
  }

  .text-span {
    font-size: 22px;
  }

  .precio-plan-setup {
    text-align: center;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 22px;
  }

  .precio-plan-setup.oculto, .plan-img.hide-mobile {
    display: none;
  }

  .plan-img.hide-desktop {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: static;
  }

  .plan-img.hide-desktop.card3 {
    border-radius: 30px;
    max-width: 100%;
    margin-right: -30px;
  }

  .partner-img {
    width: 90px;
    height: 90px;
  }

  .features {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  ._6-features {
    grid-row-gap: 20px;
  }

  .feature-banner {
    min-height: auto;
  }

  .feature-img {
    padding-top: 0;
  }

  .feature-h3 {
    font-size: 24px;
  }

  .tabs-wrapper {
    grid-row-gap: 30px;
    margin-top: 60px;
  }

  .tabs-menu {
    width: 100%;
    margin-bottom: 40px;
  }

  .tabs {
    flex-direction: column;
  }

  .tabs-content {
    width: 100%;
  }

  .listo-para-elegir {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-img-wrapper {
    margin-left: -20px;
  }

  .plan-banner-3 {
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  .icon-wrapper {
    width: 10%;
    height: 38px;
  }

  .faq-name {
    white-space: normal;
    flex-wrap: wrap;
    width: 90%;
    line-height: 140%;
  }

  .faq-item-toggle {
    flex-direction: row;
    justify-content: space-between;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }

  .tab-content {
    padding-left: 0;
    padding-right: 0;
  }

  .faq-icon-2 {
    width: 18px;
    height: 18px;
  }

  .plan-banner-minimal {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
  }

  .footer-paragraph {
    width: 100%;
  }

  .plan-inner-block-right {
    align-items: center;
    width: 100%;
  }

  .plan-inner-block-left {
    width: 100%;
  }

  .precio-plan-minimal {
    align-items: center;
  }

  .plan-img-minimal {
    opacity: .2;
    width: 60%;
    max-width: none;
    height: auto;
    inset: auto 0% 0% auto;
  }

  .precio-plan-span-minimal {
    font-size: 48px;
  }

  .precio-plan-setup-miminal {
    font-size: 20px;
  }

  .cta-container {
    margin-top: 60px;
  }

  .cta-banner {
    flex-flow: row;
    align-items: center;
    min-height: 200px;
    padding: 0 0 0 30px;
  }

  .cta-banner.center {
    flex-direction: row;
    display: flex;
  }

  .cta-img {
    max-width: 35%;
    height: auto;
    margin-top: -20px;
    position: static;
    right: 2%;
  }

  .cta-plan-inner-block {
    grid-row-gap: 20px;
    align-items: flex-start;
    width: 50rem;
  }

  .feature-banner-inner {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .testimonios {
    padding-top: 60px;
  }

  .testimonio-baanner {
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  .button-outline, .button-outline.shadow.bigger, .button-outline.shadow.medium, .button-outline.shadow2.bigger, .button-outline.shadow2.medium, .button-outline.shadow3.bigger, .button-outline.shadow3.medium {
    min-width: 100%;
  }

  .main-copy {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .feature-card-b {
    width: 370px;
  }

  .h2-heading {
    font-size: 44px;
  }

  .h2-heading._70 {
    width: 90%;
  }

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

  .heading-wrap-r {
    grid-template-columns: 1.2fr;
  }

  .section-large {
    padding-top: 0;
    padding-bottom: 0;
  }

  .grid, .grid-second, .grid-2 {
    grid-template-columns: 1fr;
  }

  .div-block-5 {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .navigation.mobile {
    min-height: 45px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .navbar-brand {
    max-width: 150px;
  }

  .nav-menu-two {
    flex-direction: column;
    align-items: center;
  }

  .button-filled.shadow.medium {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .button-text-filled {
    text-align: center;
  }

  .col-1 {
    display: flex;
  }

  .icon-text {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    align-items: center;
  }

  .icon-text.footer {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .icon-text.vert {
    flex-direction: column;
  }

  .heading-1 {
    font-size: 34px;
  }

  .hero-paragraph {
    font-size: 16px;
  }

  .hero-paragraph.left-space.black {
    margin-top: 10px;
    margin-left: 0;
  }

  .text-block-hero-span {
    flex: none;
    font-size: 15px;
  }

  .text-block-hero-span._100.testimonio {
    margin-left: 0;
  }

  .text-block-hero-span.bold.l {
    text-align: center;
    font-size: 30px;
  }

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

  .main {
    padding-top: 60px;
  }

  .main.cards {
    padding-top: 20px;
  }

  .plan-banner {
    padding-top: 36px;
    top: 20px;
  }

  .plan-banner.independiente {
    padding-left: 20px;
    padding-right: 20px;
    top: 15px;
  }

  .plan-banner.mantenimiento-tecnico {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    top: 65px;
  }

  .tagline-plan {
    margin-bottom: -10px;
  }

  .paragraph-plan {
    font-size: 15px;
  }

  .paragraph-plan.white.testimonio {
    font-size: 16px;
  }

  .plan-inner-block {
    grid-row-gap: 14px;
  }

  .plan-inner-block.testimonio {
    align-items: flex-start;
  }

  .heading-2 {
    font-size: 24px;
  }

  .heading-2.cta {
    text-align: center;
    font-size: 22px;
  }

  .text-block-2 {
    font-size: 15px;
  }

  .text-block-2.white.testimonio {
    font-size: 18px;
  }

  .text-span {
    font-size: 20px;
  }

  .precio-plan-setup {
    font-size: 18px;
  }

  .precio-plan-setup.oculto {
    display: none;
  }

  .plan-img.hide-desktop {
    object-fit: cover;
    max-width: 80%;
  }

  .planes-wrapper {
    grid-row-gap: 80px;
    padding-top: 20px;
  }

  .partners-y-alianzas {
    margin-top: 40px;
  }

  .partner-img {
    width: 70px;
    height: 70px;
  }

  .inner-container {
    max-width: none;
  }

  ._6-features {
    grid-row-gap: 40px;
  }

  .feature-banner {
    min-height: 330px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .feature-banner.color1, .feature-banner.color2, .feature-banner.color3, .feature-banner.color4 {
    margin-bottom: 0;
  }

  .feature-banner.color5 {
    margin-bottom: 10px;
  }

  .feature-banner.color6 {
    min-height: 361.6px;
    margin-bottom: 0;
  }

  .feature-banner.color8 {
    min-height: 361.6px;
  }

  .feature-banner.color7 {
    margin-bottom: 10px;
  }

  .feature-img {
    width: 40px;
    height: 40px;
  }

  .feature-info {
    grid-row-gap: 16px;
  }

  .feature-h3 {
    font-size: 24px;
  }

  .tabs-menu {
    grid-row-gap: 4px;
  }

  .tab.w--current {
    align-items: center;
  }

  .tab-icon-wrapper {
    align-items: center;
    width: 45px;
    display: flex;
  }

  .listo-para-elegir {
    padding-top: 60px;
  }

  .hero-validador {
    inset: 20% auto auto 5%;
  }

  .hero-validador._2 {
    inset: auto auto 9% 10%;
  }

  .hero-validador._3 {
    padding-left: 12px;
    padding-right: 12px;
    inset: 26% -28px auto auto;
  }

  .validador-text {
    font-size: 14px;
  }

  .bold-text-2 {
    font-size: 16px;
  }

  .validador-icon {
    width: 22px;
    height: 22px;
  }

  .hero-img-wrapper {
    max-width: 400px;
    margin-left: -12px;
  }

  .plan-banner-3.wp-team {
    min-height: 788px;
    padding-left: 20px;
    padding-right: 20px;
    top: 60px;
  }

  .faq-content-wrapper {
    margin-top: 20px;
  }

  .faq-name {
    margin-right: 20px;
  }

  .plan-banner-minimal.independiente, .plan-banner-minimal.mantenimiento-tecnico, .plan-banner-minimal.wp-team {
    padding-left: 24px;
    padding-right: 24px;
  }

  .inner-footer {
    border-radius: 0;
  }

  .footer-container {
    max-width: none;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .precio-plan-minimal {
    width: 100%;
  }

  .plan-img-minimal {
    width: 80%;
  }

  .precio-plan-span-minimal {
    font-size: 50px;
  }

  .text-span-minimal {
    font-size: 20px;
  }

  .precio-plan-setup-miminal {
    width: 100%;
    font-size: 18px;
  }

  .cta-container {
    margin-top: 100px;
  }

  .cta-banner {
    flex-direction: column;
    padding-top: 40px;
    padding-right: 30px;
    display: flex;
  }

  .cta-banner.hackers {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
  }

  .cta-banner.center {
    flex-direction: column;
  }

  .cta-banner.honos {
    padding: 20px 10px;
  }

  .cta-img {
    max-width: 70%;
    margin-top: 0;
  }

  .page-heading-1 {
    text-align: center;
    width: 100%;
  }

  .paragraph-2 {
    font-size: 16px;
  }

  .inner-container-legal {
    max-width: none;
  }

  .cta-plan-inner-block {
    width: auto;
  }

  .wrapper-centered-title {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .legal-heading {
    text-align: left;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
  }

  .testimonio-baanner {
    padding-top: 36px;
    top: 20px;
  }

  .testimonio-baanner.independiente {
    top: 15px;
  }

  .testimonio-baanner.mantenimiento-tecnico {
    margin-bottom: 0;
    top: 65px;
  }

  .ratings-img {
    width: 115px;
  }

  .button-text-outline {
    text-align: center;
  }

  .main-copy {
    padding-top: 60px;
  }

  .main-copy.cards {
    padding-top: 20px;
  }

  .h6-heading {
    white-space: pre-wrap;
  }

  .feature-card-b {
    flex-direction: column;
    width: auto;
  }

  .feature-line-v {
    display: none;
  }

  .h2-heading {
    font-size: 40px;
  }

  .h2-heading.space {
    text-align: center;
    line-height: 45px;
  }

  .h2-heading._70 {
    width: 100%;
    font-size: 35px;
    line-height: 45px;
  }

  .paragraph-regular {
    font-size: 16px;
  }

  .paragraph-regular.center {
    text-align: center;
    line-height: 24px;
  }

  .paragraph-regular.black {
    line-height: 26px;
  }

  .section-large {
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-4, .div-block-7 {
    flex-direction: column;
  }

  .image-8-2.dos {
    width: 160px;
  }
}


