/* // Small devices (landscape phones, 576px and up) */
/* // Medium devices (tablets, 768px and up) */
/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .mainClass {
    padding-left: 3rem;
    padding-right: 3rem; } }

/* // Extra large devices (large desktops, 1200px and up) */
/*
0-600px: phone
600-900px: tablet portrait
900-1200px:tablet landscape
1200-1800px: is where normal style applies
1800px + : big desktop


ORDER: Base + typography > general layout + grid > page layout > component
1em=16px

$breakpoint argument choices:
- phone
- tab-port
- tab-land
-big-desktop
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  /* font-size: 62.5%;   */
  /* 1rem = 10px; 10px/16px = 0.625 */
  font-size: 62.5%; }

body {
  box-sizing: border-box;
  overflow-x: hidden; }
  @media (max-width: 50.75em) {
    body {
      padding: 0; } }

.page-container {
  margin: 0 auto;
  max-width: 152.5rem; }

a[href^="tel"] {
  color: inherit;
  /* Inherit text color of parent element. */
  text-decoration: none;
  /* Remove underline. */
  /* Additional css `propery: value;` pairs here */ }

body {
  font-size: 1.6rem; }

h2 {
  padding-bottom: 0.232rem;
  /*text-align: center;*/
  width: 100%;
  font-size: 4.3rem;
  display: inline-block;
  font-weight: 800; }
  @media (max-width: 50.75em) {
    h2 {
      font-size: 2rem; } }

.error-msg {
  color: red;
  font-size: 1.3rem;
  margin-top: -1rem; }

.Button {
  font-size: 1.2rem;
  font-weight: 500;
  padding: .4rem 2rem;
  display: inline-block;
  color: #0E2248;
  text-decoration: none;
  border: .2rem solid #0E2248;
  margin-top: 0; }
  .Button:hover {
    text-decoration: none;
    color: #0E2248; }
  @media (max-width: 50.75em) {
    .Button {
      font-size: 1.2rem;
      padding: .2rem 1rem; } }

.btn1 {
  position: relative;
  /*top: 170px;*/
  top: 9rem;
  right: 4rem;
  transform: scale(0.8); }

.btn {
  font-size: 1.6rem; }
  .btn:link, .btn:visited {
    padding: 1rem 1rem; }

.btn4 {
  font-size: 1rem; }

.search-btn {
  font-weight: 600;
  width: 100%;
  color: white;
  background-color: #1d75bb;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: none; }
  .search-btn:hover {
    background-color: #155284; }

.favIcon {
  position: absolute;
  right: 2px;
  top: 2px;
  z-index: 100; }

.myButton {
  border: none;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  display: inline-block;
  color: white;
  background-color: #477094;
  text-decoration: none; }
  .myButton:hover {
    text-decoration: none;
    color: white; }

.my-modal {
  display: flex;
  /* Hidden by default */
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  /* Stay in place */
  z-index: 20000;
  /* Sit on top */
  padding-top: 2%;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  visibility: hidden; }
  .my-modal-content {
    position: relative;
    background-color: #fefefe;
    border: 1px solid #888;
    width: 40rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
    @media (max-width: 37.5em) {
      .my-modal-content {
        width: 100% !important;
        position: fixed;
        bottom: 0;
        -webkit-animation-name: slideIn;
        -webkit-animation-duration: 0.4s;
        animation-name: slideIn;
        animation-duration: 0.4s; } }
    @media (max-width: 50.75em) {
      .my-modal-content {
        width: 40rem; } }
    .my-modal-content-header {
      font-size: 2rem;
      font-weight: 600; }
    .my-modal-content-body {
      padding: 1rem 1rem; }
    .my-modal-content-footer {
      text-align: right;
      padding-top: 1rem; }
    .my-modal-content__btn {
      border-radius: 50%;
      position: absolute;
      right: -.8rem;
      top: -.8rem;
      height: 2rem;
      background-color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 2rem;
      box-shadow: inset 0 0 0.2rem 0 silver;
      cursor: pointer;
      font-size: 1.2rem;
      font-weight: 600; }
      @media (max-width: 37.5em) {
        .my-modal-content__btn {
          top: 0;
          right: 0; } }
      .my-modal-content__btn:hover, .my-modal-content__btn:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer; }

/* Add Animation */
@-webkit-keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0; }
  to {
    bottom: 0;
    opacity: 1; } }

@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0; }
  to {
    bottom: 0;
    opacity: 1; } }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/**********
   Pop Up
**********/
.popup {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 16;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media (max-width: 37.5em) {
    .popup {
      align-items: flex-start;
      padding-top: 10vh; } }

.popup-content {
  position: relative;
  padding-top: 2rem;
  background-color: white;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  /* -webkit-animation-name: slideInDown; */
  -webkit-animation-duration: 1.2s;
  /* animation-name: slideInDown; */
  animation-duration: 1.2s;
  /* animation-timing-function:linear; */ }
  .popup-content__close-btn {
    border-radius: 50%;
    position: absolute;
    right: -1rem;
    top: -1rem;
    height: 2.6rem;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.6rem;
    box-shadow: inset 0 0 .2rem 0 silver;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600; }
    .popup-content__close-btn:hover {
      color: red; }
  .popup-content__address {
    font-size: 1.5rem;
    color: #777;
    text-align: center;
    padding-top: 1.2rem; }
  .popup-content__heading {
    text-transform: uppercase;
    color: #155284;
    font-size: 3rem;
    font-family: "Times New Roman", Times, serif;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .3rem; }
  .popup-content__news-1 {
    font-weight: 500;
    text-align: center;
    line-height: 3.5rem;
    font-size: 2rem;
    margin-top: 1rem;
    text-transform: uppercase;
    font-family: "Times New Roman", Times, serif;
    letter-spacing: .3rem; }
  .popup-content__news-2 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase; }
  .popup-content__img {
    width: 100%;
    max-width: 90vw;
    height: 80vh;
    object-fit: cover; }
    @media (max-width: 37.5em) {
      .popup-content__img {
        height: 70vh; } }
  .popup-content__btn {
    text-decoration: none;
    width: 100%;
    display: block;
    background-color: #155284;
    color: white;
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    padding: 1.3rem; }
    .popup-content__btn:hover {
      color: white;
      background-color: #1d75bb;
      text-decoration: none; }

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0; }
  to {
    top: 0;
    opacity: 1; } }

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0; }
  to {
    top: 0;
    opacity: 1; } }

.entity-card {
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: .25rem; }
  .entity-card__img {
    width: 100%;
    height: 18rem;
    object-fit: cover; }
  .entity-card__btn {
    display: block; }
  .entity-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .4rem; }
    .entity-card-body__btn {
      width: 25px;
      height: 25px;
      border-color: transparent;
      outline-color: transparent;
      cursor: pointer; }
  .entity-card-info {
    width: 91%; }
    .entity-card-info__name {
      font-weight: 700;
      margin-bottom: 0;
      font-size: 1.8rem;
      text-align: left;
      overflow: hidden;
      text-overflow: ellipsis; }
    .entity-card-info__address {
      font-weight: 600;
      font-size: 1.4rem;
      margin-top: -2px;
      margin-bottom: 4px;
      text-align: left; }

.filter-top {
  text-align: right; }
  .filter-top__btn {
    color: #1d75bb !important;
    cursor: pointer;
    font-size: 1.2rem; }

.filter-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem; }
  .filter-header__text {
    font-size: 1.6rem;
    font-weight: 500;
    margin-left: .6rem; }
  .filter-header__img {
    width: 3rem; }

