@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";
  --colorGray: #EAEEF3;
  --colorBlue:#002B58;
  --colorBlueLight:#00AAFB;
  --colorBlack: #000;
  --colorWhite: #fff;
  --colorBlueTransparent:#48709c4a;
}

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

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

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

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

.color-blue {
  color: var(--colorBlue);
}

.color-bluelight {
  color: var(--colorBlueLight);
}

.bg-blue {
  background-color: var(--colorBlue);
}

.bg-bluelight {
  background-color: var(--colorBlueLight);
}

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

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

.border-blue-transparent {
  border-color: var(--colorBlueTransparent);
}

.cursor-pointer {
  cursor: pointer;
}

.light {
  font-family: var(--FontLight) !important;
}

.bold, b {
  font-family: var(--FontBold) !important;
}

.book {
  font-family: var(--FontBook) !important;
}

.black {
  font-family: var(--FontBlack) !important;
}

.rounded-xxl {
  border-radius: 24px;
}

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

p {
  color: var(--colorBlue);
}
p b {
  line-height: 0;
}

.heading-h1 {
  font-family: "GothamBlack";
  font-size: 84px;
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -1px;
}
@media (max-width: 1199px) {
  .heading-h1 {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .heading-h1 {
    font-size: 42px;
  }
}

.heading-h2 {
  font-family: "GothamBlack";
  font-size: 52px;
  line-height: 1;
  letter-spacing: -2px;
}
@media (max-width: 1199px) {
  .heading-h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .heading-h2 {
    font-size: 32px;
  }
}

.heading-h3 {
  font-family: "GothamBlack";
  font-size: 42px;
  letter-spacing: -2px;
  line-height: 1;
}
@media (max-width: 1199px) {
  .heading-h3 {
    font-size: 32px;
  }
}

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

.text-large {
  font-family: "GothamBook";
  font-size: 24px;
  letter-spacing: -1px;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .text-large {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .text-large {
    font-size: 20px;
  }
}
.text-large b {
  line-height: 0;
}

.text-medium {
  font-family: "GothamBook";
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 1.3;
}
@media (max-width: 1199px) {
  .text-medium {
    font-size: 18px;
  }
}
.text-medium b {
  line-height: 0;
}

/*Button*/
.button {
  border: 1px solid transparent;
  padding: 20px 24px 10px;
  font-size: 14px;
  font-family: var(--FontBold);
  transition: 0.2s ease-in-out;
  color: var(--colorWhite);
  line-height: 1;
  border-radius: 24px;
  display: inline-block;
  border: 2px solid var(--colorBlueTransparent);
  transition: 0.2s all ease-in-out;
}
.button span {
  border-radius: 12px;
}
.button span img {
  top: -1px;
}
.button span i {
  font-style: normal;
  position: relative;
  top: 4px;
}
.button:hover {
  border-color: var(--colorWhite);
  color: var(--colorWhite);
}
.button:hover span {
  background-color: var(--colorGray);
}
.button:hover span svg path {
  fill: var(--colorBlue);
}
.button:hover span i {
  color: var(--colorBlue);
}

/*Block elements*/
body {
  font-family: var(--FontBook), "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 26px;
  background-color: var(--colorGray);
  color: var(--colorBlue);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@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 .container {
  max-width: inherit;
}
header .header-inner {
  transition: 200ms ease-in-out;
}
header .header-inner .brand img {
  transition: 200ms ease-in-out;
  height: 50px;
}
@media (max-width: 1023px) {
  header .header-inner .brand img {
    height: 40px;
  }
}
@media (max-width: 576px) {
  header .header-inner .brand img {
    height: 30px;
  }
}
header .header-inner .menu a:hover,
header .header-inner .menu a.active {
  color: var(--colorBlue);
}
header.scroll {
  border-bottom-color: #eee;
  background-color: #fff;
}
header.scroll .header-inner {
  padding-top: 0;
  padding-bottom: 0;
}
@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 img {
  height: 50px;
}
@media (max-width: 1023px) {
  header.scroll .header-inner .brand img {
    height: 40px;
  }
}
@media (max-width: 576px) {
  header.scroll .header-inner .brand img {
    height: 30px;
  }
}
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(--colorBlack);
  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;
}

/*Custom blocks*/
.section-index .heading-h1 {
  transition: 0.2s ease-in-out;
  font-size: 250px !important;
  letter-spacing: -15px;
}
@media (max-width: 1299px) {
  .section-index .heading-h1 {
    font-size: 190px !important;
  }
}
@media (max-width: 1023px) {
  .section-index .heading-h1 {
    font-size: 134px !important;
    letter-spacing: -10px;
  }
}
@media (max-width: 767px) {
  .section-index .heading-h1 {
    font-size: 92px !important;
    letter-spacing: -6px;
  }
}
@media (max-width: 520px) {
  .section-index .heading-h1 {
    font-size: 62px !important;
    letter-spacing: -4px;
  }
}
.section-index .car {
  width: 100%;
  max-width: 800px;
}
@media (max-width: 1023px) {
  .section-index .car {
    max-width: 500px;
  }
}
.section-index .bg-hero {
  bottom: 99%;
}

@media (min-width: 1024px) {
  .section-intro .featured {
    max-width: 160px;
  }
}
.section-intro .cars {
  width: 100%;
  max-width: 800px;
}

.section-faqs .bg-faqs {
  bottom: 99%;
}
.section-faqs .bg-faqs-bottom {
  top: 99%;
  transform: rotate(180deg);
}

.section-footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: var(--colorGreen);
  border-radius: 96px 0 0 0;
}
@media (max-width: 1023px) {
  .section-footer::after {
    width: 65%;
  }
}
@media (max-width: 639px) {
  .section-footer::after {
    width: 100%;
    border-radius: 48px 48px 0 0;
  }
}
.section-footer .footer-social {
  display: flex;
  align-items: center;
}
.section-footer .footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  background-color: var(--colorGreenDark);
}
.section-footer .footer-social a img {
  height: 16px;
  width: auto;
}
.section-footer .footer-social a:hover {
  background-color: var(--colorPinkHover);
}

.social {
  border: 2px solid #fff;
  transition: 200ms ease-in-out;
}
.social svg path {
  transition: 200ms ease-in-out;
}

.social:hover {
  background-color: #fff;
}
.social:hover svg path {
  fill: black;
}

.whatsapp {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 16px;
  right: 16px;
}
@media (max-width: 767px) {
  .whatsapp {
    width: 36px;
    height: 36px;
  }
}

#menu {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100vh;
  top: 0;
  left: auto;
  position: fixed;
  will-change: right;
  width: 300px;
  right: -420px;
}
@media (max-width: 767px) {
  #menu {
    width: 240px;
    right: -360px;
  }
}
#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 .bg-menu {
  right: 99%;
  width: 120px;
  min-height: 100%;
}

.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;
}
@media (max-width: 767px) {
  .menu-items .text-large {
    font-size: 20px;
  }
}
.menu-items .nav-link {
  transition: 0.2s ease-in-out;
}
.menu-items .nav-link:hover {
  margin-right: 8px;
  color: var(--colorPrimary) !important;
}

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

.menu-social {
  display: flex;
  align-items: center;
}
.menu-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  background-color: var(--colorPinkHover);
}
.menu-social a:hover {
  background-color: var(--colorPinkHover);
}

.menu-mobile {
  display: flex;
  flex-direction: column;
}
[data-faq-content] {
  transition: height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */