@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300&family=Roboto:wght@100;300&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

body {
  font-weight: normal;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
}

p {
  line-height: 1.5;
}

.main p {
  text-align: justify;
  line-height: 1.8;
}

.main h1 {
  font-weight: 300;
  padding-bottom: .7em;
}

.container {
  padding: 2em 3em;
  max-width: 1170px;
  margin: 0 auto;
}

.home-bg {
  background: url("../img/home-bg1.jpeg");
  background-size: cover;
  background-position: center;
  height: 90vh;
}

.home-banner {
  height: 90vh;
  position: absolute;
  left: 0;
}

.home-banner .container {
  padding: 3em 2em;
}

.slogan h1 {
  color: #052751;
  padding-bottom: 0;
  font-weight: 700;
  font-size: 2.5em;
  font-family: serif;
}

.light-bg {
  background: #eaecf7;
}

.overlay {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.527);
  position: fixed;
  left: 0;
  top: 0;
}

.home-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-top-header {
  width: 16%;
  margin: auto 0;
  line-height: .8;
  font-family: "Playfair Display";
  color: #0f46ab;
}

.home-top-header h2 {
  font-weight: 300;
  font-size: 1.8em;
  text-align: left;
}

.home-img img {
  width: 300px;
  margin-right: 1em;
}

.home-top-desc {
  position: relative;
  margin: 2em 0;
}

.comingsoon {
  background: url("../img/comingsoon-bg.jpg");
  background-position: center;
  background-size: cover;
  height: 100vh;
}

.comingsoon img {
  margin-left: 1em;
}

.comingsoon .coming-content {
  padding: 2em;
  height: 90vh;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 4em;
}

.comingsoon h1, .comingsoon h2 {
  text-align: center;
  color: white;
  font-weight: 700;
}

.comingsoon h1 {
  font-size: 4em;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 992px) {
  .home-banner {
    width: 85%;
  }
  .container {
    padding: 2em 5em;
  }
  .home-bg {
    height: 90vh;
    background-position: top center;
  }
  .home-banner {
    height: 60vh;
  }
  .home-top-desc {
    margin: 2em 0 2em 0;
  }
  .home-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .home-banner {
    width: 65%;
  }
  .home-bg {
    height: 90vh;
  }
}

/*extra small iphone */
@media only screen and (max-width: 580px) {
  .home-banner {
    width: 80%;
  }
  .container {
    padding: 2em 1em;
  }
  .home-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .home-top-header {
    padding-top: 1em;
  }
  .home-img img {
    width: 300px;
    margin: 0 auto;
  }
  .slogan h1 {
    font-size: 1.8em;
  }
}

