:root {
  --white: white;
  --main-font: Geist, sans-serif;
  --grey-400: #2c2c2c;
  --transparent: #fff0;
  --grey-200: #c7c7c7;
  --grey-100: #f3f3f3;
  --white-opacity-30: #ffffff4d;
  --black: black;
  --color-green: #66fc75;
  --white-opacity-90: #ffffffd9;
  --grey-150: #e7e7e7;
  --grey-300: #888;
  --yellow: #f7c547;
  --white-opacity-50: #ffffff80;
}

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

.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-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

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

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.hero-section {
  width: 100%;
  height: 100vh;
  margin-bottom: 5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 5rem 2.5rem;
  position: relative;
}

.hero-bg-wrap {
  object-fit: fill;
  background-image: linear-gradient(#0000001a, #0000001a), radial-gradient(circle, #fff0, #0000004d), url('../images/coffee.jpg');
  background-position: 0 0, 0 0, 50% 100%;
  background-size: auto, auto, cover;
  border-radius: 2rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 30px;
  padding-left: 5rem;
  display: flex;
  position: relative;
}

.hero-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border: 1px none var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: flex;
  position: relative;
}

.hero-heading {
  font-family: var(--main-font);
  color: var(--white);
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 39px;
  font-weight: 600;
  line-height: 1;
}

.basic-text {
  font-family: var(--main-font);
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.3;
  text-decoration: none;
}

.basic-text.color-grey-400 {
  color: var(--white);
  text-align: left;
  padding: 0;
}

.basic-text.color-grey-400.nav-menu {
  opacity: .6;
  color: var(--grey-400);
  font-size: .9rem;
  transition: all .3s;
}

.basic-text.color-grey-400.nav-menu:hover {
  opacity: 1;
}

.basic-text.color-grey-400.bold {
  font-weight: 600;
}

.basic-text.color-grey-400.bold.linehigh-small {
  word-break: normal;
  line-height: 1;
}

.basic-text.color-grey-400.section-badge {
  border: 1px solid var(--grey-200);
  background-color: var(--grey-100);
  color: var(--grey-400);
  text-transform: capitalize;
  background-image: url('../images/gradient-gold-texture-background_23-2151630715.avif');
  background-position: 50% 100%;
  background-size: cover;
  border-radius: 2rem;
  padding: .25rem 1.5rem .25em;
  display: inline-block;
}

.basic-text.color-grey-400.text1 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.basic-text.color-grey-300 {
  color: var(--grey-400);
  line-height: 1.3;
}

.basic-text.color-grey-300.services_info {
  color: var(--white);
}

.basic-text.footer {
  color: var(--grey-200);
  transition: all .2s;
}

.basic-text.footer:hover {
  color: var(--grey-200);
}

.basic-text.bold {
  font-weight: 600;
}

.basic-text.color-grey-200 {
  color: var(--grey-200);
}

.space-small {
  width: 1rem;
  height: 1rem;
}

.button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: 1px solid var(--white-opacity-30);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 99rem;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem .325rem .5rem 1.5rem;
  text-decoration: none;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.button.navbar-button {
  background-color: var(--black);
  justify-content: space-between;
  width: auto;
  padding-left: 1rem;
}

.button.navbar-button.hide-in-tablet {
  display: none;
}

.button.call-to-action.whatsapp {
  margin-top: 30px;
}

.button.property-button {
  border-color: var(--grey-200);
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: inline-flex;
}

.small-text {
  font-family: var(--main-font);
  color: var(--white);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3;
  position: relative;
}

.small-text:where(.w-variant-f56ced58-a97c-2498-429d-29ffef4ea574), .small-text:where(.w-variant-2d30b328-f21a-1810-6c84-8510fa8fcbe8) {
  color: var(--grey-400);
}

.small-text.color-grey-400.bold {
  color: var(--white);
  font-weight: 600;
  line-height: 1;
}

.small-text.color-grey-400.nomral {
  font-weight: 400;
}

.small-text.color-grey-400.nomral.linehigh-small {
  line-height: 1;
}

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

.small-text.color-grey-400 {
  color: var(--grey-400);
  font-weight: 300;
}

.small-text.color-grey-400.linehigh-small {
  font-weight: 300;
  line-height: 1;
}

.small-text.statistic:where(.w-variant-f56ced58-a97c-2498-429d-29ffef4ea574), .small-text.statistic:where(.w-variant-2d30b328-f21a-1810-6c84-8510fa8fcbe8) {
  color: var(--white);
}