.filter-property-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; }
  .filter-property-type label {
    width: 32.3333333%; }
    .filter-property-type label a {
      display: inline-block;
      width: 100%; }
  .filter-property-type__btn {
    background-color: #f0eeee;
    text-align: center;
    color: #1d75bb !important;
    padding: .5rem 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: .3rem; }
    .filter-property-type__btn:hover {
      background-color: #155284;
      border: 0;
      color: white !important; }
    .filter-property-type__btn.active {
      background-color: #1d75bb;
      color: white !important;
      border: none; }
    .filter-property-type__btn input[type=radio] {
      opacity: 0;
      float: left; }

.filter-price {
  font-size: 1.2rem !important;
  background-color: #f0eeee;
  border: none;
  height: 3rem !important; }

.filter-range {
  display: flex;
  align-items: flex-start;
  list-style: none;
  position: relative;
  z-index: 0;
  justify-content: space-between; }
  .filter-range-show:before {
    background-color: #e6f7ff; }
  .filter-range li {
    flex: 1;
    display: block;
    position: relative;
    min-width: 3.6rem;
    max-width: 7rem;
    color: #3c475b;
    text-align: center;
    cursor: pointer;
    box-sizing: content-box; }
    .filter-range li > span {
      display: block;
      margin: 0 auto .8rem;
      font-weight: 700;
      width: 4rem;
      height: 4rem;
      border: .2rem solid transparent;
      border-radius: 50%;
      font-size: 1.4rem;
      line-height: 3.6rem;
      text-decoration: none;
      box-sizing: border-box;
      /* color: var(--color-blue-darker); */ }
      .filter-range li > span:hover {
        background-color: white;
        border-color: #1d75bb;
        color: #1d75bb; }
    .filter-range li input {
      position: absolute;
      clip: rect(1px, 1px, 1px, 1px); }
    .filter-range li:not(:last-child)::before {
      position: absolute;
      top: .6rem;
      width: 6.2rem;
      height: 2.8rem;
      content: "";
      z-index: -1; }
    .filter-range li .hide {
      opacity: 0; }

div.price-container,
div.property-type-container {
  display: flex;
  align-items: center;
  justify-content: space-between; }

div.property-type-container {
  color: #1d75bb;
  flex-wrap: wrap; }

.price-select {
  width: 80%; }

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  #textOnFilter {
    font-size: 4rem; }
  .filter--option {
    font-size: 2rem; } }

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #textOnFilter {
    font-size: 4rem; }
  .filter--option {
    flex-direction: row;
    font-size: 2rem; } }

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #textOnFilter {
    font-size: 4rem; }
  .filter--option {
    flex-direction: row;
    font-size: 2rem; } }

/* // Extra large devices (large desktops, 1200px and up) */
/* The Modal (background) */
.light-box-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  padding-top: 5rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black; }
  .light-box-modal__btn {
    color: white;
    position: absolute;
    top: 1rem;
    right: 2.5rem;
    font-size: 3.5rem;
    font-weight: bold; }
    .light-box-modal__btn:hover, .light-box-modal__btn:focus {
      color: #999;
      text-decoration: none;
      cursor: pointer; }
  .light-box-modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 120rem; }

/* Modal Content */
/* Hide the slides by default */
.mySlides {
  display: none; }
  .mySlides__img {
    width: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transform: scale(1); }
  .mySlides__img.zoom {
    transform: scale(1.5);
    cursor: zoom-out !important; }

/* Next & previous buttons */
.prev {
  left: 2rem; }

.next {
  right: 2rem; }

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 1.6rem;
  margin-top: -5rem;
  color: white !important;
  font-weight: bold;
  font-size: 2rem;
  transition: 0.6s ease;
  border-radius: 0 .3rem .3rem 0;
  user-select: none;
  -webkit-user-select: none; }

/* Position the "next button" to the right */
/* .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  } */
/* On hover, add a black background color with a little bit see-through */
/* .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  } */
/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 1.4rem;
  padding: .8rem 1.2rem;
  position: absolute;
  top: -3rem;
  left: 0;
  font-weight: 500; }

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: .2rem 1.6rem;
  color: white; }

img.demo {
  opacity: 0.6; }

.active,
.demo:hover {
  opacity: 1; }

img.hover-shadow {
  transition: 0.3s; }

.hover-shadow:hover {
  box-shadow: 0 0.4rem 0.8rem 0 rgba(0, 0, 0, 0.2), 0 0.6rem 2rem 0 rgba(0, 0, 0, 0.19); }

.slide-carousel {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background-color: black; }
  .slide-carousel-thumbnails {
    padding-top: 2rem;
    position: relative;
    display: flex;
    background-color: black;
    transition: transform .5s ease 0s; }
    .slide-carousel-thumbnails__item {
      width: 6rem;
      height: 6rem;
      margin-right: 1rem;
      opacity: .5;
      cursor: pointer; }
    .slide-carousel-thumbnails__overlay {
      width: 6rem;
      height: 6rem;
      background-color: transparent;
      position: absolute;
      top: 0;
      left: 0;
      cursor: pointer; }

.slide-active {
  opacity: 1;
  border: 1px solid white; }

.slide-cover {
  width: 6rem;
  height: 6rem;
  position: absolute;
  background-color: yellow;
  top: 0;
  opacity: .2; }

/* end of lightbox */
.share-link {
  color: #515b6e; }
  .share-link:hover {
    text-decoration: none; }

.bottom-line svg {
  width: 19px;
  height: 19px;
  margin-bottom: 3px;
  margin-right: 10px; }

.checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1.5rem;
  width: 1.5rem;
  background-color: #fff;
  border-radius: .3rem;
  border: 1px solid #777; }
  .checkmark:after {
    content: "";
    position: absolute;
    left: .5rem;
    top: .2rem;
    width: .5rem;
    height: 1rem;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: none; }

.checkbox-container {
  font-size: 1.2rem;
  display: block;
  position: relative;
  padding-left: 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 0; }
  .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
    .checkbox-container input:checked ~ .checkmark {
      background-color: #1d75bb;
      border: none; }
      .checkbox-container input:checked ~ .checkmark:after {
        display: block; }

.grid-row {
  display: flex;
  flex-wrap: wrap; }

.grid-col-1-of-2 {
  flex-basis: 50%;
  padding: 0 1.5rem; }
  @media (max-width: 64em) {
    .grid-col-1-of-2 {
      flex-basis: 50%;
      padding: 0; } }
  @media (max-width: 50.75em) {
    .grid-col-1-of-2 {
      flex-basis: 50%;
      padding: 0; } }
  @media (max-width: 37.5em) {
    .grid-col-1-of-2 {
      flex-basis: 100%;
      padding: 0; } }

.grid-col-1-of-3 {
  flex-basis: 33.33333333%;
  padding: 1rem 1rem; }
  @media (max-width: 64em) {
    .grid-col-1-of-3 {
      flex-basis: 33.33333333%; } }
  @media (max-width: 50.75em) {
    .grid-col-1-of-3 {
      flex-basis: 50%; } }
  @media (max-width: 37.5em) {
    .grid-col-1-of-3 {
      flex-basis: 100%; } }

.grid-col-1-of-4 {
  flex-basis: 25%;
  padding: 0 1.5rem; }
  @media (max-width: 64em) {
    .grid-col-1-of-4 {
      flex-basis: 50%;
      padding: .75rem 1.5rem; } }
  @media (max-width: 50.75em) {
    .grid-col-1-of-4 {
      flex-basis: 50%; } }
  @media (max-width: 37.5em) {
    .grid-col-1-of-4 {
      flex-basis: 100%; } }

/* Slideshow container */
.slideshow-container {
  position: relative;
  padding: 0 3rem;
  margin: auto;
  /* Next & previous buttons */
  /* Position the "next button" to the right */ }
  .slideshow-container img {
    object-fit: cover;
    width: 100%;
    height: 80vh; }
    @media (max-width: 50.75em) {
      .slideshow-container img {
        height: 40vh; } }
  @media (max-width: 50.75em) {
    .slideshow-container {
      padding: 0 1rem; } }
  .slideshow-container-prev__btn, .slideshow-container-next__btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white !important;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none; }
    @media (max-width: 37.5em) {
      .slideshow-container-prev__btn:hover, .slideshow-container-next__btn:hover {
        background-color: rgba(0, 0, 0, 0.8); } }
  .slideshow-container-prev__btn {
    left: 5rem;
    border-radius: 3px 0 0 3px; }
    @media (max-width: 37.5em) {
      .slideshow-container-prev__btn {
        left: 1rem; } }
  .slideshow-container-next__btn {
    right: 5rem;
    border-radius: 3px 0 0 3px; }
    @media (max-width: 37.5em) {
      .slideshow-container-next__btn {
        right: 1rem; } }
  .slideshow-container-pager {
    display: none;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%);
    /* The dots/bullets/indicators */ }
    @media (max-width: 50.75em) {
      .slideshow-container-pager {
        bottom: -.3rem; } }
    .slideshow-container-pager__dot {
      cursor: pointer;
      height: 15px;
      width: 15px;
      margin: 0 2px;
      background-color: transparent;
      border: .2rem solid white;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease; }
      .slideshow-container-pager__dot.dot-active, .slideshow-container-pager__dot:hover {
        background-color: white; }

