@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;
  --colorBlue: #0000FF;
  --colorBlueDark: #0202a2;
  --colorGray:#d6dadd;
  --colorBase: #4d4d4d;
  --colorBlack: #000;
  --colorWhite: #fff;
}

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

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

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

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

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

.color-green-dark {
  color: var(--colorGreenDark);
}

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

.color-blue-dark {
  color: var(--colorBlueDark);
}

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

.bg-green-dark {
  background-color: var(--colorGreenDark);
}

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

.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;
}
@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;
}
@media (max-width: 1199px) {
  .heading-h2 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .heading-h2 {
    font-size: 32px;
  }
}

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

.heading-h4 {
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .heading-h4 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .heading-h4 {
    font-size: 22px;
  }
}

.heading-h5 {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .heading-h5 {
    font-size: 24px;
  }
}

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

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

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

/*Button*/
.button {
  border: 1px solid transparent;
  padding: 14px 32px;
  font-size: 16px;
  transition: 0.2s ease-in-out;
  background-color: var(--colorBlue);
  line-height: 1;
  font-weight: 500;
  border-radius: 32px;
  display: inline-block;
  border: 1px solid transparent;
  color: var(--colorWhite);
}
.button:hover {
  background-color: var(--colorBlueDark);
}
@media (max-width: 767px) {
  .button {
    font-size: 14px;
    padding: 12px 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;
}
@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: 576px) {
  header .header-inner .brand {
    height: 50px;
  }
}
header .header-inner .brand img {
  height: 100%;
}
header .header-inner .menu a {
  color: var(--colorWhite);
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: 200ms ease-in-out;
  font-size: 18px;
  letter-spacing: -1px;
}
header .header-inner .menu a::after {
  content: "";
  width: 0;
  height: 3px;
  background-color: var(--colorWhite);
  position: absolute;
  bottom: -5px;
  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 .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(--colorBlue);
}
header.scroll .header-inner {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
}
@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 {
  overflow: hidden;
  background-color: #333;
}
.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;
}

.section-intro {
  background-color: var(--colorGreenDry);
}
.section-intro .ax {
  height: 140px;
}
@media (max-width: 1023px) {
  .section-intro .ax {
    height: 100px;
  }
}
@media (max-width: 767px) {
  .section-intro .ax {
    padding-left: 200px;
  }
}
@media (max-width: 576px) {
  .section-intro .ax {
    padding-left: 0;
  }
}

.section-services {
  position: relative;
}
.section-services .elem-1 {
  height: 300px;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 1023px) {
  .section-services .elem-1 {
    display: none;
  }
}
.section-services .elem-2 {
  height: 550px;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 1299px) {
  .section-services .elem-2 {
    height: 400px;
  }
}
@media (max-width: 1023px) {
  .section-services .elem-2 {
    display: none;
  }
}
.section-services .elem-3 {
  height: 120px;
  right: 4%;
  top: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .section-services .elem-3 {
    display: none;
  }
}
.section-services .elem-5 {
  top: -1px;
  right: 0;
  width: 150px;
  z-index: 1;
  display: none;
}
@media (max-width: 767px) {
  .section-services .elem-5 {
    display: block;
  }
}

.section-about .overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top right;
     object-position: top right;
  height: 60%;
}

.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(--colorGreen);
}
.section-form .elem-4 {
  top: 0;
  right: 0;
  width: 300px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .section-form .elem-4 {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .section-form .elem-4 {
    display: none;
  }
}
.section-form .elem-5 {
  top: -1px;
  right: 0;
  width: 450px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .section-form .elem-5 {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .section-form .elem-5 {
    width: 150px;
  }
}
.section-form form {
  position: relative;
  z-index: 3;
}

.section-footer .bg-footer {
  background-image: url("../images/pixels.svg");
  background-repeat: repeat-x;
  background-position: center bottom;
}

#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(--colorBlack);
  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-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;
  color: var(--colorBlack);
  font-family: var(--FontBlack);
  letter-spacing: -1px;
  text-transform: uppercase;
}
.menu-items .nav-link:hover {
  margin-right: 8px;
  color: var(--colorBlueDark) !important;
}

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

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

button.loading {
  position: relative;
  color: transparent !important;
}

.button.loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */