@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  color: #333;
  background-color: #fff;
}

.btn-contact {
  color: #00396f;
  border: none;
  padding: 5px 20px;
  font-size: 1rem;
  border-radius: 35px;
  cursor: pointer;
  border: 1px solid #00396f;
  text-decoration: none;
  transition: background-color 0.3s ease;
  background-color: transparent;
}

.btn-contact:hover {
  background-color: #00396f;
  color: #fff;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 3.2rem !important;
  }
  .hero-section .hero-content {
    margin-left: 0;
  }
  .feature-title {
    font-size: 3.2rem !important;
  }
}
.properties-listing .listing-container .property-card a {
  width: 100%;
}

.go-back-btn {
  display: block;
  width: 100%;
  padding-bottom: 20px;
  z-index: 99999999;
  color: #4589ca;
  text-decoration: none;
}

.not-rigth-location .container .sub-title h5 {
  width: 380px;
}

.search-page .has-text-align-center {
  text-align: left;
  margin-top: 10px;
}

.front-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.front-page .container-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  max-width: 1025px;
  width: 100%;
  padding: 87px 145px;
  flex-shrink: 0;
  background-color: #f5f5f5;
  gap: 52px;
}
@media (max-width: 1024px) {
  .front-page .container-container {
    padding: 87px 20px;
  }
}
.front-page .container-container .page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  font-weight: 600;
  color: #00396f;
  text-align: center;
}
.front-page .container-container .page-content {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

.about-title {
  margin-top: 119px;
}
@media (max-width: 1024px) {
  .about-title {
    margin-top: 20px;
  }
}
.about-title .container {
  width: 100%;
}
.about-title .container .section-title {
  font-family: "Cormorant Garamond", serif;
  color: #00396f;
  text-align: center;
  font-size: 5.3rem;
  font-weight: 700;
}
.about-title .container .sub-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
}
.about-title .container .sub-title h5 {
  color: #848585;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 400;
  line-height: 28px;
}

/* General styles for mobile menu */
.nav-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 250px;
  height: 100%;
  background-color: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  padding: 20px;
}
.nav-menu.open {
  transform: translateX(0);
}

/* Optional background overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hamburger and Close Icons */
.menu-button,
.close-menu {
  cursor: pointer;
  z-index: 1001;
}

/* General styles for mobile menu */
.menu-btn {
  display: none;
  /* Optional background overlay */
}
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
}
.menu-btn .nav-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 250px;
  height: 100%;
  background-color: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  padding: 20px;
}
.menu-btn .nav-menu.open {
  transform: translateX(0);
}
.menu-btn .menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}
.menu-btn .menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hamburger and Close Icons */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
}
@media (max-width: 768px) {
  header {
    position: relative;
  }
}
header .header-container {
  margin: 0 auto;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 1440px;
  padding: 20px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  header .header-container {
    padding: 10px;
  }
}
header .header-container .menu-button {
  padding: 20px 50px 20px 50px;
  background-color: transparent;
  border: none;
  display: none;
}
@media (max-width: 768px) {
  header .header-container .menu-button {
    padding: 20px;
    display: block;
  }
}
header .header-container .logo {
  top: 20px;
  width: 141px;
  left: 0;
  right: 0;
  bottom: 10px;
}
header .header-container .desk-nav {
  text-transform: uppercase;
  text-decoration: none;
}
header .header-container .desk-nav .menu-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .header-container .desk-nav .menu-ul li {
  display: inline-block;
  margin-right: 20px;
}
header .header-container .desk-nav .menu-ul li:last-child {
  margin-right: 0;
}
header .header-container .desk-nav .menu-ul li a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #00396f;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
}
header .header-container .desk-nav .menu-ul li a:hover {
  color: #00396f;
}
header .header-container .desk-nav .menu-ul .special-tab {
  background-color: #00396f;
  padding: 10px 20px;
}
header .header-container .desk-nav .menu-ul .special-tab a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 768px) {
  header .header-container .desk-nav {
    display: none;
  }
}
header .header-container .menu-button,
header .header-container .close-menu {
  cursor: pointer;
  z-index: 1001;
}

.nav-menu {
  width: 100%;
  max-width: 385px;
  height: 100vh;
  padding: 39px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 100px;
  flex-shrink: 0;
}
.nav-menu .close-menu {
  width: 36.75px;
  height: 36.75px;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
}
.nav-menu .menu-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
  list-style: none;
}
.nav-menu .menu-ul li {
  width: 100%;
  border-bottom: 1px solid #00396f;
}
.nav-menu .menu-ul li:last-child {
  border-bottom: none;
}
.nav-menu .menu-ul li a {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px;
  color: #4589ca;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  width: 100%;
  min-width: 300px;
  display: block;
  padding: 22px 0;
}
.nav-menu .menu-ul li a:hover {
  color: #00396f;
}