/* Fading animation */
.slide-fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: slide-fade-in;
  animation-duration: 1.5s; }

@-webkit-keyframes slide-fade-in {
  from {
    opacity: .4; }
  to {
    opacity: 1; } }

@keyframes slide-fade-in {
  from {
    opacity: .4; }
  to {
    opacity: 1; } }

.slides {
  display: none;
  position: relative; }
  .slides__link {
    display: block; }
  .slides > img {
    vertical-align: middle;
    height: 80vh;
    width: 100%;
    object-fit: cover; }
    @media (max-width: 50.75em) {
      .slides > img {
        height: 30vh !important;
        width: 100% !important; } }
    .slides > img.lg-slide {
      height: 80vh; }
    .slides > img.md-slide {
      height: 50vh; }
  .slides-toolbar {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    bottom: 1rem;
    left: 1rem;
    list-style: none; }
    .slides-toolbar li {
      background-color: white; }
    .slides-toolbar li > button {
      display: flex;
      align-items: center;
      width: 16rem;
      padding: .8rem 1.4rem;
      background-color: white; }
    .slides-toolbar__count {
      background-color: #d0d3d9;
      border-radius: 50%;
      width: 2rem;
      height: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: .3rem; }
    .slides-toolbar__icon {
      width: 2rem !important;
      height: 2rem !important;
      margin-right: .3rem !important; }

.isFavourite {
  background-image: url("../img/starFilled.png"); }

.isNotFavourite {
  background-image: url("../img/starUnfilled.png"); }

