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

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

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

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

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

:root {
  --gray-1: #1d1d1d;
  --white: white;
  --dark-borders: #1d1d1d1a;
  --transparent: #1d1d1d1a;
  --gray-2: whitesmoke;
  --cadet-blue: #44969b;
}

.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(--gray-1);
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 28px;
}

h1 {
  color: var(--gray-1);
  margin-top: 0;
  font-family: Poiretone, Arial, sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 60px;
}

h2 {
  margin-top: 0;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
}

h3 {
  color: var(--gray-1);
  margin-top: 0;
  font-family: Poppins, Arial, sans-serif;
  font-size: 28px;
  font-weight: 200;
  line-height: 38px;
}

h4 {
  margin-top: 0;
  margin-bottom: 13px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
}

h5 {
  margin-top: 0;
  margin-bottom: 6px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

h6 {
  margin-top: 0;
  margin-bottom: 6px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--gray-1);
  font-weight: 300;
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

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

label {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 400;
  display: block;
}

strong {
  font-weight: bold;
}

.button {
  border: 1px solid var(--gray-1);
  background-color: var(--gray-1);
  color: var(--white);
  text-align: center;
  cursor: pointer;
  padding: 14px 28px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  font-weight: 200;
  text-decoration: none;
  display: inline-block;
}

.button:hover {
  color: var(--gray-1);
  background-color: #0000;
}

.button.bg-white {
  border: 1px none var(--white);
  color: var(--gray-1);
  background-color: #0000;
  display: inline-block;
}

.button.bg-white:hover {
  border-style: solid;
  border-color: var(--white);
  background-color: var(--dark-borders);
  color: var(--gray-1);
}

.announcement-cross {
  cursor: pointer;
  position: absolute;
  right: 0;
}

.search-modal-screen {
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.grid-halves-image {
  width: 100%;
  max-width: 60%;
}

.grid-halves-image.square {
  object-fit: cover;
  max-width: 100%;
  min-height: 715px;
}

.search-results-link {
  margin-top: 26px;
  margin-bottom: 6px;
  font-family: Libertinus Serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  text-decoration: none;
  display: block;
}

.search-url {
  opacity: .5;
  margin-bottom: 13px;
  font-size: 16px;
}

.nav-menu {
  place-content: space-around space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.btn-main {
  color: #fff;
  text-align: center;
  background-color: #1a1b1f;
  margin-left: 0;
  padding: 15px 28px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 26px;
  transition: all .3s;
  display: inline-block;
  position: relative;
}

.btn-main:hover {
  filter: invert();
  color: #fff;
  background-color: #3f3f3f;
}

.btn-main.prop:hover {
  border: 1px solid var(--gray-1);
  background-color: var(--transparent);
  filter: none;
  color: var(--gray-1);
}

.btn-main.stretch {
  align-self: stretch;
}

.btn-main.alignc {
  align-self: center;
}

.btn-main.blog {
  border: 1px solid var(--transparent);
  margin-top: auto;
}

.btn-main.blog:hover {
  background-color: var(--white);
  filter: none;
  color: var(--gray-1);
  border: 1px solid #000;
}

.nav-link {
  color: #1d1d1d;
  padding: 0 10px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 22px;
  font-weight: 200;
  line-height: 28px;
  display: inline-block;
}

.navbar-brand {
  max-width: 150px;
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 20px;
}

.home-hero {
  height: 500px;
  position: relative;
}

.home-sec1 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.container {
  max-width: 1280px;
}

.flexvalign-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.flexvalign-center.maxw-450 {
  max-width: 450px;
}

.flexvalign-center._75 {
  width: 75%;
}

.center {
  text-align: center;
}

.center.white.txtshadow {
  text-shadow: 1px 1px 2px #000c;
}

.home-sec2 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.home-sec3 {
  padding-top: 0;
  padding-bottom: 0;
}

.col-default {
  padding-left: 10px;
  padding-right: 10px;
}

.flexhjust-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.flexhjust-center.sparound {
  justify-content: space-around;
  align-items: flex-start;
}

.div-block-2 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.home-sec4 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.marginbtm-20 {
  margin-bottom: 20px;
}

.h2 {
  color: var(--gray-1);
  margin-bottom: 10px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
}

.sub-btn {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  margin-top: 0;
  margin-left: 0;
  padding: 14px 28px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 26px;
  transition: all .3s;
}

.sub-btn:hover {
  color: #1d1d1d;
  background-color: #fff;
}

.home-sec5 {
  background-image: url('../images/Background-blue_1Background-blue.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
}

.h3 {
  color: #1d1d1d;
  margin-bottom: 10px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 48px;
}

.h3.raw {
  margin-bottom: 0;
}

.img100 {
  width: 100%;
}

.white {
  color: #fff;
}

.margintop-50 {
  margin-top: 50px;
}

.shadow {
  box-shadow: 0 3px 6px 2px #0003;
}

.marginbtm-30 {
  margin-bottom: 30px;
}

.paddinglr-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.margintop-30 {
  margin-top: 30px;
}

.marginl-50 {
  margin-left: 50px;
}

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

.h1 {
  color: #1d1d1d;
  margin-bottom: 10px;
  font-family: Poiretone, Arial, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 61px;
}

.h1.allcap {
  text-transform: uppercase;
}

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

.ani-fadein, .ani-slideinl, .ani-slideinr {
  font-size: 16px;
}

.inner-div {
  background-color: #f5f5f5;
  flex-direction: row;
  align-items: center;
  padding: 50px;
  display: flex;
}

.circle-image {
  float: right;
  border-radius: 50%;
  max-height: 350px;
  position: relative;
}

.circle-image.blog-post {
  float: none;
  margin-bottom: 10px;
}

.monts {
  color: var(--gray-1);
  margin-bottom: 10px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
}

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

.hero-par {
  max-width: 1000px;
  line-height: 42px;
}

.testimonial-par {
  text-align: center;
  max-width: 400px;
  font-size: 26px;
  line-height: 42px;
}

.heading-poppins {
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
}

.heading-poppins.large {
  font-size: 54px;
  line-height: 60px;
}

.heading-poppins.large.white.txtshadow {
  text-shadow: 1px 1px 2px #000c;
}

.heading-poppins.prop {
  font-size: 32px;
  line-height: 42px;
}

.divider {
  background-color: var(--gray-1);
  width: 52px;
  height: 1px;
  margin-top: 20px;
}

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

.form-block {
  min-width: 400px;
  margin: 30px auto 0;
}

.form-block.below-divider {
  margin-top: 26px;
}

.form-grid-vertical {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.form-input {
  color: #1d1d1d;
  border: 1px solid #1d1d1d1a;
  height: 54px;
  margin-bottom: 0;
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 26px;
  transition: border-color .2s;
}

.form-input:focus-visible, .form-input[data-wf-focus-visible] {
  border: 3px solid var(--gray-1);
}

.form-input::placeholder {
  color: #1d1d1dbf;
}

.form-input.textarea {
  height: auto;
  min-height: 260px;
}

.form-input.marginbtm-20 {
  margin-bottom: 20px;
}

.form-input.search-input {
  height: 56px;
}

.form-success {
  background-color: #cdebcb;
  padding: 26px;
}

.form-error {
  margin-top: 26px;
  padding: 26px;
}

.maxw-400 {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.maxw-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.home-sec6 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.blog-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.maxw-275 {
  max-width: 275px;
  margin-left: auto;
  margin-right: auto;
}

.blog-title {
  margin-left: 20px;
}

.footer {
  background-image: url('../images/Background-blue_1Background-blue.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 75px;
  padding-bottom: 50px;
}

.footer-brand {
  max-width: 250px;
  margin-bottom: 20px;
}

.footer-par {
  color: var(--white);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 300;
}

.footer-link {
  color: var(--white);
  font-family: Poppins, Arial, sans-serif;
  font-size: 22px;
  font-weight: 200;
}

.footer-link:hover {
  opacity: .65;
}

.footer-link.marginbtm-10 {
  margin-bottom: 10px;
}

.social-links {
  flex-wrap: wrap;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.social-link {
  margin-right: 30px;
}

.footer-header {
  color: var(--white);
  font-family: Poppins, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.member-img {
  max-width: 250px;
}

.footer-copyright {
  color: var(--white);
  margin-top: 50px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 26px;
}

._40 {
  width: 40%;
}

.blog-div {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contact-sec1 {
  background-image: url('../images/Background-white_1Background-white.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
}

._50 {
  width: 50%;
}

._50.top {
  align-self: flex-start;
}

.flexhjust-top {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.loc-text {
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 26px;
}

.blog-sec1 {
  height: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.collection-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #0000;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-card {
  border: 1px solid #e4e4e4;
  border-radius: 1px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 100%;
  padding: 20px;
  display: flex;
}

.blog-heading {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
}

.blog-par {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 26px;
}

.blog-par.title {
  margin-left: 10px;
  line-height: 20px;
}

.load-more-button {
  text-align: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  transition: all .3s;
}

.search-input {
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
}

.search-input:focus-visible, .search-input[data-wf-focus-visible] {
  border: 3px solid var(--gray-1);
}

.search {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 20px;
}

.side-blogs {
  justify-content: flex-start;
  display: flex;
}

.maxw-150 {
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.blog-col {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

._75 {
  width: 75%;
}

._25 {
  width: 25%;
}

.buy-masthead {
  background-image: linear-gradient(#0000001a, #0009);
  height: 500px;
  position: relative;
}

.buy-headiv {
  flex-flow: column;
  align-items: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: auto 0% 50px;
}

.buy-sec1 {
  background-color: var(--gray-2);
  padding-top: 50px;
  padding-bottom: 50px;
}

.neighborhood-div {
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  display: flex;
}

.neighborhood {
  margin-right: 20px;
  font-weight: 300;
  display: inline-block;
}

.neighbordhood-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.neighborhood-link {
  border: 1px solid var(--dark-borders);
  border-radius: 200px;
  padding: 13px 26px;
  transition: all .3s;
}

.neighborhood-link:hover {
  border-color: var(--white);
  background-color: var(--white);
}

.listing-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.empty-state {
  border: 1px solid var(--dark-borders);
  background-color: var(--gray-2);
  text-align: center;
  padding: 25px;
}

.property-card {
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 50px 25px 25px;
  display: flex;
}

.text-block-29 {
  font-family: Poppins, Arial, sans-serif;
  font-weight: 300;
}

.property-meta-icon {
  margin-right: 13px;
}

.property-meta-item {
  align-items: center;
  margin-left: 26px;
  margin-right: 26px;
  display: flex;
}

.property-meta-item.reduced-margin {
  margin-left: 13px;
  margin-right: 13px;
}

.property-meta {
  justify-content: center;
  align-items: center;
  margin-bottom: 26px;
  display: flex;
}

.property-meta.increased-margin {
  height: 100%;
  margin-bottom: 35px;
}

.buy-sec2 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.checkbox {
  border-color: #1d1d1d1a;
  width: 26px;
  height: 26px;
  margin-top: 0;
  margin-left: 0;
  transition: background-color .2s;
}

.checkbox.w--redirected-checked {
  background-color: #1d1d1d1a;
  background-image: url('../images/icon-check.svg');
  background-position: 50%;
  background-size: auto;
  border-color: #1d1d1d1a;
}

.selectable-field {
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.selectable-label {
  margin-bottom: 0;
  margin-left: 13px;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 200;
}

.faq-sec1 {
  background-image: url('../images/Background-white_1Background-white.webp');
  background-position: 50%;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-title {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.poppins-italic {
  text-align: left;
  font-size: 32px;
  font-style: italic;
}

.faq-dd-list.w--open {
  background-color: #0000;
  padding-left: 20px;
  position: relative;
}

.faq-dd-toggle {
  float: none;
  white-space: normal;
  object-fit: fill;
  width: 100%;
  padding-left: 0;
  font-size: 18px;
  font-weight: 600;
  overflow: visible;
}

.faq-dd-toggle.w--open {
  display: block;
  position: relative;
}

.faq-dd {
  border-bottom: 1px solid #c3c3c3;
  width: 100%;
  position: static;
}

.faq-font {
  font-family: Poppins, Arial, sans-serif;
  font-weight: 400;
}

.text-block-21 {
  font-family: Poppins, Arial, sans-serif;
}

.faq-ddicon {
  color: #b9b9b9;
}

.paragraph-5 {
  margin-bottom: 20px;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 200;
}

.masthead {
  height: 300px;
}

.sellbuy-sec1 {
  padding-top: 50px;
  padding-bottom: 50px;
}

._60 {
  width: 60%;
}

.sellbuy-div {
  background-color: var(--gray-2);
  flex-flow: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 40%;
  padding: 20px;
  display: flex;
}

.sellbuy-img {
  width: 100%;
}

.sellbuy-card {
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-bottom: 50px;
  display: flex;
}

.sitemap-masthead {
  background-image: url('../images/sitemap-masthead_1sitemap-masthead.webp');
  background-position: 50%;
  background-size: cover;
  height: 40vh;
}

.sitemap-sec1 {
  padding-top: 50px;
  padding-bottom: 50px;
}

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

.am-sec1 {
  background-image: url('../images/Background-white_1Background-white.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
}

.amcard-div1 {
  width: 40%;
  height: 100%;
}

.amcard-div2 {
  background-color: var(--gray-2);
  flex-flow: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 60%;
  padding: 20px;
  display: flex;
}

.am-img {
  width: 100%;
}

.privacy-sec1 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.privacy-par {
  font-size: 14px;
}

.neighb-sec1 {
  background-image: url('../images/Background-white_1Background-white.webp');
  background-position: 0 0;
  background-size: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.neighb-card {
  background-color: var(--gray-2);
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-top: 50px;
  padding: 75px;
  display: flex;
}

.neighb-img {
  border-radius: 50%;
  max-height: 400px;
  position: relative;
}

.neighb-item {
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  display: flex;
}

.marginr-30 {
  margin-right: 30px;
}

.neighb-50 {
  width: 50%;
}

.blog-authdiv {
  border: 1px solid var(--dark-borders);
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 20px;
  display: flex;
}

.margintb-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.blogauth-tb {
  font-weight: 400;
}

.body {
  font-family: Poppins, Arial, sans-serif;
  font-weight: 200;
  line-height: 30px;
}

.body h2 {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 300;
  line-height: 36px;
}

.body h1 {
  margin-top: 10px;
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
}

.body h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
}

.body h4 {
  font-size: 24px;
  line-height: 28px;
}

.body h5 {
  font-size: 20px;
  line-height: 24px;
}

.body h6 {
  font-size: 16px;
  line-height: 20px;
}

.blog-list-wrapper {
  margin-top: 20px;
  display: none;
}

.collection-list-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.prev-next {
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
  display: flex;
}

.blog-sec2 {
  background-color: var(--gray-2);
  padding-top: 50px;
  padding-bottom: 50px;
}

.neighb-sec {
  padding-top: 50px;
  padding-bottom: 50px;
}

.neighb-sec.grey-bg {
  background-color: var(--gray-2);
}

.neighb-img1 {
  float: right;
  max-width: 60%;
}

.neighb-div2 {
  background-color: var(--cadet-blue);
  flex-flow: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  width: 50%;
  padding: 25px;
  display: flex;
}

.member-sec1 {
  background-color: var(--gray-2);
  height: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.member-div {
  justify-content: center;
  align-items: center;
  width: 80%;
  display: flex;
}

.agent-contact-methods {
  margin-top: 39px;
  margin-bottom: 39px;
}

.agent-contact-method {
  display: flex;
}

.marginr-10 {
  margin-right: 10px;
  font-weight: 400;
}

.member-divimg {
  max-width: 400px;
  margin-right: 50px;
}

.member-par {
  font-size: 26px;
  line-height: 42px;
}

.sales-slider {
  position: relative;
}

.sales-slider.fullh {
  height: 100%;
}

.gallery-img {
  object-fit: cover;
  width: 100%;
  max-height: 650px;
}

.lightbox-link {
  display: block;
}

.gallery-button {
  float: right;
  text-decoration: none;
  position: absolute;
  bottom: 50px;
  right: 50px;
}

.text-block-36 {
  color: #fff;
}

.sales-sec2 {
  min-height: 250px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.link {
  color: var(--cadet-blue);
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.link:hover {
  display: inline-block;
}

.agent-div {
  justify-content: center;
  align-items: center;
  width: 75%;
  display: flex;
}

.agent-img {
  max-width: 250px;
}

.sales-sec3 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.sales-div1 {
  width: 60%;
}

.sales-div2 {
  width: 40%;
  position: sticky;
}

.article {
  margin-right: 50px;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 200;
  line-height: 28px;
}

.article h3 {
  font-family: Libertinus Sans;
}

.meta-wrapper {
  border-bottom: 1px solid var(--dark-borders);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
}

.meta-title {
  font-family: Poiret One;
  font-weight: 400;
}

.meta-buttons {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.button-icon {
  color: #f5f5f5;
}

.flexhalign-left {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.sales-sec4 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.field-label {
  font-family: Poppins, Arial, sans-serif;
  font-weight: 300;
}

.pw-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.form {
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 40%;
  display: flex;
}

._404-col {
  padding-left: 50px;
  padding-right: 50px;
}

._404-col.right-border {
  border-right: 1px solid #d3d3d3;
}

._404-img {
  width: 50px;
  height: 50px;
}

._404-title {
  text-align: center;
  margin-top: 25px;
  font-size: 18px;
  line-height: 28px;
}

.paragraph-6 {
  color: #505050;
  text-align: left;
  height: auto;
  font-style: normal;
  font-weight: 400;
}

._404-ul {
  margin-top: 15px;
}

._404-li {
  text-align: left;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 400;
}

._404-links {
  color: #004480;
  font-weight: 400;
}

.search-form {
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  margin-top: 26px;
  margin-bottom: 0;
  display: flex;
}

.search-result-list {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.modal-popup {
  z-index: 99;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: all .4s;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal-bg {
  background-color: #16161880;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.modal-wrapper {
  align-self: center;
  width: 60vw;
  height: 70vh;
  margin: 20px 50px;
}

.close-icon {
  justify-content: flex-end;
  margin-bottom: 20px;
  margin-right: -50px;
  display: flex;
}

.image-18 {
  background-color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 30px;
  box-shadow: 0 0 10px 5px #00000080;
}

.html-embed-5 {
  margin-top: -20px;
}

.search-sec1 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.navbar {
  z-index: 10;
  background-color: #ffffffe6;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 5px 2px #0003;
}

.navbar-sales {
  z-index: 10;
  background-color: #ffffffe6;
  height: 100%;
  position: relative;
  box-shadow: 0 2px 5px 2px #0003;
}

.alignc {
  align-self: center;
}

.footer-grid {
  grid-column-gap: 50px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  width: 60%;
}

.flexvalign-left-footer {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.sellbuy-card2 {
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-bottom: 50px;
  display: flex;
}

._60-sellbuy {
  width: 60%;
}

.image-19 {
  width: 100%;
}

.bg-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-20 {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .grid-halves-image.square {
    min-height: auto;
  }

  .nav-menu {
    background-color: #fff;
    flex-direction: column;
    place-content: flex-start space-around;
    align-items: flex-start;
    padding: 20px;
    display: inline-block;
  }

  .menu-button {
    padding: 0;
  }

  .menu-button.w--open {
    background-color: var(--white);
    color: #fff;
  }

  .btn-main, .btn-main.nav {
    margin-left: 0;
  }

  .btn-main.nav:hover {
    filter: none;
  }

  .nav-menu-wrapper {
    background-color: #0000;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-button-wrapper {
    margin-left: 0;
  }

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

  .container {
    max-width: none;
  }

  .flexvalign-center._75 {
    width: 100%;
  }

  .flexhjust-center.sparound {
    justify-content: space-between;
  }

  .flexhjust-center.blog {
    flex-flow: column;
  }

  .flexhjust-center.marginbtm-30 {
    justify-content: center;
    align-items: stretch;
    height: 100%;
  }

  .sub-btn {
    margin-left: 0;
  }

  .shadow {
    box-shadow: 0 3px 7px 2px #0003;
  }

  .maxw-275 {
    max-width: 200px;
  }

  .social-link {
    margin-left: 0;
  }

  .member-img {
    max-width: 250px;
  }

  .blog-container {
    margin-top: 50px;
  }

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

  ._75, ._25 {
    width: 100%;
  }

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

  ._60 {
    align-self: stretch;
  }

  .sellbuy-div {
    width: 100%;
  }

  .sellbuy-img {
    object-fit: cover;
    height: 100%;
  }

  .sellbuy-card {
    flex-flow: column;
  }

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

  .amcard-div1 {
    align-self: stretch;
    width: 100%;
  }

  .amcard-div2 {
    width: 100%;
  }

  .neighb-card {
    flex-flow: column-reverse;
    padding: 50px;
  }

  .neighb-img {
    margin-bottom: 30px;
  }

  .marginr-30 {
    margin-right: 0;
  }

  .neighb-50 {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .blog-authdiv {
    flex: none;
    width: 40%;
  }

  .neighb-img1 {
    max-width: 100%;
  }

  .member-div {
    width: 100%;
  }

  .member-divimg {
    margin-right: 50px;
  }

  .agent-div {
    width: 100%;
  }

  .agent-img {
    max-width: 100%;
  }

  .article {
    margin-right: 30px;
  }

  .pw-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .form {
    width: 75%;
  }

  ._404-col {
    padding-left: 30px;
    padding-right: 30px;
  }

  .modal-wrapper {
    width: 80vw;
  }

  .footer-grid {
    grid-column-gap: 25px;
    margin-left: 50px;
  }

  .sellbuy-card2 {
    flex-flow: row;
    width: 100%;
  }

  ._60-sellbuy {
    align-self: stretch;
    width: 100%;
  }

  .image-19 {
    height: 100%;
  }
}

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

  h1 {
    font-size: 40px;
    line-height: 48px;
  }

  h2 {
    font-size: 32px;
    line-height: 42px;
  }

  h3 {
    font-size: 28px;
    line-height: 36px;
  }

  h6 {
    font-size: 16px;
    line-height: 24px;
  }

  .nav-menu {
    text-align: left;
    justify-content: center;
    align-items: center;
  }

  .nav-link {
    display: inline-block;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .home-hero {
    height: 300px;
  }

  .col-default {
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .flexhjust-center {
    flex-flow: column;
  }

  .flexhjust-center.reverse {
    flex-flow: column-reverse;
  }

  .flexhjust-center.sparound {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .inner-div {
    flex-flow: column-reverse;
  }

  .circle-image {
    float: left;
  }

  .maxw-400 {
    max-width: 100%;
  }

  .footer-brand {
    padding-left: 0;
  }

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

  ._40 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .paragraph {
    text-align: center;
  }

  ._50 {
    width: 100%;
  }

  .flexhjust-top {
    flex-flow: column;
  }

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

  .buy-masthead {
    height: 300px;
  }

  .buy-headiv {
    max-width: 100%;
  }

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

  .masthead {
    height: 200px;
  }

  ._60, .sellbuy-div, .amcard-div1, .amcard-div2 {
    width: 100%;
  }

  .neighb-card {
    width: 100%;
    padding: 30px;
  }

  .neighb-img {
    float: left;
  }

  .neighb-50, .blog-authdiv, .neighb-div2 {
    width: 100%;
  }

  .member-div {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .member-divimg {
    margin-right: 0;
  }

  .gallery-button {
    bottom: 20px;
    right: 20px;
  }

  .agent-div {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .sales-div1 {
    width: 100%;
    margin-bottom: 30px;
  }

  .sales-div2 {
    width: 100%;
  }

  .article {
    margin-right: 0;
  }

  .form {
    width: 90%;
  }

  ._404-col {
    padding-left: 0;
    padding-right: 0;
  }

  ._404-col.right-border {
    border-right-style: none;
    margin-bottom: 20px;
  }

  ._404-title {
    font-size: 24px;
    line-height: 28px;
  }

  .modal-wrapper {
    width: 90vw;
  }

  .close-icon {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .html-embed-5 {
    margin-top: 0;
  }

  .footer-grid {
    width: 100%;
    margin-left: 0;
  }

  .sellbuy-card2 {
    flex-flow: column;
  }

  ._60-sellbuy {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  h3 {
    font-size: 26px;
    line-height: 32px;
  }

  h4 {
    font-size: 24px;
    line-height: 32px;
  }

  h5 {
    font-size: 18px;
    line-height: 26px;
  }

  ul {
    padding-left: 20px;
  }

  .search-results-link {
    margin-top: 13px;
  }

  .nav-menu {
    flex-direction: column;
  }

  .btn-main.nav {
    padding: 10px;
  }

  .navbar-brand, .navbar-brand.w--current {
    max-width: 100px;
  }

  .home-hero {
    height: 200px;
  }

  .inner-div {
    padding: 50px 20px;
  }

  .circle-image.blog-post {
    max-height: 150px;
  }

  .form-input.search-input {
    height: 54px;
    margin-bottom: 13px;
  }

  .maxw-275 {
    max-width: 100%;
    margin-left: 0;
  }

  .blog-title {
    margin-top: 10px;
    margin-left: 0;
  }

  .social-link {
    margin-top: 13px;
    margin-bottom: 13px;
  }

  .social-icon {
    width: 25px;
  }

  .blog-div {
    flex-flow: column;
  }

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

  .buy-masthead {
    height: 200px;
  }

  .buy-headiv {
    bottom: 10px;
  }

  .neighborhood-div {
    flex-flow: column;
  }

  .neighborhood {
    margin-bottom: 20px;
  }

  .neighbordhood-list {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .property-meta-item {
    margin: 6px 13px;
  }

  .property-meta {
    flex-wrap: wrap;
  }

  .property-meta.increased-margin {
    margin-bottom: 26px;
  }

  .section-title {
    margin-bottom: 52px;
  }

  .sellbuy-card.m-swap {
    flex-flow: column-reverse;
  }

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

  .neighb-card {
    padding: 20px;
  }

  .prev-next {
    flex-direction: column;
    align-items: stretch;
  }

  .agent-contact-methods {
    margin-top: 26px;
    margin-bottom: 26px;
  }

  ._404-col {
    padding-left: 10px;
    padding-right: 10px;
  }

  .search-form {
    flex-direction: column;
  }

  .modal-wrapper {
    height: 60vh;
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .flexvalign-left-footer {
    justify-content: center;
    align-items: center;
  }
}

#w-node-fd5d0878-e9a9-23ae-905c-0d0b1694e107-5fcef10f, #w-node-fd5d0878-e9a9-23ae-905c-0d0b1694e108-5fcef10f, #w-node-fd5d0878-e9a9-23ae-905c-0d0b1694e109-5fcef10f, #w-node-fd5d0878-e9a9-23ae-905c-0d0b1694e10a-5fcef10f, #w-node-_153f61c4-991f-9663-e9e8-6c449a0f4be1-5fcef115, #w-node-_407e8d27-d32d-b393-f852-07c2c75ce8a1-5fcef115, #w-node-_7900ee7b-6073-4e88-0a42-bb4ab8d9abcd-5fcef115, #w-node-_883bcce4-cfb0-d6f7-5e0b-f04071e46dfe-5fcef115, #w-node-aa899a99-37ce-669b-a2c1-a29d96b4428f-5fcef115 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Poiretone';
  src: url('../fonts/PoiretOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}