@font-face {
  font-family: Gtzirkon;
  src: url('../fonts/GTZirkon-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Gtzirkon;
  src: url('../fonts/GTZirkon-BlackItalic.ttf') format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Gtzirkon;
  src: url('../fonts/GTZirkon-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gtzirkon;
  src: url('../fonts/GTZirkon-Italic.ttf') format("truetype"), url('../fonts/GTZirkon-BookItalic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Gtzirkon;
  src: url('../fonts/GTZirkon-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gtzirkon;
  src: url('../fonts/GTZirkon-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Gtzirkon;
  src: url('../fonts/GTZirkon-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Gtzirkon;
  src: url('../fonts/GTZirkon-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Gtzirkon;
  src: url('../fonts/GTZirkon-ThinItalic.ttf') format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Gtzirkon;
  src: url('../fonts/GTZirkon-UltraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gtzirkon;
  src: url('../fonts/GTZirkon-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gtzirkon;
  src: url('../fonts/GTZirkon-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gtzirkon;
  src: url('../fonts/GTZirkon-UltraLightItalic.ttf') format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Aviano;
  src: url('../fonts/Aviano-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sensasans;
  src: url('../fonts/SensaSans-RegularDemo.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: white;
  --white: #da9532;
  --light-grey: seagreen;
}

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

.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);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
}

a {
  border-color: var(--black);
  color: var(--black);
  background-color: #0000;
  margin-top: 20px;
  font-family: Gtzirkon, Arial, sans-serif;
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-xxsmall {
  padding: .5rem;
}

.button {
  color: #2a352f;
  text-align: center;
  background-color: #fff;
  border: 1px solid #008060;
  border-radius: 5px;
  padding: .75rem 1.5rem;
  font-family: Basisgrotesquearabicpro;
  font-weight: 700;
}

.form-input {
  background-color: var(--black);
  color: #fff;
  border: 1px solid #22414b;
  border-radius: 5px;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-family: Basisgrotesquearabicpro;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: #000;
}

.form-input::placeholder {
  color: #0009;
}

.hero-section {
  z-index: 1;
  color: #fff;
  background-color: #324038;
  background-image: linear-gradient(#00000080, #00000080), url('../images/Untitled-design---2025-05-23T085842.659.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 710px;
  max-height: none;
  padding-bottom: 0;
  display: flex;
  position: relative;
  top: auto;
  overflow: hidden;
}

.our-way {
  z-index: 400;
  background-color: #0f1c17;
  padding-top: 0;
  padding-bottom: 100px;
  position: relative;
}

.body {
  background-color: #0000;
  font-family: Poppins, sans-serif;
}

.container-nav {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #0000;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 15px 0 10px;
  display: flex;
}

.menu-bar {
  z-index: 900;
  background-color: #0000;
  background-image: linear-gradient(#323232, #fff0);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar {
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  flex: 1;
  order: -1;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  max-width: 30vw;
  display: flex;
}

.nav-menu.last {
  z-index: 999999;
  flex-flow: row;
  order: 1;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-top: 5px;
  margin-right: 0;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.nav-wrapper {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: block;
  position: static;
  inset: 0% 0% auto;
}

.text-block-2 {
  color: #fff;
  text-transform: none;
  margin-right: 0;
  padding: 10px 16px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.text-block-2.w--current {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
}

.text-block-3 {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  margin-right: 0;
  padding: 10px 16px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.text-block-4 {
  color: #f3f3ee;
  letter-spacing: 10px;
  border-bottom: 1px solid #0000;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
  font-family: Basisgrotesquearabicpro;
  font-size: 25px;
  font-weight: 300;
  text-decoration: none;
  display: flex;
}

.text-block-4.w--current {
  letter-spacing: 8px;
  font-family: Sensasans, Arial, sans-serif;
  font-size: 20px;
}

.text-block-4.footer {
  color: #fff;
  letter-spacing: 5px;
  margin-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Sensasans, Arial, sans-serif;
  font-weight: 300;
}

.text-block-5 {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  margin-right: 0;
  padding: 10px 16px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.text-block-5.w--current {
  text-decoration: none;
}

.text-block-9 {
  z-index: 200;
  color: #fff;
  text-align: center;
  text-transform: none;
  background-color: #323232;
  border: 0 solid #fff;
  border-bottom-color: #d9d0c099;
  border-radius: 15px 0;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-left: 20px;
  padding: 10px 25px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  position: relative;
}

.section-2 {
  position: relative;
}

.section-2.hero {
  padding-top: 200px;
  padding-bottom: 200px;
}

.flex-rail {
  white-space: nowrap;
  flex: none;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  padding-right: 0;
  display: flex;
  position: static;
  overflow: hidden;
}

.content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.main-paragraph.text-gray {
  color: #727272;
}

.main-paragraph.text-gray.text-small {
  font-size: 15px;
}

.main-grid {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  display: grid;
  position: relative;
}

.inner-text-scrolling {
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
  align-items: center;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.35;
  display: flex;
}

.heading-small {
  color: #323232;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

._1 {
  z-index: 0;
  background-image: url('../images/IMG_20190711_213906_957.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 50px;
  display: block;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.section-title-shape {
  margin-top: 10px;
}

.section-descripton {
  text-align: left;
  max-width: 100%;
  margin-top: 15px;
  font-family: Basisgrotesquearabicpro;
  font-size: 20px;
  font-weight: 500;
}

.section-title {
  text-transform: uppercase;
  font-family: Basisgrotesquearabicpro;
  font-size: 2vw;
  font-weight: 900;
  line-height: 1;
}

.link-to {
  align-items: center;
  font-weight: 700;
  display: flex;
}

.link-to.hero {
  color: #fff;
  transition: all .2s;
}

.link-to.hero:hover {
  color: #fbd784;
}

.link-to.hero.more {
  color: #fff;
  font-family: Basisgrotesquearabicpro;
  font-weight: 300;
  text-decoration: none;
}

.link-to.hero.more:hover {
  transform: translate(2px);
}

.grid-2 {
  grid-column-gap: 81px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 100%;
  display: grid;
}

.tagline {
  color: #fff;
  align-items: center;
  margin-bottom: 32px;
  display: flex;
}

.content-wrapper-2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
}

.content-wrapper-2.content {
  max-width: 1440px;
  margin-bottom: 0;
  padding-left: 25px;
  padding-right: 25px;
}

.content-text {
  z-index: 10;
  width: 100%;
  max-width: 550px;
  position: relative;
}

.content-text.second-part {
  max-width: 100%;
}

.head {
  color: #fff;
  margin-bottom: 20px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

.head.second-part {
  margin-bottom: 50px;
  font-size: 30px;
}

.heading-tagline {
  color: #fff;
  letter-spacing: 0;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.about-us {
  z-index: 50;
  background-color: #0f1c17;
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
}

.image-6 {
  object-fit: cover;
  width: 480px;
  height: 680px;
}

.image-6._01 {
  border-radius: 0;
}

.tagline-line {
  background-color: #fff;
  width: 72px;
  height: 1px;
  margin-right: 24px;
}

.paragraph-13 {
  color: #fff;
  margin-bottom: 50px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.text-block-17 {
  z-index: 10;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.text-span-9, .text-span-11 {
  color: #aaa;
}

.heading-9 {
  opacity: 1;
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 5vw;
  font-weight: 200;
  line-height: 1.1;
  display: flex;
  position: static;
  inset: auto auto 0 0%;
}

.heading-9._2 {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-left: 0;
  font-weight: 300;
}

.heading-9._1 {
  background-image: none;
  width: 100%;
  padding-right: 60px;
  font-weight: 300;
  display: inline-flex;
}

.div-block-25 {
  width: 80%;
}

.text-span-14 {
  font-size: 30px;
}

.text-span-17 {
  color: #aaa;
  font-size: 30px;
}

.bold-text {
  font-size: 30px;
  font-weight: 400;
}

.container-8 {
  max-width: 70%;
  margin-top: 200px;
}

.paragraph-15 {
  color: #fff;
  max-width: 75%;
  margin-bottom: 50px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.jama-campay {
  flex-flow: row;
  height: 100vh;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: static;
}

.div-block-29 {
  background-image: url('../images/WAY2ECUADORPICTURES.png');
  background-position: 50%;
  background-size: cover;
  width: 50%;
  height: auto;
}

.div-block-30 {
  background-color: #1e3d32;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: auto;
  display: flex;
}

.image-9, .image-10 {
  display: none;
}

.wrapper-menu-icona {
  z-index: 2147483647;
  cursor: pointer;
  margin-top: 30px;
  margin-right: 30px;
  position: fixed;
  inset: 0% 0% auto auto;
}

.wrapper-menu-icona.mob {
  margin-top: 20px;
  margin-right: 40px;
  display: none;
}

.menu-icona {
  margin-top: 0;
  margin-right: 0;
}

.margin-bottom-2.margin-40px {
  margin-bottom: 10px;
}

.content-box.home-about {
  color: #2a352f;
  background-color: #0000;
  flex: 1;
  font-family: Firasans;
}

.services-card {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  background-color: #ced1c01a;
  border: 0 solid #ced1c01a;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.services-card.center-card {
  border-left-style: none;
  border-right-style: none;
}

.services-grid-homepage {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  width: 100%;
}

.container-12 {
  flex-direction: column;
  width: 100%;
  max-width: 96rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4rem;
  padding-right: 4rem;
  position: relative;
}

.heading-h3 {
  color: #fff;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25em;
}

.secondary-button {
  color: #fff;
  text-transform: uppercase;
  background-color: #0000;
  border: 0 solid #6f6c67;
  border-bottom: 1px solid #fff;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: auto;
  margin-top: 0;
  padding: 1rem 0 5px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5em;
  transition: border .3s, background-color .3s;
  display: flex;
}

.secondary-button:hover {
  background-color: #0000;
  border-color: #6f6c67;
}

.secondary-button:active {
  border-color: #d4d3d1;
}

.secondary-button:focus {
  border-color: #a1a09c;
}

.secondary-button.pin-to-bottom {
  color: #fff;
  text-transform: uppercase;
  background-color: #0000;
  border-width: 0 0 1px;
  border-bottom-color: #fff;
  min-width: auto;
  margin-top: auto;
  padding-bottom: 5px;
  padding-left: 0;
  padding-right: 0;
  font-family: Gtzirkon, Arial, sans-serif;
  font-weight: 500;
}

.heading-max-width-wrapper {
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.services {
  background-color: #0f1c17;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.paragraph-18 {
  color: #fff;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5em;
}

.text-style-link-2 {
  color: #fff;
  text-decoration: underline;
  transition: color .3s;
}

.text-style-link-2:hover {
  color: #344054;
}

.footer-link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  justify-content: flex-start;
  place-items: flex-start start;
  display: flex;
}

.footer-company-container {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.footer-bottom-links {
  text-align: right;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: .75rem;
  display: grid;
}

.success-message-2 {
  background-color: #e1e7d6;
  border: 1px solid #73992e;
  border-radius: 1rem;
  width: 100%;
  padding: 2rem 1rem;
  font-size: 1.25rem;
  font-weight: 400;
}

.container-13 {
  flex-direction: column;
  width: 100%;
  max-width: 96rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4rem;
  padding-right: 4rem;
  position: relative;
}

.container-13.container-footer {
  align-items: flex-start;
  max-width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}

.footer-title {
  color: #fff;
  margin-bottom: 1rem;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.5rem;
  text-decoration: none;
}

.primary-button {
  color: #f6f4de;
  text-transform: uppercase;
  background-color: #413f3e;
  border: 1.5px solid #0000;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 8.25rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5em;
  transition-property: background-color;
  display: flex;
}

.primary-button:hover {
  color: #f6f4de;
  background-color: #161616;
}

.primary-button:active {
  background-color: #0a0a0a;
}

.primary-button:focus {
  background-color: #161616;
  border-color: #413f3e;
}

.primary-button.primary-button-slim {
  color: #323232;
  background-color: #fff;
  border-radius: 25px 0;
  min-width: auto;
  padding: 9px 25px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.error-message-2 {
  background-color: #f8e2e2;
  border: 1px solid #ca4949;
  border-radius: .5rem;
  margin-top: 1.5rem;
  padding: 1rem;
}

.footer-social-link {
  background-color: #ddd;
  border-radius: 3.75rem;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  transition-property: background-color;
  display: flex;
}

.footer-social-link:hover {
  background-color: #fffeec;
}

.footer {
  background-color: #323232;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 2rem;
  font-family: Firasans;
  font-weight: 200;
  display: flex;
}

.footer-newsletter-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 3rem;
  display: flex;
}

.text-field {
  color: #2a352f;
  background-color: #fff0;
  border: 1px #b8b8b8;
  border-bottom: 1.5px solid #fff;
  border-radius: 0;
  max-width: 100%;
  min-height: 3rem;
  margin-bottom: 0;
  padding: .5rem .75rem .5rem 0;
  font-family: Basisgrotesquearabicpro;
  font-size: 14px;
  line-height: 1.5em;
  transition: border .3s;
  display: block;
}

.text-field::placeholder {
  color: #fff;
  font-family: Gtzirkon, Arial, sans-serif;
  font-weight: 300;
}

.footer-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  place-items: start;
  width: 100%;
  margin-bottom: 2rem;
  font-family: Firasans;
  font-weight: 200;
}

.footer-copyright-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-newsletter-text-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: block;
}

.paragraph-16 {
  color: #fff;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5rem;
}

.footer-form-block {
  width: 100%;
  min-width: 25rem;
  max-width: 35rem;
  margin-bottom: 0;
}

.footer-social-links-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-items: start;
  display: flex;
}

.footer-links-heading {
  color: #fff;
  letter-spacing: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.footer-links-heading.menu {
  font-weight: 200;
  text-decoration: none;
}

.text-block-22 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.loop {
  background-color: #fff;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  display: none;
}

.link-view-all-wrapper-2 {
  background-color: #0000;
  border-top: 0 solid #000;
  border-bottom: 0 solid #000;
  justify-content: flex-start;
  align-items: center;
  padding-top: 17px;
  padding-bottom: 17px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.link-view-all-wrapper-2:hover {
  color: #000;
}

.ascii-type-2 {
  color: #323232;
  text-transform: uppercase;
  margin-left: 30px;
  margin-right: 30px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 30px;
  font-weight: 300;
}

.real-estate {
  background-color: #dacdbbbf;
  justify-content: space-between;
  align-items: center;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.text-paragraph.max-width-tab-500 {
  color: #323232;
  max-width: 100%;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 3.5vw;
  font-weight: 100;
  line-height: 1.1em;
}

.navbar-open {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  cursor: pointer;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: none;
}

.link-block-17 {
  text-decoration: none;
  display: block;
}

.link-5 {
  text-decoration: none;
}

.text-block-28 {
  letter-spacing: 5px;
  -webkit-text-stroke-width: 0px;
  text-transform: uppercase;
  margin-left: 25px;
  font-family: Sensasans, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
}

.text-block-28.w--current {
  opacity: 1;
  -webkit-text-stroke-width: 1px;
  margin-left: 0;
  font-size: 22px;
}

.div-block-36 {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-left: 0;
  position: static;
  inset: auto auto 0% 0%;
}

.title {
  z-index: 100;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 66vh;
  padding: 0 0%;
  display: flex;
  position: relative;
}

.container-25 {
  width: 100%;
  max-width: 100%;
  margin-left: 25px;
}

.div-block-38 {
  border-bottom: 0 solid #000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  margin-bottom: 20px;
  display: flex;
  position: static;
  inset: auto 0% 0%;
}

.container-28 {
  width: 100%;
  max-width: 100%;
  margin-top: 100px;
}

.container-29 {
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  padding-left: 25px;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.menu-bar-mobile {
  z-index: 2147483647;
  background-color: #101010;
  display: block;
  position: static;
  inset: 0% 0% auto;
}

.body-2 {
  font-family: Gtzirkon, Arial, sans-serif;
}

.menu-title {
  margin-bottom: 10px;
  font-family: Gtzirkon, Arial, sans-serif;
}

.text-block-34 {
  font-family: Gtzirkon, Arial, sans-serif;
  font-weight: 400;
  text-decoration: none;
}

.heading-20 {
  color: #101c19;
  margin-left: -3px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 50px;
  font-weight: 300;
}

.paragraph-26 {
  color: #101c19;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 18px;
  font-weight: 100;
}

.text-block-35, .text-block-36, .text-block-37 {
  color: #101c19;
  border: 1px solid #ebebeb;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 50px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  display: flex;
}

.text-block-38 {
  color: #101c19;
  background-color: #ddd;
  border: 1px solid #ebebeb;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 50px;
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  display: flex;
}

.section-10 {
  height: 100vh;
  margin-left: 25px;
  margin-right: 25px;
}

.container-1414 {
  background-image: url('../images/IMG_1577.JPG');
  background-position: 50%;
  background-size: cover;
  max-width: 100%;
  height: 100vh;
}

.section-11 {
  height: 100vh;
  margin-top: 20px;
}

.container-1415 {
  width: auto;
  max-width: 100%;
  margin-left: 25px;
  margin-right: 25px;
}

.text-span-24 {
  margin-bottom: 3px;
  font-weight: 400;
}

.navbar-white {
  background-color: #0000;
  position: absolute;
  inset: 0% 0% auto;
}

.text-block-40 {
  letter-spacing: 5px;
  -webkit-text-stroke-width: 0px;
  margin-bottom: -19px;
  font-family: Sensasans, Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  text-decoration: none;
  position: absolute;
}

.text-block-40.blacktitle {
  color: #000;
  letter-spacing: 5px;
}

.container-1417 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 1140px;
  max-width: 1140px;
  margin-bottom: 100px;
  display: flex;
}

.paragraph-27 {
  width: 400px;
  height: auto;
  margin-bottom: 20px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  position: static;
  inset: auto auto 100px 100px;
}

.container-1418 {
  justify-content: center;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.container-1418.real-estate {
  padding-top: 0;
  padding-bottom: 0;
}

.container-1418.real-estate.bha, .container-1418.real-estate.blabla {
  background-color: #0000;
}

.div-block-494 {
  border-bottom: 1px solid #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  display: flex;
  overflow: hidden;
}

.div-block-494.black-l-ines {
  border-bottom-color: #000;
}

.div-block-495 {
  border-bottom: 1px solid #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  display: flex;
  overflow: hidden;
}

.div-block-495.blavck-loines {
  border-bottom-color: #000;
}

.div-block-496 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 1100px;
  height: 100px;
  display: flex;
  position: relative;
}

.section-13 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: clip;
}

.section-13.accent {
  background-color: #0000;
  padding-top: 200px;
  padding-bottom: 200px;
}

.vertical-headline {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.vertical-headline.center {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.vertical-headline.center.real-estate-title {
  justify-content: center;
  align-items: flex-start;
}

.heading-22 {
  color: #323232;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 70px;
  font-weight: 200;
  line-height: 1.1;
}

.text {
  color: #3a4140;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.text.properties-text {
  color: #323232;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  max-width: 600px;
  font-family: Gtzirkon, Arial, sans-serif;
  display: flex;
}

.property-label {
  z-index: 1;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #00000029;
  border-radius: 0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1rem;
  font-family: Gtzirkon, Arial, sans-serif;
  font-weight: 300;
  display: flex;
  position: relative;
  overflow: clip;
}

.properties-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .8fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.properties-list.two {
  grid-template-columns: .8fr 1fr;
}

.heading-23 {
  color: #081010;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}

.heading-23.white {
  color: #fff;
  font-weight: 400;
}

.properties-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.property-wrapper {
  background-color: #081010;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  min-height: 32rem;
  padding: 1rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: clip;
}

.property-wrapper._1 {
  background-image: url('../images/IMG_1530.JPG');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
}

.property-wrapper._2 {
  background-image: url('../images/IMG_1517.JPG');
  background-position: 50%;
  background-size: cover;
}

.property-wrapper._3 {
  background-image: url('../images/Screenshot-2026-02-20-at-11-52-05-1-Instagram.png');
}

.property-wrapper._4 {
  background-image: url('../images/Screenshot-2026-02-20-at-11-52-10-1-Instagram.png');
}

.container-1419 {
  width: 100%;
  max-width: 1140px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.vertical-wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  display: flex;
}

.section-15 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: clip;
}

.section-15.cta {
  background-color: #0000;
  background-image: linear-gradient(#00000040, #00000040), url('../images/ryan-doyle-W_o1vBCv8DY-unsplash.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 100vh;
}

.heading-1 {
  color: #081010;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
}

.heading-1.cta-heading {
  color: #fefcf8;
  letter-spacing: -1px;
  max-width: 100%;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 5.5vw;
  font-style: italic;
  font-weight: 400;
  position: absolute;
  inset: 0% 0% auto;
}

.container-1421 {
  width: 100%;
  max-width: 1800px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4rem;
  padding-right: 4rem;
}

.container-1421.cta-section {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.div-block-497 {
  height: 300px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 150px;
}

.div-block-498 {
  background-color: #dacdbb;
  width: 2px;
  height: 0;
  margin-right: 25px;
}

.button-13 {
  background-color: #0000;
  border: 0 solid #ffffff80;
  border-bottom-width: 1px;
  margin-bottom: 60px;
  padding-left: 0;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

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

.text-block-41 {
  text-transform: uppercase;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.button-14 {
  text-transform: uppercase;
  background-color: #0000;
  border: 0 solid #ffffff80;
  border-radius: 15px;
  padding-left: 25px;
  padding-right: 25px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
}

.text-block-42 {
  color: #323232;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.button-15 {
  color: #323232;
  background-color: #0000;
  border: 0 solid #32323280;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  padding-left: 25px;
  padding-right: 25px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
}

.container-1422 {
  max-width: 1600px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.container-1422.padding-bottom-large {
  max-width: 1140px;
  padding-left: 0;
  padding-right: 0;
}

.content-image-4 {
  object-fit: cover;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  width: 100%;
  height: 100%;
  position: static;
}

.form-button {
  text-transform: uppercase;
  background-color: #323232;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 9px 25px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 16px;
  transition: background-color .2s;
}

.form-button:hover {
  background-color: #2e2e2e;
}

.textarea {
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #000;
  margin-bottom: 25px;
  padding-left: 0;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 18px;
  display: flex;
}

.textarea::placeholder {
  color: #616161;
}

.text-field-2 {
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #323232;
  height: 80px;
  margin-bottom: 25px;
  padding-left: 0;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 18px;
}

.text-field-2::placeholder {
  color: #616161;
}

.error-message-3 {
  background-color: #ffbdbd;
  padding-top: 19px;
  padding-bottom: 19px;
}

.flex-horizontal-3 {
  align-items: center;
  display: flex;
}

.flex-horizontal-3.inner-padding-small {
  display: block;
}

.heading-large {
  color: #000;
  letter-spacing: -.035em;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 6.5em;
  font-weight: 600;
  line-height: 1;
}

.heading-large.margin-bottom-small {
  color: #323232;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 70px;
  font-weight: 200;
}

.success-message-3 {
  background-color: #c6f096;
}

.div-block-501, .menu-mobile {
  display: none;
}

.link-block-18, .link-block-19 {
  text-decoration: none;
}

.bold-text-3, .bold-text-4, .bold-text-5 {
  font-family: Gtzirkon, Arial, sans-serif;
  font-weight: 300;
}

.container-1423 {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 50px;
  display: flex;
  position: relative;
}

.div-block-505 {
  justify-content: flex-start;
  align-items: center;
  width: 60%;
  max-width: 100%;
  height: 100%;
  padding-top: 0;
  padding-left: 60px;
  padding-right: 0;
  display: flex;
  position: relative;
}

.div-block-506 {
  background-color: #0000;
  border: 0 solid #323232;
  border-bottom: 2px solid #dacdbb;
  justify-content: flex-end;
  align-items: flex-end;
  width: 50%;
  height: auto;
  margin-top: 0;
  padding: 20px 50px 20px 0;
  display: block;
  position: static;
  inset: auto 0% 0% auto;
}

.div-block-509 {
  cursor: nw-resize;
  background-image: linear-gradient(#00000040, #00000040), url('../images/lena-laurentez-MBUCFFWh9UI-unsplash-1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 20px 0;
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 600px;
  display: flex;
  position: relative;
}

.div-block-510 {
  cursor: nw-resize;
  background-image: linear-gradient(#00000040, #00000040), url('../images/paul-jacome-ZRe4vXIaflY-unsplash.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 20px 0;
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 600px;
  margin-bottom: -100px;
  margin-left: -50px;
  display: flex;
  position: relative;
}

.text-block-45 {
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.div-block-511 {
  background-color: #0000;
  border-radius: 0;
  padding: 0;
  font-family: Gtzirkon, Arial, sans-serif;
  position: absolute;
  inset: auto auto 80px -20px;
  transform: rotate(-90deg);
}

.div-block-513 {
  position: absolute;
  inset: auto auto 70px 0%;
  transform: rotate(-90deg);
}

.div-block-514 {
  width: 500px;
  position: absolute;
  inset: auto auto 0% 50px;
}

.heading-27 {
  margin-bottom: 20px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 30px;
  font-weight: 200;
}

.paragraph-28 {
  margin-bottom: 20px;
  font-family: Gtzirkon, Arial, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1em;
}

.button-16 {
  background-color: #0000;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-left: 0;
  font-family: Gtzirkon, Arial, sans-serif;
}

.heading-28, .heading-29 {
  font-family: Gtzirkon, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  display: none;
}

.button-17 {
  color: #323232;
  background-color: #0000;
  border-bottom: 1px solid #323232;
  margin-top: 40px;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
}

@media screen and (min-width: 1280px) {
  .hero-section {
    height: 100vh;
  }

  .nav-menu.last {
    margin-top: 0;
  }

  .text-block-2, .text-block-3, .text-block-5 {
    margin-right: 10px;
  }

  .text-block-28.w--current {
    font-size: 22px;
    line-height: 1.5;
  }

  .menu-bar-mobile {
    z-index: 99;
    justify-content: flex-start;
    align-items: center;
    display: none;
    position: fixed;
    inset: 0% 0% auto;
  }
}

@media screen and (min-width: 1440px) {
  .hero-section {
    height: 100vh;
  }

  .div-block-506 {
    border-bottom-width: 2px;
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 1920px) {
  .hero-section {
    background-color: #2a352f;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .our-way {
    padding-top: 0;
  }

  .body {
    background-color: #0000;
  }

  .container-nav {
    justify-content: flex-start;
    align-items: center;
    max-width: 75%;
    padding-top: 10px;
  }

  .menu-bar {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .navbar {
    justify-content: center;
    align-items: center;
  }

  .nav-menu.last {
    margin-right: 10vw;
  }

  .nav-wrapper {
    justify-content: center;
    align-items: center;
    display: block;
  }

  .text-block-2 {
    color: #fff;
    font-size: 18px;
  }

  .text-block-2.w--current {
    color: #fff;
    text-transform: none;
  }

  .text-block-3 {
    color: #fff;
    text-transform: none;
    font-family: Gtzirkon, Arial, sans-serif;
    font-size: 18px;
  }

  .text-block-4 {
    letter-spacing: 10px;
    font-family: Basisgrotesquearabicpro;
    font-size: 30px;
    text-decoration: none;
  }

  .text-block-4.w--current {
    font-size: 30px;
  }

  .text-block-4.footer {
    letter-spacing: 8px;
  }

  .text-block-5, .text-block-9 {
    text-transform: none;
    font-size: 18px;
  }

  .inner-text-scrolling {
    background-color: #fff;
    justify-content: flex-start;
    align-items: center;
  }

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

  .link-to.hero.more {
    text-decoration: none;
  }

  .content-wrapper-2.content {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .content-text.second-part {
    max-width: 100%;
  }

  .head {
    margin-bottom: 20px;
    font-family: Gtzirkon, Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
  }

  .head.second-part {
    font-size: 1vw;
  }

  .about-us {
    background-image: none;
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .tagline-line {
    height: 1px;
  }

  .paragraph-13 {
    margin-bottom: 50px;
    font-family: Gtzirkon, Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
  }

  .text-block-17 {
    z-index: 10;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    padding-bottom: 5px;
    text-decoration: none;
    position: relative;
  }

  .text-span-9, .text-span-11 {
    color: #aaa;
  }

  .heading-9 {
    padding-left: 0;
    font-size: 4vw;
    line-height: 1.1;
  }

  .heading-9._2 {
    margin-left: 0;
  }

  .text-span-14, .text-span-17 {
    font-size: 30px;
  }

  .bold-text {
    font-size: 30px;
    font-weight: 700;
  }

  .container-8 {
    max-width: 70%;
  }

  .paragraph-15 {
    max-width: 75%;
    font-size: 22px;
  }

  .jama-campay {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .wrapper-menu-icona.mob {
    display: none;
  }

  .services-card {
    margin-right: 0;
  }

  .secondary-button, .secondary-button.pin-to-bottom:hover {
    background-color: #0000;
  }

  .container-13.container-footer {
    max-width: 75%;
    padding-left: 0;
    padding-right: 0;
  }

  .loop, .link-view-all-wrapper-2 {
    background-color: #fff;
  }

  .ascii-type-2 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .text-paragraph.max-width-tab-500 {
    font-size: 3vw;
  }

  .text-block-28 {
    -webkit-text-stroke-width: 0px;
    margin-left: 0;
    font-size: 30px;
    text-decoration: none;
  }

  .text-block-28.w--current {
    margin-left: 0;
    font-size: 30px;
  }

  .div-block-36 {
    text-align: left;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    display: flex;
    position: static;
  }

  .title {
    justify-content: center;
    align-items: center;
    height: 66vh;
    display: flex;
  }

  .container-25 {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin-left: 0;
  }

  .div-block-38 {
    display: flex;
    position: static;
  }

  .container-28 {
    width: 75%;
    max-width: 75%;
  }

  .container-29 {
    max-width: 75%;
    padding-left: 0;
    position: absolute;
    inset: auto 0% 0%;
  }

  .menu-bar-mobile {
    z-index: 2147483647;
    justify-content: flex-start;
    align-items: center;
    display: none;
    position: fixed;
    inset: 0% 0% auto;
  }

  .heading-20 {
    font-size: 80px;
  }

  .paragraph-26 {
    font-size: 35px;
  }

  .section-10 {
    background-image: none;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .container-1414 {
    max-width: 75%;
  }

  .text-block-40 {
    color: #fff;
    margin-bottom: -21px;
    font-size: 30px;
  }

  .container-1417 {
    flex-flow: column;
    justify-content: center;
    align-items: flex-end;
    width: 1400px;
    max-width: 1400px;
    margin-bottom: 100px;
  }

  .paragraph-27 {
    height: auto;
    font-size: 26px;
  }

  .container-1419 {
    max-width: 1400px;
  }

  .heading-1.cta-heading {
    font-size: 4vw;
  }

  .div-block-497 {
    height: 300px;
    left: 200px;
  }

  .div-block-498 {
    background-color: #dacdbb;
  }

  .button-13 {
    font-size: 18px;
    font-weight: 400;
  }

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

  .container-1422.padding-bottom-large {
    max-width: 1400px;
  }

  .div-block-505 {
    width: 40%;
  }

  .div-block-506 {
    background-color: #0000;
    border-bottom-color: #dacdbb;
    padding-left: 0;
  }

  .div-block-509 {
    background-image: url('../images/IMG_20190711_213906_957.jpg');
    border-radius: 20px 0;
    height: 700px;
  }

  .div-block-510 {
    border-radius: 20px 0;
    height: 700px;
  }

  .text-block-45 {
    font-size: 26px;
  }

  .button-17 {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hero-section {
    height: 700px;
  }

  .container-nav {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    padding: 1vh 30px;
  }

  .menu-bar {
    z-index: 9000;
    height: 90px;
    display: none;
    position: fixed;
    inset: 0% auto auto 0%;
  }

  .navbar {
    position: relative;
  }

  .nav-menu {
    background-color: #e7e7e7;
    flex: none;
    order: 0;
    width: 100%;
    max-width: none;
    position: relative;
  }

  .nav-menu.last {
    order: 0;
    justify-content: flex-start;
  }

  .nav-wrapper {
    z-index: 3;
  }

  .text-block-4 {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    font-size: 24px;
  }

  .section-2.hero {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .main-paragraph.text-gray.text-small {
    text-align: left;
  }

  .main-grid {
    grid-row-gap: 3vh;
    grid-template-columns: 1fr 1fr;
  }

  .grid-2 {
    grid-column-gap: 32px;
    grid-row-gap: 64px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    justify-items: center;
    display: grid;
  }

  .content-wrapper-2.content {
    flex-flow: row;
    margin-bottom: 200px;
    display: flex;
  }

  .about-us {
    margin-top: 0;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .image-6 {
    object-fit: cover;
    object-position: 50% 50%;
    width: 600px;
    height: 420px;
  }

  .image-6._01 {
    object-position: 50% 100%;
  }

  .heading-9 {
    font-size: 7vw;
  }

  .heading-9._2 {
    padding-right: 20px;
  }

  .wrapper-menu-icona.mob {
    z-index: 2147483647;
    display: block;
    position: fixed;
    top: 5px;
    right: 5px;
  }

  .margin-bottom-2.margin-40px {
    margin-bottom: 30px;
  }

  .content-box.home-about {
    flex: 300px;
  }

  .services-card {
    padding: 2rem;
  }

  .services-card.center-card {
    border-left-style: solid;
    border-right-style: solid;
  }

  .services-grid-homepage {
    grid-template-columns: 1fr;
  }

  .container-12 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .heading-h3 {
    font-size: 2.5rem;
  }

  .services {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .container-13 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer {
    border-top: .0625rem solid #eeeded;
  }

  .footer-newsletter-wrapper {
    justify-content: flex-start;
    display: block;
  }

  .footer-grid {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer-newsletter-text-wrapper {
    margin-bottom: 2rem;
  }

  .footer-form-block {
    min-width: auto;
  }

  .text-paragraph.max-width-tab-500 {
    max-width: 500px;
  }

  .navbar-open {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    background-color: #0000;
    flex-flow: column;
    padding: 10px;
    display: flex;
    position: relative;
  }

  .title {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .menu-bar-mobile {
    background-color: #fff;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    height: 70px;
    display: flex;
    overflow: visible;
  }

  .div-block-494, .div-block-495, .div-block-496 {
    height: 50px;
  }

  .section-13 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .vertical-headline.center {
    position: absolute;
    inset: 0 0% auto;
  }

  .properties-list {
    flex-flow: column;
    display: flex;
  }

  .property-wrapper {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .container-1419 {
    max-width: none;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section-15 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .section-15.cta {
    height: 700px;
    padding-top: 0;
    padding-bottom: 6rem;
  }

  .heading-1.cta-heading {
    font-size: 7vw;
    display: none;
  }

  .container-1421 {
    max-width: none;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .div-block-497 {
    height: auto;
    left: 0;
  }

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

  .heading-large {
    font-size: 65px;
  }

  .div-block-506 {
    padding-left: 0;
  }

  .div-block-509, .div-block-510 {
    height: 350px;
  }

  .heading-27 {
    font-size: 24px;
  }

  .paragraph-28 {
    font-size: 30px;
  }

  .heading-28 {
    font-size: 10vw;
    display: block;
    position: absolute;
    inset: 60px 0% auto;
  }

  .heading-29 {
    font-size: 8vw;
    display: block;
    position: absolute;
    top: 2.7em;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .main-grid {
    grid-row-gap: 1.5vh;
  }

  .section-title {
    font-size: 34px;
  }

  .tagline {
    margin-bottom: 16px;
  }

  .content-wrapper-2.content {
    margin-top: 0;
    padding-left: 32px;
    padding-right: 32px;
  }

  .head {
    font-size: 48px;
  }

  .about-us {
    background-image: linear-gradient(#0b1d2600, #0b1d26 5%);
    margin-top: -120px;
  }

  .margin-bottom-2.margin-40px {
    margin-bottom: 24px;
  }

  .services-card {
    max-width: none;
  }

  .container-12 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .heading-h3 {
    font-size: 2rem;
  }

  .heading-max-width-wrapper {
    margin-bottom: 2rem;
  }

  .paragraph-18 {
    line-height: 1.5rem;
  }

  .container-13 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    padding: .75rem;
  }

  .footer {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .footer-newsletter-wrapper {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }

  .footer-grid {
    grid-row-gap: 2rem;
  }

  .paragraph-16 {
    font-size: .875rem;
    line-height: 1.375rem;
  }

  .title {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-13 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .container-1419 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .vertical-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .section-15 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .container-1421 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-section {
    background-image: linear-gradient(#0006, #0006), url('../images/Untitled-design---2025-05-23T085842.659.png');
    background-position: 0 0, 50%;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .container-nav {
    cursor: none;
    padding: 0 10px;
  }

  .menu-bar {
    z-index: 98;
    box-shadow: none;
    background-color: #f3f3ee;
    justify-content: space-between;
    align-items: center;
    height: 45px;
    display: none;
  }

  .navbar, .nav-wrapper {
    cursor: none;
  }

  .text-block-4 {
    color: #2a352f;
    cursor: none;
    width: 80%;
    margin-left: 0;
    font-size: 4vw;
    font-weight: 400;
  }

  .text-block-4.footer {
    letter-spacing: 5px;
    border-top-width: 0;
    justify-content: center;
    align-items: flex-start;
    font-size: 7vw;
  }

  .section-2.hero.booo {
    padding: 100px 10px;
  }

  .flex-rail {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .content-wrapper {
    width: 100%;
  }

  .main-paragraph {
    font-size: 18px;
  }

  .main-grid {
    grid-row-gap: 3vh;
  }

  .heading-small {
    line-height: 1.3;
  }

  .section-descripton {
    margin-top: 10px;
  }

  .link-to.hero.more.flelel {
    margin-left: 10px;
  }

  .grid-2 {
    grid-column-gap: 32px;
    grid-row-gap: 10px;
  }

  .content-wrapper-2.content {
    margin-bottom: 75px;
    padding-left: 10px;
    padding-right: 0;
  }

  .content-text {
    margin-top: 20px;
    padding: 16px 10px 75px;
  }

  .head {
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    font-family: Gtzirkon, Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;
  }

  .head.second-part {
    line-height: 1;
  }

  .heading-tagline {
    color: #fff;
    letter-spacing: 0;
    font-family: Gtzirkon, Arial, sans-serif;
    font-size: 35px;
    font-weight: 400;
  }

  .about-us {
    background-image: none;
    margin-top: 0;
    padding-top: 75px;
  }

  .image-6 {
    height: 320px;
  }

  .image-6._01 {
    margin-top: 0;
    padding-left: 10px;
  }

  .tagline-line {
    background-color: #fff;
    width: 40px;
    margin-right: 16px;
  }

  .paragraph-13 {
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-block-17 {
    font-size: 14px;
    font-weight: 300;
  }

  .text-span-9, .text-span-11 {
    color: #aaa;
  }

  .heading-9 {
    z-index: 100;
    color: #fff;
    margin-bottom: 10px;
    margin-left: 0;
    padding-left: 0;
    font-family: Gtzirkon, Arial, sans-serif;
    font-size: 16vw;
    font-style: italic;
    font-weight: 100;
    line-height: 1.1;
    display: block;
    inset: auto auto 0% 0%;
    overflow: hidden;
  }

  .heading-9._2 {
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
    font-size: 12vw;
    font-weight: 300;
    display: block;
    overflow: hidden;
  }

  .heading-9._1 {
    justify-content: center;
    align-items: center;
    font-size: 14vw;
    font-weight: 300;
  }

  .div-block-25 {
    width: 95%;
  }

  .text-span-14 {
    font-size: 18px;
    line-height: 1;
  }

  .text-span-17 {
    color: #aaa;
    font-size: 18px;
  }

  .bold-text {
    letter-spacing: 0;
    font-size: 35px;
    font-weight: 400;
  }

  .container-8 {
    max-width: 95%;
    margin-top: 50px;
  }

  .paragraph-15 {
    max-width: 95%;
    padding-left: 10px;
    font-family: Gtzirkon, Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
  }

  .jama-campay {
    flex-flow: column;
    height: auto;
    margin-top: 0;
  }

  .div-block-29 {
    width: 100%;
    height: 500px;
    display: none;
  }

  .div-block-30 {
    width: 100%;
    margin-top: 0;
  }

  .image-8 {
    display: none;
  }

  .image-9 {
    display: block;
  }

  .image-10 {
    margin-bottom: 50px;
    margin-left: -10px;
    display: block;
  }

  .column-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .wrapper-menu-icona {
    margin-top: 10px;
    margin-right: 10px;
  }

  .wrapper-menu-icona.mob {
    z-index: 2147483647;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 10px;
    display: block;
    position: static;
    top: 23px;
    right: 20px;
    overflow: hidden;
  }

  .menu-icona {
    z-index: 100;
    filter: invert();
    width: 25px;
    max-width: 100%;
    margin-bottom: 0;
    position: relative;
  }

  .content-box.home-about {
    padding-left: 0;
    padding-right: 0;
  }

  .services-card {
    border-width: 0;
    border-radius: 0;
    flex-direction: column;
    max-width: 100%;
  }

  .services-card.center-card {
    border-style: solid;
    border-width: 0;
  }

  .services-grid-homepage {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
  }

  .container-12 {
    flex-wrap: nowrap;
  }

  .heading-h3 {
    font-family: Gtzirkon, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 400;
  }

  .secondary-button.pin-to-bottom {
    font-family: Gtzirkon, Arial, sans-serif;
    font-weight: 500;
  }

  .heading-max-width-wrapper {
    margin-bottom: 1.25rem;
  }

  .paragraph-18 {
    font-family: Gtzirkon, Arial, sans-serif;
    font-weight: 300;
  }

  .footer-company-container {
    max-width: 97vw;
  }

  .footer-bottom-links {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-wrap: wrap;
  }

  .footer-form {
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .container-13 {
    flex-wrap: nowrap;
  }

  .footer-title {
    margin-bottom: .5rem;
    font-size: 16px;
  }

  .footer {
    border-top-width: 0;
  }

  .footer-grid {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .footer-links-heading {
    margin-bottom: 15px;
    font-weight: 300;
  }

  .text-block-22 {
    font-weight: 300;
  }

  .loop {
    width: 100%;
    overflow: hidden;
  }

  .link-view-all-wrapper-2 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .ascii-type-2 {
    font-size: 20px;
  }

  .real-estate {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-paragraph.max-width-tab-500 {
    width: 100%;
    max-width: 100%;
    font-size: 30px;
  }

  .navbar-open {
    margin-bottom: 0;
    padding: 0;
    display: block;
  }

  .title {
    height: 50vh;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
  }

  .container-29 {
    padding-right: 25px;
  }

  .menu-bar-mobile {
    z-index: 100000;
    background-color: #0000;
    background-image: none;
    height: 60px;
    position: fixed;
    inset: 0% 0% auto;
    overflow: visible;
  }

  .navbar-white {
    z-index: 9;
    width: 100%;
    display: block;
    position: static;
    inset: 0% 0% auto;
    overflow: hidden;
  }

  .navbar-white.home-page {
    position: absolute;
  }

  .text-block-40 {
    color: #fff;
    letter-spacing: 6px;
    white-space: normal;
    word-break: break-all;
    margin-bottom: 0;
    font-size: 16px;
    position: static;
    overflow: visible;
  }

  .text-block-40.w--current {
    margin-top: 0;
    margin-right: 10px;
  }

  .container-1417 {
    width: 100%;
    margin-bottom: 40px;
    padding-left: 10px;
  }

  .paragraph-27 {
    width: auto;
    padding-right: 20px;
    font-size: 16px;
    position: static;
    inset: auto 0 60px 70px;
  }

  .section-12 {
    height: 100vh;
    overflow: visible;
  }

  .container-1418 {
    z-index: 1;
    border-bottom: 1px solid #fff;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
    margin-top: 0;
    position: relative;
  }

  .container-1418.real-estate {
    border-bottom-color: #000;
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-494 {
    width: auto;
    display: none;
  }

  .div-block-494.black-l-ines {
    display: none;
  }

  .div-block-495 {
    width: auto;
    display: none;
  }

  .div-block-496 {
    z-index: 2;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    overflow: visible;
  }

  .section-13 {
    padding-top: 6rem;
  }

  .section-13.accent.booo {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .vertical-headline.center.real-estate-title {
    position: static;
  }

  .heading-22 {
    font-size: 50px;
  }

  .property-wrapper {
    min-height: 24rem;
  }

  .container-1419 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-15 {
    padding-top: 6rem;
  }

  .section-15.cta {
    padding-top: 2rem;
  }

  .heading-1.cta-heading {
    font-size: 7vw;
    display: none;
  }

  .container-1421 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .div-block-497 {
    height: 225px;
    left: 20px;
  }

  .div-block-498 {
    width: 3px;
    margin-right: 35px;
  }

  .button-13 {
    margin-bottom: 0;
  }

  .div-block-499 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 250px;
    display: flex;
  }

  .div-block-500 {
    display: none;
  }

  .container-1422 {
    max-width: none;
  }

  .container-1422.padding-bottom-large {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-large {
    font-size: 35px;
  }

  .heading-large.margin-bottom-small {
    letter-spacing: 0;
    font-size: 50px;
  }

  .div-block-501 {
    z-index: 10;
    width: auto;
    height: auto;
    margin-top: 15px;
    margin-left: 15px;
    margin-right: 0;
    display: block;
    position: fixed;
    inset: 0% auto auto 0;
  }

  .image-115 {
    filter: invert();
    display: inline-block;
  }

  .menu-mobile {
    z-index: 100;
    opacity: 1;
    background-color: #000;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .div-block-503 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
  }

  .text-block-43 {
    margin-bottom: 40px;
    font-family: Gtzirkon, Arial, sans-serif;
    font-size: 20px;
    text-decoration: none;
  }

  .text-block-43.w--current {
    margin-bottom: 40px;
    font-family: Gtzirkon, Arial, sans-serif;
    font-size: 20px;
  }

  .text-block-44 {
    margin-bottom: 40px;
    font-family: Gtzirkon, Arial, sans-serif;
    font-size: 20px;
    text-decoration: none;
  }

  .link-7 {
    font-family: Gtzirkon, Arial, sans-serif;
    font-size: 20px;
    text-decoration: none;
  }

  .div-block-504 {
    position: absolute;
    inset: 30px 30px auto auto;
  }

  .image-116 {
    filter: invert();
  }

  .container-1423 {
    flex-flow: column;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 0;
  }

  .div-block-505 {
    width: 100%;
    height: 500px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-506 {
    width: 100%;
    margin-right: 40px;
    padding-left: 40px;
    padding-right: 20px;
    overflow: hidden;
  }

  .div-block-509, .div-block-510 {
    width: 90%;
    height: 350px;
  }

  .div-block-514 {
    width: auto;
    left: 20px;
    right: 20px;
  }

  .heading-27 {
    font-size: 20px;
    position: static;
    inset: auto 0% 0% auto;
  }

  .paragraph-28 {
    font-size: 30px;
  }

  .heading-28 {
    font-size: 15vw;
    display: block;
    position: absolute;
    inset: 0% 0% 0;
  }

  .heading-29 {
    font-family: Gtzirkon, Arial, sans-serif;
    font-size: 15vw;
    line-height: 1;
    display: block;
    position: absolute;
    inset: 1.1em 0% auto;
  }

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

#email.w-node-_594e2607-dab4-5508-5983-05a6b81aa1ae-30e6980d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_30d00856-00ab-1120-b0ee-471adf5584a9-a45b5e33 {
  align-self: center;
}

#w-node-_30d00856-00ab-1120-b0ee-471adf5584ba-a45b5e33 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: end;
}

#email.w-node-_7555fc70-a47b-9cc0-6bf3-cb16be100e31-a45b5e33, #w-node-ca35baf2-9e4d-2f07-4f60-9616f69973ec-f8ee27fa, #w-node-ca35baf2-9e4d-2f07-4f60-9616f69973f1-f8ee27fa, #w-node-ca35baf2-9e4d-2f07-4f60-9616f69973f7-f8ee27fa, #w-node-ca35baf2-9e4d-2f07-4f60-9616f69973fc-f8ee27fa, #email.w-node-_5a43174d-8673-c08a-1739-23c0053c0648-f8ee27fa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c88cc617-6905-187b-8227-ad24f1efc37b-9384d6ca {
  grid-area: 1 / 1 / 2 / 10;
}

#w-node-c88cc617-6905-187b-8227-ad24f1efc37e-9384d6ca {
  grid-area: 2 / 7 / 3 / 11;
}

#w-node-c88cc617-6905-187b-8227-ad24f1efc38b-9384d6ca {
  grid-area: 2 / 1 / 4 / 6;
  align-self: stretch;
}

#w-node-c88cc617-6905-187b-8227-ad24f1efc38d-9384d6ca {
  grid-area: 3 / 7 / 4 / 9;
}

#w-node-c88cc617-6905-187b-8227-ad24f1efc39c-9384d6ca {
  grid-area: 3 / 9 / 4 / 11;
}

#w-node-c88cc617-6905-187b-8227-ad24f1efc3ab-9384d6ca {
  grid-area: 3 / 11 / 4 / 13;
}

#email.w-node-f43df3a6-3964-7b05-be98-5fb23f730dcc-9384d6ca {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-_30d00856-00ab-1120-b0ee-471adf5584ba-a45b5e33 {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_30d00856-00ab-1120-b0ee-471adf5584a9-a45b5e33 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_30d00856-00ab-1120-b0ee-471adf5584ba-a45b5e33 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_575ea77e-88a7-55d4-30b3-24510ebfe026-a45b5e33, #w-node-_575ea77e-88a7-55d4-30b3-24510ebfe02d-a45b5e33 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_575ea77e-88a7-55d4-30b3-24510ebfe034-a45b5e33 {
    grid-column: span 1 / span 1;
  }

  #w-node-c88cc617-6905-187b-8227-ad24f1efc37b-9384d6ca, #w-node-c88cc617-6905-187b-8227-ad24f1efc37e-9384d6ca {
    grid-column: 1 / 3;
  }

  #w-node-c88cc617-6905-187b-8227-ad24f1efc38b-9384d6ca {
    grid-row: 3 / 4;
    grid-column-end: 3;
  }

  #w-node-c88cc617-6905-187b-8227-ad24f1efc38d-9384d6ca {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-c88cc617-6905-187b-8227-ad24f1efc39c-9384d6ca {
    grid-area: 5 / 1 / 6 / 3;
  }

  #w-node-c88cc617-6905-187b-8227-ad24f1efc3ab-9384d6ca {
    grid-area: 6 / 1 / 7 / 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_30d00856-00ab-1120-b0ee-471adf5584a9-a45b5e33 {
    grid-area: 2 / 1 / 3 / 2;
    align-self: center;
  }

  #w-node-_575ea77e-88a7-55d4-30b3-24510ebfe026-a45b5e33 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-Italic.ttf') format('truetype'), url('../fonts/GTZirkon-BookItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-UltraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gtzirkon';
  src: url('../fonts/GTZirkon-UltraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aviano';
  src: url('../fonts/Aviano-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sensasans';
  src: url('../fonts/SensaSans-RegularDemo.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}