.top-navigation {
  max-width: 152.5rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding-left: 6rem;
  padding-right: 6rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: sticky;
  z-index: 2;
  top: 0;
  background-color: #0C2340; }
  @media (max-width: 50.75em) {
    .top-navigation {
      flex-wrap: wrap;
      padding-left: 1rem;
      padding-right: 1rem; } }
  .top-navigation-brand {
    flex-basis: 33.333333%; }
    @media (max-width: 50.75em) {
      .top-navigation-brand {
        flex-basis: 50%; } }
  .top-navigation-toggle {
    display: none; }
    @media (max-width: 50.75em) {
      .top-navigation-toggle {
        display: flex;
        justify-content: flex-end;
        flex-basis: 50%; } }
    .top-navigation-toggle__btn {
      display: flex;
      color: rgba(0, 0, 0, 0.5);
      border-color: rgba(0, 0, 0, 0.1);
      border-width: .1rem;
      border-style: solid;
      width: 3.5rem;
      height: 3.5rem;
      justify-content: center;
      align-items: center; }
  .top-navigation-middle-menu {
    flex-basis: 33.333333%;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media (max-width: 50.75em) {
      .top-navigation-middle-menu {
        display: none;
        flex-basis: 100%;
        padding: 1rem .5rem 0 .5rem; } }
    .top-navigation-middle-menu-item {
      color: white;
      font-weight: 600; }
      @media (max-width: 50.75em) {
        .top-navigation-middle-menu-item {
          padding: .5rem;
          display: block;
          border-bottom: 1px solid #ccc; } }
      @media (max-width: 50.75em) {
        .top-navigation-middle-menu-item:first-child {
          border-top: 3px solid #155284; } }
      .top-navigation-middle-menu-item:hover {
        text-decoration: none;
        color: white; }
  .top-navigation-right-menu {
    flex-basis: 33.333333%;
    list-style: none;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center; }
    @media (max-width: 50.75em) {
      .top-navigation-right-menu {
        display: none;
        flex-basis: 100%;
        justify-content: flex-start;
        padding: 1rem .5rem 0 .5rem; } }

#toggle-btn {
  font-size: 2.5rem; }

/* Footer CSS */
.footer {
  background-color: #faf9f9; }
  .footer-link {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none; }
    .footer-link:hover {
      text-decoration: none;
      cursor: pointer; }
  .footer-top {
    max-width: 152.5rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-left: 7%;
    padding-right: 7%;
    padding-top: 3rem;
    padding-bottom: 6rem; }
    @media (max-width: 64em) {
      .footer-top {
        padding-left: 1rem;
        padding-right: 1rem; } }
    .footer-top-item {
      padding: 1rem; }
      @media (max-width: 50.75em) {
        .footer-top-item {
          flex-basis: 33.333333%; } }
      @media (max-width: 37.5em) {
        .footer-top-item {
          flex-basis: 100%;
          padding-left: 0;
          padding-right: 0; } }
    .footer-top #line2 {
      font-weight: 600;
      font-size: 2.5rem;
      margin-bottom: 2.8rem; }
      @media (max-width: 50.75em) {
        .footer-top #line2 {
          margin-bottom: .5rem; } }
    .footer-top #line1 {
      font-weight: 500; }
    .footer-top .branch {
      font-weight: 900;
      font-size: 1.5rem; }
    .footer-top .address {
      margin-bottom: 0;
      font-weight: 500;
      color: rgba(0, 0, 0, 0.5); }
    .footer-top .icons img {
      width: 3rem;
      height: auto;
      background-color: inherit; }
  .footer-bottom {
    background: #eeeeee; }
    .footer-bottom-inner {
      max-width: 152.5rem;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      height: auto !important;
      padding: 1rem 3rem;
      align-items: center !important;
      font-size: 1.2rem;
      color: rgba(0, 0, 0, 0.5); }
      @media (max-width: 50.75em) {
        .footer-bottom-inner {
          padding: 1.5rem; } }
      .footer-bottom-inner-item {
        flex-basis: 50%; }
        @media (max-width: 37.5em) {
          .footer-bottom-inner-item {
            flex-basis: 100%; } }
      .footer-bottom-inner ul {
        margin: 0 !important; }
        .footer-bottom-inner ul li {
          display: inline;
          margin: 0 !important; }

#company-wechat:hover {
  position: relative; }
  #company-wechat:hover:after {
    content: url(../img/Company-QRCode.jpg);
    display: block;
    position: absolute;
    left: 1rem;
    bottom: 1rem; }

.second-slider {
  padding: 0 3rem;
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 50.75em) {
    .second-slider {
      padding: 0; } }
  @media (max-width: 37.5em) {
    .second-slider {
      padding-top: .25rem;
      padding-left: .5rem; } }
  .second-slider-item {
    flex-basis: 20%;
    padding: .25rem 0; }
    .second-slider-item-label {
      background: #0C2340;
      color: white;
      text-align: center; }
    @media (max-width: 37.5em) {
      .second-slider-item {
        flex-basis: 50%; } }
    .second-slider-item:not(:last-child) {
      padding-right: 0.5rem; }
    .second-slider-item img {
      height: 23rem;
      width: 100%;
      object-fit: cover; }
      @media (max-width: 50.75em) {
        .second-slider-item img {
          height: 15rem; } }
      @media (max-width: 37.5em) {
        .second-slider-item img {
          height: 18rem; } }

.member-service {
  display: flex;
  flex-wrap: wrap;
  padding: 0 3rem; }
  @media (max-width: 50.75em) {
    .member-service {
      padding: 0;
      margin-top: .25rem; } }
  @media (max-width: 37.5em) {
    .member-service {
      padding: 0;
      margin-top: .25rem; } }
  .member-service button {
    height: 3.4rem;
    background-color: #1d75bb;
    text-align: center;
    color: white !important;
    padding: .5rem 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: .3rem;
    border: 0; }
    .member-service button:hover {
      background-color: #155284;
      border: 0;
      color: white !important; }
    .member-service button.active {
      background-color: #1d75bb;
      color: white !important;
      border: none; }
  .member-service-left {
    flex-basis: 50%;
    padding-right: .25rem; }
    @media (max-width: 37.5em) {
      .member-service-left {
        flex-basis: 100%;
        margin-right: 0;
        margin-bottom: .5rem;
        background-size: contain; } }
    .member-service-left-inner {
      display: flex;
      flex-direction: column;
      height: 23rem;
      padding-top: 5%;
      padding-left: 5%;
      background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/become-vip-700w.jpg);
      color: white;
      background-size: cover; }
      .member-service-left-inner-btn {
        padding-top: 4.4rem; }
        @media (max-width: 37.5em) {
          .member-service-left-inner-btn {
            padding-top: .4rem; } }
      .member-service-left-inner h3 {
        letter-spacing: 0.25rem;
        font-size: 2rem;
        font-weight: bold;
        color: white; }
      .member-service-left-inner h4 {
        letter-spacing: 0.25rem;
        font-size: 1.5rem;
        display: inline-block;
        font-weight: 400;
        color: white; }
  .member-service-right {
    flex-basis: 50%;
    padding-left: .25rem; }
    @media (max-width: 37.5em) {
      .member-service-right {
        flex-basis: 100%;
        margin-left: 0;
        padding: 0; } }
    .member-service-right-inner {
      height: 23rem;
      padding-top: 5%;
      padding-left: 5%;
      background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/subscription-w700.jpg);
      color: white;
      background-size: cover; }
      .member-service-right-inner-form {
        display: flex;
        flex-wrap: wrap;
        align-items: start;
        justify-content: left;
        padding-top: 2rem; }
        .member-service-right-inner-form__error {
          color: red;
          font-size: 1.6rem;
          margin-left: 1rem; }
        @media (max-width: 37.5em) {
          .member-service-right-inner-form-email {
            width: 100%; } }
        .member-service-right-inner-form-email input {
          width: 30rem !important;
          height: 3.4rem;
          border-radius: .5rem;
          margin-right: 1rem; }
          @media (max-width: 50.75em) {
            .member-service-right-inner-form-email input {
              width: 26rem !important; } }
          @media (max-width: 37.5em) {
            .member-service-right-inner-form-email input {
              flex-basis: 100%;
              width: 90% !important; } }
      .member-service-right-inner h3 {
        letter-spacing: 0.25rem;
        font-size: 2rem;
        font-weight: bold; }
      .member-service-right-inner h4 {
        letter-spacing: 0.25rem;
        font-size: 1.5rem;
        font-weight: 400; }

/**************
 VIDEO SECTION
***************/
.video-container {
  text-align: center;
  margin-top: 5rem;
  display: flex;
  padding-left: 1.5rem;
  padding-right: 1.5rem; }

.video {
  display: block;
  margin: auto;
  height: 40rem;
  flex-basis: 50%; }
  @media (max-width: 50.75em) {
    .video {
      flex-basis: 100%;
      height: 25rem; } }

/***************
Partner Section
***************/
.partner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  padding: 1rem 1.5rem;
  margin-top: 4rem; }

.partner-logo {
  padding-top: 3rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  margin: 3rem 10rem; }
  @media (max-width: 50.75em) {
    .partner-logo {
      margin: 1rem 1rem; } }
  .partner-logo-item {
    display: flex;
    align-items: center;
    flex-basis: 14.2857%; }
    @media (max-width: 50.75em) {
      .partner-logo-item {
        flex-basis: 33.333333%; } }
    .partner-logo-item__img {
      max-width: 100%; }

.vpi-app {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 3rem 10rem; }
  @media (max-width: 50.75em) {
    .vpi-app {
      margin: 1rem 1rem; } }
  .vpi-app-left {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media (max-width: 50.75em) {
      .vpi-app-left {
        flex-basis: 100%; } }
  .vpi-app-right {
    flex-basis: 50%; }
    @media (max-width: 50.75em) {
      .vpi-app-right {
        flex-basis: 100%; } }

/**************
Headings Styles
***************/
#partner-paragraph {
  font-size: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 50em;
  line-height: 2; }

/****************************
APP SECTION
*****************************/
.app-container {
  width: 100%;
  height: 40rem;
  margin-top: 5rem;
  text-align: left;
  padding-top: 5%;
  padding-left: 3rem;
  padding-right: 3rem; }
  .app-container .col-1-of-2 p {
    font-size: 1.25rem;
    font-weight: 500;
    color: black;
    line-height: 1.75rem;
    letter-spacing: .1rem; }

#sub-line {
  color: #3869B9; }

.sub-heading-4 {
  padding-left: 2.5rem; }

.Grid {
  width: 50%;
  transform: translateY(-7rem);
  text-align: right; }

.app-img {
  height: 40rem; }

.downloadBtn {
  float: left;
  /* width: 15rem;*/
  height: 6.8rem; }

/***************************************ABOUT SECTION Section 1&2**************************************************/
.main-img {
  width: 100%;
  height: 55%;
  padding-left: 3rem;
  padding-right: 3rem; }
  @media (max-width: 50.75em) {
    .main-img {
      padding-left: 1.5rem;
      padding-right: 1.5rem; } }

.img-1 {
  width: 100%;
  height: 55%; }

/*****section1****/
.section-1 {
  margin-bottom: 7rem;
  padding: 0 30%; }
  @media (max-width: 64em) {
    .section-1 {
      padding-left: 1.5rem;
      padding-right: 1.5rem; } }
  @media (max-width: 50.75em) {
    .section-1 {
      padding-left: 1.5rem;
      padding-right: 1.5rem; } }

