@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";
  --bgColor: #432A1C;
  --bgColorBrownDark: #130A05;
  --bgGray: #333333;
  --colorPrimary:#58B351;
  --colorPrimaryHover: #418e3b;
  --colorBase: #1A1A1A;
  --colorBlack: #000;
  --colorText:#F9F9F9;
}

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

.color-primary {
  color: var(--colorPrimary);
}

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

.bg-base {
  background-color: var(--bgColor);
}

.bg-brown-dark {
  background-color: var(--bgColorBrownDark);
}

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

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

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

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

p {
  color: var(--colorText);
}

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

@media (max-width: 1023px) {
  .size-title {
    font-size: 34px;
    line-height: 40px;
  }
}
.font-size-20 {
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .font-size-20 {
    font-size: 16px;
    font-weight: 300;
  }
}

.font-size-18 {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .font-size-18 {
    font-size: 16px;
    font-weight: 300;
  }
}

.button {
  border: 1px solid transparent;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  transition: 200ms ease-in-out;
  background-color: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: #fff;
  display: inline-block;
}
.button:hover {
  background-color: var(--colorPrimaryHover);
  border-color: var(--colorPrimaryHover);
}

.field {
  background-color: transparent;
  border-bottom: 1px solid #fff;
}

body {
  font-family: var(--FontBook), sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--colorText);
  background-color: var(--bgColor);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1279px) {
  .container {
    max-width: 1200px !important;
  }
}

.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  top: 0;
  -o-object-position: top center;
     object-position: top center;
}

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

.animate-on-scroll.animate-fade {
  opacity: 0;
  transform: none;
  transition: opacity 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;
}
header .header-inner {
  max-width: 1680px;
  margin: auto;
  transition: 200ms ease-in-out;
}
@media (max-width: 400px) {
  header .header-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
header .header-inner .brand-wrapper {
  padding-top: 50px;
  padding-bottom: 10px;
  transition: 200ms ease-in-out;
}
@media (max-width: 767px) {
  header .header-inner .brand-wrapper {
    padding-top: 20px;
  }
}
header .header-inner .brand-wrapper .brand {
  width: 240px;
  transition: 200ms ease-in-out;
}
@media (max-width: 767px) {
  header .header-inner .brand-wrapper .brand {
    width: 140px;
  }
}
header .header-inner .brand-wrapper .brand img {
  width: 100%;
}
header .header-inner .brand-wrapper .menu a:hover,
header .header-inner .brand-wrapper .menu a.active {
  color: var(--colorPrimary);
}
@media (max-width: 767px) {
  header .header-inner .brand-wrapper .menu .nav-link {
    font-size: 13px;
  }
}
header.scroll {
  background-color: var(--bgColor);
}
header.scroll .header-inner {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 1023px) {
  header.scroll .header-inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (max-width: 767px) {
  header.scroll .header-inner {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
header.scroll .header-inner .brand-wrapper {
  padding-top: 20px;
  padding-bottom: 0;
}
header.scroll .header-inner .brand-wrapper .brand {
  width: 140px;
}
header.scroll .header-inner .menu {
  padding-bottom: 20px;
}
@media (max-width: 400px) {
  header.scroll .header-inner .menu {
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .hero-index {
    padding-top: 12rem !important;
    height: auto !important;
  }
}/*# sourceMappingURL=style.css.map */