/* Small devices (portrait tablets and phones, 600px and down) */
@media only screen and (max-width: 768px) and (min-width: 580px) {
  .home-banner {
    width: 80%;
  }
  .container {
    padding: 2em 1em;
  }
  .home-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .home-top-header {
    padding-top: 1em;
  }
  .home-img img {
    width: 300px;
    margin: 0 auto;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: .2em 0;
}

input, textarea, select {
  font-family: "Montserrat", sans-serif;
  color: #555;
  font-size: .9em;
  padding: .2em .4em;
  outline: none;
  border-radius: 3px;
  border: none;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  color: #b3b3b3;
  font-weight: 300;
  font-size: .9em;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  color: #b3b3b3;
  font-weight: 300;
  font-size: .9em;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  color: #b3b3b3;
  font-weight: 300;
  font-size: .9em;
}

input::placeholder, textarea::placeholder, select::placeholder {
  font-family: "Montserrat", sans-serif;
  color: #b3b3b3;
  font-weight: 300;
  font-size: .9em;
}

option {
  border: none;
}

.submit-contact-form {
  color: #555;
  padding: .5em;
  margin: .5em 0;
  outline: none;
  border-radius: 3px;
  border: none;
  width: 100%;
  background: white;
  border: 1px solid white;
  outline: none;
  cursor: pointer;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.submit-contact-form:hover {
  background: rgba(255, 255, 255, 0.5);
  color: white;
}

.navbar {
  width: 100%;
  position: fixed;
  z-index: 1000;
  background: #ebf2f8;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-gradient(linear, left bottom, left top, from(white), color-stop(whitesmoke), color-stop(#f1f1f1), to(#dee7ee));
  background: linear-gradient(to top, white, whitesmoke, #f1f1f1, #dee7ee);
  -webkit-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.274);
          box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.274);
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1170px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 0;
  margin: 0 auto;
  padding: 0 3em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo {
  padding: .6em 0;
  outline: none;
  cursor: pointer;
}

.header-logo img {
  width: 115px;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.menu-item {
  padding: 0 1.5em;
  outline: none;
  cursor: pointer;
  color: #0d233f;
}

.menu-item:hover {
  color: #0f46ab;
}

.menu-item:last-child a {
  color: red;
}

.last-menu-item {
  padding-right: 0;
}

.dropdown {
  padding: 0 1.5em;
  position: relative;
  outline: none;
  cursor: pointer;
  color: #0d233f;
}

.slideDown {
  visibility: visible;
  height: 73px;
}

.slideUp {
  visibility: hidden;
  height: 0;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.active {
  color: #0f46ab;
}

.toggleBtn {
  outline: none;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 2em;
  top: 2em;
  z-index: 20;
}

.dropdown-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  background: white;
  background: -webkit-gradient(linear, left top, left bottom, from(whitesmoke), color-stop(70%, rgba(226, 229, 247, 0.925)));
  background: linear-gradient(180deg, whitesmoke 0%, rgba(226, 229, 247, 0.925) 70%);
  -webkit-box-shadow: 0px 10px 10px -4px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 10px 10px -4px rgba(0, 0, 0, 0.75);
  width: 100%;
  max-width: 100px;
  position: absolute;
  border-radius: 0 0 3px 3px;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.dropdown-content a {
  padding: .5em;
}

.dropdown-content a:nth-child(1) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.466);
  border-top: 2px solid #0d123f;
}

.dropdown-content .clickable:hover {
  color: #0f46ab;
}

.space {
  margin-bottom: 10px;
}

.bars {
  color: #767ba3;
}

.social-container {
  position: fixed;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 30;
}

.social-container i {
  padding: .2em;
  color: #1f3658;
  background: white;
  margin-bottom: .2em;
  border-radius: 2px 0 0 2px;
  display: block;
  text-align: center;
  outline: none;
  cursor: pointer;
}

.social-container i:hover {
  color: #0f46ab;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

/* Small devices (portrait tablets and phones, 600px and down) */
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 992px) {
  .toggleBtn {
    display: block;
  }
  .toggleBtn:hover .bars {
    color: #0d233f;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
  }
  nav {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
  .menu {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    width: 250px;
    right: 0;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 5em;
    right: -250px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    background: linear-gradient(-60deg, white, whitesmoke, #f1f1f1, #eaebec);
    -webkit-box-shadow: -11px 0px 5px -9px rgba(0, 0, 0, 0.171);
            box-shadow: -11px 0px 5px -9px rgba(0, 0, 0, 0.171);
  }
  .show-menu {
    right: 0;
  }
  .move-left {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    -webkit-transform: translateX(-250px);
            transform: translateX(-250px);
  }
  .menu-item {
    padding: 1.5em 1.5em;
  }
  .dropdown {
    padding: 1.5em 1.5em 0 1.5em;
  }
  .dropdown-content {
    position: relative;
    background: none;
    padding-top: .8em;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 150px;
  }
  .dropdown-content a {
    padding: .5em;
    border-bottom: 1px solid #0d123f;
  }
  .dropdown-content a:nth-child(1) {
    border-top: 2px solid #0d123f;
    border-bottom: 1px solid #0d123f;
  }
  .slideDown {
    visibility: visible;
    height: 95px;
  }
  .social-container {
    position: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 1.5em;
    -webkit-transform: translateY(80%);
            transform: translateY(80%);
  }
  .social-container i {
    padding: 1.5em .2em;
    margin: 0;
    background: none !important;
    color: #0d233f;
    outline: none;
    cursor: pointer;
  }
  .social-container i:hover {
    color: #0f46ab;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
  }
}

.footer {
  background: url(../img/contact-footer-bg.jpeg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}

.footer-bottom {
  background: #0d233f;
  color: #babdd1;
}

.footer-top {
  background: rgba(29, 54, 90, 0.945);
  color: #babdd1;
}

.footer-top .container {
  padding: 1em 3em;
}

.footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-form-container {
  width: 50%;
  padding-right: 3em;
}

.contact-form-container h2 {
  font-weight: 300;
  position: relative;
  margin-bottom: 0.3em;
}

.contact-info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 50%;
  padding-left: 3em;
}

.contact-info-container h2 {
  font-weight: 300;
  margin-bottom: .5em;
  color: white;
}

.contact-info-container p {
  font-size: .85em;
  line-height: 1.2;
}

.contact-info-container p:nth-child(2) {
  color: white;
}

.mani {
  width: 100px;
  margin-left: 1em;
  border-radius: 50%;
}

.logo-footer {
  width: 70px;
  opacity: .9;
  margin: 1em 0;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-contact-location, .footer-contact-phone, .footer-contact-email, .footer-contact-cell {
  padding: .3em 0;
}

.footer-contact-location i, .footer-contact-phone i, .footer-contact-email i, .footer-contact-cell i {
  color: white;
  padding-right: .3em;
}

.footer-contact-location {
  position: relative;
}

.footer-bottom p {
  font-size: .8em;
}

.footer-bottom .container {
  padding: 1em 3em;
}

.errorBox {
  color: red;
  font-size: .8em;
  padding-top: .5em;
  display: block;
}

.hidden {
  display: none;
}

.slogan-mani {
  color: white;
  font-weight: 300;
}

@media only screen and (max-width: 992px) {
  .footer-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-form-container, .contact-info-container {
    width: 100%;
    padding: 0;
  }
  .contact-form-container {
    margin-bottom: 3em;
  }
  .footer-logo {
    margin-bottom: 1em;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-logo img {
    margin: 0;
  }
  .logo-footer {
    padding-top: 1em;
  }
}

.about-title {
  position: absolute;
  top: 60px;
  right: -150px;
}

.about-title h1 {
  font-weight: 300;
  background: white;
  padding: .2em;
  font-size: 2.5em;
}

.about-text {
  padding-left: 1.5em;
  padding-bottom: 3em;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid white;
  border-bottom: 0;
}

.about {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media only screen and (max-width: 992px) {
  .about-photo {
    position: relative;
  }
  .about-photo img {
    width: 300px;
  }
  .about {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about-text {
    padding: 1.5em 0 1.5em 1.5em;
  }
  .about-title {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-text {
    padding: 1em 0;
  }
}

.listings-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sort-view-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pagination-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
}

.pagination-box span {
  color: #888;
  font-size: .9em;
  padding: .2em 0;
}

.pagination {
  list-style: none;
  display: inline-block;
  border-radius: 4px;
  margin-right: 1em;
}

.pagination li {
  display: inline;
}

.pagination li a {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  position: relative;
  float: left;
  padding: 4px 8px;
  margin-left: -1px;
  line-height: 1.5;
  text-decoration: none;
  background-color: #fff;
  font-size: .95em;
  color: #888;
  border: 1px solid #ccc;
}

.pagination li a:hover {
  background-color: #f2f2f2;
  color: #000;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
}

.pagination li:first-child a {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination li:last-child a {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination .active a {
  background-color: #f2f2f2;
  color: #000;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
}

.view-mode {
  margin-left: .5em;
}

.view-mode .view-mode-btn {
  outline: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  float: left;
  padding: 4px 8px;
  margin-left: -1px;
  line-height: 1.5;
  text-decoration: none;
  background-color: #fff;
  font-size: .95em;
  color: #888;
  border: 1px solid #ccc;
}

.view-mode .view-mode-btn:hover {
  background-color: #f2f2f2;
  color: #000;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
}

.view-mode .view-mode-btn:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.view-mode .view-mode-btn:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.sort-result select {
  outline: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  padding: 4px 8px;
  margin-left: -1px;
  line-height: 1.5;
  text-decoration: none;
  background-color: #fff;
  font-size: .95em;
  color: #888;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 32px;
}

.sort-result select option {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.card {
  display: block;
  height: auto;
  overflow: hidden;
  background-color: #fff;
  border-radius: 4px;
  color: #606060;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.16);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.card:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}

.listings-item-container-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  grid-gap: 10px;
  margin-top: 2em;
}

.listings-item-container-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
      grid-template-columns: auto;
  grid-gap: 20px;
  margin-top: 2em;
}

.col-grid {
  position: relative;
}

.col-list {
  width: 100%;
  padding: 0;
  position: relative;
  min-height: 1px;
  height: 100%;
}

.listing-grid-card {
  height: 100%;
}

.listing-grid-card p {
  text-align: left !important;
}

.listing-grid-card .listing-grid-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.listing-grid-card .listing-grid-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
  text-align: left;
}

.listing-grid-card .listing-grid-content h4 {
  font-weight: 600;
  padding-top: .5em;
}

.listing-grid-card .listing-grid-content .listing-grid-info-primary {
  font-weight: 500;
  padding: .5em 0;
  font-size: .95em;
}

.listing-grid-card .listing-grid-content .listing-grid-info-secondary {
  font-weight: 400;
  font-size: .85em;
}

.listing-grid-card .listing-grid-content .listing-grid-description {
  display: none;
}

.listing-grid-card .listing-grid-content .listing-grid-brokerage {
  font-weight: 100;
  font-size: .7em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1em;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.listing-grid-card .listing-grid-content .listing-grid-brokerage img {
  margin-right: .5em;
}

.listing-list-card {
  padding-bottom: 0;
  height: 280px;
}

.listing-list-card a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.listing-list-card .listing-list-img {
  width: 40%;
}

.listing-list-card .listing-list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.listing-list-card .listing-list-content {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px;
  text-align: left;
}

.listing-list-card .listing-list-content h4 {
  font-weight: 600;
  padding-top: .5em;
}

.listing-list-card .listing-list-content .listing-list-info-primary {
  font-weight: 500;
  padding: .5em 0;
  font-size: .95em;
}

.listing-list-card .listing-list-content .listing-list-info-secondary {
  font-weight: 400;
  font-size: .85em;
}

.listing-list-card .listing-list-content .listing-list-description {
  position: relative;
  font-weight: 300;
  font-size: .85em;
  overflow: hidden;
  padding: .6em 0;
  height: 90px;
  line-height: 1.5;
}

.listing-list-card .listing-list-content .listing-list-description::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 95%;
  left: 0;
  height: 35px;
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), white);
}

.listing-list-card .listing-list-content .listing-list-brokerage {
  font-weight: 100;
  font-size: .7em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1em;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.listing-list-card .listing-list-content .listing-list-brokerage img {
  margin-right: .5em;
}

.status-label {
  position: absolute;
  background: rgba(255, 0, 0, 0.8);
  padding: 7px 18px;
  color: white;
  top: 20px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 0;
  -webkit-box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.5);
}

.hidden {
  display: none;
}

.filter-listings-status {
  padding: 1em 0;
}

.filter-listings-status button {
  outline: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px 10px;
  font-size: 1.1em;
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
  .listings-header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .view-mode {
    margin-left: 0;
    margin-bottom: .2em;
  }
  .sort-view-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .listings-item-container-grid {
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
  }
}

/* Small devices (portrait tablets and phones, 768px and down) */
@media only screen and (max-width: 768px) {
  .listings-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sort-view-box {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
  .view-mode {
    margin: .2em 0;
  }
  .sort-result {
    width: 100%;
  }
  .sort-result select {
    width: 100%;
  }
  .listings-item-container-grid {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  .listing-list-card {
    padding-bottom: 0;
    height: 100%;
  }
  .listing-list-card a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .listing-list-card .listing-list-img {
    width: 100%;
  }
  .listing-list-card .listing-list-img img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .listing-list-card .listing-list-content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
    text-align: left;
  }
  .listing-list-card .listing-list-content h4 {
    font-weight: 600;
    padding-top: .5em;
  }
  .listing-list-card .listing-list-content .listing-list-info-primary {
    font-weight: 500;
    padding: .5em 0;
    font-size: .95em;
  }
  .listing-list-card .listing-list-content .listing-list-info-secondary {
    font-weight: 400;
    font-size: .85em;
  }
  .listing-list-card .listing-list-content .listing-list-description {
    font-weight: 300;
    font-size: .85em;
    overflow: hidden;
    padding: .6em 0;
    height: 90px;
    line-height: 1.5;
  }
  .listing-list-card .listing-list-content .listing-list-brokerage {
    font-weight: 100;
    font-size: .7em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1em;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .listing-list-card .listing-list-content .listing-list-brokerage img {
    margin-right: .5em;
  }
}

.search-bg {
  background: rgba(204, 214, 230, 0.91);
  -webkit-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.274);
          box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.274);
}

.mls-search-container input {
  border: 1px solid #a4b1c5;
}

.mls-search-container .input-address {
  position: relative;
}

.mls-search-container .input-address input {
  height: 45px;
  border-radius: 45px;
}

.mls-search-container .search-mls-btn {
  color: #555;
  outline: none;
  border: none;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #a2c4ff), to(#51678e));
  background: linear-gradient(to bottom, #a2c4ff 0, #51678e 100%);
  color: white;
  outline: none;
  cursor: pointer;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  border-radius: 38px;
  width: 38px;
  height: 38px;
  position: absolute;
  z-index: 1;
  right: 4px;
  top: 7px;
}

.mls-search-container .search-mls-btn:hover {
  background: #647ba3;
  background: linear-gradient(150deg, #a2c4ff 0, #51678e 100%);
  color: white;
}

.mls-search-container select {
  outline: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  padding: 4px 8px;
  margin-left: -1px;
  line-height: 1.5;
  text-decoration: none;
  background-color: #fff;
  font-size: .95em;
  color: #888;
  border: 1px solid #a4b1c5;
  border-radius: 4px;
  height: 32px;
}

.mls-search-container .search-details-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto auto;
      grid-template-columns: auto auto auto auto auto;
  -webkit-column-gap: 10px;
          column-gap: 10px;
}

.listings-result {
  padding-top: 30px;
}

/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 5px;
  width: 350px;
}

.autocomplete-items div {
  padding: 6px 10px;
  cursor: pointer;
  border-bottom: 1px solid #eeeeee;
  font-size: .85em;
  color: #555;
  font-family: sans-serif;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .search-details-container {
    -ms-grid-columns: auto auto !important;
        grid-template-columns: auto auto !important;
    -ms-grid-rows: auto auto auto !important;
        grid-template-rows: auto auto auto !important;
  }
  .search-details-container .input-group:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}

.services-row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2em 0;
  border-bottom: 1px solid #cecdcd;
}

.services-row:last-child {
  border-bottom: none;
}

.pl-1 {
  padding-left: 1.5em;
}

.pl-2 {
  padding-left: 2.5em;
}

.services-image-shade {
  position: absolute;
  width: 100%;
  height: 200px;
  z-index: 1;
}

.services-image-shade h1 {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-transform: uppercase;
  text-align: center;
}

.services-top-image {
  background: url(../img/services-top-image.jpeg);
  height: 270px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.buy-top-image {
  background: url(../img/buy-top-header.jpg);
  height: 270px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sell-top-image {
  background: url(../img/sell-top-header.jpg);
  height: 270px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.buy2-top-image {
  background: url(../img/top7.jpg);
  height: 270px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sell2-top-image {
  background: url(../img/top2.jpg);
  height: 270px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.services-headers {
  width: 16%;
  margin: auto 0;
  line-height: 1;
  font-family: "Playfair Display";
  color: #0f46ab;
}

.services-headers h2 {
  font-weight: 300;
  font-size: 1.8em;
  text-align: right;
}

.half-section-services {
  width: 42%;
}

.full-section-services {
  width: 84%;
}

.sell-bg {
  background: #ffffff;
}

.bold {
  color: #0f46ab;
  font-weight: 600;
}

.pt-sell {
  padding-top: 2em;
}

.light-header {
  font-weight: 400;
  padding-top: 2em;
  color: #0f46ab;
  text-align: center !important;
}

.calculator-header {
  font-family: "Playfair Display";
  color: #0f46ab;
  font-weight: 300;
  font-size: 1.8em;
  margin-bottom: .8em;
}

@media only screen and (max-width: 992px) {
  .services-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .half-section-services, .full-section-services {
    width: 100%;
  }
  .pl-2, .pl-1 {
    padding-left: 0;
  }
  .services-headers {
    width: 100%;
  }
  .services-headers h2 {
    text-align: left;
    padding-bottom: .7em;
  }
}

.images-single-listing-box {
  width: 100%;
}

.map {
  width: 30%;
  padding-left: 1em;
}

.building-info {
  padding: 2em 0;
}

.building-info h3 {
  font-weight: 300;
}

.description-map-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.description {
  width: 70%;
}

.single-page-description {
  font-size: .85em;
}

@media only screen and (max-width: 992px) {
  .description-map-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .map, .description {
    width: 100%;
    padding-left: 0;
  }
}

#wrapper {
  width: 900px;
  margin: 20px auto;
}

.data-container {
  margin-top: 20px;
}

.data-container ul {
  padding: 0;
  margin: 0;
}

.data-container li {
  margin-bottom: 5px;
  padding: 5px 10px;
  background: #eee;
  color: #666;
}

ul, li {
  list-style: none;
}

.paginationjs {
  line-height: 1.6;
  font-family: Marmelad, "Lucida Grande", Arial, "Hiragino Sans GB", Georgia, sans-serif;
  font-size: 14px;
  -webkit-box-sizing: initial;
          box-sizing: initial;
}

.paginationjs:after {
  display: table;
  content: " ";
  clear: both;
}

.paginationjs .paginationjs-pages {
  float: left;
}

.paginationjs .paginationjs-pages ul {
  float: left;
  margin: 0;
  padding: 0;
}

.paginationjs .paginationjs-go-button, .paginationjs .paginationjs-go-input, .paginationjs .paginationjs-nav {
  float: left;
  margin-left: 10px;
  font-size: 14px;
}

.paginationjs .paginationjs-pages li {
  float: left;
  border: 1px solid #ccc;
  border-right: none;
  list-style: none;
}

.paginationjs .paginationjs-pages li > a {
  min-width: 30px;
  height: 32px;
  line-height: 32px;
  display: block;
  background: #fff;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  text-align: center;
}

.paginationjs .paginationjs-pages li > a:hover {
  background: #eee;
}

.paginationjs .paginationjs-pages li.active {
  border: none;
}

.paginationjs .paginationjs-pages li.active > a {
  height: 34px;
  line-height: 34px;
  background: #aaa;
  color: #fff;
}

.paginationjs .paginationjs-pages li.disabled > a {
  opacity: .3;
}

.paginationjs .paginationjs-pages li.disabled > a:hover {
  background: 0 0;
}

.paginationjs .paginationjs-pages li:first-child, .paginationjs .paginationjs-pages li:first-child > a {
  border-radius: 3px 0 0 3px;
}

.paginationjs .paginationjs-pages li:last-child {
  border-right: 1px solid #aaa;
  border-radius: 0 3px 3px 0;
}

.paginationjs .paginationjs-pages li:last-child > a {
  border-radius: 0 3px 3px 0;
}

.paginationjs .paginationjs-go-input > input[type=text] {
  width: 30px;
  height: 28px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #aaa;
  padding: 0;
  font-size: 14px;
  text-align: center;
  vertical-align: baseline;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: initial;
          box-sizing: initial;
}

.paginationjs .paginationjs-go-button > input[type=button] {
  min-width: 40px;
  height: 30px;
  line-height: 28px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #aaa;
  text-align: center;
  padding: 0 8px;
  font-size: 14px;
  vertical-align: baseline;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #333;
  cursor: pointer;
  vertical-align: middle\9;
}

.paginationjs.paginationjs-theme-blue .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-blue .paginationjs-pages li {
  border-color: #289de9;
}

.paginationjs .paginationjs-go-button > input[type=button]:hover {
  background-color: #f8f8f8;
}

.paginationjs .paginationjs-nav {
  height: 30px;
  line-height: 30px;
}

.paginationjs .paginationjs-go-button, .paginationjs .paginationjs-go-input {
  margin-left: 5px\9;
}

.paginationjs.paginationjs-small {
  font-size: 12px;
}

.paginationjs.paginationjs-small .paginationjs-pages li > a {
  min-width: 26px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
}

.paginationjs.paginationjs-small .paginationjs-pages li.active > a {
  height: 26px;
  line-height: 26px;
}

.paginationjs.paginationjs-small .paginationjs-go-input {
  font-size: 12px;
}

.paginationjs.paginationjs-small .paginationjs-go-input > input[type=text] {
  width: 26px;
  height: 24px;
  font-size: 12px;
}

.paginationjs.paginationjs-small .paginationjs-go-button {
  font-size: 12px;
}

.paginationjs.paginationjs-small .paginationjs-go-button > input[type=button] {
  min-width: 30px;
  height: 26px;
  line-height: 24px;
  padding: 0 6px;
  font-size: 12px;
}

.paginationjs.paginationjs-small .paginationjs-nav {
  height: 26px;
  line-height: 26px;
  font-size: 12px;
}

.paginationjs.paginationjs-big {
  font-size: 16px;
}

.paginationjs.paginationjs-big .paginationjs-pages li > a {
  min-width: 36px;
  height: 34px;
  line-height: 34px;
  font-size: 16px;
}

.paginationjs.paginationjs-big .paginationjs-pages li.active > a {
  height: 36px;
  line-height: 36px;
}

.paginationjs.paginationjs-big .paginationjs-go-input {
  font-size: 16px;
}

.paginationjs.paginationjs-big .paginationjs-go-input > input[type=text] {
  width: 36px;
  height: 34px;
  font-size: 16px;
}

.paginationjs.paginationjs-big .paginationjs-go-button {
  font-size: 16px;
}

.paginationjs.paginationjs-big .paginationjs-go-button > input[type=button] {
  min-width: 50px;
  height: 36px;
  line-height: 34px;
  padding: 0 12px;
  font-size: 16px;
}

.paginationjs.paginationjs-big .paginationjs-nav {
  height: 36px;
  line-height: 36px;
  font-size: 16px;
}

.paginationjs.paginationjs-theme-blue .paginationjs-pages li > a {
  color: #289de9;
}

.paginationjs.paginationjs-theme-blue .paginationjs-pages li > a:hover {
  background: #e9f4fc;
}

.paginationjs.paginationjs-theme-blue .paginationjs-pages li.active > a {
  background: #289de9;
  color: #fff;
}

.paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled > a:hover {
  background: 0 0;
}

.paginationjs.paginationjs-theme-blue .paginationjs-go-button > input[type=button] {
  background: #289de9;
  border-color: #289de9;
  color: #fff;
}

.paginationjs.paginationjs-theme-green .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-green .paginationjs-pages li {
  border-color: #449d44;
}

.paginationjs.paginationjs-theme-blue .paginationjs-go-button > input[type=button]:hover {
  background-color: #3ca5ea;
}

.paginationjs.paginationjs-theme-green .paginationjs-pages li > a {
  color: #449d44;
}

.paginationjs.paginationjs-theme-green .paginationjs-pages li > a:hover {
  background: #ebf4eb;
}

.paginationjs.paginationjs-theme-green .paginationjs-pages li.active > a {
  background: #449d44;
  color: #fff;
}

.paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled > a:hover {
  background: 0 0;
}

.paginationjs.paginationjs-theme-green .paginationjs-go-button > input[type=button] {
  background: #449d44;
  border-color: #449d44;
  color: #fff;
}

.paginationjs.paginationjs-theme-yellow .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-yellow .paginationjs-pages li {
  border-color: #ec971f;
}

.paginationjs.paginationjs-theme-green .paginationjs-go-button > input[type=button]:hover {
  background-color: #55a555;
}

.paginationjs.paginationjs-theme-yellow .paginationjs-pages li > a {
  color: #ec971f;
}

.paginationjs.paginationjs-theme-yellow .paginationjs-pages li > a:hover {
  background: #fdf5e9;
}

.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active > a {
  background: #ec971f;
  color: #fff;
}

.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled > a:hover {
  background: 0 0;
}

.paginationjs.paginationjs-theme-yellow .paginationjs-go-button > input[type=button] {
  background: #ec971f;
  border-color: #ec971f;
  color: #fff;
}

.paginationjs.paginationjs-theme-red .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-red .paginationjs-pages li {
  border-color: #c9302c;
}

.paginationjs.paginationjs-theme-yellow .paginationjs-go-button > input[type=button]:hover {
  background-color: #eea135;
}

.paginationjs.paginationjs-theme-red .paginationjs-pages li > a {
  color: #c9302c;
}

.paginationjs.paginationjs-theme-red .paginationjs-pages li > a:hover {
  background: #faeaea;
}

.paginationjs.paginationjs-theme-red .paginationjs-pages li.active > a {
  background: #c9302c;
  color: #fff;
}

.paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled > a:hover {
  background: 0 0;
}

.paginationjs.paginationjs-theme-red .paginationjs-go-button > input[type=button] {
  background: #c9302c;
  border-color: #c9302c;
  color: #fff;
}

.paginationjs.paginationjs-theme-red .paginationjs-go-button > input[type=button]:hover {
  background-color: #ce4541;
}

.paginationjs .paginationjs-pages li.paginationjs-next {
  border-right: 1px solid #aaa \9;
}

.paginationjs .paginationjs-go-input > input[type=text] {
  line-height: 28px\9;
  vertical-align: middle\9;
}

.paginationjs.paginationjs-big .paginationjs-pages li > a {
  line-height: 36px\9;
}

.paginationjs.paginationjs-big .paginationjs-go-input > input[type=text] {
  height: 36px\9;
  line-height: 36px\9;
}
/*# sourceMappingURL=style.css.map */