@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&display=swap");
@font-face {
  font-family: "GothamLight";
  src: url("../fonts/GothamLight.eot");
  src: url("../fonts/GothamLight.woff") format("woff"), url("../fonts/GothamLight.ttf") format("truetype"), url("../fonts/GothamLight.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothamBook";
  src: url("../fonts/GothamBook.eot");
  src: url("../fonts/GothamBook.woff") format("woff"), url("../fonts/GothamBook.ttf") format("truetype"), url("../fonts/GothamBook.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothamBold";
  src: url("../fonts/GothamBold.eot");
  src: url("../fonts/GothamBold.woff") format("woff"), url("../fonts/GothamBold.ttf") format("truetype"), url("../fonts/GothamBold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothamBlack";
  src: url("../fonts/GothamBlack.eot");
  src: url("../fonts/GothamBlack.woff") format("woff"), url("../fonts/GothamBlack.ttf") format("truetype"), url("../fonts/GothamBlack.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
:root {
  --FontBlack: "GothamBlack";
  --FontBold: "GothamBold";
  --FontBook: "GothamBook";
  --FontLight: "GothamLight";
  --colorGreen: #04FF86;
  --colorGreenDark: #27a166;
  --colorPurple: #483A6F;
  --colorPurpleHover: #863cc8;
  --colorPurpleLight: #9669FF;
  --colorPurpleDark: #483A6F;
  --colorGray:#d6dadd;
  --colorBase: #4d4d4d;
  --colorBlack: #000;
  --colorWhite: #fff;
  --bgPrimary: #7520C4;
}

@media (max-width: 1199px) {
  .container {
    max-width: 100% !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1300px !important;
  }
}

/*Colors*/
.color-dark {
  color: var(--colorBlack);
}

.color-white {
  color: var(--colorWhite);
}

.color-default {
  color: var(--colorBase);
}

.color-green {
  color: var(--colorGreen);
}

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

.color-purple {
  color: var(--colorPurple);
}

.color-purple-dark {
  color: var(--colorPurpleDark);
}

.bg-primary {
  background-color: var(--bgPrimary);
}

.bg-gray {
  background-color: var(--colorGray);
}

.bg-white {
  background-color: var(--colorWhite);
}

.cursor-pointer {
  cursor: pointer;
}

.light {
  font-weight: 300;
}

.book {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.black {
  font-weight: 900;
  font-family: "GothamBlack";
}

.bold, b {
  font-weight: 700;
  font-family: var(--FontBold);
  letter-spacing: -2px;
}

body {
  overflow-x: hidden;
}

/*Text*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--FontBook);
}

p {
  font-family: var(--FontBook);
  color: var(--colorBase);
}
p b {
  line-height: 0;
}

.heading-h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -1px;
}
@media (max-width: 1023px) {
  .heading-h1 {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .heading-h1 {
    font-size: 42px;
  }
}

.heading-h2 {
  font-size: 58px;
  line-height: 1em;
  font-weight: 700;
  letter-spacing: -1px;
}
@media (max-width: 1199px) {
  .heading-h2 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .heading-h2 {
    font-size: 32px;
  }
}

.heading-h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -1px;
}
@media (max-width: 991px) {
  .heading-h3 {
    font-size: 32px;
  }
}

.heading-h4 {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 991px) {
  .heading-h4 {
    font-size: 24px;
    letter-spacing: -1px;
  }
}

.heading-h5 {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
}

.text-default {
  font-size: 16px;
}

.text-large {
  font-size: 24px;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .text-large {
    font-size: 20px;
  }
}
.text-large b {
  line-height: 0;
}

.text-medium {
  font-size: 20px;
  line-height: 1.4;
}
@media (max-width: 1199px) {
  .text-medium {
    font-size: 18px;
    line-height: 1.5;
  }
}
.text-medium b {
  line-height: 0;
}

/*Button*/
.button {
  padding: 18px 32px;
  font-size: 18px;
  transition: 0.2s ease-in-out;
  line-height: 1;
  font-weight: 600;
  border-radius: 6px;
  display: inline-block;
  border: 2px solid transparent;
}
.button:hover {
  background-color: var(--colorPurpleDark);
}
.button.primary {
  background-color: var(--colorPurpleLight);
  border: 1px solid var(--colorPurpleLight);
  color: var(--colorWhite);
}
.button.primary:hover {
  color: var(--colorWhite);
  background-color: var(--colorPurpleHover);
  border-color: var(--colorPurpleHover);
}
.button.secondary {
  background-color: transparent;
  border: 1px solid var(--colorPurpleLight);
  color: var(--colorWhite);
}
.button.secondary:hover {
  color: var(--colorWhite);
  background-color: var(--colorPurpleHover);
  border-color: var(--colorPurpleHover);
}
.button.black {
  background-color: var(--colorBlack);
  border: 1px solid var(--colorBlack);
  color: var(--colorWhite);
}
.button.black:hover {
  background-color: var(--colorPurpleHover);
  border-color: var(--colorPurpleHover);
  color: var(--colorWhite);
}
@media (max-width: 767px) {
  .button {
    font-size: 16px;
    padding: 15px 24px;
  }
}

/*Block elements*/
body {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: var(--colorBase);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}

/*Animaciones*/
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.show-bg {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.show-bg.active {
  opacity: 1;
  transform: scale(1);
}

.animate-on-scroll.active.show-1 {
  transition-delay: 0.2s;
}

.animate-on-scroll.active.show-2 {
  transition-delay: 0.4s;
}

.animate-on-scroll.active.show-3 {
  transition-delay: 0.6s;
}

.animate-on-scroll.active.show-4 {
  transition-delay: 0.8s;
}

.animate-on-scroll.active.show-5 {
  transition-delay: 1s;
}

.animate-on-scroll.active.show-6 {
  transition-delay: 1.2s;
}

.animate-on-scroll.active.show-7 {
  transition-delay: 1.4s;
}

/*Header*/
header {
  position: fixed;
  width: 100%;
  z-index: 9;
  top: 0;
  transition: 200ms ease-in-out;
  border-bottom: 1px solid transparent;
}
header .header-inner {
  transition: 200ms ease-in-out;
}
header .header-inner .brand {
  height: 70px;
  position: relative;
  transition: 200ms ease-in-out;
}
@media (max-width: 1499px) {
  header .header-inner .brand {
    height: 55px;
  }
}
header .header-inner .brand img {
  height: 100%;
}
header .header-inner .menu {
  gap: 2.5rem;
}
@media (max-width: 1499px) {
  header .header-inner .menu {
    gap: 1.5rem;
  }
}
header .header-inner .menu a {
  color: var(--colorWhite);
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition: 200ms ease-in-out;
  font-size: 18px;
  letter-spacing: -1px;
}
header .header-inner .menu a::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--colorWhite);
  position: absolute;
  bottom: -2px;
  left: 50%;
  transition: 200ms ease-in-out;
}
header .header-inner .menu a:hover, header .header-inner .menu a.active {
  color: var(--colorWhite);
}
header .header-inner .menu a:hover::after, header .header-inner .menu a.active::after {
  left: 0;
  right: 0;
  width: 100%;
}
header .header-inner .menu .login a {
  font-size: 16px;
  padding: 12px 20px;
}
header .header-inner .menu .login a::after {
  display: none;
}
@media (max-width: 576px) {
  header .header-inner .menu .login a {
    padding: 10px 20px;
  }
}
header .toggle {
  justify-content: center;
  align-items: center;
  height: 100%;
}
header .toggle .toggle-inner {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 28px;
  height: 20px;
  margin-top: 0;
  position: relative;
  color: inherit;
}
header .toggle .toggle-inner span {
  background: transparent;
  display: inline-block;
  width: 28px;
  height: 2px;
  border-radius: 10px;
  background-color: var(--colorWhite);
  transition: all 0.3s ease-out;
  vertical-align: top;
  position: absolute;
  right: 0;
}
header .toggle .toggle-inner span:nth-child(2) {
  top: 8px;
  right: 0;
  width: 20px;
}
header .toggle .toggle-inner span:nth-child(3) {
  top: 16px;
  right: 0;
  width: 12px;
}
header .toggle:hover .toggle-inner span:nth-child(1) {
  width: 12px;
}
header .toggle:hover .toggle-inner span:nth-child(3) {
  width: 28px;
}
header.scroll {
  background-color: var(--bgPrimary);
}
header.scroll .header-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 1023px) {
  header.scroll .header-inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media (max-width: 767px) {
  header.scroll .header-inner {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
header.scroll .header-inner .brand {
  height: 50px;
}
header.scroll .header-inner .menu a {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--colorWhite);
}
header.scroll .header-inner .menu a::after {
  background-color: var(--colorGreen);
}
header.scroll .header-inner .menu a:hover, header.scroll .header-inner .menu a:focus {
  color: var(--colorGreen);
}
header.scroll .toggle .toggle-inner span {
  background-color: var(--colorWhite);
}

/*Custom blocks*/
.hero-index {
  background-color: #EFEAFE;
  overflow-x: hidden;
}
.hero-index .hero-caption .hero-text {
  max-width: 600px;
}
@media (max-width: 1023px) {
  .hero-index .hero-caption .hero-text {
    max-width: 450px;
  }
}
.hero-index .hero-caption .hero-text .heading-h1 {
  text-wrap: pretty;
}
.hero-index .hero-caption .hero-img .figure {
  width: 450px;
}
@media (max-width: 767px) {
  .hero-index .hero-caption .hero-img .figure {
    width: 80%;
    margin: auto;
  }
}
.hero-index .hero-caption .hero-img .leaf {
  bottom: -180px;
  right: 0;
  height: 300px;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .hero-index .hero-caption .hero-img .leaf {
    height: 200px;
    bottom: -50px;
  }
}

.section-intro {
  background-color: #EFEAFE;
  padding-bottom: 300px !important;
}
.section-intro .elem-1 {
  left: 32px;
  top: -64px;
  width: 94px;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .section-intro .elem-1 {
    display: none;
  }
}
.section-intro .elem-2 {
  width: 94px;
  right: 32px;
  bottom: 32px;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .section-intro .elem-2 {
    display: none;
  }
}

.section-cta {
  background-color: #F8F5FE;
}
.section-cta .block-cta {
  margin-top: -200px;
  border-radius: 16px;
  background-color: var(--colorWhite);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.section-steps {
  position: relative;
  overflow: hidden;
  background-color: #F8F5FE;
}
.section-steps .elem-1 {
  left: -150px;
  top: 0;
  width: 300px;
}
@media (max-width: 767px) {
  .section-steps .elem-1 {
    display: none;
  }
}
.section-steps .elem-2 {
  width: 300px;
  right: -150px;
  bottom: 0;
}
@media (max-width: 767px) {
  .section-steps .elem-2 {
    display: none;
  }
}
.section-steps .app-img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1023px) {
  .section-steps .reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
}

.section-how-works {
  background-color: #320061;
}
.section-how-works .how-bullets p {
  border-bottom: 1px solid #A55DE8;
}
.section-how-works .how-bullets p:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .section-how-works .elem-6 {
    display: none;
  }
}

.section-faqs {
  background-color: #EFEAFE;
}
.section-faqs .elem-1 {
  right: 50px;
  bottom: 50px;
  width: 150px;
}
@media (max-width: 767px) {
  .section-faqs .elem-1 {
    display: none;
  }
}
.section-faqs .accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section-faqs .accordion .accordion-item .accordion-header {
  background: var(--bgPrimary);
  color: #fff;
  padding: 1rem;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  border-radius: 12px;
}
@media (max-width: 576px) {
  .section-faqs .accordion .accordion-item .accordion-header {
    font-size: 18px;
  }
}
.section-faqs .accordion .accordion-item .accordion-header .caret {
  width: 13px;
}
.section-faqs .accordion .accordion-item .accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.section-faqs .accordion .accordion-item .accordion-content .accordion-content-inner {
  padding: 2rem 0;
}
.section-faqs .accordion .accordion-item .accordion-content .accordion-content-inner .description {
  margin-bottom: 2rem;
}

.section-form {
  padding-bottom: 200px !important;
}
.section-form input::-moz-placeholder, .section-form textarea::-moz-placeholder {
  color: #333;
}
.section-form input::placeholder,
.section-form textarea::placeholder {
  color: #333;
}
.section-form input,
.section-form textarea {
  color: #000;
  border: 1px solid var(--bgPrimary);
}
.section-form form {
  position: relative;
  z-index: 3;
}

.section-footer .elem-1 {
  width: 600px;
  opacity: 0.3;
}
@media (max-width: 767px) {
  .section-footer .elem-1 {
    width: 100%;
  }
}
.section-footer .social a {
  border: 2px solid var(--colorPurpleLight);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

#menu {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100vh;
  right: 0;
  top: 0;
  left: auto;
  position: fixed;
  width: 530px;
  will-change: right;
  right: -530px;
}
@media (max-width: 1023px) {
  #menu {
    width: 400px;
    right: -400px;
  }
}
@media (max-width: 767px) {
  #menu {
    width: 280px;
    right: -280px;
  }
}
#menu.menu-active {
  right: 0;
}
#menu .close {
  cursor: pointer;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 20px;
  z-index: 1;
  transition: 200ms ease-in-out;
}
#menu .cross {
  display: grid;
  height: 100%;
  place-items: center;
  position: absolute;
  width: 100%;
}
#menu .cross .bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: var(--colorWhite);
  border-radius: 10px;
  transform-origin: center center;
}
#menu .cross .bar:first-child {
  transform: rotate(-45deg);
}
#menu .cross .bar:last-child {
  transform: rotate(45deg);
}
#menu.menu-scroll .close {
  top: 1rem;
}
#menu .iso {
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  opacity: 0.3;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: difference;
}
#menu .login {
  position: relative;
  z-index: 3;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  #menu .login a {
    padding: 12px 19px;
    font-size: 16px;
  }
}