.hero-section {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  height: auto;
  background-image: url("./../../images/hero-image.jpg"); /* Adjust the path */
  background-size: cover;
  background-position: center;
  margin-top: 100px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .hero-section {
    max-height: 450px;
    padding: 40px 0;
    margin-top: 0;
  }
}
.hero-section .hero-content {
  padding-top: 324px;
  color: #fff; /* Adjust to match the design */
  z-index: 1;
  width: 100%;
  padding: 28px 42px;
  gap: 21px;
  margin-left: 50%;
  margin-top: 325px;
  background-color: #f0f8ff;
}
.hero-section .hero-content .cta-banner {
  font-family: "Cormorant Garamond", serif;
  font-size: 5.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 17.255px;
  color: #4589ca;
}
@media (max-width: 768px) {
  .hero-section .hero-content {
    width: 100%;
    padding: 20px;
    margin-top: 0;
  }
  .hero-section .hero-content .cta-banner {
    font-size: 3.6rem;
  }
}
.hero-section .hero-content .bar-section {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 444px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-section .hero-content .bar-section h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 17.255px;
  color: #00396f;
  margin-right: 20px;
}
.hero-section .hero-content .bar-section a {
  text-decoration: none;
  color: #00396f;
}
.hero-section .hero-content .bar-section a strong {
  display: inline-block;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-section .hero-content .bar-section a strong img {
  padding-left: 10px;
}

.hero-pages {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  height: auto;
  background-size: cover;
  background-position: center;
  margin-top: 100px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .hero-pages {
    max-height: 450px;
    padding: 40px 0;
    margin-top: 0;
  }
}
.hero-pages .hero-content {
  padding-top: 324px;
  color: #fff;
  z-index: 1;
  width: 100%;
  padding: 42px 42px;
  gap: 21px;
  margin-left: 50%;
  margin-top: 325px;
  background-color: #f0f8ff;
}
@media (max-width: 768px) {
  .hero-pages .hero-content {
    width: 100%;
    padding: 10px;
    margin-top: 250px;
    margin-left: 0;
  }
}
.hero-pages .hero-content .cta-banner {
  font-family: "Cormorant Garamond", serif;
  font-size: 5.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 17.255px;
  color: #4589ca;
}
@media (max-width: 768px) {
  .hero-pages .hero-content {
    width: 100%;
    padding: 20px;
  }
  .hero-pages .hero-content .cta-banner {
    font-size: 3.6rem;
  }
}
.hero-pages .hero-content .bar-section {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 444px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-pages .hero-content .bar-section h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 17.255px;
  color: #00396f;
  margin-right: 20px;
}
.hero-pages .hero-content .bar-section a {
  text-decoration: none;
  color: #00396f;
}
.hero-pages .hero-content .bar-section a strong {
  display: inline-block;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-pages .hero-content .bar-section a strong img {
  padding-left: 10px;
}

.post-container {
  width: 100%;
  position: relative;
  min-height: 700px;
  background-color: #f5f5f5;
  padding-top: 250px;
}
@media (max-width: 768px) {
  .post-container {
    padding-top: 50px;
  }
}
.post-container .top-banner {
  width: 100%;
  min-height: 400px;
  background-color: #f0f8ff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  right: 0;
}
.post-container .post-card {
  position: relative;
  z-index: 2;
  padding: 32px;
  background-color: #fff;
  width: 100%;
  max-width: 1065px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  box-shadow: 0px 0px 7.234px 0px rgba(0, 0, 0, 0.1);
}
.post-container .post-card .card-img {
  width: 50%;
  min-height: 350px;
  height: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .post-container .post-card .card-img {
    width: 100%;
    min-height: 250px;
  }
}
.post-container .post-card .card-content {
  width: 50%;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .post-container .post-card .card-content {
    width: 100%;
    padding: 32px 20px;
  }
}
.post-container .post-card .card-content hr {
  border: 1px solid #f5f5f5;
  margin: 20px 0;
}
.post-container .post-card .card-content .card-title {
  color: #4589ca;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px; /* 60.006% */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.post-container .post-card .card-content .card-title .category-flag {
  color: #4589ca;
  border: 1px solid #4589ca;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  margin-left: 5%;
}
.post-container .post-card .card-content .location-sub {
  position: relative;
  color: #717171;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.202px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}
.post-container .post-card .card-content .location-sub img {
  margin-right: 5px;
}
.post-container .post-card .card-content .size-sub {
  color: var(--848585, #848585);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.post-container .post-card .card-content .size-sub img {
  margin-right: 5px;
}
.post-container .post-card .card-content .description-card {
  color: #717171;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */
}
.post-container .post-card .card-content .phone {
  color: #4589ca;
  font-family: "Montserrat", sans-serif;
  position: relative;
  padding: 22px 10px 22px 28px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.post-container .post-card .card-content .phone img {
  position: absolute;
  left: 0px;
  top: 20px;
}
.post-container .post-card .card-content .cta {
  display: flex;
  padding: 21px 14px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background: #f0f8ff;
  width: 100%;
  color: #4589ca;
  text-decoration: none;
}
.post-container .post-card .card-content .cta:hover {
  background: #00396f;
  color: #fff;
}
.post-container .post-main-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.post-container .post-main-content .post-info {
  width: 100%;
  margin: 0 auto;
  max-width: 1068px;
  position: relative;
  background-color: #fff;
  padding: 15px;
  margin: 50px auto 100px;
}
.post-container .post-main-content .post-info .listing-container {
  width: 100%;
}
.post-container .post-main-content .post-info h2 {
  color: #00396f;
  font-size: 1.5em;
  margin-bottom: 0.2em;
}
.post-container .post-main-content .post-info .listing-table {
  width: 100%;
}
.post-container .post-main-content .post-info .header {
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 19px; /* 160.017% */
  text-transform: uppercase;
  color: #00396f;
  border-top: 1px solid #f5f5f5;
  padding-bottom: 5px;
  text-align: left;
}
.post-container .post-main-content .post-info .listing-row {
  display: flex;
  align-items: center;
  border-top: 1px solid #00396f;
  padding: 10px 0;
}
.post-container .post-main-content .post-info .listing-row .address-table {
  flex: 2;
  font-size: 1.2rem;
}
.post-container .post-main-content .post-info .listing-row span {
  flex: 1;
  font-size: 1.2rem;
}
.post-container .post-main-content .post-info .listing-row .description-table {
  flex: 2;
  font-size: 1.2rem;
}
.post-container .post-main-content .post-info .listing-row .btn-contact {
  color: #00396f;
  border: none;
  padding: 5px 20px;
  font-size: 1rem;
  border-radius: 35px;
  cursor: pointer;
  border: 1px solid #00396f;
  transition: background-color 0.3s ease;
  background-color: transparent;
}
.post-container .post-main-content .post-info .listing-row .btn-contact:hover {
  background-color: #00396f;
  color: #fff;
}
@media (max-width: 768px) {
  .post-container .post-main-content .post-info {
    /* Add pseudo-labels using nth-child */
  }
  .post-container .post-main-content .post-info .listing-row {
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 1rem;
  }
  .post-container .post-main-content .post-info .listing-row.header {
    display: none;
  }
  .post-container .post-main-content .post-info .listing-row > span,
  .post-container .post-main-content .post-info .listing-row > .description-table,
  .post-container .post-main-content .post-info .listing-row > a {
    display: block;
    width: 100%;
    margin: 0.3rem 0;
  }
  .post-container .post-main-content .post-info .listing-row:not(.header) span:nth-child(1)::before {
    content: "Listing: ";
    font-weight: bold;
  }
  .post-container .post-main-content .post-info .listing-row:not(.header) span:nth-child(2)::before {
    content: "Sq. Ft.: ";
    font-weight: bold;
  }
  .post-container .post-main-content .post-info .listing-row:not(.header) span:nth-child(3)::before {
    content: "Price per Sq. Ft.: ";
    font-weight: bold;
  }
  .post-container .post-main-content .post-info .listing-row:not(.header) span:nth-child(4)::before {
    content: "Price: ";
    font-weight: bold;
  }
}

.contact-section {
  width: 100%;
}
.contact-section .contact-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url("./../../images/contact-background.jpg");
  background-repeat: no-repeat;
  background-size: 50%;
  background-color: #f0f8ff;
  min-height: 561px;
}
@media (max-width: 1024px) {
  .contact-section .contact-container {
    background-size: 100%;
  }
}
.contact-section .contact-container .contact-info {
  background-color: #fff;
  padding: 72px 10px;
  width: 100%;
  max-width: 656px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-section .contact-container .contact-info .contact-title {
  color: #00396f;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 53px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.contact-section .contact-container .contact-info .subt {
  color: #000;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 22px; /* 137.5% */
  margin-bottom: 52px;
}
.contact-section .contact-container .contact-info .contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 456px;
}
.contact-section .contact-container .contact-info .contact-box .contact-inf {
  color: #4589ca;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 26px;
}
.contact-section .contact-container .contact-info .contact-box .send-link a {
  color: #00396f;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 10px;
  text-decoration: none;
  border-bottom: 1px solid #00488c;
}

.contact-footer {
  width: 100%;
  margin-top: 50px;
}
.contact-footer .contact-container {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #4589ca;
  min-height: 561px;
  padding: 87px 20px;
}
@media (max-width: 1024px) {
  .contact-footer .contact-container {
    background-size: 100%;
  }
}
.contact-footer .contact-container .contact-info {
  background-color: #fff;
  width: 100%;
  max-width: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-footer .contact-container .contact-info .contact-title {
  color: #00396f;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 53px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
  margin-top: 20px;
}
.contact-footer .contact-container .contact-info .subt {
  color: #000;
  width: 100%;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 22px; /* 137.5% */
}
.contact-footer .contact-container .contact-info .contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.contact-footer .contact-container .contact-info .contact-box .contact-form {
  width: 90%;
  font-size: 1.4rem;
}
.contact-footer .contact-container .contact-info .contact-box .contact-form input,
.contact-footer .contact-container .contact-info .contact-box .contact-form textarea,
.contact-footer .contact-container .contact-info .contact-box .contact-form select {
  font-size: 12px;
  padding: 5px 10px;
  height: auto;
}
.contact-footer .contact-container .contact-info .contact-box .contact-form textarea {
  min-height: 100px;
}
.contact-footer .contact-container .contact-info .contact-box .contact-inf {
  color: #4589ca;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 26px;
}
.contact-footer .contact-container .contact-info .contact-box .send-link a {
  color: #00396f;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 10px;
  text-decoration: none;
  border-bottom: 1px solid #00488c;
}

.index-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 130px 10px 50px;
}
.index-page .index-content {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.index-page .index-content .page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  font-weight: 600;
  color: #00396f;
  text-align: center;
  margin-bottom: 20px;
}
.index-page .index-content .page-content {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}
.index-page .index-content .listing-container {
  width: 100%;
}
.index-page .index-content h2 {
  color: #00396f;
  font-size: 1.5em;
  margin-bottom: 0.2em;
}
.index-page .index-content .listing-table {
  width: 100%;
}
.index-page .index-content .header {
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 19px; /* 160.017% */
  text-transform: uppercase;
  color: #00396f;
  border-top: 1px solid #f5f5f5;
  padding-bottom: 5px;
  text-align: left;
}
.index-page .index-content .listing-row {
  display: flex;
  align-items: center;
  border-top: 1px solid #00396f;
  padding: 10px 0;
}
.index-page .index-content .listing-row .address-table {
  flex: 2;
  font-size: 1.2rem;
}
.index-page .index-content .listing-row span {
  flex: 1;
  font-size: 1.2rem;
}
.index-page .index-content .listing-row .description-table {
  flex: 2;
  font-size: 1.2rem;
}
.index-page .index-content .listing-row .btn-contact {
  color: #00396f;
  border: none;
  padding: 5px 20px;
  font-size: 1rem;
  border-radius: 35px;
  cursor: pointer;
  border: 1px solid #00396f;
  transition: background-color 0.3s ease;
  background-color: transparent;
  text-decoration: none;
}
.index-page .index-content .listing-row button:hover {
  background-color: #00396f;
  color: #fff;
}

.about-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-page .container-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  max-width: 1278px;
  width: 100%;
  margin-top: 150px;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .about-page .container-container {
    padding: 87px 20px;
  }
}
.about-page .container-container .page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  font-weight: 600;
  color: #00396f;
  text-align: center;
  width: 100%;
}
.about-page .container-container .page-subtitle {
  width: 100%;
  color: #848585;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 400;
  line-height: 28px; /* 116.667% */
}
.about-page .container-container .page-content {
  background-color: #f5f5f5;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  padding: 87px 135px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .about-page .container-container .page-content {
    padding: 20px;
  }
}
.about-page .container-container .page-content p {
  margin-bottom: 20px;
}

.about-container {
  margin-top: -20px;
}
.about-container .about-hunsaker .about-container {
  margin: 0 auto 50px;
  padding: 0px;
}
.about-container .about-hunsaker .about-container .about-title {
  margin-top: 20px;
}

footer {
  background-color: #00488c;
  color: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .footer-container {
  max-width: 1065px;
  width: 100%;
  margin: 0 auto;
  padding: 59px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  footer .footer-container {
    flex-direction: column;
    padding: 50px 20px;
  }
}
footer .footer-container .box-footer {
  width: 50%;
  max-width: 356px;
}
@media (max-width: 768px) {
  footer .footer-container .box-footer {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}
footer .footer-container .box-footer p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 280% */
}
footer .footer-container .box-footer .box-info {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  footer .footer-container .box-footer .box-info {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
}
footer .footer-container .box-footer .box-info li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .footer-container .box-footer .box-info li img {
  margin-right: 10px;
}
@media (max-width: 768px) {
  footer .footer-container .box-footer .box-info li {
    text-align: left;
  }
}
footer .footer-container .box-footer .box-info li a {
  color: #fff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 233.333% */
  text-decoration: none;
}
footer .footer-container .box-footer .box-info li a:hover {
  text-decoration: underline;
}
footer .footer-container .box-footer .box-info li p {
  width: 70%;
}
footer .footer-bottom {
  width: 100%;
  background-color: #00396f;
}
footer .footer-bottom .footer-bottom-container {
  max-width: 1065px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  footer .footer-bottom .footer-bottom-container {
    flex-direction: column;
    padding: 20px;
  }
}
footer .footer-bottom .footer-bottom-container p {
  color: var(--FFFFFF, #fff);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 233.333% */
}
@media (max-width: 768px) {
  footer .footer-bottom .footer-bottom-container p {
    font-size: var(--sds-typography-body-size-medium);
  }
}
footer .footer-bottom .footer-bottom-container .copy-right {
  color: var(--FFFFFF, #fff);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 233.333% */
  padding: 10px 20px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .footer-bottom .footer-bottom-container .copy-right li a {
  text-decoration: none;
  color: #fff;
}
@media (max-width: 768px) {
  footer .footer-bottom .footer-bottom-container .copy-right {
    font-size: var(--sds-typography-body-size-medium);
  }
}

.find-properties {
  background: linear-gradient(180deg, #f0f8ff 0%, #fff 100%);
  padding: 119px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .find-properties {
    padding: 20px;
  }
}
.find-properties .container {
  width: 100%;
  max-width: 1065px;
}
.find-properties .container .section-title {
  font-family: "Cormorant Garamond", serif;
  color: #00396f;
  text-align: center;
  font-size: 5.3rem;
  font-weight: 700;
}
.find-properties .container .search-form {
  margin: 42px auto;
  width: 100%;
  max-width: 1065px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.find-properties .container .search-form .search-label-container {
  display: flex;
  width: 635px;
  height: 42px;
  padding: 8px 12px;
  align-items: center;
  gap: 10px;
  border-radius: 52px;
  border: 1px solid #ededed;
  background-color: #fff;
}
.find-properties .container .search-form .search-label-container .search-field {
  width: 100%;
  max-width: 1065px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 28px;
  color: #00396f;
  border: none;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url("./../../images/search.png");
  background-repeat: no-repeat;
  padding-left: 35px;
  background-size: 20px 20px;
  background-position: 0px 25%;
}
.find-properties .container .search-form .search-label-container .search-field:focus {
  outline: none;
  border: none;
}
.find-properties .container .search-form .search-label-container .search-field::placeholder {
  color: #4589ca;
}
.find-properties .container .sub-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 50px;
}
.find-properties .container .sub-title h5 {
  background-color: #f6fbff;
  color: #848585;
  width: 340px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: -15px auto 0;
}
.find-properties .container .sub-title .dev-line {
  width: 100%;
  height: 1px;
  border-color: #848585;
}
.find-properties .container .location-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 42px;
  list-style: none;
  margin-left: 0;
}
.find-properties .container .location-list a {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 28px;
  color: #848585;
  transition: color 0.3s ease-in-out;
}
.find-properties .container .location-list a:hover {
  color: #4589ca;
}

.feature-properties {
  background: #fff;
  padding: 119px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.feature-properties .container {
  width: 100%;
  max-width: 1065px;
}
.feature-properties .container .section-title {
  font-family: "Cormorant Garamond", serif;
  color: #00396f;
  text-align: center;
  font-size: 5.3rem;
  font-weight: 700;
}
.feature-properties .container .sub-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 50px;
}
.feature-properties .container .sub-title h5 {
  background-color: #fff;
  color: #848585;
  width: 340px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: -15px auto 0;
}
.feature-properties .container .sub-title .dev-line {
  width: 100%;
  height: 1px;
  border-color: #848585;
}
.feature-properties .container .feature-box {
  margin-top: 50px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.feature-properties .container .feature-box .feature-box-content {
  max-width: 450px;
  width: 100%;
  background-color: #fff;
  padding: 20px;
}
.feature-properties .container .feature-box .feature-box-content hr {
  border: 1px solid #f5f5f5;
  width: 100%;
  margin: 20px auto;
}
.feature-properties .container .feature-box .feature-box-content .feature-title {
  font-family: "Cormorant Garamond", serif;
  color: #00396f;
  font-size: 4.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.feature-properties .container .feature-box .feature-box-content .featured-address {
  width: 100%;
  max-width: 250px;
}
.feature-properties .container .feature-box .feature-box-content .featured-details {
  font-family: "Montserrat", sans-serif;
  color: #00396f;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.feature-properties .container .feature-box .feature-box-content p {
  font-family: "Montserrat", sans-serif;
  color: #333;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 300;
}
.feature-properties .container .feature-box .feature-box-content .feature-contact {
  width: 100%;
  border-top: solid 1px #f5f5f5;
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.feature-properties .container .feature-box .feature-box-content .feature-contact .box {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  color: #848585;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.feature-properties .container .feature-box .feature-box-content .feature-contact .box:first-child {
  border-right: solid 1px #f5f5f5;
}
.feature-properties .container .feature-box .feature-box-content .feature-contact .box img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.feature-properties .container .feature-box .feature-box-content .feature-contact .box .contact-link {
  color: #00396f;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
}

.about-hunsaker {
  background: #fff;
  padding: 0 20px 119px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-hunsaker .about-container {
  width: 100%;
  max-width: 1278px;
  margin: 50px auto;
  padding: 52px 0px;
  position: relative;
}
.about-hunsaker .about-container .about-image {
  background-image: url("./../../images/about-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-height: 496px;
}
.about-hunsaker .about-container .about-image .about-content {
  width: 100%;
  max-width: 561px;
  margin-right: 32px;
  margin-top: -52px;
  background-color: #f0f8ff;
  padding: 52px 24px;
}
@media (max-width: 768px) {
  .about-hunsaker .about-container .about-image .about-content {
    max-height: auto;
    margin: -52px auto 20px;
  }
}
.about-hunsaker .about-container .about-image .about-content .about-title {
  color: #00396f;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.about-hunsaker .about-container .about-image .about-content h4 {
  color: #4589ca;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 200% */
  text-transform: uppercase;
}
.about-hunsaker .about-container .about-image .about-content .about-description {
  color: #00396f;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 37px; /* 231.25% */
}
.about-hunsaker .about-container .about-image .about-content .about-contact {
  width: 100%;
  border-top: solid 1px #f5f5f5;
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-hunsaker .about-container .about-image .about-content .about-contact .box {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  color: #848585;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.about-hunsaker .about-container .about-image .about-content .about-contact .box:first-child {
  border-right: solid 1px #f5f5f5;
}
.about-hunsaker .about-container .about-image .about-content .about-contact .box img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.about-hunsaker .about-container .about-image .about-content .about-contact .box .contact-link {
  color: #4589ca;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
}
.about-hunsaker .info-columns {
  width: 100%;
  max-width: 1278px;
  margin: 50px auto;
  padding: 52px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  list-style: none;
}
.about-hunsaker .info-columns li {
  width: 100%;
  max-width: 386px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px;
}
.about-hunsaker .info-columns li .info-title {
  color: #00396f;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.about-hunsaker .info-columns li h4 {
  color: #848585;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 200% */
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 20px;
}
.about-hunsaker .info-columns li .info-description {
  font-family: "Montserrat", sans-serif;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

.not-rigth-location {
  background-color: #4589ca;
  padding: 119px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.not-rigth-location .container {
  width: 100%;
  max-width: 1065px;
}
.not-rigth-location .container .section-title {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  text-align: center;
  font-size: 5.3rem;
  font-weight: 700;
}
.not-rigth-location .container .sub-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 50px;
}
.not-rigth-location .container .sub-title h5 {
  background-color: #4589ca;
  color: #fff;
  width: 340px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: -15px auto 0;
}
.not-rigth-location .container .sub-title .dev-line {
  width: 100%;
  height: 1px;
  border-color: white;
}
.not-rigth-location .container .location-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 42px;
  list-style: none;
  margin-left: 0;
}
@media (max-width: 768px) {
  .not-rigth-location .container .location-list {
    grid-template-columns: repeat(2, 1fr);
    margin: 42px auto;
  }
}
.not-rigth-location .container .location-list a {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  transition: color 0.3s ease-in-out;
}
.not-rigth-location .container .location-list a:hover {
  color: #00396f;
}

.properties-listing {
  margin: 0 auto;
  width: 100%;
  max-width: 1065px;
}
.properties-listing .sub-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 50px;
}
.properties-listing .sub-title h5 {
  background-color: #fff;
  color: #4589ca;
  width: 340px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: -15px auto 0;
}
.properties-listing .sub-title .dev-line {
  width: 100%;
  height: 1px;
  border-color: #4589ca;
}
.properties-listing .listing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
  margin-bottom: 50px;
  list-style: none;
  margin-left: 0;
}
@media (max-width: 768px) {
  .properties-listing .listing-container {
    grid-template-columns: repeat(1, 1fr);
    margin: 42px auto;
  }
}
.properties-listing .listing-container .property-card {
  display: flex;
  max-width: 347px;
  width: 100%;
  padding: 13px;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  background: #fff;
  box-shadow: 0px 0px 7.234px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .properties-listing .listing-container .property-card {
    max-width: 80%;
    margin: 0 auto;
  }
}
.properties-listing .listing-container .property-card .property-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 203px;
  padding: 9px 10px 175px 242px;
}
.properties-listing .listing-container .property-card .property-content {
  width: 100%;
}
.properties-listing .listing-container .property-card .property-content .card-tag-title {
  color: #4589ca;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.properties-listing .listing-container .property-card .property-content .card-tag-title .category-flag {
  color: #4589ca;
  border: 1px solid #4589ca;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  margin-left: 5%;
}
.properties-listing .listing-container .property-card .property-content .address {
  color: #848585;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
  padding: 22px 10px 22px 20px;
}
.properties-listing .listing-container .property-card .property-content .address img {
  position: absolute;
  left: 5px;
  top: 25px;
}
.properties-listing .listing-container .property-card .property-content .phone {
  color: #4589ca;
  font-family: "Montserrat", sans-serif;
  position: relative;
  padding: 22px 10px 22px 28px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.properties-listing .listing-container .property-card .property-content .phone img {
  position: absolute;
  left: 0px;
  top: 20px;
}
.properties-listing .listing-container .property-card .property-content .cta {
  display: flex;
  padding: 21px 14px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background: #f0f8ff;
  width: 100%;
  color: #4589ca;
  text-decoration: none;
}
.properties-listing .listing-container .property-card .property-content .cta:hover {
  background: #00396f;
  color: #fff;
}

.category-block {
  width: 100%;
  padding-bottom: 150px;
}
.category-block .slogan-block {
  width: 100%;
  background: linear-gradient(180deg, #f0f8ff 0%, #fff 46.87%);
  color: #00396f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 119px 20px;
}
.category-block .slogan-block p {
  max-width: 739px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
}
.category-block .properties-columns {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.category-block .properties-columns .column-industrial,
.category-block .properties-columns .column-office {
  position: relative;
  width: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
  z-index: 1;
}
.category-block .properties-columns .column-industrial .column-content,
.category-block .properties-columns .column-office .column-content {
  position: absolute;
  bottom: 20px;
  left: auto;
  right: 0;
  display: flex;
  width: 501px;
  padding: 28px 42px;
  background-color: #f0f8ff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 21px;
}
.category-block .properties-columns .column-industrial .column-content .column-title,
.category-block .properties-columns .column-office .column-content .column-title {
  color: #4589ca;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 17.255px;
}
.category-block .properties-columns .column-industrial .column-content .listing-link,
.category-block .properties-columns .column-office .column-content .listing-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.category-block .properties-columns .column-industrial .column-content .listing-link strong,
.category-block .properties-columns .column-office .column-content .listing-link strong {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.255px;
}
.category-block .properties-columns .column-industrial .column-content .listing-link a,
.category-block .properties-columns .column-office .column-content .listing-link a {
  text-decoration: none;
  color: #4589ca;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.category-block .properties-columns .column-industrial .column-content .listing-link a img,
.category-block .properties-columns .column-office .column-content .listing-link a img {
  padding-left: 10px;
}
@media (max-width: 768px) {
  .category-block .properties-columns .column-industrial .column-content,
  .category-block .properties-columns .column-office .column-content {
    width: 100%;
    padding: 20px;
    margin-top: 0;
  }
  .category-block .properties-columns .column-industrial .column-content .listing-link,
  .category-block .properties-columns .column-office .column-content .listing-link {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .category-block .properties-columns .column-industrial,
  .category-block .properties-columns .column-office {
    width: 100%;
    height: 300px;
  }
}
.category-block .properties-columns .column-industrial {
  background-image: url("./../../images/industrial-properties.jpg");
}
.category-block .properties-columns .column-office {
  background-image: url("./../../images/office-properties.jpg");
}

.properties-categories-listing {
  margin: 0 auto;
  width: 100%;
  max-width: 1065px;
}
.properties-categories-listing .sub-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 50px;
}
.properties-categories-listing .sub-title h5 {
  background-color: #fff;
  color: #4589ca;
  width: 340px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: -15px auto 0;
}
.properties-categories-listing .sub-title .dev-line {
  width: 100%;
  height: 1px;
  border-color: #4589ca;
}
.properties-categories-listing .listing-container {
  display: grid;
  gap: 22px;
  margin-top: 10px;
  margin-bottom: 50px;
  list-style: none;
  margin-left: 0;
}
@media (max-width: 768px) {
  .properties-categories-listing .listing-container {
    grid-template-columns: repeat(1, 1fr);
    margin: 42px auto;
  }
}
.properties-categories-listing .listing-container .property-card {
  display: flex;
  max-width: 347px;
  width: 100%;
  padding: 13px;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  background: #fff;
  box-shadow: 0px 0px 7.234px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .properties-categories-listing .listing-container .property-card {
    max-width: 80%;
    margin: 0 auto;
  }
}
.properties-categories-listing .listing-container .property-card .property-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 203px;
  padding: 9px 10px 175px 242px;
}
.properties-categories-listing .listing-container .property-card .property-content {
  width: 100%;
}
.properties-categories-listing .listing-container .property-card .property-content .address {
  color: #848585;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
  padding: 22px 10px 22px 20px;
}
.properties-categories-listing .listing-container .property-card .property-content .address img {
  position: absolute;
  left: 5px;
  top: 25px;
}
.properties-categories-listing .listing-container .property-card .property-content .phone {
  color: #4589ca;
  font-family: "Montserrat", sans-serif;
  position: relative;
  padding: 22px 10px 22px 28px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.properties-categories-listing .listing-container .property-card .property-content .phone img {
  position: absolute;
  left: 0px;
  top: 20px;
}
.properties-categories-listing .listing-container .property-card .property-content .cta {
  display: flex;
  padding: 21px 14px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background: #f0f8ff;
  width: 100%;
  color: #4589ca;
  text-decoration: none;
}
.properties-categories-listing .listing-container .property-card .property-content .cta:hover {
  background: #00396f;
  color: #fff;
}
.properties-categories-listing .post-main-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.properties-categories-listing .post-main-content .post-info {
  width: 100%;
  margin: 0 auto;
  max-width: 1068px;
  position: relative;
  background-color: #fff;
  padding: 15px;
}
@media (max-width: 768px) {
  .properties-categories-listing .post-main-content .post-info {
    padding: 5px;
  }
}
.properties-categories-listing .post-main-content .post-info .post-title a {
  display: block;
  color: #00396f;
  font-size: 1.5em;
  margin-bottom: 0.2em;
  text-decoration: none;
}
.properties-categories-listing .post-main-content .post-info .post-title a:hover {
  text-decoration: underline;
}
.properties-categories-listing .post-main-content .post-info .listing-container {
  width: 100%;
}
.properties-categories-listing .post-main-content .post-info .listing-container .available-tag {
  color: gray;
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: center;
}
.properties-categories-listing .post-main-content .post-info .listing-container .listing-table {
  width: 100%;
}
.properties-categories-listing .post-main-content .post-info .listing-container .header {
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 19px; /* 160.017% */
  text-transform: uppercase;
  color: #00396f;
  border-top: 1px solid #f5f5f5;
  padding-bottom: 5px;
  text-align: left;
}
.properties-categories-listing .post-main-content .post-info .listing-container .listing-row {
  display: flex;
  align-items: center;
  border-top: 1px solid #00396f;
  padding: 10px 0;
}
.properties-categories-listing .post-main-content .post-info .listing-container .listing-row .address-table {
  flex: 2;
  font-size: 1.2rem;
}
.properties-categories-listing .post-main-content .post-info .listing-container .listing-row span {
  flex: 1;
  font-size: 1.2rem;
}
.properties-categories-listing .post-main-content .post-info .listing-container .listing-row .description-table {
  flex: 2;
  font-size: 1.2rem;
}
.properties-categories-listing .post-main-content .post-info .listing-container .listing-row .btn-contact {
  color: #00396f;
  border: none;
  padding: 5px 20px;
  font-size: 1rem;
  border-radius: 35px;
  cursor: pointer;
  border: 1px solid #00396f;
  transition: background-color 0.3s ease;
  background-color: transparent;
}
.properties-categories-listing .post-main-content .post-info .listing-container .listing-row .btn-contact:hover {
  background-color: #00396f;
  color: #fff;
}
@media (max-width: 768px) {
  .properties-categories-listing .post-main-content .post-info .listing-container {
    /* Add pseudo-labels using nth-child */
  }
  .properties-categories-listing .post-main-content .post-info .listing-container .listing-row {
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 1rem;
  }
  .properties-categories-listing .post-main-content .post-info .listing-container .listing-row.header {
    display: none;
  }
  .properties-categories-listing .post-main-content .post-info .listing-container .listing-row > span,
  .properties-categories-listing .post-main-content .post-info .listing-container .listing-row > .description-table,
  .properties-categories-listing .post-main-content .post-info .listing-container .listing-row > a {
    display: block;
    width: 100%;
    margin: 0.3rem 0;
  }
  .properties-categories-listing .post-main-content .post-info .listing-container .listing-row:not(.header) span:nth-child(1)::before {
    content: "Listing: ";
    font-weight: bold;
  }
  .properties-categories-listing .post-main-content .post-info .listing-container .listing-row:not(.header) span:nth-child(2)::before {
    content: "Sq. Ft.: ";
    font-weight: bold;
  }
  .properties-categories-listing .post-main-content .post-info .listing-container .listing-row:not(.header) span:nth-child(3)::before {
    content: "Price per Sq. Ft.: ";
    font-weight: bold;
  }
  .properties-categories-listing .post-main-content .post-info .listing-container .listing-row:not(.header) span:nth-child(4)::before {
    content: "Price: ";
    font-weight: bold;
  }
}

.btn-contact {
  color: #00396f;
  border: none;
  padding: 5px 20px;
  font-size: 1rem;
  border-radius: 35px;
  cursor: pointer;
  border: 1px solid #00396f;
  text-decoration: none;
  transition: background-color 0.3s ease;
  background-color: transparent;
}

.btn-contact:hover {
  background-color: #00396f;
  color: #fff;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 3.2rem !important;
  }
  .hero-section .hero-content {
    margin-left: 0;
  }
  .feature-title {
    font-size: 3.2rem !important;
  }
}
.properties-listing .listing-container .property-card a {
  width: 100%;
}

.go-back-btn {
  display: block;
  width: 100%;
  padding-bottom: 20px;
  z-index: 99999999;
  color: #4589ca;
  text-decoration: none;
}

.not-rigth-location .container .sub-title h5 {
  width: 480px;
}
@media (max-width: 768px) {
  .not-rigth-location .container .sub-title h5 {
    width: 100% !important;
  }
}

.available-tag {
  color: gray;
  padding-top: 100px;
  padding-bottom: 20px;
  text-align: center;
}

/*# sourceMappingURL=main.css.map */