#sub-line {
  color: #3869B9; }

#paragraph-1 {
  text-align: center;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.5);
  line-height: 2.61rem;
  letter-spacing: 1px; }
  @media (max-width: 64em) {
    #paragraph-1 {
      padding: 0 15rem; } }
  @media (max-width: 50.75em) {
    #paragraph-1 {
      font-size: 1.6rem;
      line-height: 1.6;
      padding: 0; } }

#heading-1 {
  text-align: center;
  margin-top: 4rem; }

/******section-2*******/
.section-2 {
  padding-top: 2%;
  padding-bottom: 2%;
  background: #F5F5F5;
  width: 100%;
  height: 55%;
  font-family: Helvetica, sans-serif; }
  .section-2-text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%; }
    @media (max-width: 37.5em) {
      .section-2-text {
        padding: 1% 1.5rem; } }
  @media (max-width: 50.75em) {
    .section-2 {
      padding: 1% 1.5rem; } }

#paragraph-2 {
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  line-height: 2.61rem;
  letter-spacing: 1px; }
  @media (max-width: 50.75em) {
    #paragraph-2 {
      font-size: 1.6rem;
      padding-left: 0; } }

.vid-container {
  transform: translateY(-3rem); }

.vid-row {
  object-fit: cover;
  width: 95%;
  height: 25rem;
  border: none; }
  @media (max-width: 50.75em) {
    .vid-row {
      margin-top: 0.5rem;
      width: 100%; } }

/************************************************CARDS SECTION 3*******************************************************************/
.service {
  padding: 3rem; }
  @media (max-width: 64em) {
    .service {
      padding: 3rem; } }
  @media (max-width: 50.75em) {
    .service {
      padding: 3rem 0; } }
  .service-card {
    color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-content: space-between;
    align-items: center;
    perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 49rem;
    background-color: #F5F5F5;
    box-shadow: 0.1rem 0.3rem 0.2rem #99999957;
    border-radius: 1rem;
    border: none;
    margin-bottom: 5%;
    padding-top: 8%; }
    @media (max-width: 50.75em) {
      .service-card {
        height: 45rem; } }
    .service-card h4 {
      font-size: 2.2rem;
      color: black; }
      @media (max-width: 64em) {
        .service-card h4 {
          font-size: 1.6rem; } }
    .service-card__details {
      width: 80%;
      text-align: center;
      padding-top: 2rem; }
    .service-card__paragrah {
      padding-top: .5rem;
      font-size: 1.6rem;
      text-align: center; }
      @media (max-width: 50.75em) {
        .service-card__paragrah {
          font-size: 1.6rem; } }
    .service-card__btn {
      height: 10%; }
    .service-card__icon {
      height: 40%; }

.sub-heading-4 {
  padding-left: 2.5rem; }
  @media (max-width: 50.75em) {
    .sub-heading-4 {
      text-align: center; } }

.team {
  padding: 3rem; }
  @media (max-width: 64em) {
    .team {
      padding: 1% 3%; } }
  @media (max-width: 50.75em) {
    .team {
      padding: 1% 1rem; } }
  .team-inner {
    padding: 0 10rem 0 12rem; }
    @media (max-width: 64em) {
      .team-inner {
        padding: 0 1rem; } }
    @media (max-width: 50.75em) {
      .team-inner {
        padding: 0 1rem; } }
    @media (max-width: 37.5em) {
      .team-inner {
        padding: 0; } }
  .team p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 2.25rem;
    letter-spacing: 1px; }
  .team-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
    @media (max-width: 37.5em) {
      .team-text {
        margin-top: 2rem; } }
  .team-images {
    display: flex;
    flex-direction: column; }
    .team-images-1 {
      display: flex;
      justify-content: flex-start; }
    .team-images-2 {
      display: flex;
      padding-left: 10.5rem;
      margin-top: .5rem; }
      @media (max-width: 50.75em) {
        .team-images-2 {
          padding-left: 0; } }
    .team-images__img {
      width: 10rem;
      height: 12rem;
      background-size: cover;
      background-position: center; }
      .team-images__img:not(:first-child) {
        margin-left: .5rem; }
      @media (max-width: 37.5em) {
        .team-images__img {
          width: 33.3333%; } }

/************************************************
R U READY FORM SECTION 5
*****************************************************/
.career {
  padding: 3rem;
  text-align: left;
  color: white;
  font-family: Helvetica, sans-serif;
  margin-bottom: 5rem; }
  @media (max-width: 50.75em) {
    .career {
      padding: 3rem 1rem; } }
  @media (max-width: 37.5em) {
    .career {
      padding: 1rem; }
      .career img {
        width: 100%; }
      .career p {
        font-size: 1.25rem; } }
  .career-heading {
    padding: 0 !important;
    background: #1d75bb;
    display: flex;
    flex-direction: column; }
    .career-heading-inner {
      padding: 3rem; }
      .career-heading-inner h1 {
        color: #79ceff;
        font-size: 3.5rem; }
      .career-heading-inner p {
        font-size: 1.6rem; }
      .career-heading-inner__btn {
        background-color: #79ceff;
        text-align: center;
        color: white !important;
        padding: .5rem 1rem;
        font-size: 1.4rem;
        font-weight: 600;
        cursor: pointer;
        border-radius: .3rem;
        border: 0; }
        .career-heading-inner__btn:hover {
          background-color: #155284;
          border: 0;
          color: white !important;
          text-decoration: none; }
        .career-heading-inner__btn.active {
          background-color: #1d75bb;
          color: white !important;
          border: none; }
    @media (max-width: 50.75em) {
      .career-heading {
        width: 100%; } }
  .career-img-container {
    padding: 0 !important; }

.img-row {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border: none; }

@media (max-width: 50.75em) {
  .section-4 {
    height: 70rem; }
    .section-4 .col-1-of-2 p {
      font-size: 1rem; } }

.video-container-full {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  padding-left: 1.5rem;
  padding-right: 1.5rem; }
  @media (max-width: 50.75em) {
    .video-container-full {
      padding: 0; } }

.video-full {
  display: block;
  margin: auto;
  height: 40rem;
  flex-basis: 100%; }
  @media (max-width: 50.75em) {
    .video-full {
      height: 25rem; } }