.button-circle {
  background-color: var(--black);
  border-radius: 99rem;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-circle.navbar-button {
  background-color: var(--white);
}

.button-circle.property-button {
  background-color: var(--grey-200);
}

.icon-size-small {
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
  position: absolute;
}

.icon-size-small.navbar-button {
  color: var(--black);
}

.icon-size-small.hover-out {
  transform: translate(-180%, 180%);
}

.icon-size-small.relative {
  position: relative;
}

.icon-size-small.relative.color-green {
  color: var(--color-green);
}

.hero-description {
  width: 85%;
}

.achieves-wrap {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  height: 10px;
  display: flex;
}

.achieve-list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.large-text-xl {
  font-family: var(--main-font);
  color: var(--white);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

.large-text-xl:where(.w-variant-f56ced58-a97c-2498-429d-29ffef4ea574), .large-text-xl:where(.w-variant-2d30b328-f21a-1810-6c84-8510fa8fcbe8) {
  color: var(--grey-400);
}

.large-text-xl.color-grey {
  color: var(--white);
  display: inline-block;
}

.large-text-xl.color-grey.vertical {
  color: var(--grey-200);
}

.large-text-xl.statistic:where(.w-variant-f56ced58-a97c-2498-429d-29ffef4ea574), .large-text-xl.statistic:where(.w-variant-2d30b328-f21a-1810-6c84-8510fa8fcbe8) {
  color: var(--white);
}

.achieve-number-wrap {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.upper-text {
  font-family: var(--main-font);
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
}

.upper-text.linehigh-small {
  line-height: .6;
}

.upper-text.linehigh-small:where(.w-variant-f56ced58-a97c-2498-429d-29ffef4ea574) {
  color: var(--grey-400);
}

.upper-text.linehigh-small:where(.w-variant-2d30b328-f21a-1810-6c84-8510fa8fcbe8) {
  color: var(--grey-400);
  font-size: 1.75rem;
  line-height: 1;
}

.upper-text.linehigh-small.statistic:where(.w-variant-f56ced58-a97c-2498-429d-29ffef4ea574) {
  color: var(--white-opacity-90);
}

.upper-text.linehigh-small.statistic:where(.w-variant-2d30b328-f21a-1810-6c84-8510fa8fcbe8) {
  color: var(--white);
}

.hero-rating-wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #02433b;
  border: 1px #000;
  border-radius: 2rem 0 0;
  justify-content: flex-start;
  align-items: center;
  padding: .75rem 1rem .75rem 1.5rem;
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.hero-rating-clients-wrap {
  display: flex;
}

.hero-rating-text-wrap {
  grid-column-gap: .1rem;
  grid-row-gap: .1rem;
  flex-flow: column;
  display: flex;
}

.client-avator {
  border: 3px solid var(--white);
  background-color: var(--white);
  border-radius: 99rem;
  width: 70px;
  height: 70px;
  margin-left: -.75rem;
  overflow: hidden;
}

.full {
  object-fit: fill;
  width: 100%;
  height: 100%;
}

.full.house-image-1 {
  object-fit: cover;
  border-radius: 2rem;
}

.full.house-image-2 {
  border-radius: 2rem;
}

.full.house-image-2.cover {
  object-fit: cover;
}

.full.house-image-3 {
  border-radius: 2rem;
}

.full.house-image-3.cover {
  object-fit: cover;
}

.full.cover {
  object-fit: cover;
  object-position: 50% 50%;
}

.full.brand-logo-image {
  width: 9.4rem;
  height: auto;
}

.hero-rating-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: auto auto;
  position: absolute;
  inset: auto 0% 0% auto;
}

.corner-top-right {
  width: 40px;
  height: 40px;
  transform: rotate(180deg);
}

.hero-rating-stars {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.icon-size-medium {
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.icon-size-medium.color-grey-400 {
  color: var(--grey-400);
}

.featured-agents-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navbar {
  border-bottom: 1px solid var(--white);
  background-color: var(--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  flex-flow: column;
  justify-content: center;
  width: 100%;
  height: 5rem;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
  position: fixed;
}

.navbar-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1.25fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: grid;
}

.brand-logo {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 2.5rem;
  display: flex;
}

.brand-logo.w--current {
  height: auto;
}

.brand-logo.footer.w--current {
  flex: 0 auto;
}

.nav-menu {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  display: flex;
}

.nav-button-wrap {
  flex: 0 auto;
  order: 0;
  display: block;
}

.feature-service-section {
  grid-column-gap: 10rem;
  grid-row-gap: 10rem;
  flex-flow: column;
  width: 100%;
  height: auto;
  padding: 5rem;
  display: flex;
}

.button-bg {
  background-color: var(--white);
  transform-origin: 0%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.container {
  border: 1px #000;
  flex-flow: column;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.container.flex-h.gap-medium {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
}

.container.full {
  z-index: 1;
  max-width: none;
  position: relative;
}

.section-heading {
  font-family: var(--main-font);
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
}

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

.section-heading.whychoose {
  text-align: center;
  font-size: 2rem;
}

.feature-service-left {
  flex-flow: column;
  justify-content: space-between;
  width: 400px;
  display: flex;
}

.feature-service-right {
  justify-content: space-between;
  width: 1000px;
  display: flex;
}

.large-text {
  font-family: var(--main-font);
  color: var(--grey-400);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.large-text.no-wrap {
  color: var(--grey-200);
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.large-text.logo-text {
  color: var(--grey-400);
  text-transform: uppercase;
  line-height: 1;
}

.large-text.logo-text.color-white, .large-text.slide, .large-text.services {
  color: var(--white);
}

.feature-service-list {
  justify-content: space-between;
  height: 500px;
  display: flex;
}

.feature-service-list.first {
  cursor: pointer;
}

.feature-service-list.second {
  cursor: pointer;
  display: flex;
  position: relative;
}

.feature-service-list.third {
  cursor: pointer;
  flex: 0 auto;
  display: flex;
}

.feature-service-image {
  border-radius: 0;
  width: 400px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-service-image.first {
  width: 800px;
  max-width: 800px;
  display: block;
}

.feature-service-image.first.hide-in-desktop {
  display: none;
}

.feature-service-image.second {
  transform-origin: 100%;
  width: 0;
  display: block;
}

.feature-service-image.second.desktop-hide {
  display: none;
}

.feature-service-image.third {
  width: 0;
  display: block;
}

.feature-service-image.third.desktop-hide {
  display: none;
}

.feature-service-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
  position: absolute;
  inset: auto 0% 0% auto;
}

.feature-service-vertical-wrap {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 70px;
  height: 100%;
  display: flex;
  position: relative;
}

.feature-service-vertical-wrap.first {
  border-right: 1px solid var(--grey-200);
  opacity: 0;
  width: 0;
  overflow: hidden;
}

.feature-service-vertical-wrap.second, .feature-service-vertical-wrap.third {
  border-right: 1px solid var(--grey-200);
  width: 100px;
  overflow: hidden;
}

.feature-service-text {
  background-color: #02433b;
  border-radius: 2rem 0 0;
  padding: 1.5rem 1.5rem 0;
}

.corner-bottom-left {
  width: 40px;
  height: 40px;
  transform: rotate(180deg);
}

.feature-service-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  display: flex;
}

.text-wrap-medium {
  width: 780px;
}

.text-wrap-medium.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-wrap-medium.margin-auto.text-align-center {
  text-align: center;
}

.space-large {
  width: 3rem;
  height: 3rem;
}

.space-small-xs {
  width: .5rem;
  height: .5rem;
}

.icon-size-large {
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.icon-size-large.color-grey-200 {
  color: var(--grey-200);
  width: 2rem;
  height: 2rem;
}

.icon-size-large.color-grey-400 {
  color: var(--grey-400);
  width: 3rem;
}

.feature-service-text-vertical {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  aspect-ratio: auto;
  text-align: left;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 450px;
  display: flex;
  position: absolute;
  bottom: 40%;
  left: auto;
  right: auto;
  transform: rotate(-90deg);
}

.feature-service-info.first {
  display: block;
}

.feature-service-info.second, .feature-service-info.third {
  display: none;
}

.text-wrap-small {
  width: 580px;
}

.text-wrap-small.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-wrap-small.margin-auto.text-align-center {
  text-align: center;
}

.services-grid-wrap {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.services-grid-wrap.why_choose, .services-grid-wrap.why_choose-copy {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
}

.service-grid-item {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--grey-100);
  border-radius: 2rem;
  flex-flow: column;
  padding: 2.5rem 2rem;
  display: flex;
}

.service-grid-icon {
  background-color: var(--white);
  border-radius: 99rem;
  width: 60px;
  height: 60px;
  padding: 1rem;
}

.space-medium {
  width: 2rem;
  height: 2rem;
}

.property-section {
  width: 100%;
  padding: 5rem;
}

.property-section.property-category-page {
  padding-top: 8rem;
}

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

.property {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.property-image-wrap {
  border-radius: 2rem;
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
}

.property-info-wrap {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.property-category {
  background-color: var(--white);
  font-family: var(--main-font);
  color: var(--grey-400);
  border-radius: 2rem;
  flex-flow: column;
  padding: .5rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  position: absolute;
  inset: 20px auto auto 20px;
}

.property-location {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon-size-normal {
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.icon-size-normal.color-grey-400 {
  color: var(--grey-400);
  width: 1.5rem;
  height: 1.5rem;
}

.icon-size-normal.color-grey-300 {
  color: var(--grey-300);
}

.icon-size-normal.color-grey-300.opacity-70 {
  opacity: .7;
  height: 1.5rem;
}

.flex-h {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  display: flex;
}

.flex-h.space-between {
  justify-content: space-between;
  width: 100%;
}

.flex-h.gap-small {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
}

.flex-h.center {
  align-items: center;
}

.flex-h.center.icon-text-gap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.property-name {
  width: 60%;
}

.property-price {
  justify-content: flex-end;
  width: 40%;
  display: flex;
}

.property-detail {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  border-right: 1px solid var(--grey-200);
  justify-content: flex-start;
  align-items: center;
  margin-right: .5rem;
  padding-right: .5rem;
  display: flex;
}

.property-detail.last {
  border-right-style: none;
}

.icon-size-normal-xs {
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.3rem;
  height: 1.3rem;
  display: flex;
}

.icon-size-normal-xs.color-grey-300 {
  color: var(--grey-300);
}

.icon-size-normal-xs.color-grey-300.opacity-70 {
  opacity: .7;
  width: 1.3rem;
  height: 1.3rem;
}

.icon-size-normal-xs.color-yellow {
  color: var(--yellow);
}

.property-button-text {
  font-family: var(--main-font);
  color: var(--grey-400);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3;
  position: relative;
}

.about-section {
  padding: 5rem;
}

.about-column-wrap {
  width: 33.33%;
}

.about-column-wrap.left {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.about-column-wrap.middle {
  border-radius: 2rem;
  height: 600px;
  overflow: hidden;
}

.about-column-wrap.right {
  flex-flow: column;
  display: flex;
}

.about-column-wrap.right.flex-v {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: center;
}

.text-wrap.flex-v {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.text-wrap.flex-v.gap-medium {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.text-wrap.sticky {
  position: sticky;
  top: 8rem;
}

.about-achieves-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-columns: auto 1fr;
}

.logos-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: visible;
}

.logos-row-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.logo-list {
  grid-column-gap: 3rem;
  grid-row-gap: 0px;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: minmax(12.5rem, 1fr) 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  align-self: auto;
  place-items: center start;
  width: 100.2%;
  margin-top: 0;
  margin-right: 2rem;
  display: flex;
  overflow: visible;
}

.logo-image-wrapper {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.logo-image {
  opacity: .4;
  filter: grayscale();
  flex: 0 auto;
  width: auto;
  max-height: 3rem;
}

.agents-section {
  padding: 5rem;
}

.agents-section.agents-category-page {
  padding-top: 8rem;
}

.agent-scroll-loop {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.agents-list-wrap {
  flex: none;
  display: block;
}

.agents-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.agent-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  width: 340px;
  display: flex;
}

.agent-image {
  border-radius: 2rem;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.agent-info {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  display: flex;
}

.testimonials-section {
  padding: 5rem;
}

.testimonials-column-wrap.left {
  width: 30%;
}

.testimonials-column-wrap.right {
  width: 70%;
}

.testimonial-outwrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  max-height: 650px;
  display: flex;
  position: relative;
  overflow: clip;
}

.testimonials-vertical-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: space-between;
  width: 33.33%;
  display: flex;
}

.reviewer-image {
  object-fit: cover;
  border-radius: 50%;
  flex: none;
  width: 3.5rem;
  max-width: none;
  height: 3.5rem;
  overflow: hidden;
}

.testimonial-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--grey-150);
  background-color: var(--white);
  border-radius: 2rem;
  flex-flow: column;
  width: 100%;
  padding: 1.5rem 1.5rem 1.2rem;
  display: flex;
}

.testimonial-wrap-reviewer {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.reviewer-info {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  display: flex;
}

.testimonial-wrap-star {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.gradient-white-top {
  background-image: linear-gradient(180deg, var(--white) 20%, #ffffff4d 70%, #fff0);
  width: 100%;
  height: 80px;
  position: absolute;
  inset: 0% 0% auto;
}

.gradient-white-top.contact-bg {
  background-image: none;
  height: 200px;
}

.gradient-white-bottom {
  background-image: linear-gradient(360deg, var(--white) 20%, #ffffff4d 70%, #fff0);
  width: 100%;
  height: 80px;
  position: absolute;
  inset: auto 0% 0%;
}

.faq-section {
  padding: 5rem 5rem 10rem;
}

.faq-column-wrap.left {
  width: 30%;
}

.faq-column-wrap.right {
  width: 70%;
}

.faq-tabs-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.faq-top {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.faq-dropdown-wrapper {
  width: 100%;
}

.faq-bottom {
  padding-bottom: 1.5rem;
  padding-right: 3rem;
  display: flex;
  overflow: hidden;
}

.faq-toggle {
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.tabs-content {
  display: none;
}

.faq-accordion, .faq-accordion.w--current {
  border-bottom: 1px solid var(--grey-200);
  background-color: #0000;
  flex-flow: column;
  width: 100%;
  padding: 0;
  display: flex;
}

.contact-section {
  padding: 5rem 0 26%;
  position: relative;
}

.form-wrap {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.form {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border: 1px solid var(--grey-200);
  background-color: var(--white-opacity-50);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 2rem;
  flex-flow: column;
  padding: 2rem;
  display: flex;
}

.text-field {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--grey-200);
  background-color: var(--transparent);
}

.text-field.small-text {
  margin-bottom: 0;
  padding: .5rem 0 .5rem 1rem;
}

.text-field.small-text.input-area {
  height: 100px;
}

.text-field.small-text.color-grey-400 {
  padding-left: .5rem;
}

.text-field.small-text.color-grey-400:focus {
  border-bottom-color: var(--grey-400);
}

.text-field.small-text.color-grey-400::placeholder, .text-field.small-text.color-grey-400.newform, .text-field.small-text.color-grey-400.newform::placeholder {
  color: var(--grey-400);
}

.submit-button {
  background-color: var(--black);
  border-radius: 99rem;
}

.submit-button.basic-text {
  padding-top: .75rem;
  padding-bottom: .75rem;
  transition: all .3s;
}

.submit-button.basic-text:hover {
  background-color: var(--grey-400);
}

.contact-bg-wrap {
  width: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.footer-section {
  background-color: var(--black);
  padding: 5rem;
}

.footer-wrap-top {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  border-bottom: 1px solid var(--grey-400);
  padding-bottom: 2.5rem;
  display: flex;
}

.footer-wrap-bottom {
  justify-content: space-between;
  padding-top: 2.5rem;
  display: flex;
}

.footer-wrap-left {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.footer-wrap-right {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: flex-start;
  width: 50%;
  display: flex;
}

.social-wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.social-icon-wrap {
  background-color: var(--grey-400);
  border: 1px solid #000;
  border-radius: 99rem;
  width: 3rem;
  height: 3rem;
  padding: .75rem;
  transition: all .2s;
}

.social-icon-wrap:hover {
  background-color: var(--grey-300);
}

.footer-link {
  color: var(--grey-200);
  text-decoration: underline;
  transition: all .2s;
}

.footer-link:hover {
  color: var(--grey-300);
}

.service-icon-text-wrap {
  flex-flow: column;
  display: flex;
}

.license-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  width: 100%;
}

.admin-text {
  font-family: var(--main-font);
  color: var(--grey-400);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.3;
}

.section-admin.padding-medium {
  margin-left: auto;
  margin-right: auto;
  padding: 8rem 5rem 6rem;
}

.section-admin.padding-medium.change-log {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.button-group {
  grid-column-gap: 10px;
  display: flex;
}

.button-group.license-button-gruop {
  align-self: center;
}

.cell {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.admin-button {
  background-color: var(--grey-300);
  font-family: var(--main-font);
  border-radius: 99rem;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  transition: all .2s;
}

.admin-button:hover {
  background-color: var(--grey-400);
}

.admin-button.outline {
  border: 2px solid var(--grey-300);
  color: var(--grey-300);
  background-color: #0000;
  padding: .75rem 1.5rem;
  font-weight: 400;
  transition: color .2s, background-color .2s;
}

.admin-button.outline:hover {
  background-color: var(--grey-400);
  color: var(--white);
  border-color: #0000;
}

.h2-heading {
  justify-content: center;
  align-self: auto;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.h2-heading.align-center {
  font-family: var(--main-font);
  color: var(--grey-400);
  text-align: center;
  width: auto;
  font-size: 2.25rem;
  font-weight: 600;
}

.admin-title {
  font-family: var(--main-font);
  color: var(--grey-400);
  text-align: center;
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 600;
  line-height: .8;
}

.admin-image {
  border-radius: 2rem;
}

.blog-rich-content h1 {
  font-family: var(--main-font);
  color: var(--white);
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
}

.blog-rich-content h2 {
  font-family: var(--main-font);
  color: var(--grey-400);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
}

.blog-rich-content h3 {
  font-family: var(--main-font);
  color: var(--grey-400);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.blog-rich-content p {
  font-family: var(--main-font);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.3;
}

.blog-rich-content blockquote {
  font-family: var(--main-font);
  color: var(--grey-400);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}

.blog-rich-content li {
  font-family: var(--main-font);
  color: var(--grey-400);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.3;
}

.blog-rich-content a {
  color: var(--grey-400);
}

.bold-text {
  font-weight: 600;
}

.body {
  background-color: #02433b;
}

.quick-stack {
  padding-left: 0;
}

.image {
  border-radius: 15px;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

.sustainable {
  color: var(--white-opacity-90);
  margin-bottom: 0;
  font-size: 22px;
}

.sustaible_info {
  color: var(--white);
  font-size: 15px;
}

.cell-2 {
  justify-content: center;
  align-items: flex-start;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.service-grid-item-2 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--grey-100);
  border-radius: 2rem;
  flex-flow: column;
  padding: 2.5rem 2rem;
  display: flex;
}

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

.div-block {
  background-color: #eaeaea;
  border-radius: 15px;
}

.flex-block {
  padding: 35px 30px 25px;
}

.key-management {
  margin-bottom: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.key-management-2 {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 400;
}

.text-block {
  font-size: 1.2rem;
  font-weight: 400;
}

.bold-text-2 {
  font-weight: 400;
}

.key-management-3 {
  text-align: justify;
  padding-top: 15px;
}

.section {
  padding-top: 50px;
}

.div-block-2 {
  background-color: var(--grey-100);
  border-radius: 35px;
}

.image-2 {
  border-radius: 35px;
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .container.full {
    z-index: 1;
    position: relative;
  }

  .flex-h {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .testimonial-wrap {
    border-color: var(--grey-150);
  }

  .gradient-white-top {
    background-image: linear-gradient(180deg, var(--white) 30%, #ffffff4d 70%, #fff0);
  }

  .gradient-white-top.contact-bg {
    background-image: linear-gradient(180deg, var(--white), #ffffffe6 41%, #ffffff96 67%, #ffffff4d 88%, #fff0);
  }

  .gradient-white-bottom {
    background-image: linear-gradient(360deg, var(--white) 30%, #ffffff4d 70%, #fff0);
  }

  .faq-top {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
    display: flex;
  }

  .faq-bottom {
    color: #272727;
    padding-bottom: 1.5rem;
    padding-left: 0;
    padding-right: 3rem;
    display: flex;
  }

  .faq-accordion.w--current {
    background-color: #0000;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    flex-flow: column;
    width: 100%;
    padding: 0;
    display: flex;
  }

  .contact-section {
    position: relative;
  }

  .contact-bg-wrap {
    margin-top: 0;
  }

  .admin-button.outline {
    -webkit-text-stroke-color: #ad7ff7;
    border-style: solid;
    border-width: 2px;
  }
}

@media screen and (max-width: 991px) {
  .hero-section {
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    overflow: hidden;
  }

  .hero-bg-wrap {
    background-image: linear-gradient(#0000001a, #0000001a), radial-gradient(circle, #fff0, #0000004d), url('../images/coffee.jpg');
    background-position: 0 0, 0 0, 50% 100%;
    background-size: auto, auto, cover;
    border-radius: 1.5rem;
    flex-flow: column;
    padding: 5rem 3rem;
  }

  .hero-content {
    width: 100%;
  }

  .hero-heading {
    font-size: 4rem;
  }

  .basic-text.color-grey-400.nav-menu {
    background-color: var(--transparent);
    opacity: 1;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.5rem;
  }

  .basic-text.color-grey-400.bold.linehigh-small {
    color: var(--grey-200);
  }

  .basic-text.footer, .basic-text.color-grey-200 {
    font-size: 1rem;
  }

  .space-small.tablet-hide, .button.navbar-button.hide-in-tablet {
    display: none;
  }

  .large-text-xl.color-grey {
    color: var(--grey-200);
  }

  .hero-rating-wrap {
    border-top-left-radius: 1.5rem;
  }

  .full.house-image-1.cover, .full.house-image-2.cover, .full.house-image-3.cover {
    border-radius: 1.5rem;
  }

  .full.cover {
    object-fit: cover;
    object-position: 50% 50%;
  }

  .full.brand-logo-image {
    width: 7rem;
    height: auto;
  }

  .corner-top-right {
    width: 30px;
    height: 30px;
  }

  .navbar {
    height: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .navbar-content {
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .brand-logo.w--current {
    height: auto;
  }

  .nav-menu {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #fffffff2;
    flex-flow: row;
    justify-content: center;
    align-self: flex-start;
    align-items: center;
    height: 100vh;
    padding-top: 6rem;
    display: flex;
  }

  .nav-button-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    align-items: center;
    display: flex;
  }

  .feature-service-section {
    padding-left: 3rem;
    padding-right: 3rem;
    overflow: hidden;
  }

  .container.flex-h.gap-medium {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

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

  .feature-service-left {
    width: 100%;
  }

  .feature-service-right, .feature-service-left-top {
    display: none;
  }

  .feature-service-left-bottom {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    flex-flow: column;
    display: flex;
  }

  .feature-service-image.first {
    width: 100%;
    height: 350px;
  }

  .feature-service-image.first.hide-in-desktop {
    height: 300px;
    display: block;
  }

  .feature-service-image.second {
    width: 100%;
    height: 350px;
  }

  .feature-service-image.second.desktop-hide {
    height: 300px;
    display: block;
  }

  .feature-service-image.third {
    width: 100%;
    height: 300px;
  }

  .feature-service-image.third.desktop-hide {
    display: block;
  }

  .feature-service-text {
    border-top-left-radius: 1.5rem;
  }

  .corner-bottom-left {
    width: 30px;
    height: 30px;
  }

  .feature-service-wrap {
    flex-flow: column;
  }

  .text-wrap-medium {
    width: 100%;
  }

  .feature-service-info.first {
    flex-flow: column;
    display: flex;
  }

  .feature-service-info.second, .feature-service-info.third {
    display: block;
  }

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

  .service-grid-item {
    border: 1px none var(--grey-150);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .property-section {
    padding-left: 3rem;
    padding-right: 3rem;
    overflow: hidden;
  }

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

  .property-image-wrap {
    border-radius: 1.5rem;
    height: 260px;
  }

  .property-category {
    top: 15px;
    left: 15px;
  }

  .flex-h.gap-small.mobile-flex-v {
    flex-flow: column;
  }

  .about-section {
    padding-left: 3rem;
    padding-right: 3rem;
    overflow: hidden;
  }

  .about-column-wrap.left {
    width: 100%;
  }

  .about-column-wrap.middle {
    border-radius: 1.5rem;
    width: 100%;
    height: 500px;
  }

  .about-column-wrap.right.flex-v {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    width: 100%;
  }

  .text-wrap.sticky {
    position: relative;
    top: 0;
  }

  .about-achieves-grid {
    grid-template-rows: auto;
    grid-template-columns: auto auto auto 1fr;
    justify-items: start;
  }

  .logo-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .logo-image {
    max-height: 2rem;
  }

  .agents-section {
    overflow: hidden;
  }

  .agent-item {
    width: 250px;
  }

  .agent-image {
    border-radius: 1.5rem;
    height: 300px;
  }

  .testimonials-section {
    padding-left: 3rem;
    padding-right: 3rem;
    overflow: hidden;
  }

  .testimonials-column-wrap.left, .testimonials-column-wrap.right {
    width: 100%;
  }

  .testimonial-outwrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .testimonials-vertical-wrapper {
    width: 33.33%;
  }

  .testimonials-vertical-wrapper.hide-in-tablet {
    width: 33.33%;
    display: flex;
  }

  .reviewer-image {
    flex: none;
  }

  .testimonial-wrap {
    border-radius: 1.5rem;
  }

  .testimonial-wrap-reviewer {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .faq-section {
    padding-bottom: 5rem;
    padding-left: 3rem;
    padding-right: 3rem;
    overflow: hidden;
  }

  .faq-column-wrap.left, .faq-column-wrap.right {
    width: 100%;
  }

  .faq-top {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    align-items: flex-start;
  }

  .faq-toggle {
    flex: none;
  }

  .contact-section {
    padding-left: 3rem;
    padding-right: 3rem;
    overflow: hidden;
  }

  .form-wrap {
    width: 100%;
  }

  .footer-section {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .menu-button {
    background-color: var(--transparent);
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .menu-button.w--open {
    border: 1px solid var(--grey-200);
    background-color: var(--grey-150);
    color: var(--grey-400);
    border-radius: 99rem;
  }

  .icon {
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    inset: 50% 0% 0% 50%;
    transform: translate(-50%, -50%);
  }

  .service-icon-text-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .admin-text {
    font-size: 1.125rem;
  }

  .section-admin.padding-medium {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .button-group {
    justify-content: center;
    align-items: center;
  }

  .admin-button.outline {
    border-style: solid;
  }

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

  .h2-heading.align-center {
    font-size: 2rem;
  }

  .admin-title {
    font-size: 4rem;
  }

  .admin-image {
    border-radius: 1.5rem;
  }

  .blog-rich-content h1 {
    font-size: 4rem;
  }

  .blog-rich-content h2 {
    font-size: 2rem;
  }

  .service-grid-item-2 {
    border: 1px none var(--grey-150);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
  }
}

@media screen and (max-width: 479px) {
  .hero-section {
    height: auto;
    margin-bottom: 0;
    padding-top: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-bg-wrap {
    background-image: linear-gradient(#0000, #0000), radial-gradient(circle, #fff0, #0000004d), url('../images/coffee.jpg');
    background-position: 0 0, 0 0, 50% 100%;
    border-radius: 1.5rem;
    height: auto;
    padding: 2rem 1rem 6rem 1.5rem;
  }

  .hero-content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .hero-heading {
    font-size: 2.25rem;
  }

  .basic-text {
    font-size: 1rem;
  }

  .basic-text.color-grey-400.nav-menu {
    font-size: 1.125rem;
  }

  .button.navbar-button.hide-in-mobile {
    display: none;
  }

  .button.navbar-button.hide-in-tablet {
    margin-top: 1rem;
    display: inline-flex;
  }

  .button.call-to-action {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: 1.25rem;
    display: inline-flex;
  }

  .small-text, .small-text.color-black {
    font-size: .875rem;
  }

  .hero-description {
    width: 100%;
  }

  .achieves-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    height: 10px;
    display: grid;
  }

  .achieve-list {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .large-text-xl {
    font-size: 2.25rem;
  }

  .large-text-xl.color-grey {
    font-size: 2rem;
  }

  .upper-text.linehigh-small {
    font-size: 1.75rem;
  }

  .hero-rating-wrap {
    border-top-left-radius: 1.5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding: .5rem .5rem 0 1rem;
  }

  .client-avator {
    border-width: 2px;
    width: 45px;
    height: 45px;
  }

  .full.brand-logo-image {
    width: 7rem;
    height: auto;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .hero-rating-grid {
    grid-template-rows: max-content auto;
  }

  .corner-top-right {
    width: 25px;
    height: 25px;
  }

  .hero-rating-stars {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    justify-content: flex-end;
  }

  .navbar {
    height: 3.5rem;
    padding: 10px 1rem;
    inset: 0% 0% auto;
  }

  .brand-logo {
    height: 1.5rem;
    padding-left: 0;
  }

  .brand-logo.w--current {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    flex: none;
    padding-left: 0;
    display: flex;
  }

  .feature-service-section {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    padding: 2.5rem 1.5rem;
  }

  .container.flex-h.gap-medium {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .section-heading, .section-heading.whychoose {
    font-size: 1.375rem;
  }

  .feature-service-left-bottom {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .large-text {
    font-size: 1.125rem;
  }

  .large-text.logo-text {
    font-size: 1rem;
  }

  .feature-service-image.first.hide-in-desktop, .feature-service-image.second.desktop-hide, .feature-service-image.third.desktop-hide {
    height: 250px;
  }

  .feature-service-text {
    padding-top: .75rem;
    padding-left: .75rem;
    padding-right: 0;
  }

  .corner-bottom-left {
    width: 25px;
    height: 25px;
  }

  .space-large {
    width: 2.5rem;
    height: 2.5rem;
  }

  .icon-size-large.color-grey-400 {
    width: 2rem;
    height: 2rem;
  }

  .text-wrap-small.margin-auto.text-align-center {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .text-wrap-small.margin-auto.text-align-center.why_us {
    padding-left: 0;
    padding-right: 0;
  }

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

  .services-grid-wrap.why_choose, .services-grid-wrap.why_choose-copy {
    grid-column-gap: .9rem;
    grid-row-gap: .9rem;
    grid-template-columns: 1fr;
  }

  .service-grid-item {
    padding: 1rem;
  }

  .service-grid-icon {
    width: 45px;
    height: 45px;
    padding: .75rem;
  }

  .space-medium {
    width: 1.5rem;
    height: 1.5rem;
  }

  .property-section {
    padding: 2.5rem 1.5rem 0;
  }

  .property-section.property-category-page {
    padding-top: 6rem;
  }

  .properties-list {
    grid-row-gap: 2.5rem;
    flex-flow: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .property-item {
    position: relative;
  }

  .property-category {
    font-size: .875rem;
    top: 10px;
    left: 10px;
  }

  .flex-h.gap-small.mobile-flex-v {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .icon-size-normal-xs.color-yellow {
    width: 1rem;
    height: 1rem;
  }

  .about-section {
    padding: 2.5rem 1.5rem;
  }

  .about-column-wrap.left {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .about-column-wrap.middle {
    height: 300px;
  }

  .about-achieves-grid {
    grid-template-columns: auto auto;
  }

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

  .logo-image {
    max-height: 1.25rem;
  }

  .agents-section {
    padding: 2.5rem 2rem;
  }

  .agents-section.agents-category-page {
    padding-top: 6rem;
  }

  .agent-item {
    width: 180px;
  }

  .agent-image {
    height: 230px;
  }

  .testimonials-section {
    padding: 2.5rem 1.5rem;
  }

  .testimonial-outwrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    max-height: 600px;
  }

  .testimonials-vertical-wrapper {
    width: 100%;
  }

  .testimonials-vertical-wrapper.hide-in-tablet, .testimonials-vertical-wrapper.hide-in-portrait {
    display: none;
  }

  .gradient-white-top.contact-bg {
    height: 50%;
  }

  .faq-section {
    padding: 2.5rem 1.5rem 5rem;
  }

  .faq-top {
    align-items: flex-start;
  }

  .faq-toggle {
    width: 1.5rem;
    height: 1.5rem;
  }

  .contact-section {
    padding-top: 2.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .form {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border-radius: 1.5rem;
    padding: 1rem;
  }

  .text-field.small-text.color-grey-400, .text-field.small-text.color-grey-400.newform:focus-visible, .text-field.small-text.color-grey-400.newform[data-wf-focus-visible] {
    font-size: 16px;
  }

  .input-wrap.flex-h.gap-small {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .footer-section {
    padding: 2.5rem 1.5rem;
  }

  .footer-wrap-top {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
  }

  .footer-wrap-bottom {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
  }

  .footer-wrap-left {
    width: 100%;
  }

  .footer-wrap-right {
    justify-content: space-between;
    width: 100%;
  }

  .social-icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
    padding: .5rem .5rem .8rem;
  }

  .menu-button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .menu-button.w--open {
    width: 2.5rem;
    height: 2.5rem;
    padding-bottom: 0;
  }

  .icon {
    width: 2rem;
    height: 2rem;
  }

  .license-grid {
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-content: center;
    align-self: center;
    align-items: center;
    display: flex;
  }

  .admin-text {
    font-size: 1rem;
  }

  .section-admin.padding-medium {
    padding: 5rem 1.5rem;
  }

  .section-admin.padding-medium.change-log {
    height: 80vh;
  }

  .button-group {
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .button-group.license-button-gruop {
    width: 100%;
  }

  .cell {
    justify-content: center;
    align-self: center;
    align-items: center;
  }

  .admin-button {
    text-align: center;
    align-self: stretch;
  }

  .admin-button.outline {
    text-align: center;
    border-style: solid;
    align-self: stretch;
  }

  .h2-heading {
    text-align: left;
    font-size: 30px;
  }

  .h2-heading.align-center {
    text-align: left;
    font-size: 1.375rem;
  }

  .admin-title, .blog-rich-content h1 {
    font-size: 2.25rem;
  }

  .blog-rich-content h2 {
    font-size: 1.375rem;
  }

  .blog-rich-content h3 {
    font-size: 1.125rem;
  }

  .blog-rich-content p, .blog-rich-content blockquote {
    font-size: 1rem;
  }

  .blog-rich-content li {
    font-size: 1rem;
    line-height: 1.5;
  }

  .heading {
    font-size: 1rem;
  }

  .quick-stack {
    padding-bottom: 0;
    padding-right: 0;
  }

  .service-grid-item-2 {
    padding: 1rem;
  }

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

  .key-management-3 {
    text-align: left;
    font-size: 15px;
  }

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

  .div-block-2, .image-2 {
    border-radius: 15px;
  }

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

#w-node-_374a4ed0-c088-e0dc-2b54-c008390f6491-5f23b414, #w-node-dd30dbac-84cf-5707-5a34-26a8374e85ee-5f23b414 {
  place-self: end;
}

#w-node-_4d329c9b-f80c-1d85-2f67-5e0aec9b0bc7-5f23b414 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_53f0f359-0cbc-2d6b-7dcb-405a5a4b68dc-5f2155a9, #w-node-_53f0f359-0cbc-2d6b-7dcb-405a5a4b68de-5f2155a9 {
  place-self: end;
}

#w-node-_53f0f359-0cbc-2d6b-7dcb-405a5a4b68e0-5f2155a9 {
  align-self: end;
}

#w-node-_071ba0c8-3547-044b-a6ce-d8e6685fb0d2-5f2155a9, #w-node-_071ba0c8-3547-044b-a6ce-d8e6685fb0d4-5f2155a9 {
  place-self: end;
}

#w-node-_071ba0c8-3547-044b-a6ce-d8e6685fb0d6-5f2155a9 {
  align-self: end;
}

#w-node-_88a14465-3c54-d7eb-6de0-03b242fdbc7d-5f2155a9, #w-node-_88a14465-3c54-d7eb-6de0-03b242fdbc7f-5f2155a9 {
  place-self: end;
}

#w-node-_88a14465-3c54-d7eb-6de0-03b242fdbc81-5f2155a9 {
  align-self: end;
}

#w-node-e0db218f-4f10-f736-14cb-513a5f2155cb-5f2155a9, #w-node-e0db218f-4f10-f736-14cb-513a5f2155cd-5f2155a9 {
  place-self: end;
}

#w-node-e0db218f-4f10-f736-14cb-513a5f2155cf-5f2155a9 {
  align-self: end;
}

#w-node-e0db218f-4f10-f736-14cb-513a5f2155e1-5f2155a9, #w-node-e0db218f-4f10-f736-14cb-513a5f2155e3-5f2155a9 {
  place-self: end;
}

#w-node-e0db218f-4f10-f736-14cb-513a5f2155e5-5f2155a9 {
  align-self: end;
}

#w-node-e0db218f-4f10-f736-14cb-513a5f2155f7-5f2155a9, #w-node-e0db218f-4f10-f736-14cb-513a5f2155f9-5f2155a9 {
  place-self: end;
}

#w-node-e0db218f-4f10-f736-14cb-513a5f2155fb-5f2155a9 {
  align-self: end;
}

#w-node-_4edc08f1-263e-f242-2d27-f591cf69ac09-cf69ac07 {
  justify-self: start;
}

#w-node-_4edc08f1-263e-f242-2d27-f591cf69ac1a-cf69ac07 {
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_4edc08f1-263e-f242-2d27-f591cf69ac0d-cf69ac07 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_4d329c9b-f80c-1d85-2f67-5e0aec9b0bc7-5f23b414 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


