:root {
  --gray: #eee;
  --black: #fff;
  --white-smoke: whitesmoke;
  --burdgnady: #610002;
  --main-yellow: #ffd861;
  --trans-yellow: rgba(231, 196, 90, .4);
  --orange: #ffac12;
}

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

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 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  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;
}

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

.display-heading {
  color: var(--gray);
  text-align: center;
  letter-spacing: -.04em;
  text-transform: uppercase;
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 22px;
  font-family: Montserrat, sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: .9;
}

.hero-paragraph {
  color: var(--black);
  text-align: center;
  max-width: 500px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.hero-paragraph.white {
  color: var(--white-smoke);
}

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

.button {
  background-color: var(--burdgnady);
  color: #610002;
  border: 1px solid #000;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  padding: 10px 40px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all .35s;
  display: flex;
}

.button.yellow-filled {
  color: var(--black);
  background-color: #610002;
  background-color: var(--main-yellow);
  border-width: 1px;
  border-color: #f5f5f5;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.button.yellow-filled.black-shadoe {
  background-color: var(--burdgnady);
  font-weight: 400;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.button.yellow-filled.black-shadoe.hom {
  margin-left: 0;
  margin-right: 0;
}

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

.navigation {
  z-index: 999;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(rgba(255, 250, 250, .53), rgba(235, 208, 208, .3) 84%, rgba(209, 153, 153, 0));
  border-bottom: 1px rgba(255, 255, 255, .1);
  align-items: center;
  padding: 5px 4%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.brand {
  margin-right: 20px;
}

.nav-link-plain {
  color: #610002;
  text-transform: uppercase;
  margin-left: 0;
  margin-right: 0;
  padding-left: 16px;
  padding-right: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: all .35s;
}

.nav-link-plain:hover {
  color: rgba(255, 255, 255, .6);
}

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

.footer-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  justify-content: space-between;
  margin-top: 20px;
  display: flex;
}

.footer-wrapper {
  grid-column-gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

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

.footer {
  background-image: linear-gradient(to bottom, black, var(--burdgnady));
  padding: 70px 3% 20px;
  display: flex;
}

.footer-top {
  grid-row-gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 20px;
  display: flex;
}

.black-curved-wrapper {
  background-color: #000;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding: 40px 2%;
  display: flex;
  box-shadow: 8px 80px 55px -50px rgba(0, 0, 0, .13);
}

.property-card {
  background-color: #fff;
  border-radius: 15px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow: 18px 18px 45px rgba(0, 0, 0, .1);
}

.button-text {
  color: var(--white-smoke);
  margin-right: 0;
}

.heading-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
}

.tabs-menu {
  border: 1px solid var(--main-yellow);
  background-color: var(--trans-yellow);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 550px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.notice {
  background-color: #000;
  justify-content: center;
  align-items: center;
  padding: 16px 3%;
  display: flex;
}

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

.notice-text {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-right: 10px;
  font-family: Montserrat, sans-serif;
}

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

.area-selector {
  grid-column-gap: 10px;
  background-color: var(--main-yellow);
  border-radius: 5px;
  justify-content: center;
  max-width: 200px;
  min-height: 50px;
  margin: 0 auto 10px;
  padding: 16px 20px;
  display: flex;
}

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

.home-header-section {
  background-image: none;
  background-position: 0 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.slide-content-wrap {
  z-index: 9;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 100px 3% 60px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slide {
  overflow: hidden;
}

.slider-content {
  z-index: 99;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.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;
  top: 15px;
  bottom: auto;
  left: auto;
  right: 15px;
}

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

._3-col-grid {
  grid-column-gap: 49px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

._3-col-grid.services {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 10px;
}

.text-white-underline-yellow {
  text-shadow: 0 3px 1px rgba(0, 0, 0, .2);
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.subtitle {
  opacity: .5;
  text-align: center;
  max-width: 600px;
  margin: 20px auto 30px;
}

.subtitle.white {
  opacity: 1;
  color: #fff;
  margin-top: 30px;
  font-family: Montserrat, sans-serif;
}

.tabs-content {
  justify-content: center;
  width: 100%;
  max-width: 900px;
  display: none;
  overflow: visible;
}

.button-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.listing-card-img-top {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.listing-card-img-top.rel {
  z-index: 9;
  margin-top: 10px;
  margin-left: 10px;
  position: absolute;
}

.image-39 {
  height: 50px;
}

.gallery10_component {
  column-count: 3;
  column-gap: 2rem;
}

.gallery10_lightbox-link {
  width: 100%;
  margin-bottom: 2rem;
}

.gallery10_image-wrapper {
  width: 100%;
}

.gallery10_image1, .gallery10_image2 {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.gallery10_image3, .gallery10_image4 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.gallery10_image5, .gallery10_image6, .gallery10_image7 {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.features-text-light {
  color: #fff;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.features-paragraph-services {
  color: #fff;
  width: 95%;
  max-width: none;
  min-height: 180px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.h2 {
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

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

.why-us-copy {
  border: 1px solid var(--burdgnady);
  color: #10405b;
  text-align: center;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 350px;
  padding: 10px 10px 20px;
  text-decoration: none;
  transition: transform .8s cubic-bezier(.23, 1, .32, 1), box-shadow .8s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  box-shadow: 0 30px 40px -20px rgba(0, 0, 0, .5);
}

.why-us-copy:hover {
  box-shadow: 0 15px 30px -15px var(--burdgnady);
  text-decoration: none;
  transform: translate(0, 5px);
}

.icon {
  filter: invert();
  color: var(--black);
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.div-block-59 {
  background-color: var(--burdgnady);
  border-radius: 100%;
  padding: 15px;
  font-style: italic;
}

.cta-block {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, .06), rgba(0, 0, 0, .06)), url('/wp-content/themes/VanTheme/assets/images/7.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 3%;
  padding: 100px;
  display: flex;
  position: relative;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, .18);
}

.phone-field {
  color: #10405b;
  background-image: url('/wp-content/themes/VanTheme/assets/images/email.svg');
  background-position: 18px;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px #000;
  border-radius: 20px;
  height: 70px;
  padding-left: 70px;
  font-size: 16px;
  line-height: 130%;
  transition: opacity .3s;
}

.phone-field:hover {
  opacity: .9;
}

.phone-field::placeholder {
  color: rgba(16, 64, 91, .5);
}

.phone-field.blue {
  color: #000;
  background-image: none;
  border-radius: 10px;
  margin-bottom: 0;
  padding-left: 30px;
  font-family: Montserrat, sans-serif;
}

.phone-field.blue::placeholder {
  color: #000;
}

.success-message {
  background-color: rgba(0, 0, 0, 0);
  font-size: 24px;
}

.cta-form-error {
  color: #fff;
  background-color: rgba(187, 36, 94, .5);
  border-radius: 15px;
  width: 100%;
  margin-top: 35px;
  font-size: 16px;
  position: absolute;
}

.div-block-60 {
  margin-bottom: 30px;
}

.heading-4.white {
  color: #f5f5f5;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.text-span-3 {
  color: #610002;
}

.social-corner {
  z-index: 99999;
  border-top-left-radius: 40px;
  width: 150px;
  height: 30px;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
  box-shadow: -2px -2px 4px -1px rgba(0, 0, 0, .2);
}

.yellow-heading-span {
  color: var(--white-smoke);
  text-shadow: 0 3px 1px rgba(0, 0, 0, .2);
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.yellow-heading-span.text-highlighted-yellow.wh {
  color: var(--burdgnady);
}

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

.s1._1 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._2 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/2.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._3 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/3.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._4 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/4.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._5 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/5.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._6 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/6.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._7 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/7.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._8 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/8.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._9 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/9.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._10 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/10.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._11 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/12.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._12 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/13.webp');
  background-position: 0 0;
  background-size: cover;
}

.s1._14 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/16.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._15 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/17.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._16 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/18.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._17 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/19.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.s1._18 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/21.webp');
  background-position: 0 0;
  background-size: cover;
}

.s1._13 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/21.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.left-arrow-2 {
  height: 50px;
  display: none;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.slide-6 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/_06a6839.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-block-4 {
  margin-right: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.tab-system {
  width: 100%;
}

.tab-link {
  text-align: left;
  background-color: #ffd862;
  border-radius: 0;
  width: 100%;
  padding-left: 20px;
  padding-right: 0;
  font-weight: 600;
  display: flex;
}

.tab-link.w--current {
  background-color: var(--black);
  color: var(--main-yellow);
  border-radius: 0;
  width: 100%;
  padding-left: 20px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
}

.page-header {
  z-index: 9;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 100px 3% 60px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.all-property-eader {
  z-index: 99;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.page-title-section {
  background-image: linear-gradient(rgba(0, 0, 0, .21), rgba(0, 0, 0, .21)), url('/wp-content/themes/VanTheme/assets/images/1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  min-height: 40vh;
  position: relative;
}

.page-title-section.partner {
  background-image: linear-gradient(rgba(0, 0, 0, .42), rgba(0, 0, 0, .42)), url('/wp-content/themes/VanTheme/assets/images/3_1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
}

.page-title-section.contact {
  background-image: linear-gradient(rgba(0, 0, 0, .31), rgba(0, 0, 0, .31)), url('/wp-content/themes/VanTheme/assets/images/8.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.page-title-section.about {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('/wp-content/themes/VanTheme/assets/images/7.jpg');
}

.top-info-section {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.icon-5 {
  color: var(--black);
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.c-main-img-lightbox {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.listing-card-img-wrapper-2 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  height: 240px;
  margin-bottom: 36px;
  position: relative;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 10px;
  display: flex;
}

.listing-card-content-2 {
  flex-direction: column;
  flex: 1;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
}

.right-arrow-3 {
  flex-direction: column;
  justify-content: flex-end;
  height: 50px;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.card-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.listing-card-img-overlay-2 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding-top: 12px;
  padding-left: 12px;
  padding-right: 12px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.listing-card-img-overlay-2._2 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/1.jpg');
}

.listing-card-img-overlay-2.all-pro {
  background-image: none;
  height: 100%;
  padding: 0;
  display: block;
  position: relative;
}

.book-now-button-2 {
  background-color: var(--burdgnady);
  color: var(--white-smoke);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 30px;
  margin-top: 20px;
  padding: 6px 16px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 130%;
  display: flex;
}

.listing-card-price-2 {
  z-index: 2;
  background-color: var(--burdgnady);
  box-shadow: 0 10px 20px -6px var(--trans-yellow);
  color: var(--gray);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 5px 16px;
  font-weight: 600;
  display: flex;
  position: absolute;
  top: auto;
  bottom: -22px;
  left: 12px;
  right: auto;
}

.summary-head-content {
  text-align: center;
  margin-bottom: 10px;
}

.text-block-5 {
  opacity: 1;
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.listing-card-info-block-2 {
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  margin-right: 0;
  font-size: 14px;
  line-height: 120%;
  display: flex;
}

.poperty-card-2 {
  border: 1px solid var(--burdgnady);
  text-align: left;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 10px;
  flex-direction: column;
  padding: 10px 10px 20px;
  text-decoration: none;
  transition: transform .8s cubic-bezier(.23, 1, .32, 1), box-shadow .8s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  box-shadow: 0 30px 40px -20px rgba(97, 0, 2, .3);
}

.poperty-card-2:hover {
  border-color: var(--burdgnady);
  box-shadow: 0 15px 30px -15px var(--trans-yellow);
  text-decoration: none;
  transform: translate(0, 5px);
}

.section-reg {
  padding: 3%;
}

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

.section-reg.is-black.mis {
  background-color: #000;
}

.section-reg.small-vertcial-pad.about {
  padding-top: 0%;
}

.card-info {
  color: #000;
  margin-top: 5px;
  margin-bottom: 24px;
  padding-left: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 130%;
}

.listing-card-location-2 {
  color: #000;
  background-image: url('/wp-content/themes/VanTheme/assets/images/location-grey.svg');
  background-position: 0 1px;
  background-repeat: no-repeat;
  background-size: auto;
  margin-bottom: 0;
  padding-left: 18px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 130%;
}

.listing-card-location-2.nopad {
  color: #000;
  margin-bottom: 10px;
}

.listing-card-name-2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  line-height: 120%;
}

.p {
  opacity: .5;
  text-align: center;
  max-width: 600px;
  margin: 20px auto 30px;
}

.p.black {
  opacity: 1;
  color: #000;
  letter-spacing: .5px;
  max-width: 550px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.p.white {
  opacity: 1;
  color: var(--white-smoke);
  max-width: 550px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.p.is-white {
  opacity: 1;
  color: #fff;
  letter-spacing: .5px;
  max-width: 550px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.preheader {
  background-color: var(--burdgnady);
  color: var(--white-smoke);
  text-transform: uppercase;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  min-height: 40px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 14px;
  font-family: Montserrat, sans-serif;
  line-height: 120%;
  display: flex;
  box-shadow: 0 4px 5px rgba(0, 0, 0, .2);
}

.preheader.yellow-shadow {
  box-shadow: 0 4px 5px 0 var(--burdgnady);
}

.preheader.yellow-shadow.nopadbtm {
  margin-bottom: 0;
}

.featured-tag-2 {
  background-color: var(--burdgnady);
  color: var(--white-smoke);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 30px;
  margin-right: 10px;
  padding: 6px 16px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
  display: flex;
}

.listing-card-info-item-2 {
  align-items: center;
  margin-right: 28px;
  display: flex;
}

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

.text-black-yellow-line {
  text-shadow: 0 3px 1px rgba(0, 0, 0, .2);
}

.div-block-67 {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-67.all-propcard {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.slide-9 {
  background-image: url('/wp-content/themes/VanTheme/assets/images/_06a6769-min.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.all-property-card-2 {
  color: #10405b;
  text-align: left;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #ffd861;
  border-radius: 20px;
  flex-direction: row-reverse;
  width: 100%;
  height: 100%;
  padding: 10px 10px 20px;
  text-decoration: none;
  transition: transform .8s cubic-bezier(.23, 1, .32, 1), box-shadow .8s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  box-shadow: 0 30px 40px -20px rgba(0, 0, 0, .5);
}

.all-property-card-2:hover {
  text-decoration: none;
  transform: translate(0, 5px);
  box-shadow: 0 15px 30px -15px #ffd862;
}

.all-property-card-2.white {
  background-color: #f5f5f5;
  border-color: rgba(37, 178, 255, .47);
  border-radius: 10px;
  padding-top: 20px;
}

.all-property-card-2.white:hover {
  border-color: var(--trans-yellow);
  box-shadow: 0 15px 30px -15px var(--trans-yellow);
}

.all-property-listing-card-img-2 {
  border-radius: 16px;
  width: 50%;
  height: 100%;
  margin-bottom: 0;
  position: relative;
}

.book-now-button-3 {
  background-color: var(--main-yellow);
  color: var(--black);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 30px;
  margin-top: 20px;
  margin-right: 10px;
  padding: 6px 16px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 130%;
  display: flex;
}

.card-desc {
  color: #000;
  margin-bottom: 24px;
  padding-left: 19px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 130%;
}

.text-block-6 {
  opacity: 1;
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.listing-card-info-block-3 {
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  margin-right: 0;
  font-size: 14px;
  line-height: 120%;
  display: flex;
}

.icon-8 {
  opacity: 1;
  color: var(--main-yellow);
  margin-bottom: 10px;
  margin-right: 10px;
}

.icon-9 {
  opacity: .5;
  color: #ffd861;
  margin-bottom: 10px;
  margin-left: 10px;
  display: none;
}

.listing-card-location-copy-copy-2 {
  color: #000;
  margin-bottom: 24px;
  padding-left: 19px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 130%;
}

.featured-tag-3 {
  background-color: var(--main-yellow);
  color: var(--black);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 30px;
  margin-right: 10px;
  padding: 6px 16px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
  display: flex;
}

.mask-3 {
  border-radius: 10px;
}

.listing-card-price-copy {
  z-index: 2;
  background-color: var(--main-yellow);
  color: var(--black);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 44px;
  margin-bottom: 10px;
  margin-left: 10px;
  padding: 5px 16px;
  font-weight: 600;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
  box-shadow: 0 10px 20px -6px rgba(37, 178, 255, .47);
}

.form-button-wrapper {
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  font-family: Montserrat, sans-serif;
  display: flex;
  position: relative;
}

.form-field-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  padding: 10px;
  display: flex;
}

.name-field {
  color: #10405b;
  background-image: url('/wp-content/themes/VanTheme/assets/images/name.svg');
  background-position: 18px;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px #000;
  border-radius: 20px;
  height: 70px;
  padding-left: 70px;
  font-size: 16px;
  line-height: 130%;
  transition: opacity .3s;
}

.name-field:hover {
  opacity: .9;
}

.name-field::placeholder {
  color: rgba(16, 64, 91, .5);
}

.name-field.blue {
  color: #000;
  background-color: #fff;
  background-image: none;
  border-radius: 10px;
  align-items: center;
  margin-bottom: 0;
  padding-left: 30px;
  font-family: Montserrat, sans-serif;
  display: flex;
}

.name-field.blue::placeholder {
  color: #000;
}

.contact-form-fields {
  margin-top: 0;
}

.email-field {
  color: #10405b;
  background-image: url('/wp-content/themes/VanTheme/assets/images/email_1.svg');
  background-position: 18px;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px #000;
  border-radius: 20px;
  height: 70px;
  padding-left: 70px;
  font-size: 16px;
  line-height: 130%;
  transition: opacity .3s;
}

.email-field:hover {
  opacity: .9;
}

.email-field::placeholder {
  color: rgba(16, 64, 91, .5);
}

.email-field.blue {
  color: #000;
  background-color: #f5f5f5;
  background-image: none;
  border-radius: 10px;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-left: 30px;
  font-family: Montserrat, sans-serif;
  display: flex;
}

.email-field.blue::placeholder {
  color: #000;
}

.button-2 {
  text-align: center;
  cursor: pointer;
  background-color: #10405b;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
  transition: transform .4s cubic-bezier(.23, 1, .32, 1);
  display: flex;
}

.button-2:hover {
  text-decoration: none;
  transform: scale(.95);
}

.button-2.yellow-button {
  background-color: var(--burdgnady);
  color: var(--white-smoke);
  border-radius: 10px;
  font-family: Montserrat, sans-serif;
}

.text-area {
  color: #10405b;
  border: 1px #000;
  border-radius: 20px;
  min-height: 160px;
  padding: 22px 24px 30px;
  font-size: 16px;
  line-height: 130%;
  transition: opacity .3s;
}

.text-area:hover {
  opacity: .9;
}

.text-area::placeholder {
  color: rgba(16, 64, 91, .5);
}

.text-area.blue {
  color: #000;
  border-radius: 10px;
  font-family: Montserrat, sans-serif;
}

.text-area.blue::placeholder {
  color: #000;
}

.form-fields-wrap {
  flex-direction: column;
  justify-content: space-between;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.general-enquiry-form {
  width: 100%;
  max-width: 600px;
  position: relative;
}

.from-fields-wrapper {
  position: relative;
}

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

.top-info-section-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.all-properties-component {
  background-color: #000;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding: 40px 2%;
  display: flex;
  box-shadow: 8px 80px 55px -50px rgba(0, 0, 0, .13);
}

.social-bar-inner {
  background-color: var(--burdgnady);
  border: 1px solid #f5f5f5;
  border-radius: 20px 0 0;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  display: flex;
}

.social-link-copy {
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon-11 {
  color: var(--white-smoke);
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  display: flex;
}

.icon-11.white {
  color: var(--white-smoke);
}

.icon-12 {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.icon-12.white {
  color: var(--white-smoke);
}

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

.c-preloader-curtain {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

._w-preloader {
  background-color: rgba(19, 19, 19, 0);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.c-preloader-bar {
  background-color: #222;
  border-radius: 1000px;
  justify-content: center;
  width: 15em;
  height: .25em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.c-preloader {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.c-preloader-content {
  z-index: 5;
  position: absolute;
}

.preloader-curtain {
  background-color: #131313;
  width: 50%;
  height: 100%;
  position: relative;
}

.preloader-curtain.left._2 {
  background-color: rgba(0, 0, 0, .38);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.preloader-curtain.left._1 {
  background-color: var(--black);
}

.preloader-curtain.right._2 {
  background-color: rgba(8, 8, 8, .37);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.preloader-curtain.right._1 {
  background-color: var(--black);
}

.preloader-bar-1 {
  background-color: #d8d8d8;
  border-radius: 1000px;
  justify-content: center;
  width: 60%;
  height: 100%;
  display: flex;
}

.c-preloader-title {
  margin-bottom: .5em;
  padding-left: .5em;
  padding-right: .5em;
  overflow: hidden;
}

.preloader-bar-2 {
  background-color: var(--burdgnady);
  width: 50%;
  height: 100%;
}

.preloader-text {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.home-header-bg {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.overlay {
  z-index: 1;
  background-color: rgba(0, 0, 0, .39);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.text-span-17 {
  color: #610002;
  text-transform: none;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.text-span-19 {
  color: var(--gray);
  font-weight: 400;
}

.text-span-20 {
  color: var(--burdgnady);
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

._w-cards-list {
  padding-bottom: 5%;
  padding-left: 20px;
  padding-right: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 1px;
}

.card-subtitle {
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph {
  color: #000;
  max-width: 500px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.6em;
}

.paragraph.centre {
  margin-left: auto;
  margin-right: auto;
}

.paragraph.centre.bold {
  color: #f0efef;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.subtitle-2 {
  z-index: 10;
  color: #090b19;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 500;
  position: relative;
}

.subtitle-2.is-white {
  color: #f0efef;
}

.icon-3 {
  color: maroon;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

.custom-h2 {
  color: #f0efef;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.c-card-content-divider {
  border: 1px solid #000;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.c-cards-list {
  transition: all .2s;
  position: relative;
}

.c-card {
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  transition: all .25s;
  position: relative;
}

.c-card._1 {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

.c-card._4, .c-card._2 {
  position: -webkit-sticky;
  position: sticky;
  top: 1px;
}

.rl_layout239_spacing-block-3 {
  width: 100%;
  padding-bottom: 3%;
}

._w-card {
  text-align: center;
  background-color: maroon;
  border: 0 #000;
  border-radius: 5px;
  margin-bottom: 100px;
  padding: 30px 30px 20px;
  position: relative;
  box-shadow: 1px 1px 15px rgba(19, 19, 19, .5);
}

._w-card.btm {
  border-radius: 5px;
  margin-bottom: 0;
}

.rl_layout239_heading-wrapper {
  text-align: center;
  width: 100%;
  max-width: 48rem;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.c-cloneable-copy {
  background-color: #000;
  border-radius: 5px;
  width: 95%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3%;
  padding-bottom: 0;
}

.custom-h4 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.custom-h4.caps {
  color: #f0efef;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
}

.c-card-details {
  margin-bottom: 20px;
}

.process-icon {
  color: #fff;
  background-color: #d5ba75;
  border: 1px dashed #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  margin-bottom: 24px;
  padding: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  display: flex;
}

.process-icon.black {
  -webkit-text-stroke-color: #f4f4f4;
  background-color: #f0efef;
  border-color: #e4e2df;
  margin-bottom: 0;
}

.c-card-title {
  justify-content: center;
  margin-bottom: 10px;
  display: flex;
}

.p-2 {
  color: #f0efef;
  text-align: left;
  max-width: 600px;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
}

.p-2.centre {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.text-block-8 {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.rl_faq1_cta-wrapper {
  text-align: center;
  width: 100%;
  max-width: 35rem;
}

.rl-heading-style-h4-2 {
  color: #f0efef;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}

.rl_contact6_spacing-block-1 {
  width: 100%;
  padding-bottom: 1rem;
}

.rl_faq1_accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.rl-padding-global-4 {
  color: #373d3f;
  padding-left: 0%;
  padding-right: 0%;
}

.faq-wrapper {
  justify-content: center;
  padding-top: 2%;
  padding-bottom: 0%;
  display: flex;
}

.rl_faq1_question-text {
  color: #f0efef;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.rl-container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.rl-text-style-regular-2 {
  color: #f0efef;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.rl_faq1_answer {
  overflow: hidden;
}

.rl_faq1_list {
  border-bottom: 1px solid #000;
}

.rl_faq1_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  color: #f0efef;
  cursor: pointer;
  border-top: 1px solid #000;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.rl_faq1_icon {
  color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.rl_faq1_heading-wrapper {
  text-align: center;
  width: 100%;
  max-width: 48rem;
}

.rl_section_faq1 {
  background-color: #d5ba75;
  border-radius: 10px;
  width: 100%;
  max-width: 1400px;
  margin-bottom: 5%;
  margin-left: 0%;
  margin-right: 0%;
  padding: 5%;
}

.rl_section_faq1.no-pad-top {
  background-color: maroon;
  border-radius: 5px;
  width: 95%;
  max-width: 1300px;
  margin-bottom: 3%;
  margin-left: auto;
  margin-right: auto;
}

.rl-padding-section-large-2 {
  padding-top: 0;
}

.rl-text-style-medium-4 {
  color: #f0efef;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.rl_faq1_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.rl_faq1_icon-wrapper {
  align-self: flex-start;
}

.bold-text-5 {
  color: #f0efef;
}

.rl_faq1_answer-wrapper {
  margin-bottom: 1.5rem;
}

.rl_faq1_spacing-block-3 {
  width: 100%;
  padding-bottom: 2rem;
}

.rl_layout239_spacing-block-2 {
  width: 100%;
  padding-bottom: 1.5rem;
}

.rl_faq1_spacing-block-4 {
  width: 100%;
  padding-bottom: 1rem;
}

.form-fields-wrap-copy {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.block {
  background-color: var(--burdgnady);
  border-radius: 10px;
  padding: 30px 10px;
}

.text-block-9 {
  color: #fff;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.text-span-23 {
  text-transform: none;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

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

  .button.yellow-filled.black-shadoe.hom {
    margin-left: auto;
    margin-right: 10px;
  }

  .nav-menu {
    color: #fff;
    background-color: #000;
    border-radius: 10px;
    height: auto;
    margin-top: 9px;
  }

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

  .nav-link-plain {
    color: #fff;
    text-align: center;
    width: 100%;
  }

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

  .menu-button-green {
    border: 1px solid var(--burdgnady);
    color: var(--burdgnady);
    border-radius: 10px;
    padding: 10px;
  }

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

  .footer-bottom, .footer-top {
    flex-direction: column;
  }

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

  .tabs-menu {
    display: none;
  }

  ._3-col-grid {
    grid-column-gap: 25px;
  }

  ._3-col-grid.services {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .features-paragraph-services, .why-us-copy {
    min-height: auto;
  }

  .phone-field.blue {
    background-image: none;
    margin-bottom: 0;
    padding-left: 30px;
  }

  .listing-card-img-wrapper-2 {
    height: auto;
    min-height: 350px;
  }

  .listing-card-content-2 {
    margin-top: 20px;
  }

  .card-wrapper {
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .listing-card-img-overlay-2.all-pro {
    width: 100%;
    height: 100%;
  }

  .book-now-button-2 {
    margin-right: 0;
  }

  .poperty-card-2 {
    min-height: 60px;
  }

  .div-block-67 {
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .all-property-card-2.white {
    flex-direction: column;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .all-property-listing-card-img-2 {
    width: 100%;
    height: 300px;
  }

  .book-now-button-3 {
    margin-right: 0;
  }

  .mask-3 {
    min-height: 200px;
  }

  .listing-card-price-copy {
    bottom: -20px;
  }

  .name-field.blue {
    background-image: none;
    margin-bottom: 0;
    padding-left: 30px;
  }

  .contact-form-fields {
    margin-top: 30px;
  }

  .email-field.blue {
    background-image: none;
    padding-left: 30px;
  }

  .form-fields-wrap {
    flex-direction: column;
  }

  .general-enquiry-form {
    width: 100%;
  }

  .paragraph {
    max-width: 100%;
  }

  .custom-h2 {
    font-size: 2.75rem;
  }

  .rl_layout239_spacing-block-3 {
    padding-bottom: 4.5rem;
  }

  .custom-h4, .rl-heading-style-h4-2 {
    font-size: 1.75rem;
  }

  .rl_section_faq1 {
    margin-left: 0%;
    margin-right: 0%;
  }

  .rl_faq1_spacing-block-3 {
    padding-bottom: 4.5rem;
  }

  .form-fields-wrap-copy {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .container {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .display-heading {
    font-size: 62px;
  }

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

  .button.yellow-filled.black-shadoe.hom {
    margin-left: auto;
    margin-right: 10px;
  }

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

  .footer-wrapper {
    justify-content: center;
  }

  .footer {
    padding-bottom: 20px;
  }

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

  .notice {
    display: none;
  }

  ._3-col-grid {
    grid-row-gap: 51px;
    grid-template-columns: 1fr;
  }

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

  .subtitle {
    margin-bottom: 30px;
  }

  .gallery10_component {
    column-count: 1;
    column-gap: 1.5rem;
  }

  .gallery10_lightbox-link {
    margin-bottom: 1.5rem;
  }

  .cta-block {
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 30px 60px -20px rgba(94, 204, 211, .3);
  }

  .div-block-60 {
    margin-bottom: 10px;
  }

  .tab-link {
    text-align: left;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    height: 50px;
    padding-top: 13px;
    padding-left: 20px;
    font-size: 18px;
    display: block;
  }

  .tab-link.w--current {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
  }

  .listing-card-content-2 {
    margin-top: 20px;
  }

  .card-wrapper {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .listing-card-price-2 {
    height: 40px;
  }

  .section-reg, .section-reg.is-black.mis {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .section-reg.small-vertcial-pad.ab {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .p {
    margin-bottom: 30px;
  }

  .preheader {
    border-radius: 10px;
    min-height: 30px;
    margin-bottom: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 14px;
  }

  .container-2 {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-67 {
    width: 100%;
  }

  .card-desc, .listing-card-location-copy-copy-2 {
    padding-left: 0;
  }

  .listing-card-price-copy {
    height: 40px;
  }

  .button-2 {
    min-height: 50px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
  }

  .general-enquiry-form {
    width: 100%;
  }

  .custom-h2 {
    font-size: 2.25rem;
  }

  .rl_layout239_spacing-block-3 {
    padding-bottom: 3rem;
  }

  .c-cloneable-copy {
    padding-top: 10%;
  }

  .custom-h4, .rl-heading-style-h4-2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .rl_contact6_spacing-block-1 {
    padding-bottom: .75rem;
  }

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

  .rl_faq1_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .rl_faq1_icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .rl-text-style-medium-4 {
    font-size: 1rem;
  }

  .rl_faq1_icon-wrapper {
    width: 1.75rem;
  }

  .rl_faq1_answer-wrapper {
    margin-bottom: 1.25rem;
  }

  .rl_faq1_spacing-block-3 {
    padding-bottom: 3rem;
  }

  .rl_layout239_spacing-block-2 {
    padding-bottom: 1.25rem;
  }

  .rl_faq1_spacing-block-4 {
    padding-bottom: .75rem;
  }

  .block {
    width: 100%;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 479px) {
  .display-heading {
    max-width: 100%;
    font-size: 3rem;
  }

  .button {
    margin-left: auto;
    margin-right: auto;
  }

  .button.yellow-filled.black-shadoe.hom {
    padding: 5px 10px;
  }

  .nav-menu {
    border-radius: 10px;
    justify-content: center;
    margin-top: 4px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .navigation {
    padding: 5px 3%;
  }

  .nav-link-plain {
    text-align: center;
  }

  .menu-button-green {
    border-color: var(--burdgnady);
    border-radius: 10px;
    padding: 5px;
  }

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

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

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

  .black-curved-wrapper {
    padding: 30px 3%;
  }

  .tabs-menu {
    display: none;
  }

  .area-selector {
    width: 100%;
    margin-bottom: 10px;
  }

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

  .tabs-content {
    display: none;
  }

  .image-39 {
    height: 50px;
  }

  .h2.white {
    font-size: 40px;
  }

  .cta-block {
    border-radius: 10px;
    padding: 40px 20px;
  }

  .heading-3, .heading-4 {
    font-size: 40px;
  }

  .heading-4.white {
    text-align: center;
  }

  .icon-2 {
    color: var(--burdgnady);
  }

  .tab-link {
    padding-left: 15px;
    font-size: 16px;
  }

  .page-header {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .listing-card-img-wrapper-2 {
    min-height: 250px;
  }

  .listing-card-content-2 {
    margin-top: 20px;
    padding-left: 0;
  }

  .listing-card-content-2.no-pad-top {
    margin-top: 0;
  }

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

  .home-featured-section {
    overflow: hidden;
  }

  .listing-card-img-overlay-2 {
    background-image: url('/wp-content/themes/VanTheme/assets/images/3.jpg'), linear-gradient(rgba(16, 64, 91, 0), rgba(255, 216, 98, .1));
    background-position: 50%, 0 0;
    background-size: cover, auto;
  }

  .book-now-button-2 {
    margin-right: 0;
  }

  .listing-card-price-2 {
    box-shadow: 0 10px 20px -6px var(--trans-yellow);
  }

  .poperty-card-2 {
    min-height: auto;
  }

  .poperty-card-2:hover {
    border-color: var(--burdgnady);
    box-shadow: 0 15px 30px -15px var(--burdgnady);
  }

  .section-reg {
    padding-left: 2%;
    padding-right: 2%;
  }

  .section-reg.small-vertcial-pad {
    padding: 3% 2%;
  }

  .listing-card-info-item-2 {
    margin-right: 20px;
  }

  .div-block-67 {
    grid-template-columns: 1fr;
  }

  .all-property-card-2.white {
    font-size: 40px;
  }

  .all-property-listing-card-img-2 {
    height: 200px;
  }

  .book-now-button-3 {
    margin-right: 0;
  }

  .card-desc, .listing-card-location-copy-copy-2 {
    padding-left: 0;
  }

  .listing-card-price-copy {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    bottom: -20px;
  }

  .name-field.blue {
    max-width: 100%;
  }

  .form-fields-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .general-enquiry-form {
    width: 100%;
  }

  .top-info-section-2._2 {
    margin-top: 20px;
  }

  .all-properties-component {
    padding: 30px 3%;
  }

  .text-span-17 {
    font-size: 3rem;
  }

  ._w-cards-list {
    padding-left: 0%;
    padding-right: 0%;
  }

  .card-subtitle {
    font-size: 1.3em;
    line-height: 1em;
  }

  .paragraph {
    font-size: 1rem;
  }

  .custom-h2 {
    font-size: 3rem;
  }

  .c-card-content-divider {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .c-card._4 {
    top: 200px;
  }

  .c-card._2 {
    top: 80px;
  }

  .rl_layout239_spacing-block-3 {
    padding-bottom: 2rem;
  }

  ._w-card {
    margin-bottom: 40px;
    padding: 20px 10px;
  }

  ._w-card.btm {
    padding-left: 10px;
    padding-right: 10px;
  }

  .c-cloneable-copy {
    padding-top: 10%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .process-icon {
    margin-bottom: 24px;
    margin-right: 0;
  }

  .rl_section_faq1 {
    margin-top: 5%;
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .rl_section_faq1.no-pad-top {
    margin-top: 0%;
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .form-fields-wrap-copy {
    margin-left: 0;
    margin-right: 0;
  }
}

#w-node-e6a9c74e-1221-49d6-7d62-00f776285df3-85004ebc, #w-node-eb574866-06ff-c0ca-3e77-5bd7d177755a-85004ebc, #w-node-d6a8bede-00e1-cde3-60ed-d9a025685e4d-85004ebc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-_27bee50d-5da0-e3b8-5fb8-2cb36e12843e-85004ebc, #w-node-_01dd7743-9e99-452a-c0f2-debfff97404b-85004eca {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Inter';
  src: url('/wp-content/themes/VanTheme/assets/fonts/inter-medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Inter';
  src: url('/wp-content/themes/VanTheme/assets/fonts/inter-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Inter';
  src: url('/wp-content/themes/VanTheme/assets/fonts/inter-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Inter';
  src: url('/wp-content/themes/VanTheme/assets/fonts/inter-semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}