.contact {
  padding: 0;
  background-color: #f4f4f4; }
  .contact-top-image img {
    width: 100%; }
  .contact-body {
    margin-left: 15%;
    margin-right: 15%;
    padding-top: 2rem; }
    @media (max-width: 50.75em) {
      .contact-body {
        margin-left: 1.5rem;
        margin-right: 1.5rem; } }
    @media (max-width: 37.5em) {
      .contact-body {
        margin-left: 1rem;
        margin-right: 1rem; } }
  .contact-form-row {
    display: flex;
    flex-wrap: wrap; }
  .contact-form-row.bottom-images {
    padding: 0 8rem 5rem 8rem; }
    @media (max-width: 37.5em) {
      .contact-form-row.bottom-images {
        padding: 0; } }
  .contact-form-col-1-of-2 {
    flex-basis: 50%; }
    .contact-form-col-1-of-2:first-child {
      padding-right: 1%; }
      @media (max-width: 37.5em) {
        .contact-form-col-1-of-2:first-child {
          padding-right: 0; } }
    .contact-form-col-1-of-2:last-child {
      padding-left: 1%; }
      @media (max-width: 37.5em) {
        .contact-form-col-1-of-2:last-child {
          padding-left: 0; } }
    @media (max-width: 37.5em) {
      .contact-form-col-1-of-2 {
        flex-basis: 100%;
        padding-bottom: 2rem; } }
  .contact-form-col-1-of-1 {
    flex-basis: 100%; }
  .contact-form-submit {
    margin-bottom: 5rem;
    margin-top: 2.5em; }
  .contact-form__error {
    color: red;
    font-size: 1.6rem; }

.direction {
  color: white !important; }

.directionImg {
  width: 2rem;
  height: auto; }

.card-img-overlay {
  background-color: rgba(0, 0, 0, 0.53);
  padding-left: 10%;
  padding-top: 10%; }
  .card-img-overlay .card-title {
    font-size: 2rem;
    font-weight: 600; }
  .card-img-overlay .card {
    margin-bottom: 2rem; }
    .card-img-overlay .card img {
      padding-bottom: 0; }
  .card-img-overlay .icons img {
    width: 3rem;
    height: auto;
    background-color: inherit; }

#blueResult {
  color: #3869b9; }

.sender-type {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  margin-top: 1rem; }
  .sender-type__text {
    font-size: 2.3rem;
    font-weight: 700;
    margin-right: 1.5rem; }
    @media (max-width: 37.5em) {
      .sender-type__text {
        font-size: 1.6rem;
        flex-basis: 100%;
        padding-bottom: 1rem; } }
  .sender-type-option {
    display: flex; }
    .sender-type-option__btn {
      width: 10rem;
      border: 0.1rem solid rgba(0, 0, 0, 0.3);
      margin-right: 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      font-weight: 500;
      border-radius: .2rem;
      font-size: 1.6rem;
      height: 4rem; }
    .sender-type-option__btn:hover, .sender-type-option__btn.active:hover {
      background-color: #155284;
      border: 0;
      color: white !important; }
    .sender-type-option__btn.active {
      background-color: #1d75bb;
      color: white !important;
      border: none; }

.enquiry-price-range {
  display: flex;
  justify-content: center;
  align-items: center; }
  .enquiry-price-range span {
    margin: 0 .5rem; }

.enquiry-property-type {
  display: flex;
  justify-content: space-between; }
  .enquiry-property-type__btn {
    border: 0.1rem solid rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    border-radius: .2rem;
    font-size: 1.6rem;
    font-size: 1.6rem;
    width: 31%;
    height: 4rem; }
  .enquiry-property-type__btn:hover, .enquiry-property-type__btn.active:hover {
    background-color: #155284;
    border: 0;
    color: white !important; }
  .enquiry-property-type__btn.active {
    background-color: #1d75bb;
    color: white !important;
    border: none; }

.card-address p {
  margin-bottom: 0;
  color: white; }

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px; }

#myBtn:hover {
  background-color: #555; }

.entity-pics {
  padding-left: 6rem;
  padding-right: 6rem; }
  @media (max-width: 64em) {
    .entity-pics {
      padding-left: 1rem;
      padding-right: 1rem; } }
  @media (max-width: 50.75em) {
    .entity-pics {
      padding-left: 1rem;
      padding-right: 1rem; } }
  @media (max-width: 37.5em) {
    .entity-pics {
      padding-left: 1rem;
      padding-right: 1rem; } }

.entity-detail {
  padding-left: 6rem;
  padding-right: 6rem;
  margin-top: 1rem;
  padding-top: 2rem; }
  @media (max-width: 64em) {
    .entity-detail {
      padding-left: 3rem;
      padding-right: 3rem;
      margin-top: 0; } }
  @media (max-width: 50.75em) {
    .entity-detail {
      padding-left: 1rem;
      padding-right: 1rem;
      margin-top: 0; } }
  @media (max-width: 37.5em) {
    .entity-detail {
      padding-left: 1rem;
      padding-right: 1rem;
      margin-top: 0; } }
  .entity-detail-top {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-right: 5rem;
    align-items: center; }
    @media (max-width: 50.75em) {
      .entity-detail-top {
        width: 100%;
        padding-right: 0; } }
    .entity-detail-top-left {
      padding-bottom: .5rem;
      padding-left: .3rem; }
      @media (max-width: 37.5em) {
        .entity-detail-top-left {
          flex-basis: 100%; } }
      .entity-detail-top-left__name {
        text-transform: uppercase;
        font-weight: 700;
        color: #327dbf; }
      .entity-detail-top-left__state {
        text-transform: uppercase;
        font-weight: 700;
        color: rgba(0, 0, 0, 0.5); }
      .entity-detail-top-left__address {
        font-size: 1.3rem;
        color: rgba(0, 0, 0, 0.5);
        /* color: var(--color-grey-dark-3); */ }
    .entity-detail-top-right {
      padding-bottom: .5rem;
      display: flex;
      justify-content: flex-end; }
      .entity-detail-top-right__btn {
        display: flex;
        padding-left: .5rem;
        padding-right: .5rem;
        padding-top: .5rem;
        padding-bottom: 3rem;
        border-radius: .3rem;
        align-items: center;
        background-color: #f4f2f2;
        height: 3rem;
        border: 0; }
        .entity-detail-top-right__btn img {
          height: 2rem;
          margin-right: .5rem; }
          @media (max-width: 50.75em) {
            .entity-detail-top-right__btn img {
              height: 1.5rem;
              margin-right: .3rem; } }
        @media (max-width: 50.75em) {
          .entity-detail-top-right__btn {
            font-size: 1.3rem;
            padding-bottom: 1rem; } }
  .entity-detail-middle {
    display: flex;
    flex-wrap: wrap; }
    .entity-detail-middle-left {
      width: 70%;
      padding-right: 5rem; }
      @media (max-width: 64em) {
        .entity-detail-middle-left {
          padding-right: 2rem;
          width: 65%; } }
      @media (max-width: 50.75em) {
        .entity-detail-middle-left {
          width: 100%;
          padding-right: 0; } }
    .entity-detail-middle-right {
      width: 30%;
      position: relative; }
      @media (max-width: 64em) {
        .entity-detail-middle-right {
          width: 35%; } }
      @media (max-width: 50.75em) {
        .entity-detail-middle-right {
          width: 100%; } }
      .entity-detail-middle-right__logo {
        width: 8rem;
        position: absolute;
        top: -6.2rem;
        left: 50%;
        transform: translate(-50%, 0);
        border-radius: 50%; }
        @media (max-width: 50.75em) {
          .entity-detail-middle-right__logo {
            display: none; } }

.property-info {
  display: flex;
  width: 30rem;
  justify-content: space-between; }
  @media (max-width: 37.5em) {
    .property-info {
      width: 100%;
      justify-content: flex-start; } }
  .property-info-qty {
    display: flex;
    align-items: center; }
    @media (max-width: 37.5em) {
      .property-info-qty {
        margin-right: 2rem; } }
    .property-info-qty__text {
      color: #155284;
      font-weight: 900; }
    .property-info-qty img {
      width: 2.5rem; }
    .property-info-qty span {
      margin-left: .2rem; }

.property-spec {
  display: flex;
  flex-wrap: wrap;
  margin-left: -.3rem; }
  .property-spec-detail {
    padding-bottom: .5rem;
    margin-right: 3rem; }
    @media (max-width: 64em) {
      .property-spec-detail {
        flex-basis: 100%;
        padding-bottom: .3rem;
        margin-right: .3rem; } }
    @media (max-width: 50.75em) {
      .property-spec-detail {
        flex-basis: 100%;
        padding-bottom: .3rem;
        margin-right: .3rem; } }
    @media (max-width: 37.5em) {
      .property-spec-detail {
        flex-basis: 100%;
        padding-bottom: .3rem;
        margin-right: .3rem; } }
    .property-spec-detail__img {
      height: 2.5rem;
      width: 2.5rem; }

.entity-extra-info {
  margin-top: 1rem;
  margin-bottom: 2rem; }

.entity-map {
  width: 80%;
  height: 400px;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem; }
  @media (max-width: 50.75em) {
    .entity-map {
      width: 100%; } }

.entity-heading {
  font-size: 2rem;
  font-weight: 600; }

.entity-amentity {
  display: flex;
  justify-content: space-between;
  width: 50%;
  border-bottom: 1px solid silver;
  padding-bottom: 1rem;
  padding-top: 1rem; }
  @media (max-width: 50.75em) {
    .entity-amentity {
      width: 100%; } }

.enquiry-method {
  display: flex;
  flex-direction: column; }
  .enquiry-method a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
    background-color: #155284;
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    padding: .5rem 0; }
    .enquiry-method a img {
      width: 4rem; }
    .enquiry-method a:hover {
      text-decoration: none;
      color: white;
      background-color: #1d75bb; }

.enquiry-method-sticky {
  height: 6rem;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  background-color: white;
  padding: 1rem; }
  .enquiry-method-sticky a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    /* margin-bottom: 1rem; */
    background-color: #155284;
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    border-radius: .2rem; }
    .enquiry-method-sticky a img {
      width: 4rem; }
    .enquiry-method-sticky a:hover {
      text-decoration: none;
      color: white;
      background-color: #1d75bb; }
    .enquiry-method-sticky a:first-child {
      margin-right: .2rem; }

.enquiry-form {
  border: .1rem solid #cccccc;
  background-color: #f7f7f7; }
  @media (max-width: 64em) {
    .enquiry-form {
      padding: 1rem; } }
  .enquiry-form-body {
    padding: 1rem 1rem 0 1rem; }
  .enquiry-form-footer {
    display: flex;
    justify-content: center;
    padding-bottom: 1rem; }
    @media (max-width: 50.75em) {
      .enquiry-form-footer {
        padding-left: 1rem;
        justify-content: flex-start; } }
  .enquiry-form__heading {
    font-size: 1.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem; }
  .enquiry-form__label {
    font-size: 1.6rem;
    padding: 1.5rem 0; }
  .enquiry-form__input {
    margin-bottom: 0.8rem; }
  .enquiry-form__textarea {
    height: 20rem !important;
    margin-bottom: 1rem; }
  .enquiry-form__btn {
    margin-top: 1rem;
    width: 12rem;
    background: #155284;
    color: white;
    line-height: 2.5; }
    .enquiry-form__btn:hover {
      color: white;
      background-color: #1d75bb; }

@media (max-width: 37.5em) {
  .sticky-bottom {
    display: flex;
    flex-basis: 100%;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 199;
    bottom: 0;
    left: 0;
    width: 100%;
    /* padding-left:5px;
        padding-right:20px;
        padding-bottom: 20px; */
    padding-bottom: 3.8rem; }
    .sticky-bottom a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      color: #fff;
      background-color: #0ea800;
      margin: 0;
      border: 0;
      flex-basis: 100%;
      padding-left: 0;
      padding-right: 0;
      font-weight: 700;
      border-radius: 0px; }
    .sticky-bottom img {
      width: .4rem; } }

@media only screen and (min-width: 575px) {
  .sticky-bottom, .sticky-bottom a {
    display: none; } }

#bigImg1 {
  width: 100%; }

#sideImages {
  padding-left: .2rem;
  padding-right: .5rem; }