.menu-items {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.menu-items.active {
  opacity: 1;
  transform: translateY(0);
}
.menu-items.show {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.menu-items.show.appear {
  opacity: 1;
  transform: translateY(0);
}
.menu-items.show.appear.appear-1 {
  transition-delay: 0.2s;
}
.menu-items.show.appear.appear-2 {
  transition-delay: 0.4s;
}
.menu-items.show.appear.appear-3 {
  transition-delay: 0.6s;
}
.menu-items.show.appear.appear-4 {
  transition-delay: 0.8s;
}
.menu-items.show.appear.appear-5 {
  transition-delay: 1s;
}
.menu-items.show.appear.appear-6 {
  transition-delay: 1.2s;
}
.menu-items .nav-link {
  transition: 0.2s ease-in-out;
  color: var(--colorWhite);
  font-family: var(--FontBlack);
  letter-spacing: -1px;
  text-transform: uppercase;
  padding: 8px 0;
}
.menu-items .nav-link:hover {
  margin-right: 8px;
  color: var(--colorBlueLight) !important;
}

.chevron {
  position: absolute;
  right: 8px;
  height: 12px;
}

.menu-mobile {
  display: flex;
  flex-direction: column;
}

label.error {
  color: red;
}/*# sourceMappingURL=style.css.map */