@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;
}
@font-face {
  font-family: "OttawaRegular";
  src: url("../fonts/ottawan-webfont.woff2") format("woff2"), url("../fonts/ottawan-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OttawaBold";
  src: url("../fonts/ottawab-webfont.woff2") format("woff2"), url("../fonts/ottawab-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  --FontBlack: "GothamBlack";
  --FontBold: "GothamBold";
  --FontBook: "GothamBook";
  --FontLight: "GothamLight";
  --OttawaRegular: "OttawaRegular";
  --OttawaBold: "OttawaBold";
  --bgColor: #1A1A1A;
  --bgGray: #333333;
  --colorPrimary:#ed974e;
  --colorPrimaryHover: #ca6e1e;
  --colorSecondary:#24C5CF;
  --colorSecondaryHover: #108d96;
  --colorBase: #1A1A1A;
  --colorBlack: #000;
  --colorText:#F9F9F9;
}

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

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

.color-secondary {
  color: var(--colorSecondary);
}

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

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

.bg-primary-gray-500 {
  background-color: rgba(51, 51, 51, 0.5);
}

.bg-primary-gray-800 {
  background-color: rgba(51, 51, 51, 0.8);
}

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

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

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

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

.ottawa {
  font-family: var(--OttawaRegular);
}

.ottawa-bold {
  font-family: var(--OttawaBold);
}

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

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

.heading-h2 {
  font-size: 54px;
  line-height: 1;
}
@media (max-width: 767px) {
  .heading-h2 {
    font-size: 40px;
  }
}

.heading-h3 {
  font-size: 50px;
  line-height: 1;
}
@media (max-width: 767px) {
  .heading-h3 {
    font-size: 38px;
  }
}

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

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

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

@media (max-width: 1023px) {
  .container {
    max-width: 100% !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.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;
}

.animate-on-scroll.active.show-8 {
  transition-delay: 1.6s;
}

/*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;
}
header .header-inner .brand-centered {
  align-items: center;
  justify-content: center;
  transition: 200ms ease-in-out;
}
header .header-inner .brand-centered img {
  width: 100px;
  transition: 200ms ease-in-out;
}
header .header-inner .menu a:hover,
header .header-inner .menu a.active {
  color: var(--colorPrimary);
}
header.scroll {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.15);
}
header.scroll .header-inner {
  padding-top: 8px;
  padding-bottom: 8px;
}
@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-centered {
  padding: 8px;
}
header.scroll .header-inner .brand-centered img {
  width: 50px;
}
header .toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  right: 0;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  header .toggle {
    display: none;
  }
}
header .toggle .toggle-inner {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 24px;
  height: 24px;
  margin-top: 0;
  position: relative;
  color: inherit;
  line-height: 9px;
}
header .toggle .toggle-inner span {
  background: transparent;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s ease-out;
  vertical-align: top;
  position: absolute;
  left: 0;
}
header .toggle .toggle-inner span:nth-child(2) {
  left: 9px;
}
header .toggle .toggle-inner span:nth-child(3) {
  left: 18px;
}
header .toggle .toggle-inner span:nth-child(4) {
  top: 9px;
}
header .toggle .toggle-inner span:nth-child(5) {
  top: 9px;
  left: 9px;
}
header .toggle .toggle-inner span:nth-child(6) {
  top: 9px;
  left: 18px;
}
header .toggle .toggle-inner span:nth-child(7) {
  top: 18px;
}
header .toggle .toggle-inner span:nth-child(8) {
  top: 18px;
  left: 9px;
}
header .toggle .toggle-inner span:nth-child(9) {
  top: 18px;
  left: 18px;
}
header .toggle:hover .toggle-inner span:nth-child(1) {
  left: 18px;
}
header .toggle:hover .toggle-inner span:nth-child(3) {
  left: 0;
}
header .toggle:hover .toggle-inner span:nth-child(7) {
  left: 18px;
}
header .toggle:hover .toggle-inner span:nth-child(9) {
  left: 0;
}

/*Custom blocks*/
.hero-index {
  height: 90vh;
}

.section-intro {
  background-color: #065559;
}
.section-intro::before {
  content: "";
  position: absolute;
  height: 180px;
  background-image: url(../images/bg_intro_sup.png);
  width: 100%;
  top: -179px;
  background-position: center top;
  background-size: cover;
  z-index: 1;
}
@media (max-width: 767px) {
  .section-intro::before {
    height: 64px;
    top: -63px;
  }
}
.section-intro::after {
  content: "";
  position: absolute;
  height: 180px;
  background-image: url(../images/bg_intro_inf.png);
  width: 100%;
  bottom: -179px;
  background-position: center top;
  background-size: cover;
  z-index: 1;
}
@media (max-width: 767px) {
  .section-intro::after {
    height: 64px;
    bottom: -63px;
  }
}

.section-services {
  background-color: #0099B1;
}
.section-services::after {
  content: "";
  position: absolute;
  height: 180px;
  background-image: url(../images/bg_services_inf.png);
  width: 100%;
  bottom: -179px;
  background-position: center top;
  background-size: cover;
  z-index: 1;
}
@media (max-width: 767px) {
  .section-services::after {
    height: 64px;
    bottom: -63px;
  }
}

.section-lotes {
  background-color: #fff;
}

.section-gallery {
  background-color: #fff;
}
.section-gallery .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-gallery .swiper-slide img {
  width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.section-gallery .swiper-slide-active img {
  opacity: 1;
}
.section-gallery .swiper-button-next,
.section-gallery .swiper-button-prev {
  color: var(--colorSecondary);
}
.section-gallery .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.8;
}
.section-gallery .swiper-pagination-bullet-active {
  background-color: var(--colorSecondary);
}

.section-location {
  overflow: hidden;
  height: 900px;
}
@media (max-width: 1278px) {
  .section-location {
    height: 720px;
  }
}
@media (max-width: 767px) {
  .section-location {
    height: 540px;
  }
}
.section-location .bg-location {
  height: 100%;
  background-image: url(../images/bg_location.jpg);
  background-size: cover;
  background-position: center bottom;
}
.section-location .locations {
  height: 100%;
  margin-top: 84px;
}
@media (max-width: 1278px) {
  .section-location .locations {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .section-location .locations {
    margin-top: -96px;
  }
}
.section-location .locations span {
  position: absolute;
  display: flex;
  gap: 2px;
  align-items: flex-end;
  z-index: 20;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
}
.section-location .locations span img {
  width: 50px;
}
.section-location .locations span p {
  font-size: 24px;
  font-family: var(--FontBold);
  letter-spacing: -1px;
  text-wrap: nowrap;
}
.section-location .locations span.loc-1 {
  top: 260px;
  left: 32%;
}
@media (max-width: 767px) {
  .section-location .locations span.loc-1 {
    top: 285px;
    left: 29%;
  }
}
.section-location .locations span.loc-1 p {
  font-size: 14px;
}
@media (max-width: 767px) {
  .section-location .locations span.loc-1 p {
    font-size: 16px;
  }
}
.section-location .locations span.loc-1 img {
  width: 30px;
}
.section-location .locations span.loc-2 {
  top: 280px;
  left: 3%;
}
@media (max-width: 1023px) {
  .section-location .locations span.loc-2 {
    left: 0%;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .section-location .locations span.loc-2 {
    top: 310px;
  }
}
.section-location .locations span.loc-2 p {
  font-size: 15px;
}
@media (max-width: 767px) {
  .section-location .locations span.loc-2 p {
    font-size: 16px;
  }
}
.section-location .locations span.loc-2 img {
  width: 35px;
}
@media (max-width: 767px) {
  .section-location .locations span.loc-2 img {
    width: 30px;
  }
}
.section-location .locations span.loc-3 {
  top: 500px;
  left: 1%;
}
@media (max-width: 1278px) {
  .section-location .locations span.loc-3 {
    left: 6%;
    top: 400px;
    flex-direction: row;
  }
}
@media (max-width: 1023px) {
  .section-location .locations span.loc-3 {
    left: 0%;
  }
}
@media (max-width: 767px) {
  .section-location .locations span.loc-3 {
    top: 380px;
    left: -2%;
  }
}
.section-location .locations span.loc-3 p {
  font-size: 18px;
}
@media (max-width: 767px) {
  .section-location .locations span.loc-3 p {
    font-size: 16px;
  }
}
.section-location .locations span.loc-3 img {
  width: 50px;
}
@media (max-width: 767px) {
  .section-location .locations span.loc-3 img {
    width: 30px;
  }
}
.section-location .locations span.loc-4 {
  top: 230px;
  left: 73%;
  flex-direction: row;
}
@media (max-width: 767px) {
  .section-location .locations span.loc-4 {
    top: 260px;
    flex-direction: row-reverse;
  }
}
.section-location .locations span.loc-4 p {
  font-size: 12px;
}
.section-location .locations span.loc-4 img {
  width: 25px;
}
.section-location .locations span.loc-5 {
  top: 310px;
  left: 50%;
  flex-direction: row;
}
@media (max-width: 767px) {
  .section-location .locations span.loc-5 {
    top: 330px;
    left: 53%;
  }
}
.section-location .locations span.loc-5 p {
  font-size: 20px;
}
@media (max-width: 1023px) {
  .section-location .locations span.loc-5 p {
    width: 18px;
  }
}
@media (max-width: 767px) {
  .section-location .locations span.loc-5 p {
    font-size: 16px;
  }
}
.section-location .locations span.loc-5 img {
  width: 50px;
}
@media (max-width: 1023px) {
  .section-location .locations span.loc-5 img {
    width: 40px;
  }
}
@media (max-width: 767px) {
  .section-location .locations span.loc-5 img {
    width: 30px;
  }
}
.section-location .locations span.loc-6 {
  top: 400px;
  left: 76%;
}
@media (max-width: 767px) {
  .section-location .locations span.loc-6 {
    top: 380px;
  }
}
.section-location .locations span.loc-6 p {
  font-size: 16px;
}
.section-location .locations span.loc-6 img {
  width: 40px;
}
@media (max-width: 767px) {
  .section-location .locations span.loc-6 img {
    width: 30px;
  }
}
.section-location .locations span.loc-7 {
  top: 470px;
  left: 60%;
  flex-direction: row;
}
@media (max-width: 767px) {
  .section-location .locations span.loc-7 {
    top: 440px;
  }
}
.section-location .locations span.loc-7 p {
  font-size: 18px;
}
@media (max-width: 767px) {
  .section-location .locations span.loc-7 p {
    font-size: 16px;
  }
}
.section-location .locations span.loc-7 img {
  width: 50px;
}
@media (max-width: 767px) {
  .section-location .locations span.loc-7 img {
    width: 30px;
  }
}

.section-form {
  background-image: url(../images/bg_form.png);
  background-size: auto;
  background-position: center bottom;
  z-index: 2;
  background-color: #ed974e;
}

.section-footer {
  background-image: url(../images/bg_contact_inf.png);
  background-size: auto;
  background-position: center top;
  background-repeat: no-repeat;
}

.social {
  transition: 200ms ease-in-out;
}
.social svg path {
  transition: 200ms ease-in-out;
  fill: #0099B1;
}

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

#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: 40px;
  justify-content: center;
  position: absolute;
  right: 1.3rem;
  top: 1.8rem;
  width: 30px;
  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: 3px;
  position: absolute;
  background-color: #fff;
  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-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;
}/*# sourceMappingURL=style.css.map */