#displayingImage {
  padding-left: .5rem;
  padding-right: .5rem; }

.im {
  margin-bottom: .4rem;
  margin-top: .4rem; }

.imageThumb {
  width: 100%;
  height: auto; }

.content {
  margin-left: -.8rem; }

.button-2 {
  width: 5rem;
  vertical-align: top;
  border: .1rem solid grey; }

.carousel-control-next,
.carousel-control-prev {
  /* filter: invert(100%); */ }

/* specification section */
#specification {
  margin-top: 2rem; }

.info {
  /* position: relative;
    top: -.8rem;
    left: 1.2rem; */
  font-weight: 900;
  color: #1c3c5c; }

#extraInfo {
  padding-bottom: 2rem; }

/* Form are here */
.callForm {
  border: 1px solid #cccccc;
  margin-bottom: 1rem; }
  .callForm .body {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem; }

.logoheader {
  background-color: #285184;
  height: 2.5rem; }
  .logoheader img {
    display: block;
    margin: auto;
    padding-top: 0.5rem; }

.inForm {
  margin-bottom: 0.7rem; }

.subBut {
  min-width: 80%;
  height: 2rem;
  margin-top: .6rem;
  margin-bottom: .6rem;
  font-size: 1.1rem;
  background-color: #f0f2f5;
  border: .1rem solid #cccccc;
  text-align: center;
  display: block;
  margin-right: auto;
  margin-left: auto; }
  .subBut img {
    width: 1.7rem; }

.enqBut {
  margin-bottom: 1rem;
  border: none;
  width: 100%;
  height: 1.7rem;
  background-color: #285184;
  color: white;
  font-size: 1.2rem; }

#askUs {
  height: 4rem;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  border: .1rem solid #E2E2E2;
  padding: 0.2rem; }

.enquiry-container {
  padding-left: 1rem;
  padding-right: 0; }
  @media (max-width: 37.5em) {
    .enquiry-container {
      padding-right: 1rem !important; } }

.g-recaptcha {
  margin-top: 2rem; }

.bottom-line {
  border-bottom: .1rem solid silver;
  padding-top: 1rem;
  padding-bottom: 1rem; }

