@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Medium.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Bold.woff') format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Regular.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-SemiBold.woff') format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}

:root {
  --black: black;
  --steel-blue: #5d93b5;
  --white: white;
}

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

body {
  color: #333;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

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

h2 {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

h3 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 30px;
}

h5 {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 20px;
}

p {
  color: #000;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: #000;
  text-decoration: none;
}

.close-circle {
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  transition: all .5s;
  display: flex;
  position: absolute;
  inset: 15px 15px auto auto;
}

.close-circle:hover {
  transform: scale(.85);
}

.container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container.center-layout {
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
}

.display-heading {
  color: #fff;
  letter-spacing: -.04em;
  max-width: 560px;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 4rem;
  line-height: 1.1;
}

.hero-paragraph {
  color: var(--black);
  text-shadow: 1px 1px 6px #ffffffa6;
  max-width: 550px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-block {
  color: #000;
  background-color: #fff;
  border-top-right-radius: 35px;
  align-items: center;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px;
  font-size: 20px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.navigation-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  height: 100%;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.menu-button {
  background-color: var(--steel-blue);
  color: #fff;
  border-top-right-radius: 20px;
  align-items: center;
  padding: 20px 32px;
  font-weight: 700;
  text-decoration: none;
  transition: all .35s;
  display: flex;
}

.menu-button:hover {
  transform: translate(4px);
  box-shadow: -3px 3px 7px -2px #0006;
}

.menu-button.button-space {
  margin-top: 32px;
}

.menu-button.white {
  background-color: var(--white);
  color: var(--steel-blue);
}

.logo {
  width: 300px;
}

.nav-menu {
  color: #3f0a3d;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.navigation {
  z-index: 999;
  background-color: #0000;
  border-bottom: 2px solid #ffffff1a;
  align-items: center;
  min-height: 90px;
  padding: 20px 4%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.brand {
  margin-right: 20px;
}

.line-break {
  background-color: #dddddd73;
  width: 1px;
  min-height: 25px;
  margin-left: 14px;
  margin-right: 32px;
}

.nav-link-plain {
  color: var(--black);
  margin-left: 0;
  margin-right: 0;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 15px;
  font-weight: 500;
  transition: all .35s;
}

.nav-link-plain:hover {
  color: #0006;
}

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

.button-arrow {
  width: 1.3rem;
}

.social-link {
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  padding: 10px;
  display: flex;
}

.footer-link {
  color: #fff;
  margin-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
}

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

.footer-bottom {
  border-bottom: 2px solid #ffffff1a;
  justify-content: space-between;
  margin-top: 140px;
  display: flex;
}

.footer-grid-01 {
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr;
}

.footer-wrapper {
  align-items: center;
  display: flex;
}

.footer-title {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 700;
}

.secondary-link {
  color: #fff;
  margin-right: 32px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.footer {
  background-color: var(--steel-blue);
  padding: 132px 3% 100px;
}

.footer-top {
  border-bottom: 2px solid #ffffff1a;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 60px;
  display: flex;
}

.footer-column {
  flex-direction: column;
  align-items: flex-start;
  padding-right: 40px;
  display: flex;
}

.content-section {
  padding: 100px 4%;
  position: relative;
}

.property-section {
  background-color: #f5f5f5;
  padding: 100px 4%;
  position: relative;
}

.title-wrap {
  margin-bottom: 60px;
}

.title-wrap.no-bottom-margin {
  margin-bottom: 0;
}

.title-line {
  background-color: var(--steel-blue);
  background-image: none;
  border-radius: 20px;
  width: 100%;
  max-width: 170px;
  min-height: 4px;
  margin-bottom: 12px;
}

.filter-block {
  color: var(--steel-blue);
  background-color: #fff;
  border-radius: 20px;
  width: auto;
  margin-bottom: 48px;
  padding: 42px;
  box-shadow: 8px 80px 55px -50px #00000021;
}

.grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.property-card {
  background-color: #fff;
  border-radius: 15px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow: 18px 18px 45px #0000001a;
}

.property-image-wrap {
  height: 230px;
  position: relative;
  overflow: hidden;
}

.property-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.property-content {
  border-bottom: 1px solid #0000001a;
  padding: 32px 24px;
}

.room-feature-grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.feature {
  color: #000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 17px;
  font-weight: 700;
  display: flex;
}

.feature.centre-lines {
  border-left: 1px solid #0000001a;
  border-right: 0 solid #0000001a;
}

.feature-icon {
  margin-right: 6px;
}

.content-grid {
  grid-column-gap: 72px;
  grid-template-rows: auto;
  grid-template-columns: 1.1fr 1fr;
}

.paragraph-large {
  max-width: 520px;
  font-size: 18px;
}

.content-h2 {
  margin-bottom: 32px;
}

.page-button {
  background-color: var(--steel-blue);
  color: #fff;
  border-top-right-radius: 20px;
  align-items: center;
  margin-top: 32px;
  padding: 20px 32px;
  font-weight: 500;
  text-decoration: none;
  transition: all .35s;
  display: flex;
}

.page-button:hover {
  transform: translate(4px);
  box-shadow: -3px 3px 7px -2px #0006;
}

.page-button.submit {
  text-align: center;
  justify-content: center;
  width: 100%;
}

.content-wrap {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10%;
  display: flex;
}

.content-image {
  width: 100%;
  box-shadow: 0 62px 54px #00000040;
}

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

.plain-link-wrap {
  align-items: center;
  transition: all .35s;
  display: flex;
}

.plain-link-wrap:hover {
  transform: translate(6px);
}

.text-block, .button-text {
  margin-right: 8px;
}

.bg-block-grey {
  z-index: -1;
  background-color: #f5f5f5;
  min-height: 25%;
  position: absolute;
  inset: auto 0% 0%;
}

.collection-item {
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.content-grid-reverse {
  grid-column-gap: 72px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.1fr;
  justify-items: end;
}

.bg-block-top-grey {
  z-index: -1;
  background-color: #f5f5f5;
  min-height: 25%;
  position: absolute;
  inset: 0% 0% auto;
}

.content-section-dark {
  background-color: #000;
  padding: 142px 3%;
  position: relative;
}

.content-centre-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.heading {
  color: #fff;
  margin-bottom: 32px;
}

.heading-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

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

.tabs {
  flex-direction: column-reverse;
  display: flex;
}

.avatar {
  margin-right: 10px;
}

.tab-button {
  background-color: #fff;
  justify-content: flex-start;
  width: 100%;
  padding: 40px;
  display: flex;
}

.tab-button.w--current {
  color: #fff;
  background-color: #000;
}

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

.avatar-type {
  color: #979797;
  font-size: 15px;
  font-weight: 400;
}

.avatar-name {
  letter-spacing: -.04em;
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 700;
}

.author-wrap {
  align-items: center;
  display: flex;
}

.quote-grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.quote-wrap {
  padding-bottom: 72px;
}

.title-line-full {
  background-image: linear-gradient(275deg, #000, #ffac12);
  border-radius: 20px;
  width: 100%;
  min-height: 4px;
  margin-bottom: 44px;
}

.quote-text {
  color: #000;
  letter-spacing: -.04em;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.notice {
  background-color: var(--steel-blue);
  justify-content: center;
  align-items: center;
  padding: 16px 3%;
  display: flex;
}

.notice-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.notice-text {
  color: #fff;
  text-align: center;
  margin-right: 10px;
}

.div-block {
  color: #000;
  background-color: #f5f5f5;
  border-top-right-radius: 12px;
  margin-right: 8px;
  padding: 4px 10px;
  font-weight: 500;
}

.header-dark {
  background-color: var(--steel-blue);
  padding: 152px 4% 60px;
  position: relative;
}

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

.property-text-light {
  color: #ffffff94;
  font-size: 1.3rem;
}

.property-text-light.margin {
  margin-left: 5px;
}

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

.property-detail {
  background-color: #f5f5f5;
  padding: 80px 3% 100px;
  position: relative;
}

.image-2 {
  width: 100%;
  height: 100%;
}

.property-detail-text {
  color: #f5f5f5;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.div-block-2 {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  position: sticky;
  top: 32px;
  box-shadow: 23px 23px 34px #0000001a;
}

.property-list {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  justify-items: stretch;
  display: grid;
}

.clear-filters {
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  min-height: 30px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.clear-filter {
  color: #f48f0b;
}

.clear-filter.jetboost-filter-none-ev8m {
  color: #f48f0b;
  padding-top: 2px;
  padding-bottom: 2px;
}

.checkbox-filter {
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.dropdown-list {
  padding-top: 4px;
}

.dropdown-list.w--open {
  z-index: 99;
  background-color: #0000;
  min-width: 410px;
  padding-top: 15px;
  box-shadow: 0 35px 55px #00000014;
}

.checkbox-wrap {
  padding: 15px;
}

.dropdown {
  background-color: #f6f6f6;
  border-radius: 50px;
  margin: 12px 0;
}

.filter-form {
  justify-content: flex-start;
  display: flex;
}

.dropdown-toggle {
  width: 100%;
  min-height: 52px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 30px;
}

.checkbox-filters {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 0;
  margin-right: 10px;
}

.checkbox-filters.w--redirected-checked {
  background-color: var(--steel-blue);
  background-size: 13px;
}

.filter-form-block {
  margin-bottom: 0;
}

.dropdown-base {
  background-color: #fff;
  border-radius: 15px;
  overflow: auto;
}

.gallery-wrapper {
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.collection-item-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.gallery-item {
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  height: 110px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-cover {
  object-fit: fill;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.view {
  background-color: var(--steel-blue);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 55px;
  min-width: 55px;
  height: 55px;
  min-height: 55px;
  display: flex;
  position: relative;
  inset: 0%;
}

.image-37 {
  width: 25px;
}

.text-block-2 {
  color: #ffac12;
}

.paragraph-large-white {
  color: #ffffffa1;
  font-size: 20px;
}

.slider-section {
  position: relative;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
}

.slide-image {
  z-index: 3;
  background-image: url('../images/Yvette-Malan-Properties-Slider-Image-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 150px;
  display: flex;
  position: relative;
}

.slide-image.slide-image-two {
  background-image: url('../images/Yvette-Malan-Properties-Slider-Image-2.jpg');
}

.left-arrow {
  display: none;
}

.slider {
  height: 80vh;
  min-height: 750px;
}

.slide-content-wrap {
  z-index: 9;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 60px 3%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.slide {
  overflow: hidden;
}

.slider-content {
  z-index: 99;
  display: block;
  position: absolute;
  inset: 0%;
}

.slide-nav {
  justify-content: flex-end;
  margin-bottom: 35px;
  padding-right: 106px;
  display: none;
}

.right-arrow {
  display: none;
}

.avatar-base {
  background-color: #f5f5f5;
  border-radius: 15px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 32px;
  padding: 22px 25px;
  display: flex;
}

.avatar-wrap {
  border-radius: 100px;
  width: 150px;
  height: 150px;
  margin-right: 20px;
  overflow: hidden;
}

.avatar-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.agent-link {
  color: var(--steel-blue);
}

.agent-name {
  font-size: 15px;
  font-weight: 700;
}

.white-block {
  background-color: #fff;
  border-radius: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 23px 23px 34px #0000001a;
}

.title-block {
  border-bottom: 1px solid #0000001a;
  padding: 20px;
}

.content-wrapper {
  padding: 24px;
}

.collection-list-wrapper {
  width: 100%;
}

.image-38 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.div-block-56 {
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

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

.feature-wrap {
  align-items: center;
  font-size: 16px;
  display: flex;
}

.filter-icon {
  margin-right: 6px;
}

.text-field {
  border: 1px solid #ebebeb;
  border-radius: 10px;
  min-height: 60px;
  margin-bottom: 14px;
}

.button-submit {
  border: 2px solid var(--white);
  background-color: var(--white);
  color: var(--steel-blue);
  text-align: center;
  text-transform: uppercase;
  border-top-right-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 32px;
  padding: 20px 32px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .35s;
  display: flex;
}

.button-submit:hover {
  background-color: var(--steel-blue);
  color: var(--white);
}

.text-field-large {
  border: 1px solid #ebebeb;
  border-radius: 10px;
  min-height: 130px;
  margin-bottom: 14px;
}

.room-features {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.flowbase-close {
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  transition: all .5s;
  display: flex;
  position: absolute;
  inset: 15px 15px auto auto;
}

.flowbase-close:hover {
  transform: scale(.85);
}

.flowbase-banner {
  height: 64px;
}

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

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.image-39 {
  color: var(--black);
  width: 1.3rem;
}

.footer-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.price-heading {
  color: var(--steel-blue);
}

.property-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.collection-item-3 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-40 {
  margin-right: 4px;
}

.text-block-3 {
  font-size: 16px;
}

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

.div-block-57 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-4 {
  color: var(--steel-blue);
  margin-right: 6px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.form {
  width: 100%;
}

.filter_reset {
  color: #6e6e6e;
  border-bottom: 1px solid #dae4d8;
  padding-bottom: .2rem;
  text-decoration: none;
}

.range_values {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: .5rem;
  display: flex;
}

.rangeslider_fill {
  background-color: var(--steel-blue);
  width: 20%;
  height: 100%;
  position: absolute;
}

.filter_block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px #dfdfdf;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  position: relative;
}

.filter_block-header {
  z-index: 10;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #fff;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  display: grid;
  position: relative;
  inset: 0% 0% auto;
}

.rangeslider_input {
  display: none;
}

.rangeslider_track {
  background-color: #ececec;
  border-radius: 999rem;
  width: 96%;
  height: .25rem;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.rangeslider_wrapper {
  align-items: center;
  padding: 5px 21px;
  display: block;
  position: relative;
}

.heading-small {
  color: var(--steel-blue);
  margin-top: 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

.rangeslider_handle {
  z-index: 1;
  background-color: var(--steel-blue);
  cursor: grab;
  border-radius: 999rem;
  flex: none;
  width: 1rem;
  height: 1rem;
  position: absolute;
}

.rangeslider_handle:focus {
  background-color: var(--steel-blue);
  color: var(--steel-blue);
}

.property-tag {
  background-color: var(--steel-blue);
  border-bottom-right-radius: 25px;
  width: 50%;
  padding: 18px 15px 10px;
  position: absolute;
  inset: 0% auto auto 0%;
  box-shadow: 1px 1px 20px 1px #0000004d;
}

.property-tag-heading {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: .5;
}

.collection-list-wrapper-2 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: block;
}

.collection-list-wrapper-2.top-margin {
  margin-top: 60px;
}

.form-block {
  margin-left: 0;
  margin-right: 0;
}

.reset {
  transition: all .35s;
}

.reset:hover {
  color: var(--steel-blue);
}

.agnet-designation {
  color: var(--steel-blue);
  font-size: 15px;
  font-weight: 500;
}

.social-share-grid {
  grid-row-gap: 14px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.social-link-block {
  width: 50px;
  height: 50px;
}

.social-link-block.margin-left {
  margin-right: 10px;
}

.social-share-div {
  display: flex;
}

.sub-heading {
  font-size: 2rem;
  font-weight: 700;
}

.events-grid {
  grid-column-gap: 72px;
  grid-template-rows: auto;
  grid-template-columns: 1.1fr 1fr;
  margin-bottom: 60px;
}

.html-embed {
  display: block;
}

.heading-xsmall {
  color: var(--black);
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.heading-xsmall.blue {
  color: var(--steel-blue);
  font-weight: 500;
}

.empty-state {
  background-color: #0000;
}

.text-block-5, .text-block-6, .text-block-7 {
  font-size: 16px;
}

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

.agent-div {
  padding: 25px;
}

.agent-image-holder {
  background-image: url('../images/Yvette-Malan-Properties-Agent-2.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 450px;
}

.agent-image-holder._2 {
  background-image: url('../images/Yvette-Malan-Properties-Agent-2.jpg');
}

.agent-image-holder._3 {
  background-image: url('../images/Yvette-Malan-Properties-Agent-3.jpg');
}

.collection-list-wrapper-3 {
  display: block;
}

.image-41 {
  width: 150px;
}

.contact-grid {
  grid-column-gap: 72px;
  grid-template-rows: auto;
  grid-template-columns: 1.1fr 1fr;
}

.contact-icon-div {
  align-items: center;
  margin-top: 0;
  display: flex;
}

.contact-icon {
  width: 45px;
  height: 45px;
  margin-right: 20px;
}

.contact-text-link {
  color: var(--steel-blue);
  margin-right: 30px;
  font-family: DM Sans, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  transition: all .2s;
}

.contact-text-link:hover {
  color: var(--black);
}

.contact-us-form {
  background-image: linear-gradient(to bottom, var(--steel-blue), var(--steel-blue));
  border-top-right-radius: 20px;
  padding: 20px;
}

.form-block-2 {
  margin-top: 0;
  margin-bottom: 0;
}

.field-label {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 500;
}

.text-field-2 {
  background-color: var(--white);
  border: 1px #000;
}

.textarea {
  border: 1px #000;
  min-height: 150px;
}

.contact-icon-holder {
  margin-top: 20px;
  margin-bottom: 30px;
  display: flex;
}

.map {
  height: 100%;
}

.next {
  background-color: var(--steel-blue);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.lf-scrolldown-trigger {
  z-index: -1;
  height: 75vh;
  position: absolute;
  top: 25vh;
  left: 0;
  right: 0;
}

.lf-scrolldown-wrapper {
  z-index: 99999;
  transform-origin: 50% 100%;
  text-align: center;
  background-color: #fff;
  border-top-left-radius: 64px;
  border-top-right-radius: 53px;
  width: 128px;
  height: 64px;
  padding-top: 12px;
  line-height: 0;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  box-shadow: 0 0 12px #0000001f;
}

.lf-scrolldown-container {
  width: 32px;
  height: 46px;
  margin-left: auto;
  margin-right: auto;
}

.lf-scrolldown-icon {
  cursor: pointer;
}

.lf-scroll-up-ix {
  position: absolute;
  inset: 0%;
}

.lf-scroll-up-trigger {
  z-index: -1;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.lf-scroll-up-wrapper {
  z-index: 99999;
  transform-origin: 50% 100%;
  text-align: center;
  background-color: #fff;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  width: 128px;
  height: 64px;
  padding-top: 12px;
  line-height: 0;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  box-shadow: 0 0 12px #0000001f;
}

.lf-scroll-up-container {
  width: 32px;
  height: 46px;
  margin-left: auto;
  margin-right: auto;
}

.lf-scroll-up-icon {
  cursor: pointer;
}

.image-42 {
  height: 50px;
  margin-right: 20px;
}

.bond-partner-button {
  margin-top: 40px;
}

.bond-partner {
  background-color: var(--steel-blue);
  color: #fff;
  border-top-right-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 32px;
  font-weight: 700;
  text-decoration: none;
  transition: all .35s;
  display: flex;
}

.bond-partner:hover {
  transform: translate(4px);
  box-shadow: -3px 3px 7px -2px #0006;
}

.bond-partner.button-space {
  margin-top: 32px;
}

.bond-partner.white {
  background-color: var(--white);
  color: var(--steel-blue);
}

.bond-partner-text {
  margin-right: 8px;
  font-size: 1.5rem;
}

.div-block-58 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.success-message {
  height: 350px;
}

.proerty-size-div {
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.heading-3 {
  font-size: 1.8rem;
}

.heading-4 {
  color: var(--steel-blue);
  margin-top: 0;
  font-size: 1.2rem;
}

.quick-stack {
  grid-row-gap: 0px;
}

.agents {
  display: none;
}

.testimonial-slider-small {
  background-color: #0000;
  border-bottom: 1px #e4ebf3;
  padding: 0;
  position: relative;
}

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

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider {
  background-color: #0000;
  max-width: 800px;
  height: auto;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slide-wrapper {
  max-width: 48%;
  margin-right: 4%;
}

.testimonial-card {
  background-color: #f7f7f7;
  border-top-right-radius: 25px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.testimonial-info {
  align-self: stretch;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.testimonial-image {
  object-fit: cover;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 16px;
}

.testimonial-author {
  color: var(--steel-blue);
  margin-top: 10px;
  margin-bottom: 2px;
  font-size: 1rem;
}

.tagline {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 16px;
}

.testimonial-icon-wrapper {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.testimonial-slider-left {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  left: -70px;
}

.testimonial-slider-left:focus-visible, .testimonial-slider-left[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.slider-arrow-embed {
  color: #1a1b1f;
}

.testimonial-slider-right {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  right: -70px;
}

.testimonial-slider-right:focus-visible, .testimonial-slider-right[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.testimonial-slide-nav {
  display: none;
}

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

.paragraph {
  text-align: left;
}

.paragraph-2 {
  font-style: italic;
}

.code-embed {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .navigation-container {
    min-height: auto;
    position: relative;
  }

  .nav-menu {
    background-color: var(--white);
    color: #fff;
    height: auto;
  }

  .brand {
    margin-right: 10px;
    padding: 0;
  }

  .line-break {
    display: none;
  }

  .nav-link-plain {
    background-color: var(--white);
    color: var(--steel-blue);
    width: 100%;
    font-size: 1.2rem;
  }

  .nav-link-plain:hover {
    color: var(--steel-blue);
  }

  .menu-button-green {
    border: 1px solid var(--steel-blue);
    background-color: var(--steel-blue);
    color: var(--white);
    font-size: 3rem;
  }

  .menu-button-green.w--open {
    background-color: var(--steel-blue);
    box-shadow: inset 1px 1px 11px 2px #0003;
  }

  .button-arrow {
    margin-left: 10px;
  }

  .footer-link {
    margin-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

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

  .footer-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .secondary-link {
    margin-right: 0;
  }

  .footer {
    padding-top: 50px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    justify-content: center;
    align-items: center;
    padding-right: 20px;
  }

  .content-section, .property-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .property-image {
    object-fit: cover;
  }

  .content-grid {
    grid-column-gap: 24px;
    grid-row-gap: 44px;
    grid-template-columns: 1fr;
  }

  .content-wrap {
    padding-top: 0%;
  }

  .content-image {
    box-shadow: 0 25px 54px #00000040;
  }

  .collection-item {
    flex-direction: row;
    width: auto;
  }

  .content-grid-reverse {
    grid-row-gap: 44px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .heading-2 {
    margin-bottom: 32px;
  }

  .header-dark {
    padding-top: 150px;
    padding-bottom: 20px;
  }

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

  .property-detail {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .property-detail-text {
    font-size: 30px;
  }

  .property-list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .slide-image {
    background-position: 20%;
  }

  .slider {
    height: 80vh;
  }

  .filter_block-header {
    align-items: start;
    padding-left: 1rem;
  }

  .property-tag {
    width: 50%;
  }

  .events-grid {
    grid-column-gap: 24px;
    grid-row-gap: 44px;
    grid-template-columns: 1fr;
  }

  .agent-image-holder {
    height: 250px;
  }

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

  .contact-icon-div {
    margin-top: 10px;
  }

  .contact-icon-holder {
    flex-direction: column;
  }

  .map {
    height: 250px;
  }

  .bond-partner {
    width: 80%;
  }

  .container-2 {
    max-width: 728px;
  }

  .testimonial-slider-left {
    left: -20px;
  }

  .testimonial-slider-right {
    right: -20px;
  }
}

@media screen and (max-width: 767px) {
  .display-heading {
    font-size: 62px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 40px;
  }

  .footer-grid-01 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: start;
  }

  .footer-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-wrapper._2 {
    flex-direction: row;
  }

  .footer-column {
    justify-content: center;
    align-items: flex-start;
    padding-right: 0;
  }

  .content-section.top-padding {
    padding-top: 0;
  }

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

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

  .collection-item {
    width: 100%;
  }

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

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

  .notice {
    display: none;
  }

  .dropdown-list.w--open {
    min-width: 250px;
  }

  .dropdown-base {
    max-height: 350px;
  }

  .collection-item-2 {
    width: 50%;
  }

  .slider {
    min-height: 760px;
  }

  .slide-content-wrap {
    background-image: none;
    background-position: 0 100%;
    background-repeat: repeat;
    background-size: 125px;
  }

  .div-block-56 {
    padding-left: 0;
    padding-right: 0;
  }

  .property-tag {
    width: 80%;
  }

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

  .agent-image-holder {
    height: 450px;
  }

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

  .bond-partner {
    width: 100%;
  }

  .testimonial-slider-small {
    padding: 60px 15px;
  }

  .testimonial-slide-wrapper {
    max-width: 100%;
    margin-right: 0%;
  }

  .testimonial-card {
    margin-left: 10px;
    margin-right: 10px;
  }

  .testimonial-slider-left {
    left: -10px;
  }

  .testimonial-slider-right {
    right: -10px;
  }
}

@media screen and (max-width: 479px) {
  .display-heading {
    font-size: 3.5rem;
    line-height: 1.1;
  }

  .logo {
    width: 250px;
  }

  .navigation {
    padding-bottom: 10px;
  }

  .menu-button-green {
    padding: 10px;
    font-size: 2.5rem;
  }

  .button-arrow {
    width: 1.5rem;
    margin-top: 5px;
    margin-left: 10px;
    font-size: 16px;
    line-height: 15px;
  }

  .footer-link {
    margin-right: 0;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .footer-grid-01 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 2fr;
    place-items: center;
  }

  .footer-wrapper {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-wrapper._2 {
    flex-direction: row;
  }

  .secondary-link {
    margin-right: 0;
  }

  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    align-items: center;
  }

  .content-section.top-padding {
    padding-top: 0;
  }

  .filter-block {
    padding: 20px;
  }

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

  .feature.centre-lines {
    border: 1px #000;
  }

  .page-button {
    margin-top: 15px;
  }

  .header-dark {
    padding-top: 110px;
    padding-bottom: 10px;
  }

  .header-content-left {
    margin-bottom: 20px;
  }

  .property-title-wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .property-detail {
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .dropdown-list.w--open {
    width: 100%;
    min-width: auto;
    padding-top: 10px;
  }

  .dropdown {
    margin-bottom: 0;
    margin-left: 0;
  }

  .filter-form {
    flex-flow: column wrap-reverse;
    justify-content: flex-start;
    display: flex;
  }

  .dropdown-toggle {
    width: 100%;
  }

  .slide-content-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

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

  .flowbase-banner {
    display: none;
  }

  .events-grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-bottom: 20px;
  }

  .agent-div {
    padding: 10px;
  }

  .contact-icon-div {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

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

  .contact-text-link {
    text-align: left;
    margin-right: 0;
  }

  .lf-scroll-up-wrapper {
    border-top-right-radius: 64px;
    width: 80px;
    height: 50px;
  }

  .image-42 {
    margin-right: 0;
  }

  .bond-partner {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .bond-partner-text {
    margin-top: 5px;
    margin-right: 0;
    font-size: 1.2rem;
  }

  .div-block-58 {
    flex-direction: row;
    padding-top: 2px;
  }

  .testimonial-slider-small {
    padding-top: 0;
    padding-left: 0;
  }

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

  .centered-heading {
    margin-bottom: 24px;
  }

  .testimonial-slide-wrapper {
    max-width: 100%;
    margin-right: 0%;
  }

  .testimonial-card {
    margin-left: 10px;
    margin-right: 10px;
  }

  .testimonial-slider-left {
    left: -10px;
  }

  .testimonial-slider-right {
    right: -10px;
  }
}

#w-node-_34e9fba1-0c84-dd2b-bbf8-18720f680ef3-00772b05, #w-node-_6bd75db2-89a8-2bcb-a170-2cdb30bae95e-00772b05, #w-node-b92356a3-98b9-3c49-fe19-5e4eab678b35-00772b05, #w-node-ba1291f4-04b5-4f83-fab0-796b0a2db9ff-00772b05, #w-node-_798f95e1-9aef-c6ee-c22c-e483c37e7749-00772b05, #w-node-_5088bb1c-dc16-dcce-ddf2-8db74cea97a5-00772b05, #w-node-d38794f1-8990-c370-41f5-c64dac9997c8-00772b05, #w-node-_4a662a97-e090-13b1-4b36-a72975cda85d-00772b05, #w-node-_8ba46a43-8633-9ae5-009f-bb6f4968ab05-00772b05, #w-node-b16c906d-14b3-e8c8-05e0-b565eaa252ee-00772b05, #w-node-e9be96af-cd79-84ac-6065-e6280fd61806-00772b05, #w-node-a2e3a960-d7d4-cb82-6d28-37900a98b5c0-00772b05, #w-node-_3191410b-f4cb-6838-7226-9a98a4e5c0c9-00772b05, #w-node-_99bfd5d7-e125-5a70-1912-c7af4fdb05ed-00772b05, #w-node-e3d08a46-cfbd-8b81-23b0-d31692f6ef9e-00772b05 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1960e733-f50c-1228-ddf9-34d2409db368-4e8fc9be {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_04abc594-da0d-c278-69fb-ca1d91461995-8fbc0c0d, #w-node-d450efa0-1231-c7fe-b8ef-7a21ae68dac8-8fbc0c0d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_6d64b614-971f-79fc-b10f-04edff546694-ff546687 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_6d64b614-971f-79fc-b10f-04edff5466a2-ff546687 {
    place-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_6d64b614-971f-79fc-b10f-04edff546694-ff546687 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}