@font-face {
  font-family: "Fa Brands 400";
  src: url('../fonts/fa-brands-400.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Solid 900";
  src: url('../fonts/fa-solid-900.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --light-grey: #d7dbdf;
  --yellow: #00a1fe;
  --dark-gray: #8d9094;
  --blanco: white;
  --dark-one: #121315;
  --dark-grey-four: #2d3036;
  --dark-two: #1e2024;
  --dark-three: #222428;
}

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

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

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

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

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

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

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

body {
  background-color: var(--black);
  color: #333;
  font-family: Outfit, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

h1 {
  color: var(--light-grey);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 128px;
  font-weight: 500;
  line-height: 132px;
}

h2 {
  color: var(--light-grey);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 120px;
  font-weight: 500;
  line-height: 130px;
}

h3 {
  color: var(--light-grey);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 84px;
  font-weight: 500;
  line-height: 96px;
}

h4 {
  color: var(--light-grey);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: 500;
  line-height: 70px;
}

h5 {
  color: var(--light-grey);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
}

h6 {
  color: var(--light-grey);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
}

p {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 36px;
}

ul {
  color: var(--light-grey);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 24px;
  line-height: 36px;
}

.navbar {
  background-color: var(--yellow);
  padding-top: 24px;
  padding-bottom: 24px;
  position: sticky;
  inset: 0% 0% auto;
}

.container {
  color: var(--dark-gray);
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
}

.nav-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.nav-link {
  color: var(--blanco);
  border: 1px solid #fff;
  border-radius: 7px;
  padding: 4px 12px;
  font-size: 16px;
  transition: all .4s;
}

.nav-link:hover {
  background-color: var(--blanco);
  color: var(--black);
  border: 1px solid #fff;
}

.nav-link.w--current {
  background-color: var(--blanco);
  color: var(--dark-one);
  border-color: #fff;
}

.nav-button-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-button-wrap.hide-on-desktop {
  display: none;
}

.nav-menu-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-button {
  z-index: 1;
  border: 1px solid var(--blanco);
  color: var(--blanco);
  border-radius: 100px;
  padding: 10px 30px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.nav-button-text {
  z-index: 99;
  position: relative;
}

.nav-button-bg {
  background-color: var(--blanco);
  border-radius: 100px;
  height: 0%;
  position: absolute;
  inset: 0%;
}

.nav-link-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.inner-hero {
  padding-top: 100px;
  padding-bottom: 100px;
}

.inner-hero-title-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.inner-hero-title {
  color: var(--light-grey);
}

.inner-hero-text-wrap {
  text-align: center;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.inner-hero-text {
  color: var(--light-grey);
  font-size: 24px;
  line-height: 36px;
}

.style-guide {
  padding-top: 60px;
  padding-bottom: 100px;
}

.style-guide-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  display: flex;
}

.style-guide-item-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.style-caption {
  background-color: var(--dark-grey-four);
  color: var(--light-grey);
  padding: 16px 48px;
  font-size: 48px;
  line-height: 56px;
  display: inline-flex;
}

.color-items-grid-wrap {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.color-single-item-box {
  height: 160px;
}

.color-single-item-box.color-item-box-one {
  background-color: var(--yellow);
}

.color-single-item-box.color-item-box-two {
  background-color: var(--light-grey);
}

.color-single-item-box.color-item-box-three {
  background-color: var(--dark-one);
}

.color-single-item-box.color-item-box-four {
  border: 1px solid var(--light-grey);
  background-color: var(--dark-two);
}

.color-single-item-box.color-item-box-five {
  border: 1px solid var(--light-grey);
  background-color: var(--dark-three);
}

.color-single-item-box.color-item-box-six {
  border: 1px solid var(--light-grey);
  background-color: var(--dark-grey-four);
}

.color-single-item-box.color-item-box-seveen {
  background-color: var(--dark-gray);
}

.color-single-item-box.color-item-box-eight {
  background-color: var(--black);
}

.color-single-item-box-content-wrap {
  background-color: var(--dark-grey-four);
  padding: 16px;
}

.color-name {
  color: var(--light-grey);
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.color-code {
  color: var(--light-grey);
  font-size: 18px;
  line-height: 28px;
}

.typography-items-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.typography-caption {
  background-color: var(--dark-grey-four);
  color: var(--light-grey);
  margin-bottom: 16px;
  padding: 8px 24px;
  font-size: 24px;
  line-height: 34px;
  display: inline-flex;
}

.paragraph-large {
  color: var(--light-grey);
  font-size: 32px;
  line-height: 40px;
}

.paragraph-medium {
  color: var(--light-grey);
  font-size: 24px;
  line-height: 36px;
}

.paragraph-small {
  color: var(--light-grey);
  font-size: 18px;
}

.button-single-item {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.secondary-button {
  z-index: 1;
  border: 1px solid var(--yellow);
  color: var(--light-grey);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 88px;
  padding: 10px 30px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.secondary-button.submit-button {
  background-color: var(--dark-two);
  border-style: solid;
  border-color: #4a4d51;
  font-size: 20px;
  line-height: 30px;
  transition: all .3s ease-in;
}

.secondary-button.submit-button:hover {
  background-color: var(--yellow);
  color: var(--dark-one);
}

.secondary-button-text {
  z-index: 99;
  color: var(--light-grey);
  font-size: 18px;
  position: relative;
}

.secondary-button-bg {
  background-color: var(--yellow);
  border-radius: 100%;
  height: 0%;
  position: absolute;
  inset: 0%;
}

.footer {
  padding-top: 140px;
}

.footer-items-gird-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 2.15fr .5fr .5fr;
  grid-auto-columns: 1fr;
  margin-bottom: 120px;
  display: grid;
}

.footer-item-wrap {
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.footer-logo {
  margin-bottom: 80px;
  text-decoration: none;
}

.social-icon-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.social-icon {
  color: var(--light-grey);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  text-decoration: none;
  transition: all .3s;
}

.social-icon:hover {
  color: var(--yellow);
}

.footer-link-items-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: var(--dark-grey-four);
  white-space: nowrap;
  word-break: normal;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  transition: color .3s ease-in;
}

.footer-link:hover, .footer-link.w--current {
  color: var(--yellow);
}

.footer-link.footer-info-link {
  text-decoration: underline;
}

.email-field {
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #4a4d51;
  height: 48px;
  margin-bottom: 30px;
  padding-top: 0;
  padding-bottom: 16px;
  padding-left: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.footer-form {
  width: 100%;
  margin-bottom: 0;
}

.footer-bottom-wrapper {
  border-top: 1px solid var(--dark-two);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.copyright-text {
  color: var(--dark-grey-four);
  font-size: 18px;
}

.footer-text-mark {
  font-weight: 500;
}

.license {
  padding-top: 60px;
  padding-bottom: 100px;
}

.license-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  padding-left: 140px;
  padding-right: 140px;
  display: flex;
}

.license-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.license-info-text-wrap {
  width: 750px;
}

.license-info-text {
  color: var(--light-grey);
  font-size: 20px;
  line-height: 30px;
}

.license-info-link {
  color: var(--light-grey);
}

.license-info-title {
  color: var(--light-grey);
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 42px;
  display: inline-flex;
}

.changelog {
  padding-top: 60px;
  padding-bottom: 100px;
}

.changelog-wrapper {
  padding-left: 220px;
  padding-right: 220px;
}

.changelog-info-title {
  color: var(--light-grey);
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 500;
  line-height: 48px;
}

.changelog-info-text {
  color: var(--light-grey);
  font-size: 24px;
  line-height: 32px;
}

.hero {
  background-image: linear-gradient(#fff0 3%, #fff 18%), url('../images/Decoraciones-02.svg'), url('../images/Decoraciones-01.svg');
  background-position: 0 0, 100% 0, 0 0;
  background-repeat: repeat, no-repeat, no-repeat;
  background-size: auto, 500px, 300px;
  padding-top: 100px;
}

.hero.textos {
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-top-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
}

.hero-top-wrapper.centroo {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
}

.hero-top-left-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 16px;
  display: flex;
}

.hero-avater-imag-wrap {
  margin-bottom: 12px;
}

.avater-info-text-wrap {
  width: 230px;
}

.avater-info-text {
  color: var(--dark-grey-four);
  font-size: 24px;
  line-height: 32px;
}

.hero-title {
  color: var(--black);
  letter-spacing: -2px;
  font-size: 8vw;
  line-height: 1em;
}

.hero-title.espacioo {
  margin-bottom: 40px;
}

.hero-video-wrapper {
  z-index: 1;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.hero-main-background-video {
  height: 720px;
}

.hero-avater-two-image {
  border-radius: 6px;
}

.hero-avater-two-image-wrap {
  width: 256px;
}

.arrow-button {
  background-color: var(--yellow);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 164px;
  height: 164px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.curve-text {
  position: absolute;
}

.arrow-button-icon-wrap {
  z-index: 99;
  border: 1px solid var(--blanco);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 86px;
  height: 86px;
  display: flex;
  position: relative;
}

.arrow-button-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.about {
  padding-top: 160px;
  padding-bottom: 100px;
}

.about-content-wrapper {
  overflow: hidden;
}

.about-top-wrapper {
  margin-bottom: 72px;
}

.about-top-subtitle-wrapper {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1320px;
  margin-bottom: 72px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.about-top-subtitle-wrapper.abajo {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.about-title-line-wrapper {
  color: var(--dark-two);
  text-align: center;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-title-line-wrapper._2 {
  margin-top: 30px;
}

.about-title-one {
  font-size: 6vw;
  font-weight: 400;
  line-height: 1.1em;
}

.about-title-one.peque-o {
  font-size: 2.5vw;
  line-height: 1.3em;
}

.about-title-two {
  color: var(--yellow);
  width: 0;
  font-size: 6vw;
  font-weight: 400;
  line-height: 1.1em;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.about-title-two.peque-o {
  font-size: 2.5vw;
  line-height: 1.3em;
}

.about-title-line-wrap {
  position: relative;
}

.about-element-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-bottom-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: flex-end;
  display: flex;
}

.about-left-content-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.about-main-image {
  object-fit: cover;
  border-radius: 6px;
  width: 960px;
  height: 920px;
}

.about-caption {
  border-top: 1px solid var(--dark-grey-four);
  border-bottom: 1px solid var(--dark-grey-four);
  color: var(--light-grey);
  text-align: right;
  white-space: nowrap;
  margin-bottom: 100px;
  padding: 20px 10px 20px 100px;
  font-size: 32px;
  line-height: 40px;
}

.about-item-text-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 64px;
  display: flex;
}

.about-single-item-wrap {
  text-align: right;
}

.about-item-text {
  color: var(--dark-three);
  white-space: nowrap;
  font-size: 48px;
  line-height: 60px;
}

.about-button-wrap {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.primary-button {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--blanco);
  color: var(--black);
  border: 1px solid #000;
  border-radius: 100px;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 4px 4px 24px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.primary-button-icon-wrap {
  background-color: var(--yellow);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.services-title {
  height: 200vh;
  padding-top: 100px;
}

.services-title-wrap {
  z-index: 99;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.services-title-one, .services-title-two {
  color: var(--light-grey);
  white-space: nowrap;
  font-size: 19vw;
  line-height: 320px;
}

.services-title-wrapper {
  width: 100%;
  max-width: none;
  position: sticky;
  top: 60px;
  overflow: hidden;
}

.services-cards-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.services-single-card {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  border-top: 1px solid var(--blanco);
  border-bottom: 1px solid var(--blanco);
  background-color: var(--yellow);
  border-radius: 11px;
  justify-content: flex-start;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-right: 64px;
  display: flex;
  position: sticky;
  top: 140px;
}

.services-single-card.border-0 {
  border-bottom-style: none;
}

.services-card-left-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.services-card-image-wrap {
  overflow: hidden;
}

.services-card-content-wrap {
  flex-flow: column;
  flex: 1;
  display: flex;
}

.services-card-image {
  width: 100%;
  height: 100%;
}

.services-card-title {
  color: var(--blanco);
  margin-bottom: 24px;
  font-size: 60px;
  line-height: 70px;
}

.services-card-text {
  color: var(--blanco);
  font-size: 24px;
  line-height: 36px;
}

.service-number-text {
  color: var(--blanco);
  font-size: 48px;
  line-height: 58px;
}

.partner-wrapper {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  border: 1px solid var(--dark-gray);
  border-radius: 11px;
  justify-content: space-between;
  align-items: center;
  padding: 100px 80px;
  display: flex;
}

.partner-title {
  color: var(--dark-one);
  font-size: 60px;
  font-weight: 500;
  line-height: 68px;
}

.partner-logo-grid-wrap {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.logo-single-item-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.services-item {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pricing-wrapper {
  background-color: var(--dark-one);
  padding: 120px 100px;
}

.pricing-top-wrapper {
  margin-bottom: 64px;
}

.pricing-title-wrap {
  margin-bottom: 42px;
}

.pricing-text-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.pricing-text {
  width: 530px;
  font-size: 24px;
  line-height: 36px;
}

.line {
  background-color: var(--black);
  width: 220px;
  height: 1px;
  margin-top: 20px;
}

.line.blanco {
  background-color: var(--blanco);
}

.pricing-cards-grid-wrap {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing-card-top-wrapper {
  background-color: var(--dark-two);
  margin-bottom: 24px;
  padding: 40px;
}

.pricing-card-icon-wrap {
  background-color: var(--yellow);
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
}

.price-wrap {
  margin-bottom: 32px;
}

.price-name {
  color: var(--light-grey);
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 36px;
}

.price-number-text {
  color: var(--light-grey);
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 500;
  line-height: 60px;
}

.price-number-text-mark {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}

.price-info-text {
  color: var(--dark-gray);
  font-size: 18px;
  line-height: 28px;
}

.price-button {
  background-color: var(--yellow);
  color: var(--dark-two);
  text-align: center;
  border-radius: 100px;
  width: 100%;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
}

.price-card-title {
  color: var(--light-grey);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.price-card-title-wrap {
  margin-bottom: 16px;
}

.price-card-info-list-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.price-card-info-list-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pice-card-info-list-text {
  color: var(--light-grey);
  font-size: 18px;
  line-height: 28px;
}

.testimonial {
  padding-top: 160px;
  padding-bottom: 160px;
}

.testimonial-top-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 64px;
  display: flex;
}

.testimonial-title-wrap {
  text-align: center;
  width: 1000px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-title {
  color: var(--black);
}

.testimonial-title-mark {
  color: var(--yellow);
}

.testimonial-ticker-wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: clip;
}

.testimonial-cards-wrap {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.testimonial-card {
  background-color: var(--yellow);
  border-radius: 11px;
  width: 660px;
  padding: 40px 48px;
}

.testimonial-author-info-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 32px;
  display: flex;
}

.user-name-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.user-name {
  color: var(--blanco);
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.user-info {
  color: var(--blanco);
  font-size: 20px;
  line-height: 30px;
}

.testimonial-card-text-wrap {
  margin-bottom: 24px;
}

.testimonial-card-text {
  color: var(--blanco);
  font-size: 32px;
  line-height: 42px;
}

.faqs {
  padding-top: 80px;
  padding-bottom: 160px;
}

.faq-top-wrapper {
  width: 100%;
  max-width: 1300px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
}

.faq-title {
  color: var(--dark-one);
}

.faq-text {
  color: var(--dark-grey-four);
  width: 530px;
  font-size: 24px;
  line-height: 36px;
}

.faq-text-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.cta {
  background-image: url('../images/Contacto-azul.png');
  background-position: 50%;
  background-size: cover;
  padding-top: 160px;
  padding-bottom: 160px;
}

.cta-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.cta-caption {
  color: var(--blanco);
  font-size: 32px;
  line-height: 40px;
}

.cta-ticker-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 64px;
  display: flex;
  overflow: clip;
}

.cta-ticker-item-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.cta-title-one {
  color: var(--blanco);
  white-space: nowrap;
  font-size: 220px;
  line-height: 250px;
}

.cta-title-two {
  color: var(--blanco);
  font-size: 220px;
  line-height: 250px;
}

.ticker-image {
  border-radius: 6px;
  width: 19vw;
}

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

.faq-main-contant-wrapper {
  z-index: 1;
  flex-flow: column;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.faq-main-single-wrap {
  border-bottom: 1px solid var(--dark-grey-four);
  margin-left: 0;
  margin-right: 0;
  padding: 32px 32px 24px;
  position: static;
}

.faq-main-single-wrap.border-0 {
  border-bottom-style: none;
}

.faq-main-single-header-wrap {
  justify-content: space-between;
  padding: 0;
  display: flex;
}

.faq-single-title {
  color: var(--dark-two);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.faq-arrow-wrap {
  background-color: var(--dark-grey-four);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.pluse-div {
  background-color: var(--light-grey);
  border-radius: 20px;
  width: 2px;
  height: 16px;
  position: relative;
}

.minass-div {
  background-color: var(--light-grey);
  border-radius: 20px;
  width: 16px;
  height: 2px;
  position: absolute;
}

.dropdown-list {
  background-color: #ddd0;
  display: block;
  position: static;
  overflow: hidden;
}

.dropdown-list.w--open {
  background-color: #ddd0;
  overflow: hidden;
}

.faq-main-single-details {
  width: 100%;
  padding-top: 20px;
  font-size: 24px;
  line-height: 34px;
}

.work {
  background-image: url('../images/Decoraciones.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 120%;
  padding-top: 200px;
  padding-bottom: 200px;
}

.work-wrapper {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.work-top-wrapper {
  margin-bottom: 64px;
}

.work-title {
  color: var(--black);
}

.work-title-wrap {
  margin-bottom: 42px;
}

.work-text-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.work-text {
  color: var(--dark-grey-four);
  width: 530px;
  font-size: 24px;
  line-height: 36px;
}

.work-items-one-grid-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .6fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 200px;
  display: flex;
}

.work-items-one-grid-wrap._2 {
  flex-flow: row-reverse;
}

.work-card-wrap {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.work-single-card {
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.info-date {
  color: var(--light-grey);
  margin-bottom: 8px;
  font-size: 1.4vw;
  line-height: 1.1em;
}

.text-block {
  color: var(--blanco);
  font-size: 3vw;
  font-weight: 500;
  line-height: 1em;
}

.card-arrow-wrap {
  z-index: 0;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.card-icon-wrap {
  background-color: var(--yellow);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  display: flex;
}

.work-card-content-wrap {
  flex-flow: column;
  justify-content: space-between;
  padding: 52px 48px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.work-items-two-grid-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: .6fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.work-items-two-grid-wrap.work-items-two {
  margin-bottom: 200px;
}

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

.about-hero {
  padding-top: 120px;
}

.about-hero-wrapper {
  flex-flow: column;
  display: flex;
}

.about-hero-title {
  color: var(--black);
  text-align: center;
  font-size: 200px;
  line-height: 200px;
}

.about-hero-image-wrap {
  max-width: 900px;
  margin-top: -70px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-image-wrap.sin-menos {
  margin-top: 80px;
}

.about-hero-image {
  border-radius: 11px;
  width: 100%;
  height: 100%;
}

.fan-fact {
  padding-top: 160px;
  padding-bottom: 160px;
}

.fan-fact-title-wrap {
  text-align: center;
  max-width: 1232px;
  margin-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
}

.fan-fact-title {
  color: var(--black);
  font-size: 79px;
}

.fan-fact-gird-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fan-fact-single-item {
  background-color: var(--yellow);
  width: 100%;
  padding: 40px 48px;
}

.counter-contant-wrap {
  height: 132px;
  margin-bottom: 40px;
  display: flex;
  overflow: hidden;
}

.fan-fact-info-text-mark {
  border-top: 1px solid var(--blanco);
  padding-top: 12px;
}

.fan-fact-info-text {
  color: var(--blanco);
}

.team-wrapper {
  background-color: var(--yellow);
  border-radius: 11px;
  padding: 160px 100px;
}

.team {
  padding-bottom: 200px;
}

.team-top-wrapper {
  margin-bottom: 64px;
}

.team-title-wrap {
  margin-bottom: 42px;
}

.team-title {
  color: var(--blanco);
}

.team-text {
  color: var(--blanco);
  width: 530px;
  font-size: 24px;
  line-height: 36px;
}

.team-cards-grid-wrap {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.team-single-card {
  border-radius: 11px;
  overflow: hidden;
}

.team-card-image-wrap {
  position: relative;
  overflow: hidden;
}

.team-card-image {
  width: 100%;
  position: relative;
}

.team-card-content-wrap {
  background-color: var(--blanco);
  padding: 24px;
}

.team-member-info {
  color: var(--dark-three);
  text-align: center;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.team-member-name {
  color: var(--dark-one);
  text-align: center;
  font-size: 48px;
  line-height: 60px;
}

.team-card-image-round {
  width: 100%;
  position: absolute;
  inset: 0%;
}

.work-hero {
  padding-top: 120px;
}

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

.caption-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.caption-text {
  color: var(--dark-two);
  font-size: 32px;
  line-height: 40px;
}

.work-title-wrapper {
  text-align: center;
}

.work-hero-title {
  color: var(--black);
  text-align: center;
  font-size: 200px;
  line-height: 200px;
}

.work-items-grid-three-wrap {
  grid-column-gap: 180px;
  grid-row-gap: 180px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .6fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-hero {
  padding-top: 120px;
  padding-bottom: 120px;
}

.taam-title-wrapper {
  text-align: center;
}

.team-hero-title {
  text-align: center;
  font-size: 200px;
  line-height: 200px;
}

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

.pricing-hero, .contact-hero {
  padding-top: 120px;
  padding-bottom: 120px;
}

.blog-hero {
  padding-top: 120px;
  padding-bottom: 60px;
}

.blog {
  padding-top: 60px;
  padding-bottom: 100px;
}

.blog-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  display: flex;
}

.blog-collection-grid-wrap {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.blog-single-card {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  justify-content: space-between;
  display: flex;
}

.blog-card-content-wrap {
  padding-top: 156px;
  padding-bottom: 156px;
}

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

.blog-card-title-wrap {
  width: 800px;
  margin-bottom: 24px;
}

.blog-card-text-wrap {
  margin-bottom: 24px;
}

.blog-card-text {
  color: var(--blanco);
  font-size: 24px;
  line-height: 36px;
}

.blog-card-button-wrap {
  display: flex;
}

.blog-card-info-wrap {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.blog-catgory-wrap {
  background-color: var(--dark-grey-four);
  color: var(--light-grey);
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  font-size: 24px;
  line-height: 36px;
  display: flex;
}

.author-date-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.blog-author-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.author-name, .blog-date {
  color: var(--blanco);
  font-size: 24px;
  line-height: 36px;
}

.line-tow {
  background-color: var(--light-grey);
  width: 2px;
  height: 20px;
}

.blog-item-wrap {
  background-color: var(--yellow);
  border-radius: 11px;
  padding: 32px;
  position: sticky;
  top: 110px;
}

.contact {
  padding-bottom: 160px;
}

.contact-wrapper {
  background-color: var(--yellow);
  border-radius: 10px;
  padding: 80px;
}

.contact-form {
  margin-bottom: 0;
}

.form-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.form-field-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  display: flex;
}

.form-text-field-wrap {
  width: 100%;
}

.text-field {
  border: 1px none var(--dark-grey-four);
  background-color: var(--blanco);
  color: var(--dark-grey-four);
  border-radius: 11px;
  height: 64px;
  margin-bottom: 0;
  padding: 20px;
  font-size: 20px;
  line-height: 30px;
}

.field-label {
  color: var(--blanco);
  text-align: left;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.text-area {
  border: 1px none var(--dark-grey-four);
  background-color: var(--blanco);
  color: var(--dark-grey-four);
  border-radius: 11px;
  min-height: 160px;
  margin-bottom: 0;
  padding: 20px;
  font-size: 20px;
  line-height: 30px;
}

.secondary-button.contact-button {
  border-style: solid;
  border-color: var(--blanco);
  background-color: var(--yellow);
  color: var(--blanco);
  border-radius: 11px;
  width: 100%;
  height: 64px;
  font-size: 18px;
  transition: all .3s;
  position: static;
}

.secondary-button.contact-button:hover {
  background-color: var(--blanco);
  color: var(--dark-one);
}

.blog-details-hero {
  padding-top: 120px;
  padding-bottom: 60px;
}

.blog-details-hero-top-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 64px;
  display: flex;
}

.blog-details-hero-title-wrap {
  text-align: center;
  width: 100%;
  max-width: 1400px;
  margin: 20px auto 32px;
}

.blog-details {
  padding-top: 60px;
  padding-bottom: 160px;
}

.blog-details-one-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  margin-bottom: 60px;
  display: flex;
}

.blog-details-left-one-wrap {
  width: 1000px;
}

.blog-details-image-one {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-details-two-wrapper {
  margin-bottom: 60px;
}

.blog-review-wrap {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  background-color: var(--dark-one);
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 60px;
  padding: 60px;
  display: flex;
}

.quote-image-wrap {
  min-width: 64px;
}

.review-text {
  color: var(--light-grey);
  font-size: 48px;
  line-height: 60px;
}

.blog-details-three-wrapper {
  margin-bottom: 60px;
}

.blog-details-four-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  display: flex;
}

.blog-details-left-foru-wrap {
  width: 1000px;
}

.work-details-hero {
  padding-top: 120px;
  padding-bottom: 60px;
}

.work-details-hero-top-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.caption-date {
  color: var(--dark-two);
  font-size: 32px;
  line-height: 40px;
}

.work-details-hero-title-wrap {
  text-align: center;
}

.work-details {
  padding-top: 60px;
  padding-bottom: 120px;
}

.work-details-one-wrapper {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  justify-content: space-between;
  margin-bottom: 60px;
  display: flex;
}

.work-details-one-left-wrap {
  width: 1000px;
}

.work-details-two-wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  background-image: url('../images/12320.jpg');
  background-position: 50% 0;
  background-size: cover;
  border-radius: 11px;
  justify-content: space-between;
  min-height: 600px;
  margin-bottom: 60px;
  display: flex;
}

.work-details-three-wrapper {
  margin-bottom: 60px;
}

.work-details-four-wrapper {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.work-details-image-one {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.work-details-four-left-wrap {
  width: 1000px;
}

.work-details-image-two {
  width: 100%;
}

.work-details-one-right-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.project-info-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-bottom: 1px solid var(--dark-gray);
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 16px;
  display: flex;
}

.project-info-title {
  color: var(--light-grey);
  white-space: nowrap;
  font-size: 32px;
  line-height: 40px;
}

.project-info {
  color: var(--dark-gray);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  padding: 120px 100px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  display: flex;
}

.utility-page-wrapper {
  background-color: var(--dark-one);
  padding: 120px 100px;
}

.lock-image-wrap {
  margin-bottom: 48px;
}

.password-title {
  margin-bottom: 24px;
}

.password-info-text {
  color: var(--light-grey);
  width: 700px;
}

.password-title-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 36px;
  display: flex;
}

.password-form-wrap {
  margin-top: 24px;
}

.submit-button {
  width: 100%;
}

.password-form-field-wrap {
  margin-bottom: 32px;
}

._404-title {
  margin-bottom: 24px;
}

._404-info-text {
  color: var(--light-grey);
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 34px;
}

._404-image-wrap {
  margin-bottom: 48px;
}

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

.blog-details-hero-image {
  width: 100%;
}

.single-counter-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.single-counter-wrap._2 {
  justify-content: flex-end;
  align-items: center;
}

.number-digit {
  color: var(--blanco);
  font-size: 128px;
  line-height: 132px;
}

.plus {
  color: var(--blanco);
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 48px;
  line-height: 60px;
  display: flex;
}

.tab-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #667085;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #f2f4f7;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  font-weight: 400;
  display: flex;
}

.tab-link.w--current {
  color: #1d2939;
  background-color: #fff;
  font-weight: 500;
  box-shadow: 0 1px 8px 2px #1d293914;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.features-title-mark {
  color: #2d62ff;
}

.features-tabs {
  display: flex;
}

.features-title-wrap {
  text-align: center;
  margin-bottom: 56px;
}

.features-tab-content-wrapper {
  width: 100%;
}

.features-title {
  color: #1d2939;
}

.tabs-menu {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 300px;
  height: 730px;
  margin-right: 32px;
  display: flex;
  overflow: auto;
}

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

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.image {
  width: 100%;
}

.tab-item-text {
  color: #667085;
  line-height: 24px;
}

.features-tabs-menu {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 300px;
  height: 700px;
  margin-right: 32px;
  padding-right: 8px;
  display: flex;
  overflow: auto;
}

.tab-item-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

.arrow-icon {
  width: 1.25rem;
  display: inline;
}

.tab-pane-top-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 48px;
  display: flex;
}

.tab-pane-image-wrapper {
  height: 100%;
}

.tab-menu-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #667085;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #f2f4f7;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  font-weight: 400;
  display: flex;
}

.tab-menu-link.w--current {
  color: #1d2939;
  background-color: #fff;
  font-weight: 500;
  box-shadow: 0 1px 8px 2px #1d293914;
}

.tab-item-image {
  height: 100%;
}

.tab-item-text-wrap {
  text-align: center;
  width: 460px;
  margin-bottom: 20px;
}

.tab-item-title-wrap {
  text-align: center;
  margin-bottom: 8px;
}

.features-title-wrap-2 {
  text-align: center;
  margin-bottom: 56px;
}

.features-tabs-2 {
  display: flex;
}

.features-2 {
  padding-top: 80px;
  padding-bottom: 800px;
}

.tab-pane-wrapper {
  background-image: url('../images/Bg-One.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 16px;
  flex-flow: column;
  height: 100%;
  padding-top: 56px;
  padding-left: 36px;
  padding-right: 36px;
  display: flex;
}

.tab-pane-wrapper.six {
  background-image: url('../images/Tab-Bg04_1Tab Bg04.avif');
}

.tab-pane-wrapper.one {
  background-image: url('../images/Tab-Bg09_1Tab Bg09.avif');
}

.tab-pane-wrapper.two {
  background-image: url('../images/Bg2.png');
}

.tab-pane-wrapper.eight {
  background-image: url('../images/Tab-Bg02_1Tab Bg02.avif');
}

.tab-pane-wrapper.five {
  background-image: url('../images/Tab-Bg05_1Tab Bg05.avif');
}

.tab-pane-wrapper.four {
  background-image: url('../images/Tab-Bg06_1Tab Bg06.avif');
}

.tab-pane-wrapper.seven {
  background-image: url('../images/Tab-Bg03_1Tab Bg03.avif');
}

.tab-pane-wrapper.three {
  background-image: url('../images/Tab-Bg07_1Tab Bg07.avif');
}

.tab-pane-wrapper.nine {
  background-image: url('../images/Tab-Bg01_1Tab Bg01.avif');
}

.button {
  color: #fff;
  text-align: center;
  background-color: #4b4efc;
  border: 1px solid #4b4efc;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  display: flex;
}

.button:hover {
  color: #4b4efc;
  background-color: #4b4efc00;
}

.button.tab-button-nine {
  color: #ee46bc;
  background-color: #fff0;
  border-style: none;
}

.button.tab-button-two, .button.tab-button-six {
  color: #027a48;
  background-color: #fff0;
  border-style: none;
}

.button.tab-button-eight {
  color: #4b4efc;
  background-color: #fff0;
  border-style: none;
}

.button.tab-button-four {
  color: #ee46bc;
  background-color: #fff0;
  border-style: none;
}

.button.tab-button-seven, .button.tab-button-three {
  color: #ff4405;
  background-color: #fff0;
  border-style: none;
}

.button.tab-button-one {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #4447e6;
  background-color: #fff0;
  border-style: none;
}

.button.tab-button-five {
  color: #2d62ff;
  background-color: #fff0;
  border-style: none;
}

.tab-pane-2 {
  height: 100%;
}

.body {
  background-color: var(--blanco);
}

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

.body-2, .body-3, .body-4 {
  background-color: var(--blanco);
}

.heading {
  color: var(--blanco);
}

.body-5 {
  background-color: var(--blanco);
}

.div-block {
  background-image: linear-gradient(#00000057, #00000057), url('../images/11038.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  width: 43vw;
  height: 52vw;
}

.div-block._2 {
  background-image: linear-gradient(#00000057, #00000057), url('../images/2149661457.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.div-block-2 {
  background-image: linear-gradient(#0000004f, #0000004f), url('../images/4993.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  width: 29vw;
  height: 40vw;
}

.div-block-2._2 {
  background-image: linear-gradient(#0000004f, #0000004f), url('../images/5620.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.dropdown-toggle {
  color: var(--blanco);
  border: 1px solid #fff;
  border-radius: 7px;
  padding: 4px 32px 4px 12px;
}

.icon {
  margin-right: 12px;
}

.dropdown-list-2 {
  margin-top: 20px;
}

.dropdown-list-2.w--open {
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0 2px 5px #0003;
}

.body-6 {
  background-color: var(--blanco);
}

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

.text-block-3 {
  color: var(--dark-three);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1em;
}

.div-block-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.image-2 {
  border-radius: 11px;
}

.image-3 {
  width: 100%;
}

.div-block-4 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-block-4 {
  color: var(--dark-grey-four);
  align-self: flex-start;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1em;
}

.espaciooo {
  margin-bottom: 40px;
}

.paragraph {
  color: var(--dark-three);
  text-align: center;
  display: none;
}

.container-2 {
  color: #8d9094;
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
}

.partner-wrapper-2 {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  border: 1px solid #8d9094;
  border-radius: 11px;
  justify-content: space-between;
  align-items: center;
  padding: 100px 80px;
  display: flex;
}

.partner-title-2 {
  color: var(--dark-grey-four);
  font-size: 60px;
  font-weight: 500;
  line-height: 68px;
}

.paragraph-2 {
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.checkbox-label {
  color: var(--blanco);
  margin-bottom: 0;
}

.checkbox-field {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.checkbox {
  margin-top: 0;
  margin-right: 5px;
}

.text-span {
  text-decoration: underline;
}

.link {
  color: var(--blanco);
}

@media screen and (min-width: 1440px) {
  .services-title-wrap {
    height: 400px;
  }

  .services-single-card {
    justify-content: space-between;
  }

  .services-card-content-wrap {
    max-width: 944px;
  }

  .tab-item-title {
    line-height: 34px;
  }

  .tab-item-text-wrap {
    text-align: center;
    width: 460px;
  }

  .tab-item-title-wrap {
    text-align: center;
    margin-bottom: 8px;
  }

  .tab-pane-wrapper.six {
    background-image: url('../images/Tab-Bg03_1Tab Bg03.avif');
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 100px;
    line-height: 110px;
  }

  h2 {
    font-size: 80px;
    line-height: 90px;
  }

  h3 {
    font-size: 64px;
    line-height: 76px;
  }

  h4 {
    font-size: 48px;
    line-height: 56px;
  }

  h5 {
    font-size: 40px;
    line-height: 50px;
  }

  .navbar {
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .nav-wrapper, .nav-link {
    display: flex;
  }

  .nav-button-wrap.hide-on-desktop {
    justify-content: flex-start;
    align-items: center;
    display: inline-flex;
  }

  .nav-button-wrap.hide-on-mobile-tab {
    display: none;
  }

  .nav-menu-wrap {
    background-color: var(--yellow);
    padding: 24px;
  }

  .menu-button {
    background-color: var(--yellow);
    color: var(--blanco);
    border-radius: 8px;
    padding: 10px;
    font-size: 32px;
  }

  .menu-button.w--open {
    background-color: var(--blanco);
    color: var(--dark-one);
    border-radius: 8px;
    padding: 10px;
  }

  .nav-link-wrap {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
    display: flex;
  }

  .inner-hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .inner-hero-text-wrap {
    width: 100%;
  }

  .style-caption {
    font-size: 36px;
    line-height: 42px;
  }

  .color-items-grid-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .paragraph-large {
    font-size: 24px;
    line-height: 34px;
  }

  .paragraph-medium {
    font-size: 20px;
    line-height: 30px;
  }

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

  .footer {
    padding-top: 100px;
  }

  .footer-items-gird-wrap {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 80px;
  }

  .license {
    padding-bottom: 80px;
  }

  .license-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .license-info-text-wrap {
    width: 100%;
  }

  .changelog {
    padding-bottom: 80px;
  }

  .changelog-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .hero {
    background-image: linear-gradient(#fff0, #fff 9%), url('../images/Decoraciones-02.svg'), url('../images/Decoraciones-01.svg');
    background-position: 0 0, 100% 0, 0 0;
    background-repeat: repeat, no-repeat, no-repeat;
    background-size: auto, 200px, 150px;
    padding-top: 80px;
  }

  .hero-top-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 48px;
  }

  .hero-top-left-wrap {
    margin-bottom: 0;
  }

  .hero-main-background-video {
    height: 600px;
  }

  .about {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .about-top-subtitle-wrapper {
    margin-bottom: 56px;
  }

  .about-title-line-wrapper {
    text-align: left;
  }

  .about-title-one, .about-title-two {
    font-size: 44px;
    line-height: 56px;
  }

  .about-bottom-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
  }

  .about-left-content-wrapper {
    justify-content: flex-end;
    align-items: center;
  }

  .about-right-image-wrap {
    margin-right: 0;
  }

  .about-main-image {
    width: 100%;
    height: 100%;
    max-height: 500px;
  }

  .about-caption {
    margin-bottom: 64px;
  }

  .about-item-text-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    margin-bottom: 48px;
  }

  .services-title {
    height: 100%;
    padding-top: 40px;
  }

  .services-title-wrap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
  }

  .services-title-one, .services-title-two {
    font-size: 100px;
    line-height: 120px;
  }

  .services-title-wrapper {
    position: static;
  }

  .services-single-card {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 64px;
    position: static;
  }

  .services-card-left-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .services-card-image-wrap {
    width: 100%;
  }

  .services-card-title {
    margin-bottom: 12px;
    font-size: 48px;
    line-height: 58px;
  }

  .services-card-text {
    width: 100%;
    font-size: 20px;
    line-height: 32px;
  }

  .partner-wrapper {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 40px;
  }

  .services-item {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .pricing-wrapper {
    padding: 80px 20px;
  }

  .pricing-top-wrapper {
    margin-bottom: 48px;
  }

  .pricing-title-wrap {
    margin-bottom: 32px;
  }

  .pricing-text-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .line {
    display: none;
  }

  .pricing-cards-grid-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card-top-wrapper {
    padding: 24px;
  }

  .testimonial {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .testimonial-top-wrapper {
    margin-bottom: 48px;
  }

  .testimonial-title-wrap {
    width: 100%;
    margin-bottom: 48px;
  }

  .faqs {
    padding-bottom: 80px;
  }

  .faq-top-wrapper {
    margin-bottom: 48px;
  }

  .faq-text-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cta-wrapper {
    justify-content: center;
    align-items: center;
  }

  .cta-ticker-wrapper {
    margin-bottom: 48px;
  }

  .cta-title-one, .cta-title-two {
    font-size: 120px;
    line-height: 150px;
  }

  .ticker-image {
    object-fit: cover;
    height: 146px;
  }

  .cta-button-wrapper {
    justify-content: center;
    align-items: center;
  }

  .faq-main-single-wrap {
    padding: 24px;
  }

  .faq-main-single-header-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .faq-single-title {
    font-size: 26px;
  }

  .faq-main-single-details {
    width: 100%;
    padding-top: 16px;
    font-size: 20px;
    line-height: 30px;
  }

  .work {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .work-top-wrapper {
    margin-bottom: 48px;
  }

  .work-title-wrap {
    margin-bottom: 32px;
  }

  .work-text-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .work-items-one-grid-wrap {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    grid-template-columns: 1fr .85fr;
    margin-bottom: 100px;
  }

  .info-date {
    font-size: 2vw;
  }

  .text-block {
    font-size: 3vw;
    line-height: 1em;
  }

  .card-icon-wrap {
    width: 80px;
    height: 80px;
  }

  .work-card-content-wrap {
    padding: 24px;
  }

  .work-items-two-grid-wrap {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    grid-template-columns: .85fr 1fr;
  }

  .work-items-two-grid-wrap.work-items-two {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    margin-bottom: 100px;
  }

  .about-hero {
    padding-top: 80px;
  }

  .about-hero-title {
    font-size: 100px;
    line-height: 120px;
  }

  .about-hero-image-wrap {
    margin-top: -36px;
  }

  .fan-fact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .fan-fact-title-wrap {
    margin-bottom: 60px;
  }

  .fan-fact-gird-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .counter-contant-wrap {
    margin-bottom: 24px;
  }

  .team-wrapper {
    padding: 80px 20px;
  }

  .team-top-wrapper {
    margin-bottom: 48px;
  }

  .team-title-wrap {
    margin-bottom: 32px;
  }

  .team-cards-grid-wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr 1fr;
  }

  .work-hero {
    padding-top: 80px;
  }

  .work-hero-title {
    font-size: 100px;
    line-height: 120px;
  }

  .work-items-grid-three-wrap {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    grid-template-columns: 1fr .85fr;
  }

  .team-hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .team-hero-title {
    font-size: 100px;
    line-height: 120px;
  }

  .pricing-hero, .contact-hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .blog {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .blog-wrapper {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .blog-single-card {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .blog-card-content-wrap {
    order: 1;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .blog-card-title-wrap {
    width: 100%;
  }

  .blog-item-wrap {
    position: static;
  }

  .contact {
    padding-bottom: 80px;
  }

  .contact-wrapper {
    padding: 48px 20px;
  }

  .form-field-wrapper {
    flex-flow: column;
  }

  .blog-details-hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .blog-details-hero-top-wrapper {
    margin-bottom: 48px;
  }

  .blog-details {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .blog-details-one-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    margin-bottom: 32px;
  }

  .blog-details-left-one-wrap {
    width: 100%;
  }

  .blog-details-two-wrapper {
    margin-bottom: 32px;
  }

  .blog-review-wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    margin-bottom: 32px;
    padding: 32px;
  }

  .quote-image-wrap {
    min-width: 48px;
  }

  .review-text {
    font-size: 32px;
    line-height: 42px;
  }

  .blog-details-three-wrapper {
    margin-bottom: 32px;
  }

  .blog-details-four-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .blog-details-left-foru-wrap {
    width: 100%;
  }

  .work-details-hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .work-details-hero-top-wrapper {
    margin-bottom: 32px;
  }

  .work-details {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .work-details-one-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    margin-bottom: 32px;
  }

  .work-details-one-left-wrap {
    width: 100%;
  }

  .work-details-two-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    background-position: 50%;
    min-height: 400px;
    margin-bottom: 32px;
  }

  .work-details-three-wrapper {
    margin-bottom: 32px;
  }

  .work-details-four-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .work-details-four-left-wrap {
    width: 100%;
  }

  .utility-page-wrap {
    padding: 80px 20px;
  }

  .utility-page-wrapper {
    padding: 80px 48px;
  }

  .lock-image-wrap {
    margin-bottom: 32px;
  }

  .password-title {
    margin-bottom: 16px;
  }

  .password-info-text {
    width: 100%;
  }

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

  ._404-image-wrap {
    margin-bottom: 32px;
  }

  .features-tabs-menu {
    flex-flow: row;
    width: 100%;
    height: 100%;
    margin-bottom: 24px;
    margin-right: 0;
    padding-bottom: 8px;
    padding-right: 0;
  }

  .features-tabs-2 {
    flex-flow: column;
  }

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

  .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .partner-wrapper-2 {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 40px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 80px;
    line-height: 90px;
  }

  h2 {
    font-size: 60px;
    line-height: 70px;
  }

  h3 {
    font-size: 56px;
    line-height: 64px;
  }

  h4 {
    font-size: 36px;
    line-height: 48px;
  }

  h5 {
    font-size: 32px;
    line-height: 42px;
  }

  h6 {
    font-size: 24px;
    line-height: 32px;
  }

  p, ul {
    font-size: 20px;
    line-height: 30px;
  }

  .menu-button, .menu-button.w--open {
    padding: 10px;
  }

  .inner-hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .style-guide-wrapper {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .footer {
    padding-top: 80px;
  }

  .footer-items-gird-wrap {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 60px;
  }

  .footer-bottom-wrapper {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .license {
    padding-bottom: 60px;
  }

  .license-wrapper {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .changelog {
    padding-bottom: 60px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-top-left-wrap {
    flex-flow: column-reverse;
  }

  .hero-title {
    font-size: 9vw;
    line-height: 1em;
  }

  .hero-main-background-video {
    height: 500px;
  }

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

  .about-top-wrapper {
    margin-bottom: 48px;
  }

  .about-top-subtitle-wrapper {
    margin-bottom: 32px;
  }

  .about-title-one, .about-title-two {
    font-size: 32px;
    line-height: 42px;
  }

  .about-bottom-wrapper {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .about-caption {
    margin-bottom: 36px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 24px;
    line-height: 32px;
  }

  .about-item-text-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 32px;
  }

  .about-item-text {
    white-space: pre-wrap;
    font-size: 36px;
    line-height: 44px;
  }

  .services-title {
    padding-top: 60px;
  }

  .services-title-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .services-title-one, .services-title-two {
    font-size: 80px;
    line-height: 100px;
  }

  .services-single-card {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .services-card-left-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .services-card-title {
    font-size: 32px;
    line-height: 42px;
  }

  .services-card-text {
    font-size: 18px;
    line-height: 26px;
  }

  .service-number-text {
    font-size: 40px;
    line-height: 50px;
  }

  .partner-wrapper {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .partner-title {
    font-size: 48px;
    line-height: 56px;
  }

  .partner-logo-grid-wrap {
    grid-column-gap: 74px;
    grid-row-gap: 74px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .services-item, .pricing-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .pricing-top-wrapper {
    margin-bottom: 32px;
  }

  .pricing-title-wrap {
    margin-bottom: 24px;
  }

  .pricing-text {
    width: 100%;
    font-size: 20px;
    line-height: 30px;
  }

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

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

  .testimonial-top-wrapper, .testimonial-title-wrap {
    margin-bottom: 32px;
  }

  .testimonial-card {
    width: 550px;
    padding: 32px;
  }

  .testimonial-card-text {
    font-size: 24px;
    line-height: 34px;
  }

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

  .faq-top-wrapper {
    margin-bottom: 32px;
  }

  .faq-text {
    width: 100%;
    font-size: 20px;
    line-height: 30px;
  }

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

  .cta-wrapper, .cta-ticker-wrapper {
    margin-bottom: 32px;
  }

  .cta-title-one, .cta-title-two {
    font-size: 100px;
    line-height: 120px;
  }

  .ticker-image {
    height: 116px;
  }

  .faq-main-single-wrap {
    padding: 20px;
  }

  .faq-main-single-header-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: space-between;
    align-items: center;
  }

  .faq-single-title {
    white-space: pre-wrap;
    font-size: 20px;
    line-height: 30px;
  }

  .faq-main-single-details {
    font-size: 18px;
    line-height: 28px;
  }

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

  .work-top-wrapper {
    margin-bottom: 32px;
  }

  .work-title-wrap {
    margin-bottom: 24px;
  }

  .work-text {
    width: 100%;
    font-size: 20px;
    line-height: 30px;
  }

  .work-items-one-grid-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  .work-items-one-grid-wrap._2 {
    flex-flow: row-reverse;
  }

  .work-items-two-grid-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1.35fr;
  }

  .work-items-two-grid-wrap.work-items-two {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    margin-bottom: 60px;
  }

  .about-hero {
    padding-top: 60px;
  }

  .about-hero-title {
    font-size: 60px;
    line-height: 70px;
  }

  .about-hero-image-wrap {
    margin-top: -24px;
  }

  .fan-fact {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fan-fact-title-wrap {
    margin-bottom: 40px;
  }

  .fan-fact-gird-wrap {
    grid-template-columns: 1fr;
  }

  .fan-fact-single-item {
    padding: 32px;
  }

  .team-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .team-top-wrapper {
    margin-bottom: 32px;
  }

  .team-title-wrap {
    margin-bottom: 24px;
  }

  .team-text {
    width: 100%;
    font-size: 20px;
    line-height: 30px;
  }

  .team-cards-grid-wrap {
    grid-template-columns: 1fr;
  }

  .work-hero {
    padding-top: 60px;
  }

  .work-hero-title {
    font-size: 60px;
    line-height: 70px;
  }

  .work-items-grid-three-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
  }

  .team-hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .team-hero-title {
    font-size: 60px;
    line-height: 70px;
  }

  .pricing-hero, .contact-hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-hero {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .blog {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .blog-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .blog-single-card {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .blog-card-content-wrap {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .blog-card-info-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .blog-item-wrap {
    padding: 24px;
  }

  .contact {
    padding-bottom: 60px;
  }

  .contact-wrapper {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .form-wrapper {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .form-field-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
  }

  .text-field {
    font-size: 18px;
    line-height: 26px;
  }

  .field-label {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 26px;
  }

  .blog-details-hero {
    padding-top: 60px;
  }

  .blog-details-hero-top-wrapper {
    margin-bottom: 32px;
  }

  .blog-details {
    padding-bottom: 60px;
  }

  .blog-review-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .work-details-hero {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .work-details {
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .work-details-one-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .utility-page-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .utility-page-wrapper {
    padding: 60px 40px;
  }

  .password-form-field-wrap {
    margin-bottom: 24px;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .tab-pane-top-wrapper {
    margin-bottom: 32px;
  }

  .tab-item-text-wrap {
    width: 100%;
  }

  .features-title-wrap-2 {
    margin-bottom: 32px;
  }

  .features-2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .tab-pane-wrapper.one {
    padding-top: 40px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .partner-wrapper-2 {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .partner-title-2 {
    font-size: 48px;
    line-height: 56px;
  }
}

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

  h2 {
    font-size: 36px;
    line-height: 48px;
  }

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

  h4 {
    font-size: 24px;
    line-height: 34px;
  }

  h5 {
    font-size: 22px;
    line-height: 32px;
  }

  h6, p {
    font-size: 18px;
    line-height: 26px;
  }

  ul {
    margin-bottom: 0;
    padding-left: 24px;
    font-size: 18px;
    line-height: 30px;
  }

  .menu-button, .menu-button.w--open {
    padding: 6px;
  }

  .inner-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .inner-hero-title-wrap {
    margin-bottom: 16px;
  }

  .inner-hero-text {
    font-size: 18px;
    line-height: 28px;
  }

  .style-guide-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .style-guide-item-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .style-caption {
    padding: 10px 36px;
    font-size: 24px;
    line-height: 36px;
  }

  .style-caption-wrap {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .color-items-grid-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .typography-caption {
    margin-bottom: 12px;
    padding: 6px 20px;
    font-size: 20px;
    line-height: 26px;
  }

  .paragraph-large {
    font-size: 20px;
    line-height: 30px;
  }

  .paragraph-medium {
    font-size: 18px;
    line-height: 26px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-items-gird-wrap {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .footer-logo {
    margin-bottom: 32px;
  }

  .footer-bottom-wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .license {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .license-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .changelog {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .changelog-info-title {
    font-size: 24px;
    line-height: 32px;
  }

  .changelog-info-text {
    font-size: 18px;
    line-height: 24px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-top-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    margin-bottom: 24px;
  }

  .hero-top-left-wrap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
  }

  .avater-info-text-wrap {
    width: 100%;
  }

  .avater-info-text {
    font-size: 20px;
    line-height: 24px;
  }

  .hero-title {
    font-size: 48px;
    line-height: 56px;
  }

  .hero-main-background-video {
    height: 280px;
  }

  .arrow-button {
    width: 120px;
    height: 120px;
  }

  .curve-text {
    padding: 8px;
  }

  .arrow-button-icon-wrap {
    width: 70px;
    height: 70px;
  }

  .about {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-top-subtitle-wrapper {
    margin-bottom: 24px;
  }

  .about-subtitle-wrap {
    display: none;
  }

  .about-title-one, .about-title-two {
    font-size: 18px;
    line-height: 28px;
  }

  .about-bottom-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .about-caption {
    margin-bottom: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 26px;
  }

  .about-item-text-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-bottom: 24px;
  }

  .about-item-text {
    font-size: 24px;
    line-height: 34px;
  }

  .services-title {
    padding-top: 40px;
  }

  .services-title-one {
    font-size: 40px;
    line-height: 48px;
  }

  .services-title-two {
    font-size: 40px;
    line-height: 50px;
  }

  .services-single-card {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 20px;
  }

  .services-card-text {
    font-size: 16px;
    line-height: 24px;
  }

  .service-number-text {
    font-size: 32px;
    line-height: 42px;
  }

  .partner-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 40px 20px;
  }

  .partner-title {
    font-size: 32px;
    line-height: 42px;
  }

  .partner-logo-grid-wrap {
    grid-column-gap: 74px;
    grid-row-gap: 74px;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .services-item {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pricing-wrapper {
    padding: 40px 16px;
  }

  .pricing-top-wrapper {
    margin-bottom: 24px;
  }

  .pricing-title-wrap {
    margin-bottom: 16px;
  }

  .pricing-text {
    font-size: 18px;
    line-height: 28px;
  }

  .pricing-card-top-wrapper {
    margin-bottom: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .pricing-card-icon-wrap {
    margin-bottom: 12px;
  }

  .price-wrap {
    margin-bottom: 24px;
  }

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

  .price-number-text {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 36px;
  }

  .price-info-text {
    font-size: 16px;
    line-height: 24px;
  }

  .price-button {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
  }

  .price-card-title {
    font-size: 20px;
    line-height: 30px;
  }

  .pice-card-info-list-text {
    font-size: 16px;
    line-height: 24px;
  }

  .testimonial {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .testimonial-top-wrapper, .testimonial-title-wrap {
    margin-bottom: 24px;
  }

  .testimonial-ticker-wrapper, .testimonial-cards-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .testimonial-card {
    width: 300px;
    padding: 24px;
  }

  .testimonial-author-info-wrap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .user-name-wrap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .user-name {
    font-size: 24px;
    line-height: 34px;
  }

  .user-info {
    font-size: 16px;
    line-height: 24px;
  }

  .testimonial-card-text {
    font-size: 20px;
    line-height: 30px;
  }

  .faqs {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .faq-top-wrapper {
    margin-bottom: 24px;
  }

  .faq-text {
    font-size: 18px;
    line-height: 28px;
  }

  .cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cta-wrapper {
    margin-bottom: 24px;
  }

  .cta-caption {
    font-size: 24px;
    line-height: 34px;
  }

  .cta-ticker-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    margin-bottom: 24px;
  }

  .cta-ticker-item-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .cta-title-one, .cta-title-two {
    font-size: 48px;
    line-height: 56px;
  }

  .ticker-image {
    height: 60px;
  }

  .faq-main-single-wrap {
    padding: 16px;
  }

  .faq-main-single-header-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .faq-single-title {
    width: 200px;
    font-size: 18px;
    line-height: 24px;
  }

  .faq-arrow-wrap {
    width: 36px;
    height: 36px;
  }

  .faq-main-single-details {
    padding-top: 12px;
    font-size: 16px;
    line-height: 24px;
  }

  .work {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .work-top-wrapper {
    margin-bottom: 24px;
  }

  .work-title-wrap {
    margin-bottom: 16px;
  }

  .work-text {
    font-size: 18px;
    line-height: 28px;
  }

  .work-items-one-grid-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    margin-bottom: 24px;
  }

  .work-items-one-grid-wrap._2 {
    flex-flow: column-reverse;
  }

  .work-card-wrap {
    align-self: stretch;
    min-height: 300px;
  }

  .work-single-card {
    flex: 1;
    align-self: stretch;
    height: 300px;
  }

  .info-date {
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 24px;
  }

  .text-block {
    font-size: 32px;
    line-height: 42px;
  }

  .wrok-card-image-wrap {
    display: flex;
  }

  .card-icon-wrap {
    width: 60px;
    height: 60px;
  }

  .card-icon {
    width: 40px;
  }

  .work-card-content-wrap {
    padding: 20px;
  }

  .work-items-two-grid-wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .work-items-two-grid-wrap.work-items-two {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    margin-bottom: 24px;
  }

  .about-hero {
    padding-top: 40px;
  }

  .about-hero-title {
    white-space: normal;
    font-size: 48px;
    line-height: 56px;
  }

  .about-hero-image-wrap {
    margin-top: -18px;
  }

  .fan-fact {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .fan-fact-title-wrap {
    margin-bottom: 24px;
  }

  .fan-fact-single-item {
    padding: 20px;
  }

  .counter-contant-wrap {
    margin-bottom: 16px;
  }

  .fan-fact-info-text-mark {
    padding-top: 8px;
  }

  .team-wrapper {
    padding: 40px 16px;
  }

  .team-top-wrapper {
    margin-bottom: 24px;
  }

  .team-title-wrap {
    margin-bottom: 16px;
  }

  .team-text {
    font-size: 18px;
    line-height: 28px;
  }

  .team-cards-grid-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .team-card-content-wrap {
    padding: 16px 20px;
  }

  .team-member-info {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 24px;
  }

  .team-member-name {
    font-size: 24px;
    line-height: 34px;
  }

  .work-hero {
    padding-top: 40px;
  }

  .caption-wrap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    margin-bottom: 16px;
  }

  .caption-text {
    font-size: 20px;
    line-height: 30px;
  }

  .cpation-image {
    height: 40px;
  }

  .work-hero-title {
    white-space: normal;
    font-size: 48px;
    line-height: 56px;
  }

  .work-items-grid-three-wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .team-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .team-hero-title {
    white-space: normal;
    font-size: 48px;
    line-height: 56px;
  }

  .pricing-hero, .contact-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .blog-hero {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .blog {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .blog-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .blog-card-content-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }

  .blog-card-title-wrap, .blog-card-text-wrap {
    margin-bottom: 16px;
  }

  .blog-card-text {
    font-size: 18px;
    line-height: 26px;
  }

  .blog-card-info-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-bottom: 16px;
  }

  .blog-catgory-wrap {
    font-size: 18px;
    line-height: 26px;
  }

  .author-date-wrap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .blog-date {
    font-size: 20px;
    line-height: 30px;
  }

  .line-tow {
    display: none;
  }

  .blog-item-wrap {
    padding: 16px;
  }

  .contact {
    padding-bottom: 40px;
  }

  .contact-wrapper {
    padding: 24px 16px;
  }

  .form-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .form-field-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .text-field {
    height: 56px;
    padding: 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .field-label {
    font-size: 16px;
    line-height: 24px;
  }

  .text-area {
    min-height: 130px;
    padding: 16px;
  }

  .blog-details-hero {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .blog-details-hero-top-wrapper {
    margin-bottom: 24px;
  }

  .blog-details-hero-title-wrap {
    margin-top: 8px;
    margin-bottom: 12px;
  }

  .blog-details {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .blog-details-one-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    margin-bottom: 24px;
  }

  .blog-details-two-wrapper {
    margin-bottom: 24px;
  }

  .blog-review-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
  }

  .quote-image-wrap {
    width: 32px;
  }

  .review-text {
    font-size: 24px;
    line-height: 32px;
  }

  .blog-details-three-wrapper {
    margin-bottom: 24px;
  }

  .blog-details-four-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .work-details-hero {
    padding-bottom: 20px;
  }

  .work-details-hero-top-wrapper {
    margin-bottom: 24px;
  }

  .caption-date {
    font-size: 20px;
    line-height: 30px;
  }

  .work-details {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .work-details-one-wrapper {
    margin-bottom: 24px;
  }

  .work-details-two-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    min-height: 200px;
    margin-bottom: 24px;
  }

  .work-details-three-wrapper {
    margin-bottom: 24px;
  }

  .work-details-four-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .work-details-one-right-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .project-info-item {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 14px;
  }

  .project-info-title {
    font-size: 24px;
    line-height: 34px;
  }

  .project-info {
    font-size: 18px;
    line-height: 26px;
  }

  .utility-page-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .utility-page-wrapper {
    padding: 32px 16px;
  }

  .lock-image-wrap {
    margin-bottom: 20px;
  }

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

  .password-form-field-wrap {
    margin-bottom: 16px;
  }

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

  ._404-info-text {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 30px;
  }

  ._404-image-wrap {
    margin-bottom: 24px;
  }

  .blog-details-hero-image {
    object-fit: cover;
    height: 240px;
  }

  .number-digit {
    font-size: 80px;
  }

  .plus {
    justify-content: center;
    align-items: center;
    font-size: 40px;
  }

  .container-large {
    box-sizing: border-box;
    position: static;
  }

  .features-tabs-menu {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .tab-pane-top-wrapper {
    margin-bottom: 24px;
  }

  .tab-pane-image-wrapper {
    height: 160px;
  }

  .tab-item-text-wrap {
    margin-bottom: 8px;
  }

  .features-title-wrap-2 {
    margin-bottom: 24px;
  }

  .tab-pane-wrapper.one {
    padding-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .div-block {
    align-self: stretch;
    width: 100%;
    height: 300px;
  }

  .div-block-2 {
    flex: 1;
    height: 300px;
  }

  .div-block-5 {
    flex: 1;
    justify-content: center;
    align-self: stretch;
    align-items: center;
    display: flex;
  }

  .div-block-6 {
    flex: 1;
    align-self: stretch;
  }

  .paragraph {
    display: block;
  }

  .partner-wrapper-2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 40px 20px;
  }

  .partner-title-2 {
    font-size: 32px;
    line-height: 42px;
  }

  .checkbox-label {
    line-height: 1.1em;
  }

  .checkbox-field {
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .checkbox {
    margin-top: 2px;
  }
}

#w-node-_6f5d6b54-81b7-76bd-cd82-c9b1fddeb180-fddeb17d {
  justify-self: start;
}

#w-node-_6f5d6b54-81b7-76bd-cd82-c9b1fddeb193-fddeb17d {
  justify-self: end;
}


@font-face {
  font-family: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Solid 900';
  src: url('../fonts/fa-solid-900.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}