.modal-body div:hover {
  background-color: #f2f5f7; }

/* begin lightbox */
/* Create four equal columns that floats next to eachother */
.column {
  float: left;
  width: 25%; }

.iframe-container {
  position: relative;
  width: 100%;
  height: 0; }

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.top-filter {
  background-size: cover;
  background-color: #1d75bb; }
  .top-filter-inner {
    max-width: 158.5rem;
    margin: 0 auto;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    font-weight: 45;
    color: white;
    padding-top: 4rem;
    padding-bottom: 3rem;
    padding-left: 6rem;
    padding-right: 6rem; }
    @media (max-width: 50.75em) {
      .top-filter-inner {
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 1rem;
        padding-right: 1rem; } }
    .top-filter-inner-heading {
      font-size: 3rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      margin-bottom: 2rem; }
      @media (max-width: 50.75em) {
        .top-filter-inner-heading {
          font-size: 2rem;
          margin-bottom: 1rem; } }
      .top-filter-inner-heading > span {
        transform: translateY(1rem); }
    .top-filter-inner-option {
      display: flex;
      flex-wrap: wrap;
      /* flex-direction: column; */
      font-weight: 500;
      font-size: 1.6rem;
      line-height: 1.3rem; }
      @media (max-width: 50.75em) {
        .top-filter-inner-option {
          font-size: 1.3rem; } }
      .top-filter-inner-option-state {
        display: flex;
        align-items: center;
        padding-right: 1rem;
        padding-bottom: 1.6rem; }
        .top-filter-inner-option-state span {
          font-size: 1.6rem; }
        .top-filter-inner-option-state > a {
          border: 1px solid #79ceff;
          border-radius: 0.3rem;
          padding: 0.3rem 0.6rem; }
          .top-filter-inner-option-state > a:not(:last-child) {
            margin-right: 1rem; }
          .top-filter-inner-option-state > a:hover {
            text-decoration: none; }
        .top-filter-inner-option-state > a.active {
          background-color: white;
          color: #155284 !important; }
      .top-filter-inner-option input[type="checkbox"] {
        height: 15px;
        width: 15px;
        cursor: pointer;
        margin-right: 2px; }
      .top-filter-inner-option-property {
        display: flex;
        flex-wrap: wrap;
        align-items: center; }
        .top-filter-inner-option-property > label {
          margin: 0 0 0 1.5rem; }
      .top-filter-inner-option-type, .top-filter-inner-option-property-type {
        display: flex;
        align-items: center;
        padding-right: 1rem;
        padding-bottom: 1.6rem; }
        .top-filter-inner-option-type span, .top-filter-inner-option-property-type span {
          font-size: 1.6rem; }
        .top-filter-inner-option-type label, .top-filter-inner-option-property-type label {
          display: flex;
          align-items: center;
          margin-bottom: 0 !important; }
          .top-filter-inner-option-type label:not(:last-child), .top-filter-inner-option-property-type label:not(:last-child) {
            margin-right: 1rem; }
        .top-filter-inner-option-type > a, .top-filter-inner-option-property-type > a {
          margin-left: 1rem; }
    .top-filter-inner a {
      color: inherit; }
    .top-filter-inner .btn {
      border: 1px solid white;
      color: white;
      font-size: 1.25rm;
      justify-content: center;
      overflow: hidden; }

.narrow-page-body {
  max-width: 102.1rem;
  margin: 0 auto; }
  @media (max-width: 50.75em) {
    .narrow-page-body {
      margin-left: 0;
      margin-right: 0; } }

.page-info {
  display: flex;
  justify-content: space-between;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem; }

@media only screen and (max-width: 767px) {
  #filterContainer {
    width: 100% !important; }
  /* #textOnFilter {
     font-size: 4vw !important;
   } */
  #filterContainer .btn {
    font-size: 3vw !important; } }

@media only screen and (max-width: 400px) {
  .pageDisplay {
    order: 2; } }

.modal-dialog {
  width: 100%; }

@media only screen and (max-width: 680px) and (min-width: 576px) {
  .propBrief {
    visibility: hidden; } }

@media only screen and (max-width: 1022px) and (min-width: 800px) {
  .propBrief {
    visibility: hidden; } }

@media only screen and (max-width: 1344px) and (min-width: 1200px) {
  .propBrief {
    visibility: hidden; } }

#filterContainerC {
  background: url("img/comercial-bg.jpg"); }

.listOfButtons {
  padding-top: 1rem;
  margin: auto;
  width: 100%; }
  .listOfButtons .btn {
    border-radius: 0%;
    height: 46.75px;
    font-size: large; }
    .listOfButtons .btn:hover {
      background-color: rgba(255, 255, 255, 0.78);
      color: black !important; }

.overlayFilterContainer {
  width: 100%;
  height: 100%;
  background: rgba(71, 112, 148, 0.78);
  margin-top: 1rem; }

.buyRent {
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  font-weight: 1000;
  text-align: center;
  height: 4rem; }
  .buyRent a {
    text-decoration: none;
    /* undeline is removed for <a> in but/sell buttons */
    background-color: transparent;
    font-size: 1.6rem; }
  .buyRent .active {
    color: black !important;
    background-color: rgba(255, 255, 255, 0.78); }

.buyLink,
.rentLink {
  height: 100%;
  justify-content: center;
  display: flex; }

/* filtering Result section */
.page {
  color: #477094 !important;
  font-weight: bold; }

.filterResult a {
  color: inherit; }

.card-text {
  margin-top: 0.5rem;
  position: relative;
  z-index: 10; }

.topFilterResult {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  line-height: 30px; }
  .topFilterResult a {
    text-decoration: none; }

.paging {
  padding: 2rem; }

.pageDisplay {
  vertical-align: midlle; }

div.my-checkbox {
  height: 15px;
  width: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center; }

.highlight-yes {
  background-color: #1d75bb;
  color: white; }

.highlight-no {
  background-color: white;
  color: #1d75bb; }

/* .property-type{
 width: 100px;
   border: 1px solid black;
   margin-right: 15px;
   display: flex;
   justify-content: center;
   align-items: center;
   cursor: pointer;
   font-weight: 500;
} */
div.my-checkbox input {
  position: absolute;
  opacity: 0;
  z-index: -1; }

.filter-btn {
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.6rem; }

div.rent-introduction {
  padding: 1.5rem; }
  div.rent-introduction p {
    line-height: 2rem;
    text-align: justify; }
    div.rent-introduction p span {
      font-weight: 500; }
  div.rent-introduction .line-list {
    list-style: disc;
    list-style-position: outside;
    margin-left: 1.5rem; }
    div.rent-introduction .line-list section {
      display: inline; }
      div.rent-introduction .line-list section h3 {
        display: inline; }

.yellow-highlight {
  color: #bf9000; }

.privacy__img {
  max-width: 100%; }
  @media (max-width: 37.5em) {
    .privacy__img {
      height: 30vh; } }

.privacy-body {
  max-width: 152.5rem;
  width: 60%;
  margin: 0 auto;
  padding: 5rem 0; }
  @media (max-width: 50.75em) {
    .privacy-body {
      width: 80%; } }
  @media (max-width: 37.5em) {
    .privacy-body {
      width: 90%; } }
  .privacy-body p {
    text-align: justify; }
  .privacy-body ul {
    list-style: inside; }
    .privacy-body ul li {
      list-style-type: square; }

.term__img {
  max-width: 100%; }
  @media (max-width: 37.5em) {
    .term__img {
      height: 30vh; } }

.term-body {
  max-width: 152.5rem;
  width: 60%;
  margin: 0 auto;
  padding: 5rem 0; }
  @media (max-width: 50.75em) {
    .term-body {
      width: 80%; } }
  @media (max-width: 37.5em) {
    .term-body {
      width: 90%; } }
  .term-body p {
    text-align: justify; }
  .term-body ul {
    list-style: inside; }
    .term-body ul li {
      list-style-type: square; }

.cookie__img {
  max-width: 100%; }
  @media (max-width: 37.5em) {
    .cookie__img {
      height: 30vh; } }

.cookie-body {
  max-width: 152.5rem;
  width: 60%;
  margin: 0 auto;
  padding: 5rem 0; }
  @media (max-width: 50.75em) {
    .cookie-body {
      width: 80%; } }
  @media (max-width: 37.5em) {
    .cookie-body {
      width: 90%; } }
  .cookie-body p {
    text-align: justify; }

.form-group {
  font-size: 1.6rem; }

.form-control {
  font-size: 1.6rem;
  padding: .8rem;
  line-height: 2.4rem;
  height: 4.2rem;
  border: 0; }

.page-item.active .page-link {
  background-color: #777;
  border-color: #777; }

.page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.page-item:not(:last-child) .page-link {
  margin-right: .7rem; }

.page-link {
  position: relative;
  display: flex;
  margin-left: -1px;
  line-height: 1.25;
  color: #777;
  background-color: #fff;
  border: 1px solid #dee2e6;
  justify-content: center;
  padding: .5rem;
  width: 3.2rem; }
