@font-face {
  font-family: "Fa brands 400";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #202020;
  --dark-gray: #707070;
  --black-low-contrast: #2b2b2b;
  --light-gray: #f8f8f8;
  --white-low-contrast: whitesmoke;
  --gray: #69696900;
  --white: #ffffff5c;
  --red: #ee5f5f;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--black);
  background-color: #f9f9f9;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  line-height: 130%;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Spectral, sans-serif;
  font-size: 56.83px;
  font-weight: 400;
  line-height: 130%;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Spectral, sans-serif;
  font-size: 42.63px;
  font-weight: 400;
  line-height: 130%;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Spectral, sans-serif;
  font-size: 31.98px;
  font-weight: 400;
  line-height: 130%;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Spectral, sans-serif;
  font-size: 23.99px;
  font-weight: 400;
  line-height: 130%;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Spectral, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Spectral, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 130%;
}

p {
  margin-bottom: 0;
  line-height: 150%;
}

a {
  color: var(--dark-gray);
  padding: 0;
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--black-low-contrast);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 32px;
}

li {
  padding-bottom: 8px;
  padding-left: 4px;
}

label {
  margin-bottom: 0;
  font-weight: 400;
  display: block;
}

blockquote {
  border-left: 8px solid #2e51e8;
  margin-bottom: 24px;
  padding: 10px 20px;
  font-style: italic;
  line-height: 150%;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 80%;
  max-width: 1272px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: block;
}

.container.nav {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  border-bottom: 1px solid var(--light-gray);
  justify-content: space-between;
  align-items: center;
  max-width: none;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.container.no-max-width {
  width: 100%;
  max-width: none;
  padding-left: 100px;
  padding-right: 20px;
  display: block;
}

.container.no-max-width._1 {
  display: none;
}

.container.no-max-width.ph.tablet, .container.no-max-width.mhome {
  padding-left: 80px;
}

.heading-style-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr;
}

.text-500 {
  font-weight: 500;
}

.text-style-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr;
}

.text-large {
  font-size: 23.99px;
  line-height: 130%;
}

.paragraph-large {
  font-size: 23.99px;
  line-height: 150%;
}

.paragraph-large.text-italic {
  color: var(--light-gray);
  width: 100%;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-style: normal;
  position: static;
}

.paragraph-large.text-italic.ph {
  color: var(--light-gray);
}

.style-label {
  margin-bottom: 4px;
  font-size: 14.4px;
  line-height: 130%;
}

.rich-text {
  text-align: left;
}

.rich-text h2 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.rich-text p {
  padding-bottom: 24px;
}

.rich-text h3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.rich-text ul {
  padding-bottom: 16px;
  line-height: 150%;
  list-style-type: disc;
}

.rich-text ol {
  padding-bottom: 16px;
  line-height: 150%;
}

.rich-text h4 {
  padding-top: 12px;
  padding-bottom: 10px;
}

.rich-text blockquote {
  border-left-width: 8px;
  border-left-color: var(--black-low-contrast);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 150%;
}

.rich-text h5 {
  padding-top: 12px;
  padding-bottom: 8px;
}

.rich-text h6 {
  padding-top: 12px;
  padding-bottom: 6px;
}

.rich-text a {
  border-bottom: 2px dotted var(--dark-gray);
  transition: border-color .2s, color .2s;
}

.rich-text a:hover {
  border-bottom-color: var(--black-low-contrast);
}

.rich-text figure {
  margin-bottom: 24px;
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
  display: block;
  position: relative;
}

