/* Added fallbacks to help with CLS, feel free to remove if it doesn't help on your project */
/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
.card {
  --bs-card-spacer-y: 1em;
  --bs-card-spacer-x: 1em;
  --bs-card-title-spacer-y: 0.5em;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.375rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(0.375rem - 1px);
  --bs-card-cap-padding-y: 0.5em;
  --bs-card-cap-padding-x: 1em;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #ffffff;
  --bs-card-img-overlay-padding: 1em;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius); }
  .card > hr {
    margin-right: 0;
    margin-left: 0; }
  .card > .list-group {
    border-top: inherit;
    border-bottom: inherit; }
    .card > .list-group:first-child {
      border-top-width: 0;
      border-top-left-radius: var(--bs-card-inner-border-radius);
      border-top-right-radius: var(--bs-card-inner-border-radius); }
    .card > .list-group:last-child {
      border-bottom-width: 0;
      border-bottom-right-radius: var(--bs-card-inner-border-radius);
      border-bottom-left-radius: var(--bs-card-inner-border-radius); }
  .card > .card-header + .list-group,
  .card > .list-group + .card-footer {
    border-top: 0; }

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color); }

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y); }

.card-subtitle {
  margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x); }

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color); }
  .card-header:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0; }

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color); }
  .card-footer:last-child {
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius); }

.card-header-tabs {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0; }
  .card-header-tabs .nav-link.active {
    background-color: var(--bs-card-bg);
    border-bottom-color: var(--bs-card-bg); }

.card-header-pills {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x)); }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius); }

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%; }

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius); }

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius); }

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin); }