.section.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section.hero {
  background-image: linear-gradient(90deg, #000000b3, #0000001a), url('../images/DSC_3458-1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 9%;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.section.black {
  background-color: var(--black);
}

.section.white-low {
  background-color: #f1f1f1;
  padding-top: 100px;
}

.section.thin-bottom-padding {
  padding-bottom: 48px;
}

.section.sizing-grow {
  flex: 1;
}

.section.thin-top-padding {
  padding-top: 48px;
}

.section.prod2.f {
  padding-top: 40px;
}

.section.serv {
  background-color: #e7e7e7;
}

.color-block {
  border: 1px solid var(--light-gray);
  background-color: var(--black);
  width: 100%;
  height: 100px;
}

.color-block.white-low-contrast {
  background-color: var(--white-low-contrast);
}

.color-block.dark-gray {
  background-color: var(--dark-gray);
}

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

.color-block.light-gray {
  background-color: var(--light-gray);
}

.color-block.black-low-contrast {
  background-color: var(--black-low-contrast);
}

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

.button {
  border: 1px solid var(--black);
  color: var(--black);
  text-align: center;
  background-color: #0000;
  justify-content: center;
  min-width: 184px;
  padding: 14px;
  font-weight: 400;
  transition: border-color .2s, background-color .2s;
  display: flex;
}

.button:hover {
  background-color: var(--black);
  color: var(--white);
}

.button.white {
  border: 1px solid var(--white);
  color: var(--light-gray);
  background-color: #0000;
  font-family: Montserrat, sans-serif;
}

.button.white:hover {
  background-color: var(--white);
  color: var(--black);
}

.button.white.boton {
  border-color: var(--light-gray);
  color: var(--white-low-contrast);
  font-size: 16px;
}

.button.small {
  min-width: 104px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar {
  background-color: var(--white-low-contrast);
  align-items: center;
  width: 100%;
  height: 80px;
  min-height: 60px;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.nav-link {
  color: var(--black);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 69px;
  text-decoration: none;
  transition: font-size .2s, color .2s;
  display: flex;
}

.nav-link:hover {
  color: var(--dark-gray);
}

.nav-link.w--current {
  color: var(--gray);
}

.nav-link-wrap {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  overflow: auto;
}

.text-italic {
  font-style: italic;
}

.menu-button {
  z-index: 100;
  justify-content: flex-end;
  align-items: center;
  width: 32px;
  height: 60px;
  margin-left: 20px;
  padding: 0;
  display: flex;
}

.menu-button.w--open {
  background-color: #0000;
}

.nav-menu {
  background-color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  min-width: 400px;
  height: 100vh;
  padding-top: 60px;
  padding-bottom: 100px;
  display: flex;
  position: absolute;
}

.nav-menu.tabl.homeee {
  display: none;
}

.menu-bar-1 {
  background-color: var(--black);
  border-radius: 100px;
  width: 27px;
  height: 2px;
  position: absolute;
  inset: 21px 0% auto auto;
}

.menu-bar-2 {
  background-color: var(--black);
  border-radius: 100px;
  width: 20px;
  height: 2px;
  position: absolute;
  inset: 29px 0% 0% auto;
}

.menu-bar-3 {
  background-color: var(--black);
  border-radius: 100px;
  width: 27px;
  height: 2px;
  position: absolute;
  inset: 37px 0% auto auto;
}

.style-heading {
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 36px;
  padding-bottom: 16px;
}

.text-xl {
  color: var(--white-low-contrast);
  text-align: left;
  width: 100%;
  height: 79.9%;
  font-family: Montserrat, sans-serif;
  font-size: 55px;
  font-weight: 400;
  line-height: 130%;
}

.text-xl.ph {
  color: var(--white-low-contrast);
}

.nav-blur-background {
  z-index: 0;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: #20202080;
  width: 100vw;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: absolute;
  inset: 0%;
}

.nav-button {
  background-color: var(--black);
  color: var(--white);
  align-items: center;
  padding-left: 29px;
  padding-right: 29px;
  font-weight: 400;
  transition-property: background-color;
  display: flex;
}

.nav-button:hover {
  color: #f9f9f9;
  background-color: #2b2b2b;
}

.nav-button-wrap {
  display: flex;
}

.hero-content {
  z-index: 1;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: var(--white);
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  max-width: 1600px;
  min-height: 50vw;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: flex;
  position: relative;
}

.concept-content {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 808px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.gallery-content {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.gallery-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template: ". . ."
                 ". . ."
                 ". Area-3 Area-2"
                 "Area Area Area-2"
                 ". . ."
                 / 1fr 1fr 1fr;
}

.gallery-image {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  transition: transform .3s;
}

.gallery-image:hover {
  transform: scale(1.05);
}

.tab-link {
  background-color: #0000;
  border-bottom: 2px solid #0000;
  padding: 5px 0;
  transition: border-color .2s;
}

.tab-link:hover {
  border-bottom-color: var(--gray);
  color: var(--black);
}

.tab-link.w--current {
  border-bottom: 2px solid var(--black);
  background-color: #0000;
}

.tabs-menu {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  justify-content: center;
  margin-bottom: 40px;
  display: flex;
}

.tabs-menu.pro {
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.unit-content {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  display: flex;
  position: relative;
}

.unit-content.productos1 {
  display: none;
}

.slider {
  background-color: #0000;
  height: auto;
  position: static;
}

.right-arrow {
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  transition: transform .2s;
  display: flex;
  inset: 0% 0% auto auto;
}

.right-arrow:hover {
  transform: translate(4px);
}

.left-arrow {
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  transition: transform .2s;
  display: flex;
  inset: 0% 64px auto auto;
}

.left-arrow:hover {
  transform: translate(-4px);
}

.unit-type-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.unit-details {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  border: 1px solid var(--light-gray);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 52px 24px;
  display: flex;
}

.specs {
  grid-column-gap: 41px;
  grid-row-gap: 29px;
  grid-template-rows: auto auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-small {
  color: var(--dark-gray);
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 13.5px;
}

.text-small.text-bold {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.text-small.precios {
  text-align: center;
}

.spec-block {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  display: flex;
}

.font-spectral {
  font-family: Spectral, sans-serif;
}

.font-spectral.text-large {
  font-family: Montserrat, sans-serif;
  display: flex;
}

.font-spectral.text-large.p1 {
  text-align: center;
  font-size: 18px;
}

.font-spectral.text-large.p1.precios {
  margin-top: 20px;
  margin-bottom: 20px;
}

.floor-plan {
  grid-column-gap: 42px;
  grid-row-gap: 6px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: max-content max-content 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.floor-plan-link {
  border-bottom: 2px solid var(--light-gray);
  color: var(--black);
  text-align: center;
  padding-bottom: 4px;
  transition-property: border-color;
}

.floor-plan-link:hover {
  border-bottom-color: var(--black);
  color: var(--black);
}

.facilities-content {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  display: flex;
}

.facilities-card-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  display: grid;
}

.facilities-card-wrap.maderas-constr {
  grid-template-columns: 1fr 1fr;
}

.facilities-card-wrap.pr2 {
  margin-top: 0;
}

.facilities-card {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--light-gray);
  background-color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 22px;
  display: flex;
}

.facilities-card.pr1 {
  padding: 0 0 10px;
}

.text-dark-gray {
  color: var(--dark-gray);
}

.location-content {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.map {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 390px;
  display: flex;
  overflow: hidden;
  transform: translate(0);
}

.dotted-line-wrap {
  flex-direction: column;
  align-items: center;
  width: 41px;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
  overflow: hidden;
}

.location-circle {
  background-color: var(--black);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 41px;
  height: 41px;
  display: flex;
}

.location-card {
  grid-column-gap: 26px;
  grid-row-gap: 0px;
  grid-template-rows: minmax(41px, auto) auto;
  grid-template-columns: max-content minmax(auto, 416px);
  grid-auto-columns: 1fr;
  align-content: start;
  align-items: start;
  height: 100%;
  padding-bottom: 32px;
  display: grid;
  position: relative;
}

.location-card.last-left, .location-card.last-right {
  background-color: var(--white);
}

.location-card-wrap {
  flex-direction: column;
  display: flex;
  position: relative;
}

.location-card-outer-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: none;
}

.project-progress-content {
  grid-column-gap: 44px;
  grid-row-gap: 44px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.progress-image-1 {
  object-fit: contain;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.progress-image-2 {
  object-fit: contain;
  width: 100%;
  max-width: 400px;
  margin-top: 180px;
  margin-left: -24px;
  position: relative;
}

.progress-image-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  display: grid;
}

.progress-details-wrap {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  display: flex;
}

.progress-card {
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 452px;
  display: flex;
  position: relative;
}

.progress-bar {
  background-color: var(--light-gray);
  align-items: center;
  width: 100%;
  height: 12px;
  margin-top: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.progress-bar-percent {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  position: relative;
}

.progress-bar-percent.bar-1 {
  width: 90%;
}

.progress-bar-percent.bar-2 {
  width: 70%;
}

.progress-bar-percent.bar-3 {
  width: 50%;
}

.stat-number {
  color: var(--dark-gray);
  text-align: right;
  width: 100%;
  font-weight: 500;
  position: absolute;
  inset: 0% auto auto 0%;
}

.stat-number.percent-1 {
  color: var(--red);
  width: 90%;
  font-size: 25px;
}

.stat-number.percent-2 {
  color: var(--red);
  width: 70%;
  font-size: 25px;
}

.stat-number.percent-3 {
  width: 50%;
}

.progress-card-wrap {
  grid-column-gap: 27px;
  grid-row-gap: 27px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.progress-heading {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.register-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--dark-gray);
  color: var(--white);
  background-color: #0000;
  border-radius: 0;
  padding-bottom: 14px;
  padding-left: 0;
  padding-right: 0;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  transition: border-color .2s;
}

.text-field:hover, .text-field:focus {
  border-bottom-color: var(--white);
}

.text-field::placeholder {
  color: var(--gray);
}

.text-field.dark {
  color: var(--black);
}

.text-field.dark:hover, .text-field.dark:focus {
  border-bottom-color: var(--black);
}

.text-field.form {
  color: #5f5f5f;
}

.text-field.form::placeholder {
  color: #6e6e6e;
}

.text-field.forms._1::placeholder, .text-field._1::placeholder {
  color: var(--dark-gray);
}

.form {
  grid-column-gap: 32px;
  grid-row-gap: 48px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.register-content {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  color: var(--white);
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  padding: 96px 24px;
  display: flex;
}

.form-heading {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.register-image {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  max-height: 632px;
}

.footer-bottom-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 27px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.social-link-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 24px;
  align-items: center;
  display: flex;
}

.project-content {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.project-content.productosa {
  display: none;
}

.project-card {
  background-color: var(--light-gray);
  color: var(--black-low-contrast);
  cursor: auto;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-bottom: 0;
  transition: color .2s, background-color .2s;
  display: flex;
}

.project-card:hover {
  background-color: var(--black-low-contrast);
  color: var(--white);
}

.project-card-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 0;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-image-wrap {
  height: 100%;
  line-height: 100%;
  transition: filter .2s;
}

.project-image-wrap:hover {
  filter: brightness(110%);
}

.project-text-wrap {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.project-text-wrap._1 {
  margin-bottom: 0;
}

.project-text-wrap._2do {
  margin-top: 0;
}

.contact-content {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.contact-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-card {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border: 1px solid var(--gray);
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  min-height: 90px;
  padding: 18px 24px;
  transition: background-color .2s, border-color .2s, color .2s;
  display: flex;
}

.contact-card:hover {
  border-color: var(--black-low-contrast);
  background-color: var(--black-low-contrast);
  color: var(--white);
}

.success-message {
  background-color: var(--white);
  color: var(--black);
}

.error-message {
  background-color: var(--white);
  color: var(--red);
}

.link-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  justify-content: center;
  display: flex;
}

.footer-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.line {
  background-color: var(--light-gray);
  width: 100%;
  height: 1px;
}

.white-low {
  background-color: var(--white-low-contrast);
}

.black {
  background-color: var(--black);
}

.unit-type-image {
  object-fit: cover;
  height: 100%;
}

.hero-white-box {
  z-index: 2;
  background-color: var(--white);
  color: var(--black);
  flex-direction: column;
  padding: 22px 34px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
  box-shadow: -4px -4px 100px #00000080;
}

.hero-white-box.boxprecio {
  display: none;
}

.text-h1 {
  font-size: 56.83px;
  line-height: 130%;
}

.progress-animate-cover {
  z-index: 1;
  background-color: var(--light-gray);
  width: 0%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.progress-label {
  z-index: 1;
  position: relative;
}

.progress-label.text-dark-gray {
  color: var(--red);
  font-size: 25px;
}

.utility-body {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  min-height: 70vh;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.utility-page-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1272px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.utility-page-form, ._404 {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  text-align: center;
  flex-direction: column;
  align-items: stretch;
  max-width: 464px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hide {
  display: none;
}

.video-content {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.video-image {
  filter: brightness(57%);
}

.lightbox-video {
  position: relative;
}

.play-icon {
  opacity: .65;
  width: 112px;
  transition: transform .2s, opacity .2s;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.play-icon:hover {
  opacity: 1;
  transform: translate(-50%, -50%)scale(.96);
}

.paragraph-small {
  font-size: 13.5px;
  line-height: 150%;
}

.text-center {
  text-align: center;
}

.section-heading {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.lightbox-link {
  width: 100%;
  overflow: hidden;
  transform: translate(0);
}

.license-content {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  max-width: 808px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.license-heading {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  max-width: 760px;
  display: flex;
}

.license-wrap {
  grid-row-gap: 42px;
  border: 1px solid #cbcbcb;
  border-radius: 6px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 808px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 24px;
  display: flex;
}

.license-group {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  width: 100%;
  max-width: 808px;
  display: flex;
}

.map-image {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  transition: transform .3s;
}

.map-image:hover {
  transform: scale(1.1);
}

.social-link {
  opacity: .7;
  transition: opacity .2s, color .2s;
}

.social-link:hover {
  opacity: 1;
}

.facilities-icon {
  width: 200px;
}

.facilities-icon.raices {
  width: 50px;
}

.unit-type-heading {
  margin-right: 144px;
  font-family: Montserrat, sans-serif;
}

.style-wrap {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-wrap.dark {
  background-color: var(--black);
  color: var(--white);
  width: 100%;
  padding: 16px;
}

.button-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: max-content max-content;
  grid-auto-columns: max-content;
}

.color-grid-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.color-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.rich-text-wrap {
  background-color: var(--white-low-contrast);
  max-width: 808px;
  padding: 32px;
}

.typography-grid {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

.changelog-content {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.changelog-grid {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.buy-template {
  z-index: 1000;
  border: 1px solid var(--light-gray);
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 16px;
  margin-right: 16px;
  padding: 8px 14px;
  transition: transform .2s, color .2s;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
  box-shadow: 1px 1px 5px #00000026;
}

.buy-template:hover {
  transform: translate(0, -2px);
}

.text-block {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 400;
}

.text-block-2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.text-block-3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 400;
}

.heading {
  text-align: center;
  font-family: Montserrat, sans-serif;
}

.heading-2 {
  font-family: Montserrat, sans-serif;
}

.heading-2.precios {
  text-align: center;
  font-size: 30px;
}

.heading-3 {
  color: var(--white-low-contrast);
  font-family: Montserrat, sans-serif;
}

.text-block-4 {
  font-family: Roboto, sans-serif;
}

.heading-4 {
  font-family: Montserrat, sans-serif;
}

.heading-5 {
  color: var(--white-low-contrast);
  font-family: Montserrat, sans-serif;
}

.heading-6 {
  font-family: Montserrat, sans-serif;
}

.heading-7 {
  font-family: Montserrat, sans-serif;
  font-size: 38px;
}

.heading-8 {
  color: var(--white-low-contrast);
  font-family: Montserrat, sans-serif;
}

.heading-9 {
  font-family: Montserrat, sans-serif;
}

.paragraph {
  text-align: left;
  width: 70%;
}

.heading-10 {
  font-family: Montserrat, sans-serif;
}

.bold-text, .bold-text-2 {
  font-weight: 500;
}

.text-block-5 {
  color: var(--dark-gray);
  text-align: right;
  font-size: 15px;
  font-weight: 400;
}

.footer {
  background-color: #2c2c2c;
  height: 220px;
}

.nav-inner {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-transform: uppercase;
  font-size: 14px;
  display: flex;
}

.nav-link-2 {
  color: #2f5e4e;
  border-radius: 5px;
  padding: 5px 10px;
  transition: color .3s, background-color .3s;
}

.nav-link-2:hover, .nav-link-2.w--current {
  color: #fff;
  background-color: #6facdb;
}

.nav-link-2.inicio {
  color: #131313;
  font-family: Montserrat, sans-serif;
}

.nav-link-2.inicio:hover {
  background-color: var(--gray);
  color: #161616;
  font-weight: 500;
}

.nav-link-2.inicio.w--current {
  color: #222;
  background-color: #ffffff0a;
}

.nav-link-2.men {
  color: #999;
  font-family: Montserrat, sans-serif;
}

.nav-link-2.men:hover {
  background-color: var(--gray);
  color: #2b2b2b;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-weight: 500;
}

.nav-link-2.men.w--current {
  color: #8f8f8f;
  background-color: #ffffff0a;
}

.nav-link-2.men.w--current:hover {
  color: #fff;
}

.nav-link-2.reviews {
  display: none;
}

.navbar-2, .navbar-3 {
  color: #413333;
}

.heading-11 {
  font-family: Montserrat, sans-serif;
}

.div-block {
  background-image: linear-gradient(#0000006b, #fff0 46%), url('../images/Captura-de-pantalla-2025-09-30-a-las-23.02.41.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
}

.image {
  margin-top: -55px;
  padding-top: 0;
}

.section-2 {
  background-color: #f1f1f1;
  height: 100px;
}

.paragraph-2 {
  font-size: 15px;
}

.section-3 {
  background-image: url('../images/pexels-ekrulila-3292559-1.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  height: 400px;
}

.p1 {
  margin-left: auto;
  margin-right: auto;
  transition: transform .3s;
}

.p1:hover {
  pointer-events: auto;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-clip: border-box;
  transform: scale(1.05);
}

.divider-line {
  background-color: #e4ebeb;
  height: 2px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.main-slide-navbar {
  opacity: .4;
  background-color: #c5c5c5;
  padding-top: 20px;
  padding-bottom: 40px;
}

.large-title {
  color: #131212;
  text-transform: uppercase;
  border: 1px solid #34343400;
  margin-top: 0;
  margin-bottom: 25px;
  font-family: Varela Round, sans-serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 48px;
}

.large-title.white {
  color: #fff;
  margin-bottom: 30px;
}

.main-slider {
  background-color: #5c5c5c;
  width: 100%;
  height: 730px;
}

.main-slide {
  background-color: #1a7451;
  background-image: linear-gradient(#2424248c, #2424248c), url('../images/DSC_3458-1.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  padding-top: 0;
}

.main-slide._2 {
  background-color: #868686;
  background-image: linear-gradient(#2424248c, #2424248c), url('../images/304_jonatha_junge_JJD_2592.jpg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
}

.main-slide._3 {
  background-color: #2e3238;
  background-image: linear-gradient(#2424248c, #2424248c), url('../images/IMAGENES_CREMATORIO-DE-VILLARRICA_-6.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.main-slide._3.iphone {
  background-image: linear-gradient(#2424247d, #2424247d), url('../images/Copia-de-_DSC0551.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.slider-container {
  text-align: left;
  padding-right: 300px;
}

.intro-paragraph {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.intro-paragraph.white {
  color: #fff;
  font-family: Varela, sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.intro-paragraph.white._2 {
  color: #ffec5d;
  text-align: justify;
  letter-spacing: 15px;
  text-shadow: 4px 4px 1px #00000073;
  overflow-wrap: normal;
  object-fit: fill;
  margin-top: 17px;
  font-family: Lato, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.button-2 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #1a7451;
  border: 2px solid #1a7451;
  border-radius: 2px;
  margin-top: 15px;
  margin-right: 10px;
  padding: 18px 25px;
  font-family: Varela, sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  transition: background-color .5s, color .5s, border-color .5s;
  display: inline-block;
}

.button-2:hover {
  color: #fff;
  background-color: #343434;
  border-color: #1a7451;
}

.button-2.dark {
  color: #fff;
  background-color: #1a7451;
  border-color: #1a7451;
}

.button-2.dark:hover {
  background-color: #343434;
  border-color: #1a7451;
}

.button-2.green-outline {
  color: #fff;
  background-color: #0000;
  border-color: #fff;
}

.button-2.green-outline:hover {
  background-color: #343434;
  border-color: #fff;
}

.button-2.dark-outline {
  color: #fff;
  background-color: #0000;
  border-color: #fff;
}

.button-2.dark-outline:hover {
  background-color: #343434;
  border-color: #fff;
}

.button-2.outlined {
  color: #fff;
  background-color: #0000;
  border-color: #fff;
}

.button-2.outlined:hover {
  background-color: #343434;
  border-color: #fff;
}

.button-2.green {
  color: #fff;
  background-color: #1a7451;
  border-color: #1a7451;
}

.button-2.green:hover {
  background-color: #343434;
  border-color: #1a7451;
}

.slide {
  background-image: linear-gradient(#2424248c, #2424248c), url('../images/Copia-de-_DSC0539.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.image-2 {
  margin-top: 7px;
  display: inline-block;
}

.image-2.ph {
  height: 100%;
  margin-top: 0;
}

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

.image-3 {
  height: 100%;
}

.image-4 {
  height: 100%;
  line-height: 100%;
}

.desk, .deskserv {
  display: none;
}

.image-6 {
  margin-left: auto;
  margin-right: auto;
  transition: transform .3s;
}

.image-6:hover {
  transform: scale(1.05);
}

.paragraph-3, .paragraph-4, .paragraph-5 {
  color: var(--light-gray);
}

@media screen and (min-width: 1920px) {
  .container.no-max-width {
    padding-left: 100px;
    padding-right: 60px;
  }

  .hero-content {
    min-height: 43vw;
  }
}

@media screen and (max-width: 991px) {
  .container.no-max-width.ph.tablet, .container.no-max-width.mhome {
    padding-left: 40px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section.hero {
    background-image: linear-gradient(to right, #000c, #0003), url('../images/Hero.jpeg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .section.thin-bottom-padding {
    padding-bottom: 36px;
  }

  .section.thin-top-padding {
    padding-top: 36px;
  }

  .section.serv.ph.tablet {
    height: 1200px;
  }

  .navbar.phonehor.tablet {
    display: none;
  }

  .navbar.phonehor.tablet.nvv {
    display: block;
  }

  .nav-link {
    width: 100%;
  }

  .nav-link.text-large {
    color: var(--black-low-contrast);
  }

  .nav-link.text-large:hover, .nav-link.text-large:active {
    color: var(--white-low-contrast);
  }

  .nav-link-wrap {
    z-index: 0;
    margin-top: 19px;
    padding-left: 22px;
    padding-right: 22px;
    position: relative;
  }

  .menu-button {
    z-index: 100;
    justify-content: flex-end;
    align-items: center;
    width: 32px;
    padding: 0;
    display: flex;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .brand {
    position: relative;
  }

  .nav-menu {
    min-width: 400px;
    height: 100vh;
    max-height: 100vh;
    position: absolute;
    inset: 0%;
    overflow: auto;
  }

  .nav-menu.tabl {
    min-width: 200px;
    height: 80vh;
    line-height: 100%;
  }

  .menu-bar-1, .menu-bar-2, .menu-bar-3 {
    border-radius: 100px;
  }

  .text-xl, .text-xl.ph.tt {
    width: 80%;
    height: 60%;
    font-size: 45px;
  }

  .hero-content {
    min-height: 80vw;
  }

  .hero-content.tablet {
    justify-content: center;
    align-items: flex-start;
  }

  .hero-content.tablet.nn {
    min-height: 80vw;
  }

  .concept-content, .gallery-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .gallery-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .unit-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .unit-type-wrap {
    grid-template-columns: 1.5fr;
  }

  .facilities-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .facilities-card-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .facilities-card {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .location-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .map {
    height: 340px;
  }

  .location-card {
    grid-template-columns: max-content minmax(auto, auto);
  }

  .location-card.last-left {
    background-color: #0000;
  }

  .location-card-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .location-card-outer-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .project-progress-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .progress-image-1 {
    right: -12px;
  }

  .progress-image-2 {
    margin-top: 140px;
    margin-left: -12px;
  }

  .progress-details-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .progress-card {
    align-self: flex-start;
  }

  .register-container {
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .register-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    max-width: none;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .register-image {
    max-height: 56vw;
  }

  .project-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .project-card-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .project-text-wrap.tablet {
    background-color: #fff;
    transition: background-color .2s;
  }

  .project-text-wrap.tablet:hover {
    background-color: #2b2b2b;
  }

  .contact-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .contact-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .link-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .utility-page-content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .video-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .play-icon {
    width: 110px;
  }

  .license-wrap {
    max-width: 100%;
  }

  .color-grid-wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .nav-inner {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #ffffff0a;
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
    display: none;
  }

  .nav-link-2 {
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
  }

  .large-title {
    font-size: 75px;
    line-height: 43px;
  }

  .main-slide {
    padding-top: 185px;
    padding-left: 75px;
  }

  .main-slide._2.jj, .main-slide._3.iphone.ms, .main-slide.tablet {
    padding-top: 0;
    padding-left: 0;
  }

  .slider-container {
    padding-right: 250px;
  }

  .slider-container.tablet {
    padding-right: 80px;
  }

  .intro-paragraph.white.tablet {
    width: 100%;
  }

  .image-4 {
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 130%;
  }

  h1 {
    font-size: 39.06px;
    line-height: 130%;
  }

  h2 {
    font-size: 31.25px;
    line-height: 130%;
  }

  h3 {
    font-size: 25px;
    line-height: 130%;
  }

  h4 {
    font-size: 20px;
    line-height: 130%;
  }

  h5 {
    font-size: 16px;
    line-height: 130%;
  }

  h6 {
    font-size: 12.8px;
    line-height: 130%;
  }

  blockquote {
    font-size: 16px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-large {
    font-size: 20px;
    line-height: 130%;
  }

  .paragraph-large {
    font-size: 20px;
  }

  .rich-text blockquote {
    font-size: 16px;
    line-height: 150%;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.thin-bottom-padding {
    padding-bottom: 32px;
  }

  .section.thin-top-padding {
    padding-top: 32px;
  }

  .navbar.phonehor, .navbar.phonehor.tablet {
    display: none;
  }

  .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-menu {
    min-width: 350px;
  }

  .text-xl {
    font-size: 45px;
  }

  .nav-button {
    display: none;
  }

  .hero-content, .hero-content.tablet.nn.bb {
    min-height: 100vw;
  }

  .concept-content, .gallery-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .gallery-grid {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    grid-template-rows: 45vw 45vw;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 45vw;
  }

  .unit-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .slider {
    padding-bottom: 88px;
  }

  .right-arrow {
    inset: auto 0 0 76px;
  }

  .left-arrow {
    inset: auto 76px 0 0;
  }

  .facilities-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .facilities-card-wrap {
    grid-template-columns: 1fr;
  }

  .facilities-card {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .location-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .map {
    height: 330px;
  }

  .progress-image-2 {
    margin-top: 130px;
  }

  .progress-details-wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .register-container {
    grid-template-rows: auto;
  }

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

  .form {
    grid-column-gap: 24px;
  }

  .register-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    padding: 64px 20px;
  }

  .register-image {
    max-height: 70vw;
  }

  .footer-bottom-wrap {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .project-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .project-card-wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .contact-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .contact-wrap.phone-hor {
    grid-auto-flow: column;
  }

  .link-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .hero-white-box {
    min-width: auto;
  }

  .text-h1 {
    font-size: 39.06px;
  }

  .utility-page-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .video-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .play-icon {
    width: 90px;
  }

  .unit-type-heading {
    margin-right: 0;
  }

  .color-grid {
    grid-template-columns: 1fr 1fr;
  }

  .typography-grid {
    grid-row-gap: 58px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .buy-template {
    margin-bottom: 8px;
    margin-right: 8px;
  }

  .div-block.phonehor {
    height: 300px;
  }

  .main-slide-navbar {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .large-title {
    font-size: 55px;
    line-height: 24px;
  }

  .main-slider {
    height: 670px;
  }

  .main-slide {
    padding-top: 135px;
    padding-left: 0;
  }

  .slider-container {
    padding-left: 40px;
    padding-right: 110px;
  }

  .intro-paragraph.white {
    font-size: 19px;
    line-height: 24px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    width: 90%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .container.no-max-width {
    min-height: 90vw;
    padding-left: 20px;
  }

  .container.no-max-width.ph {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.no-max-width.ph.tablet.phh {
    padding-top: 0;
    padding-left: 20px;
  }

  .container.no-max-width.ph.tablet.phh.nut, .container.no-max-width.mhome.nut, .container.no-max-width.mhome.lop {
    padding-left: 30px;
  }

  .container.mobil {
    display: none;
  }

  .paragraph-large.text-italic {
    color: var(--light-gray);
    width: 90%;
    font-family: Roboto, sans-serif;
    font-size: 14px;
  }

  .paragraph-large.text-italic.ph {
    width: 90%;
    font-size: 14px;
  }

  .section.hero {
    background-image: linear-gradient(to right, #000c, #0006), url('../images/Hero.jpeg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .section.serv.ph {
    height: 800px;
    display: none;
  }

  .button {
    width: 100%;
  }

  .navbar {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .navbar.phonehor.tablet.nvv.nj {
    display: none;
  }

  .nav-menu {
    min-width: 80vw;
  }

  .text-xl {
    color: var(--white-low-contrast);
    width: 100%;
    font-size: 30px;
  }

  .text-xl.ph {
    font-size: 30px;
  }

  .text-xl.ph.tt {
    width: 100%;
    font-family: Montserrat, sans-serif;
    font-size: 30px;
  }

  .text-xl.ph.tt.lol {
    width: 100%;
  }

  .hero-content {
    justify-content: center;
    align-items: flex-start;
    min-height: 170vw;
  }

  .hero-content.tablet.nn.bb {
    min-height: 170vw;
  }

  .gallery-grid {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    grid-template-rows: 45vw 45vw;
  }

  .text-small.precios, .font-spectral.text-large.p1.precios {
    margin-left: auto;
    margin-right: auto;
  }

  .font-spectral.text-large.phone {
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
  }

  .facilities-card {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .text-dark-gray.ph {
    font-size: 14px;
  }

  .text-dark-gray.phone {
    text-align: justify;
  }

  .map {
    height: 320px;
  }

  .location-card {
    grid-template-rows: minmax(41px, auto) max-content;
  }

  .progress-image-2 {
    margin-top: 100px;
  }

  .stat-number.percent-1, .stat-number.percent-2 {
    font-size: 20px;
  }

  .form {
    grid-template-columns: 1fr;
  }

  .register-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .register-image {
    max-height: 80vw;
  }

  .project-content {
    flex-flow: column;
    display: flex;
  }

  .project-card {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-bottom: 0;
  }

  .project-card-wrap {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-columns: 1fr;
    grid-auto-flow: row dense;
    align-content: stretch;
    justify-items: stretch;
  }

  .project-text-wrap {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .contact-wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .contact-wrap.phone-hor {
    grid-auto-flow: row;
  }

  .link-wrap {
    flex-direction: column;
  }

  .progress-label.text-dark-gray, .progress-label.text-dark-gray.phonehor {
    font-size: 16px;
  }

  .play-icon {
    width: 80px;
  }

  .facilities-icon.raices.phone {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .style-wrap {
    width: 100%;
  }

  .button-grid {
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .color-grid {
    grid-column-gap: 16px;
  }

  .heading-2 {
    text-align: center;
    margin-top: 40px;
  }

  .paragraph.ph {
    width: 100%;
    font-size: 14px;
  }

  .div-block {
    height: 200px;
  }

  .large-title {
    font-size: 40px;
    line-height: 13px;
  }

  .large-title.slide1 {
    font-size: 50px;
    line-height: 50px;
  }

  .large-title.white {
    line-height: 20px;
  }

  .large-title.white.mobile {
    font-size: 40px;
    line-height: 20px;
  }

  .main-slider {
    height: 680px;
  }

  .main-slide {
    min-height: 90px;
    padding-top: 0;
  }

  .main-slide._3.iphone {
    padding-bottom: 0;
  }

  .slider-container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .slider-container.tablet.iphone {
    padding-right: 25px;
  }

  .intro-paragraph.white, .intro-paragraph.white.phone, .intro-paragraph.white.tablet.slide1 {
    font-size: 20px;
    line-height: 25px;
  }

  .intro-paragraph.white._2 {
    text-align: left;
  }

  .intro-paragraph.white._2.iphone {
    letter-spacing: 10px;
    width: 100%;
    padding-right: 0;
    font-size: 20px;
  }

  .button-2 {
    margin-left: auto;
    margin-right: auto;
    padding: 11px 15px;
    font-size: 14px;
    display: block;
  }

  .button-2.green-outline {
    margin-left: auto;
    margin-right: auto;
  }

  .image-2.ph {
    display: none;
  }

  .tabs {
    padding-top: 0;
  }

  .ph {
    display: inline-block;
  }

  .image-3, .image-4 {
    display: none;
  }

  .desk {
    display: block;
  }

  .image-5 {
    vertical-align: baseline;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    display: block;
  }

  .nav-link-3, .nav-link-4, .nav-link-5, .nav-link-6, .nav-link-7, .nav-link-8 {
    text-align: right;
    font-family: Montserrat, sans-serif;
  }

  .nav-menu-2 {
    background-color: #c8c8c8e6;
  }

  .brand-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
    padding-left: 47px;
    display: block;
  }

  .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .deskserv {
    display: block;
  }

  .menu-button-2 {
    margin-left: auto;
    margin-right: auto;
    line-height: 100%;
    display: block;
  }

  .icon {
    margin-top: 5px;
  }

  .image-6 {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .quick-stack {
    clear: none;
  }

  .cell {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

#w-node-_2e6d96d7-9352-6ee2-ba78-6c9417a3c561-bc7b7b44 {
  justify-self: center;
}

#w-node-d37c567c-0f0e-e079-a71b-abbfd5a9423e-bc7b7b44 {
  justify-self: end;
}

#w-node-_1d7c7327-3fa6-09cf-f4d8-97684a6f3902-bc7b7b44 {
  justify-self: center;
}

#w-node-_1d7c7327-3fa6-09cf-f4d8-97684a6f3907-bc7b7b44 {
  justify-self: end;
}

#w-node-a6efd30f-da67-e913-719c-d8a1de0ed4c5-bc7b7b44 {
  justify-self: center;
}

#w-node-a6efd30f-da67-e913-719c-d8a1de0ed4ca-bc7b7b44 {
  justify-self: end;
}

#w-node-_1ef69b3e-dd1d-a409-2472-971dbc071afa-bc7b7b44 {
  justify-self: center;
}

#w-node-_1ef69b3e-dd1d-a409-2472-971dbc071aff-bc7b7b44 {
  justify-self: end;
}

#w-node-_047d62c6-c4da-219c-5687-86de58897a4e-bc7b7b44 {
  justify-self: center;
}

#w-node-_047d62c6-c4da-219c-5687-86de58897a53-bc7b7b44 {
  justify-self: end;
}

#w-node-_9500b760-9e64-a112-3d08-37c127e72853-bc7b7b44, #w-node-_9500b760-9e64-a112-3d08-37c127e72859-bc7b7b44, #w-node-_9500b760-9e64-a112-3d08-37c127e7285f-bc7b7b44, #w-node-f3d71741-3b3d-fc3b-1751-50ff4328c8b0-bc7b7b44, #w-node-f3d71741-3b3d-fc3b-1751-50ff4328c8b6-bc7b7b44, #w-node-f3d71741-3b3d-fc3b-1751-50ff4328c8bc-bc7b7b44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_315e3c60-7222-7b80-abc5-0e3db4735b2b-bc7b7b44 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-_84fac3cc-23e0-832a-ed15-e5263e74ffb9-bc7b7b44, #w-node-b4bfe132-0e4a-3793-afc5-5c2d948b2234-bc7b7b44, #w-node-b4bfe132-0e4a-3793-afc5-5c2d948b223a-bc7b7b44, #w-node-b4bfe132-0e4a-3793-afc5-5c2d948b2240-bc7b7b44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79dad492-3763-4362-e601-00869dbf30b7-bc7b7b44 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c3b6550e-50c2-a00a-c457-843d13b88143-bc7b7b44, #w-node-e57d177e-6258-ee21-4fdb-90e0e9817f5c-bc7b7b44 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_8499b73b-ec9d-bc84-2fb6-87204a2d4939-bc7b7b44 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2e740623-9ee7-59b3-152b-37f1e529aa88-bc7b7b44 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_2e740623-9ee7-59b3-152b-37f1e529aa86-bc7b7b44 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-cd3a97b6-2cf5-9362-e6c0-1d8103621f1a-bc7b7b44 {
  grid-area: Area;
}

#w-node-_326c93a3-c3ed-ee65-9cf7-3622c1ee68d1-bc7b7b44 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b45e131d-3891-5f6b-f6c3-f67eef0631b8-bc7b7b44, #w-node-a25b2ce7-2a8b-86a6-bc5b-0372a2d313c4-bc7b7b44 {
  grid-area: Area-2;
}

#w-node-_3cf086a0-96b7-130b-62cd-e29eaaa8da27-bc7b7b44 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_3cf086a0-96b7-130b-62cd-e29eaaa8da2d-bc7b7b44, #w-node-f2b69777-5d45-75aa-4883-7b34a9b6d92a-bc7b7b44 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f2b69777-5d45-75aa-4883-7b34a9b6d92c-bc7b7b44 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f2f8ab17-40d1-b326-137f-db7efc6f515d-bc7b7b44 {
  grid-area: Area;
}

#w-node-dea9c35a-3cbe-1c30-5f2c-5f0a640bb734-bc7b7b44 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_832a9677-7102-cac8-7f7c-3f723f52a54b-bc7b7b44 {
  grid-area: Area-2;
}

#w-node-_1346a9a1-de78-6403-39f8-3c3e73dda579-bc7b7b44, #w-node-f2b69777-5d45-75aa-4883-7b34a9b6d934-bc7b7b44 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f2b69777-5d45-75aa-4883-7b34a9b6d93a-bc7b7b44 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f2b69777-5d45-75aa-4883-7b34a9b6d93e-bc7b7b44 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f2b69777-5d45-75aa-4883-7b34a9b6d944-bc7b7b44 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-dbd95412-d459-db98-919c-351a92f203c0-bc7b7b44, #w-node-_525b1079-4a61-3a92-a49b-de9953cb3ac0-bc7b7b44, #w-node-b53946ef-22fe-3254-46b1-eb06706fa8dd-bc7b7b44, #w-node-_548a3e5f-3ccb-a5ee-d99f-8dfd18b083c8-bc7b7b44, #w-node-a47c705b-0669-c5a9-f1b4-ea443680d06d-bc7b7b44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c19a252b-1b81-284a-197b-7fb65cf7a08d-bc7b7b44 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_519115c6-7514-519d-7592-23555e7ccee6-bc7b7b44, #w-node-_3b6d0423-22e9-7143-c260-f563180cd3ee-bc7b7b44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3820690f-70fe-ad42-ded4-1665d49f8173-bc7b7b44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-ac08124f-9f3a-42c4-7685-fc8c51f9ff6b-bc7b7b44, #w-node-b76aa503-567c-cd05-88a5-c67c1c831102-bc7b7b44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#Mensaje.w-node-_27d314e3-00bc-fc9f-79a9-5c73191506c2-bc7b7b44 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b76aa503-567c-cd05-88a5-c67c1c83110a-bc7b7b44 {
  justify-self: start;
}

#w-node-_40ab63f7-1fdf-dbd9-1746-54a046b7e2cb-bc7b7b44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_23954a55-84ad-ea96-99e2-100a93659d2c-bc7b7b44 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_2beed138-002a-a5cf-7946-adb540eeb550-bc7b7b44 {
  align-self: center;
}

#w-node-cf9c327f-148f-0544-4429-947e088723ed-bc7b7b44 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-cf9c327f-148f-0544-4429-947e088723f0-bc7b7b44 {
  align-self: center;
}

#w-node-b842f11c-9ed0-6c47-e2a6-9603ca248b32-bc7b7b44 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-b842f11c-9ed0-6c47-e2a6-9603ca248b35-bc7b7b44 {
  align-self: center;
}

#w-node-d55a9047-4818-e988-5bfd-352c8fc22efd-bc7b7b44 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-d55a9047-4818-e988-5bfd-352c8fc22f00-bc7b7b44 {
  align-self: center;
}

#w-node-d55a9047-4818-e988-5bfd-352c8fc22f05-bc7b7b44 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-d55a9047-4818-e988-5bfd-352c8fc22f08-bc7b7b44 {
  align-self: center;
}

#w-node-_57c55355-37e4-06e4-0a8c-13cd5cb649b7-bc7b7b44 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_57c55355-37e4-06e4-0a8c-13cd5cb649ba-bc7b7b44 {
  align-self: center;
}

#w-node-a67b2c84-169e-b126-e26a-f9e9840cf9af-bc7b7b47, #w-node-a67b2c84-169e-b126-e26a-f9e9840cf9b1-bc7b7b47 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start;
}

#w-node-_34bfee9f-8e4c-98f6-29ff-6a79b04485f3-bc7b7b49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_34bfee9f-8e4c-98f6-29ff-6a79b04485f4-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b04485f5-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b04485f9-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b04485fa-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b04485fe-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b04485ff-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448603-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448604-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448608-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448609-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b044860d-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b044860e-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448612-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448613-bc7b7b49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448617-bc7b7b49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448622-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448623-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448625-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b044861d-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b044861e-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448618-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448619-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b044861b-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448631-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448634-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b044862c-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b044862f-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448627-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b044862a-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448636-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448637-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b0448639-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b044863b-bc7b7b49, #w-node-_34bfee9f-8e4c-98f6-29ff-6a79b044863c-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f74e-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f74f-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f752-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f753-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f75e-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f75f-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f762-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f763-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f766-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f767-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f75a-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f75b-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f756-bc7b7b49, #w-node-_30aa089c-3b9d-4de4-2dd7-e36cf734f757-bc7b7b49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b6e3d6b6-ed81-52da-c255-9c9432fb45f6-bc7b7b49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-b6e3d6b6-ed81-52da-c255-9c9432fb45f7-bc7b7b49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b6e3d6b6-ed81-52da-c255-9c9432fb4605-bc7b7b49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-b6e3d6b6-ed81-52da-c255-9c9432fb4606-bc7b7b49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7d634bba-d97f-5a96-e548-3065888635dd-bc7b7b49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_7d634bba-d97f-5a96-e548-3065888635de-bc7b7b49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3575df1b-cb7c-07eb-b041-44302aef3136-bc7b7b49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_3575df1b-cb7c-07eb-b041-44302aef3137-bc7b7b49 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2e6d96d7-9352-6ee2-ba78-6c9417a3c561-5aa146e3 {
  justify-self: center;
}

#w-node-d37c567c-0f0e-e079-a71b-abbfd5a9423e-5aa146e3 {
  justify-self: end;
}

#w-node-_79dad492-3763-4362-e601-00869dbf30b7-5aa146e3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c3b6550e-50c2-a00a-c457-843d13b88143-5aa146e3, #w-node-_2e740623-9ee7-59b3-152b-37f1e529aa88-5aa146e3 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_2e740623-9ee7-59b3-152b-37f1e529aa86-5aa146e3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3cf086a0-96b7-130b-62cd-e29eaaa8da27-5aa146e3 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_3cf086a0-96b7-130b-62cd-e29eaaa8da2d-5aa146e3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-dbd95412-d459-db98-919c-351a92f203c0-5aa146e3, #w-node-_525b1079-4a61-3a92-a49b-de9953cb3ac0-5aa146e3, #w-node-b53946ef-22fe-3254-46b1-eb06706fa8dd-5aa146e3, #w-node-_548a3e5f-3ccb-a5ee-d99f-8dfd18b083c8-5aa146e3, #w-node-_519115c6-7514-519d-7592-23555e7ccee6-5aa146e3, #w-node-_3b6d0423-22e9-7143-c260-f563180cd3ee-5aa146e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3820690f-70fe-ad42-ded4-1665d49f8173-5aa146e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-ac08124f-9f3a-42c4-7685-fc8c51f9ff6b-5aa146e3, #w-node-b76aa503-567c-cd05-88a5-c67c1c831102-5aa146e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#Mensaje.w-node-_27d314e3-00bc-fc9f-79a9-5c73191506c2-5aa146e3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b76aa503-567c-cd05-88a5-c67c1c83110a-5aa146e3 {
  justify-self: start;
}

#w-node-_40ab63f7-1fdf-dbd9-1746-54a046b7e2cb-5aa146e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_23954a55-84ad-ea96-99e2-100a93659d2c-5aa146e3 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_2beed138-002a-a5cf-7946-adb540eeb550-5aa146e3 {
  align-self: center;
}

#w-node-cf9c327f-148f-0544-4429-947e088723ed-5aa146e3 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-cf9c327f-148f-0544-4429-947e088723f0-5aa146e3 {
  align-self: center;
}

#w-node-b842f11c-9ed0-6c47-e2a6-9603ca248b32-5aa146e3 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-b842f11c-9ed0-6c47-e2a6-9603ca248b35-5aa146e3 {
  align-self: center;
}

#w-node-d55a9047-4818-e988-5bfd-352c8fc22efd-5aa146e3 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-d55a9047-4818-e988-5bfd-352c8fc22f00-5aa146e3 {
  align-self: center;
}

#w-node-d55a9047-4818-e988-5bfd-352c8fc22f05-5aa146e3 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-d55a9047-4818-e988-5bfd-352c8fc22f08-5aa146e3 {
  align-self: center;
}

#w-node-_57c55355-37e4-06e4-0a8c-13cd5cb649b7-5aa146e3 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_57c55355-37e4-06e4-0a8c-13cd5cb649ba-5aa146e3 {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_548a3e5f-3ccb-a5ee-d99f-8dfd18b083c8-bc7b7b44 {
    justify-self: center;
  }

  #w-node-_40ab63f7-1fdf-dbd9-1746-54a046b7e2cb-bc7b7b44 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_548a3e5f-3ccb-a5ee-d99f-8dfd18b083c8-5aa146e3 {
    justify-self: center;
  }

  #w-node-_40ab63f7-1fdf-dbd9-1746-54a046b7e2cb-5aa146e3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_315e3c60-7222-7b80-abc5-0e3db4735b2b-bc7b7b44 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_79dad492-3763-4362-e601-00869dbf30b7-bc7b7b44, #w-node-c3b6550e-50c2-a00a-c457-843d13b88143-bc7b7b44, #w-node-e57d177e-6258-ee21-4fdb-90e0e9817f5c-bc7b7b44, #w-node-_8499b73b-ec9d-bc84-2fb6-87204a2d4939-bc7b7b44, #w-node-_2e740623-9ee7-59b3-152b-37f1e529aa88-bc7b7b44, #w-node-_2e740623-9ee7-59b3-152b-37f1e529aa86-bc7b7b44, #w-node-_3cf086a0-96b7-130b-62cd-e29eaaa8da27-bc7b7b44, #w-node-_3cf086a0-96b7-130b-62cd-e29eaaa8da2d-bc7b7b44, #w-node-f2b69777-5d45-75aa-4883-7b34a9b6d92a-bc7b7b44, #w-node-f2b69777-5d45-75aa-4883-7b34a9b6d92c-bc7b7b44, #w-node-f2b69777-5d45-75aa-4883-7b34a9b6d934-bc7b7b44, #w-node-f2b69777-5d45-75aa-4883-7b34a9b6d93a-bc7b7b44, #w-node-f2b69777-5d45-75aa-4883-7b34a9b6d93e-bc7b7b44, #w-node-f2b69777-5d45-75aa-4883-7b34a9b6d944-bc7b7b44, #w-node-_79dad492-3763-4362-e601-00869dbf30b7-5aa146e3, #w-node-c3b6550e-50c2-a00a-c457-843d13b88143-5aa146e3, #w-node-_2e740623-9ee7-59b3-152b-37f1e529aa88-5aa146e3, #w-node-_2e740623-9ee7-59b3-152b-37f1e529aa86-5aa146e3, #w-node-_3cf086a0-96b7-130b-62cd-e29eaaa8da27-5aa146e3, #w-node-_3cf086a0-96b7-130b-62cd-e29eaaa8da2d-5aa146e3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_315e3c60-7222-7b80-abc5-0e3db4735b2b-bc7b7b44 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-f83dc40c-4ec9-fd0a-6bae-68073b03d801-bc7b7b44 {
    order: 0;
  }

  #w-node-_84fac3cc-23e0-832a-ed15-e5263e74ffb9-bc7b7b44 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_481741a5-b007-78b7-b2c2-9c59c00ef579-bc7b7b44 {
    order: 9999;
    place-self: auto;
  }

  #w-node-_40ab63f7-1fdf-dbd9-1746-54a046b7e2cb-bc7b7b44, #w-node-_40ab63f7-1fdf-dbd9-1746-54a046b7e2cb-5aa146e3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}