@media (min-width: 641px) {
  .card-group {
    display: flex;
    flex-flow: row wrap; }
    .card-group > .card {
      flex: 1 0 0%;
      margin-bottom: 0; }
      .card-group > .card + .card {
        margin-left: 0;
        border-left: 0; }
      .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-top,
        .card-group > .card:not(:last-child) .card-header {
          border-top-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-bottom,
        .card-group > .card:not(:last-child) .card-footer {
          border-bottom-right-radius: 0; }
      .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-top,
        .card-group > .card:not(:first-child) .card-header {
          border-top-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-bottom,
        .card-group > .card:not(:first-child) .card-footer {
          border-bottom-left-radius: 0; } }

.home-banner {
  position: relative;
  padding: 200px 0 200px 0;
  display: flex;
  min-height: 100vh; }
  @media (min-width: 769px) {
    .home-banner {
      padding: 250px 0 200px 0; } }
  @media (min-width: 1641px) {
    .home-banner {
      display: flex;
      align-items: center; } }
  .home-banner .banner-sm {
    display: block !important; }
    @media (min-width: 769px) {
      .home-banner .banner-sm {
        display: none !important; } }
  .home-banner .banner-desktop {
    display: none !important; }
    @media (min-width: 769px) {
      .home-banner .banner-desktop {
        display: block !important; } }
  .home-banner .bg-img {
    object-position: center top;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover; }
    @media (min-width: 769px) {
      .home-banner .bg-img {
        object-position: center top; } }
  .home-banner .banner-content-wrap {
    color: #ffffff; }
    .home-banner .banner-content-wrap h1 {
      margin-bottom: 2rem;
      line-height: 1.15; }
    .home-banner .banner-content-wrap h3 {
      margin-bottom: 2.5rem;
      font-family: "Montserrat", "Arial Narrow", "Verdana", serif;
      font-size: 20px; }
      @media (min-width: 769px) {
        .home-banner .banner-content-wrap h3 {
          font-size: 30px; } }
      @media (min-width: 1141px) {
        .home-banner .banner-content-wrap h3 {
          font-size: 40px; } }

.property-types {
  margin-top: -150px;
  padding-bottom: 75px; }
  .property-types .card {
    background-color: #51806A;
    padding: 3rem 2rem;
    color: #ffffff;
    height: 100%; }
    .property-types .card img,
    .property-types .card picture {
      margin: 0 auto 1.5rem auto; }
    .property-types .card address {
      display: block;
      margin-bottom: 8px; }
    .property-types .card span {
      display: block;
      margin-bottom: 1.5rem; }
    .property-types .card a {
      color: #ffffff;
      font-weight: 700;
      font-family: "Montserrat", "Arial Narrow", "Verdana", serif;
      text-decoration: underline;
      margin-bottom: 1.5rem; }
      .property-types .card a:hover {
        color: #3F6C57; }
    .property-types .card small {
      color: #ffffff;
      font-size: 16px; }
  .property-types .intro-content h2 {
    position: relative;
    max-width: 1354px;
    margin: 0 auto 2rem auto;
    padding-bottom: 1.25rem; }
    .property-types .intro-content h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 76px;
      height: 4px;
      background-color: #51806A; }
  .property-types .directory-types-wrap {
    position: relative; }
    .property-types .directory-types-wrap .directory-type-card {
      position: relative; }
      .property-types .directory-types-wrap .directory-type-card .content {
        position: absolute;
        bottom: 0;
        padding: 1.5rem;
        left: 0; }
        .property-types .directory-types-wrap .directory-type-card .content h4 {
          margin-bottom: 10px;
          color: #ffffff; }
        .property-types .directory-types-wrap .directory-type-card .content a {
          color: #ffffff;
          font-size: 16px;
          font-weight: 700; }
          .property-types .directory-types-wrap .directory-type-card .content a i {
            color: #51806A;
            font-size: 12px;
            margin-left: 6px; }
          .property-types .directory-types-wrap .directory-type-card .content a:hover {
            color: #51806A; }
    .property-types .directory-types-wrap #directory-types-nav {
      position: absolute;
      left: -15px;
      right: 0;
      top: 45%;
      width: calc(100% + 30px);
      display: flex;
      justify-content: space-between;
      z-index: 2; }
      .property-types .directory-types-wrap #directory-types-nav button {
        height: 56px;
        width: 56px;
        border-radius: 50%;
        box-shadow: 0px 0px 10px #00000029;
        background-color: #51806A;
        padding: 0;
        border: 0;
        outline: none;
        display: flex;
        align-items: center;
        justify-content: center; }
        .property-types .directory-types-wrap #directory-types-nav button i {
          color: #ffffff; }
        .property-types .directory-types-wrap #directory-types-nav button.disabled {
          cursor: default;
          background-color: gray; }
          .property-types .directory-types-wrap #directory-types-nav button.disabled i {
            color: #9f9f9f; }

.community {
  background-color: #F8F8F8; }
  .community .content-area {
    padding: 0 1rem; }
    .community .content-area h2 {
      position: relative;
      margin: 0 auto 2rem auto;
      padding-bottom: 1.25rem; }
      @media (min-width: 1025px) {
        .community .content-area h2 {
          max-width: 780px; } }
      .community .content-area h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        margin: 0;
        width: 76px;
        height: 4px;
        background-color: #51806A; }
    @media (min-width: 1141px) {
      .community .content-area {
        max-width: 600px; } }
  @media (min-width: 1025px) {
    .community .img-wrap {
      position: absolute;
      height: 100%;
      top: 0;
      bottom: 0;
      right: 0; }
      .community .img-wrap img,
      .community .img-wrap picture {
        position: absolute;
        object-fit: cover;
        object-position: top;
        height: 100% !important;
        max-height: 100% !important;
        width: 100% !important;
        max-width: 100% !important; }
        .community .img-wrap img img,
        .community .img-wrap picture img {
          max-width: 100% !important; } }

.map-area {
  padding: 100px 0; }
  .map-area h2 {
    position: relative;
    margin: 0 auto 2rem auto;
    padding-bottom: 1.25rem; }
    .map-area h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 76px;
      height: 4px;
      background-color: #51806A; }
  .map-area .map-wrapper {
    padding: 1rem;
    background: white;
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 5px; }

.leasing {
  background-color: #F8F8F8; }
  .leasing .content-area {
    padding: 0 1rem; }
    .leasing .content-area h2 {
      position: relative;
      margin: 0 auto 2rem auto;
      padding-bottom: 1.25rem; }
      @media (min-width: 1025px) {
        .leasing .content-area h2 {
          max-width: 780px; } }
      .leasing .content-area h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        margin: 0;
        width: 76px;
        height: 4px;
        background-color: #51806A; }
  @media (min-width: 1025px) {
    .leasing .img-wrap {
      position: absolute;
      height: 100%;
      top: 0;
      bottom: 0;
      right: 0; }
      .leasing .img-wrap img,
      .leasing .img-wrap picture {
        position: absolute;
        object-fit: cover;
        object-position: top;
        height: 100% !important;
        max-height: 100% !important;
        width: 100% !important;
        max-width: 100% !important; }
        .leasing .img-wrap img img,
        .leasing .img-wrap picture img {
          max-width: 100% !important; } }

.lates-news {
  position: relative;
  padding: 100px 0 86px 0; }
  .lates-news h2 {
    position: relative;
    margin: 0 auto 2rem auto;
    padding-bottom: 1.25rem; }
    .lates-news h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 76px;
      height: 4px;
      background-color: #51806A; }
  .lates-news .card {
    border: 0;
    border-radius: 0; }
    .lates-news .card .img-wrap {
      border-radius: 5px;
      height: 240px;
      overflow: hidden; }
      .lates-news .card .img-wrap picture,
      .lates-news .card .img-wrap img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 250px;
        max-width: 100% !important;
        transition: all 0.2s linear;
        border-radius: 5px !important; }
      .lates-news .card .img-wrap:hover picture,
      .lates-news .card .img-wrap:hover img {
        transform: scale(1.05, 1.05);
        transition: all 0.2s linear; }
    .lates-news .card .card-body {
      border-bottom-left-radius: 5px !important;
      border-bottom-right-radius: 5px !important;
      padding: 2rem 0; }
      .lates-news .card .card-body h3 {
        font-family: "Montserrat", "Arial Narrow", "Verdana", serif;
        font-weight: 400;
        font-size: 30px;
        color: #52524D; }
      .lates-news .card .card-body p {
        margin-bottom: 1.25rem;
        line-height: 1.55; }
      .lates-news .card .card-body .read-more {
        font-size: 16px;
        text-transform: uppercase;
        color: #51806A;
        font-weight: 700; }
        .lates-news .card .card-body .read-more i {
          color: #52524D;
          font-size: 12px;
          margin-left: 6px; }
        .lates-news .card .card-body .read-more:hover {
          color: #51806A; }
          .lates-news .card .card-body .read-more:hover i {
            color: #51806A; }
    .lates-news .card .card-title {
      line-height: 1.2;
      margin-top: 0;
      text-decoration: none;
      margin-bottom: 1.25rem; }
      .lates-news .card .card-title a {
        color: #52524D !important;
        text-decoration: none; }
    .lates-news .card .entry-meta {
      margin-bottom: 1.25rem; }
      .lates-news .card .entry-meta span {
        font-size: 18px;
        font-family: "Montserrat", "Arial Narrow", "Verdana", serif !important;
        font-weight: 400;
        color: #B2B2B2; }
      .lates-news .card .entry-meta .sep {
        padding: 0 5px; }
