/*
Theme Name: RESIS Real Estate
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.4
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/
/* Site Url: http://resisrealestatecom.rs4.aios-staging.com/ */
/*

TABLE OF CONTENTS

1. Custom CSS
2. IP styles
3. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/
/*******************************************************
 *
 * 1. Navigation
 *
 *******************************************************/
/* Menu and Sub Menus*/
.header-nav {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
  text-align: right;
}

.header-nav > li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 7px;
}

.header-nav > li:last-child {
  margin-right: 0;
}

.header-nav > li:first-child {
  margin-left: 0;
}

.header-nav > li > a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font: 400 15px/1 "Poppins", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1d2951;
  padding: 10px 0;
  text-align: center;
}

.header-nav > li:hover > a {
  color: #0e4d92;
}

/* 2nd Layer Menu */
.header-nav > li:hover > .sub-menu {
  display: block;
  visibility: visible;
  /* shows sub-menu */
  opacity: 1;
  z-index: 5;
  -webkit-transition-delay: 0s, 0s, 0.4s;
  transition-delay: 0s, 0s, 0.4s;
  -webkit-animation: menu-transition 1.5s ease-in-out;
  animation: menu-transition 1.5s ease-in-out;
}

.header-nav .sub-menu {
  list-style: none outside none;
  margin: 0;
  display: none;
  opacity: 0;
  padding-top: 10px;
  position: absolute;
  min-width: 210px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  visibility: hidden;
  overflow: hidden;
}

.header-nav .sub-menu > li {
  position: relative;
  padding-top: 1px;
}

.header-nav .sub-menu > li:first-child {
  background: #1d2951;
  padding-top: 2px;
}

.header-nav .sub-menu > li {
  background: #d7d7d7;
}

.header-nav .sub-menu > li > a {
  display: block;
  padding: 10px;
  font: 400 15px/1.2 "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1d2951;
  background: #fff;
}

.header-nav .sub-menu > li > a:hover {
  text-decoration: none;
  color: #0e4d92;
}

/* 3rd Layer Menu */
.header-nav .sub-menu .sub-menu {
  margin-left: 100%;
  top: 0;
}

@-webkit-keyframes menu-transition {
  from {
    max-height: 0;
  }
  to {
    max-height: 1000px;
  }
}
@keyframes menu-transition {
  from {
    max-height: 0;
  }
  to {
    max-height: 1000px;
  }
}
@-webkit-keyframes autofill {
  to {
    color: #fff;
    background: transparent;
  }
}
/*******************************************************
   *
   * 2. Custom CSS
   *
   *******************************************************/
/* Global */
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  background: #fff;
  color: #000000;
  margin: 0;
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  padding: 0;
  margin: 0;
}

.sxn {
  position: relative;
  display: block;
  height: auto;
  width: 100%;
  font-size: 0;
}

.slick-slider,
.slick-slider *,
.slick-slider a,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* Header */
header#header {
  position: absolute;
  background: #fff;
  z-index: 1020;
  padding: 15px 0;
}
header#header .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
header#header .row::before {
  display: none;
}

header.toggle-fixed {
  position: fixed !important;
  padding: 7px 0 !important;
}
header.toggle-fixed .header-logo {
  max-width: 110px;
}
header.toggle-fixed .header-contact {
  display: none;
}
.header-left{
  width: 13.7%;
}
.header-right{
  width: 86.3%;
}
.header-logo img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header-contact {
  display: block;
  margin-bottom: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.contact-list a:hover,
.contact-list a:focus {
  color: inherit;
}
.contact-list .with-label a {
  font: 600 15px/1 "Poppins", sans-serif;
  letter-spacing: 0.05em;
  color: #000766;
  padding-right: 37px;
}
.contact-list .with-label a:hover {
  color: #0e4d92 !important;
}
.contact-list .with-label em[class^="ai-font"],
.contact-list .with-label em[class^="ai-custom"],
.contact-list .contact-smi {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 37px;
  height: 37px;
  line-height: 37px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #1d2951;
  background: #1d2951;
  margin-right: 6px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.contact-list .contact-smi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.contact-list .contact-smi:hover {
  background: #0e4d92;
}
.contact-list .contact-smi:last-of-type {
  margin-right: 0;
}
.contact-list .with-label em[class^="ai-font"],
.contact-list .with-label em[class^="ai-custom"] {
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-size: 16px;
}
.contact-list .with-label em[class^="ai-custom"] {
  background: #1d2951 url(images/ic-envelope.png) no-repeat center center;
}

/* Slideshow */
#hero-sxn,
#slideshow-sxn {
  position: relative;
}

#slideshow-sxn:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(17, 47, 117, 0.15);
  pointer-events: none;
}

/* QS */
#qs-sxn {
  position: absolute;
  bottom: 5.8%;
  left: 0;
  z-index: 1;
}

.qs-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -15px;
  background: rgba(14, 77, 146, 0.8);
  padding: 15px;
}
.qs-container .qs-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 5.7%;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.qs-container .qs-header em {
  color: #fff;
  font-size: 35px;
}
.qs-container form{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 94.3%;
}
.qs-container .qs-fields {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 86.5%;
}
.qs-container .qs-fields .qs-field {
  position: relative;
  padding-right: 9px;
}
.qs-container .qs-fields .qs-field select,
.qs-container .qs-fields .qs-field input {
  display: block;
  box-sizing: border-box;
  height: 35px;
  line-height: 35px;
  width: 100%;
  padding: 0 20px 0 0;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  background: transparent;
  font: 400 12px/33px "Poppins", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
}
.qs-container .qs-fields .qs-field select option {
  color: #212121;
}
.qs-container .qs-fields .qs--large {
  width: 25.3%;
}
.qs-container .qs-fields .qs--small {
  width: 12.35%;
}
.qs-container .qs-fields .qs-dropdown::before {
  font-size: 9px;
  color: #fff;
  display: inline-block;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.qs-container .qs-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 13.5%;
}
.qs-container .qs-buttons .qs-button {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #fff;
  height: 43px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: 0;
  background: transparent;
  -webkit-transition: all 0.4s ease;
          transition: all 0.4s ease;
}
.qs-container .qs-buttons .qs-button.btn--text {
  font: 600 11px/41px "Poppins", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
.qs-container .qs-buttons .qs-button.btn--text.search-button {
  margin: 0 11px;
  max-width: 93px;
}
.qs-container .qs-buttons .qs-button.btn--text.search-button:hover {
  background: #1d2951;
  border-color: #1d2951;
}
.qs-container .qs-buttons .btn-icon {
  font-size: 35px;
  color: #fff;
  -webkit-transition: all 0.4s ease;
          transition: all 0.4s ease;
}
.qs-container .qs-buttons .btn-icon:hover {
  color: #1d2951;
}

.qs-fields button.btn.dropdown-toggle.btn-default {
  display: block;
  box-sizing: border-box;
  height: 35px;
  line-height: 35px;
  width: 100%;
  padding: 0 20px 0 0;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  background: transparent;
  font: 400 12px/33px "Poppins", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;

}

.bs-searchbox, .bs-actionsbox, .bs-donebutton{
        background: rgba(14, 77, 146, 0.85) !important;
}
.bootstrap-select .dropdown-menu{
    background-color: transparent !important;
    font-family: 'Poppins', sans-serif;
}
ul.dropdown-menu.inner {
   background: rgba(14, 77, 146, 0.8);
}
ul.dropdown-menu.inner li {
   color: white;
}
.dropdown-menu.inner .text-muted {
   color: #b0b0b0;
}
.bs-searchbox, .bs-actionsbox, .bs-donebutton{
        background: rgba(14, 77, 146, 0.85) !important;
}
.bootstrap-select .dropdown-menu{
    background-color: transparent !important;
}
ul.dropdown-menu.inner {
   background: rgba(14, 77, 146, 0.8) !important;
}
ul.dropdown-menu.inner li {
   color: white !important;
}
.dropdown-menu.inner .text-muted {
   color: #8c8a8a;
}

ul.dropdown-menu.inner li a span.text {
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.bootstrap-select .status {
    color: #fff;
    background: rgba(14, 77, 146, 0.85);
}

  .sidebar .bs-searchbox,
  .sidebar ul.dropdown-menu.inner {
    background: rgba(14, 77, 146, 1) !important;
  }

.bootstrap-select.btn-group .dropdown-menu li a:hover {
    background-color: #fffdfd99 !important;
}
/* Welcome */
#wc-sxn {
  background: #1d2951;
}

.wc-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.wc-row .wc-view {
  display: inline-block;
  vertical-align: middle;
}

.wc-view--txt {
  width: 44.7%;
  padding: 80px 0 90px 65px;
}
.wc-view--txt h1 {
  display: inline-block;
  font: 300 55px/1 "Times New Roman", sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 30px;
}
.wc-view--txt h1 span {
  display: block;
  font: 500 120px/1 "Times New Roman", sans-serif;
  letter-spacing: -0.025em;
  color: #0e4d92;
  margin-left: calc(100% - 195px);
  margin-top: -13px;
}
.wc-view--txt .wc-content {
  position: relative;
  max-width: 790px;
  width: calc(100% + 223px);
  padding: 57px 68px;
  background: #0e4d92;
  margin: 0 -223px 0 auto;
  z-index: 0;
}
.wc-view--txt .wc-content p {
  font: 300 16px/29.5px "Open Sans", sans-serif;
  letter-spacing: -0.005em;
  color: #fff;
}


.wc-view--txt .wc-content a:hover{
  color: #fff;
  text-decoration: underline;
}

.wc-view--bg {
  width: 55.3%;
}
.wc-view--bg img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: calc(100% + 15px);
}

/* Properties */
#properties-sxn {
  padding: 100px 0 85px;
  overflow: hidden;
}

  #properties-sxn .row > .col-md-4 {
    position: relative;
    z-index: 1;
  }

    #properties-sxn .row > .col-md-4:hover {
      z-index: 2;
    }


  #properties-sxn .slick-list:hover {
    z-index: 9;
  }

.properties-list .property-title {
  font: 400 40px/0.9 "Times New Roman", sans-serif;
  letter-spacing: 0.05em;
  color: #0e4d92;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 43px;
}
.properties-list.custom-gutters {
  margin-left: -2.5px;
  margin-right: -2.5px;
}
.properties-list.custom-gutters > .col,
.properties-list.custom-gutters > [class*="col-"] {
  padding-right: 12.5px;
  padding-left: 12.5px;
}
.properties-list .slick-list {
  overflow: unset;
}
.properties-list .slick-slide {
  opacity: 0;
  pointer-events: none;
}
.properties-list .slick-slide.slick-active {
  opacity: 1;
  pointer-events: auto;
}
.properties-list .slick-track {
  pointer-events: none;
}

.condo-slick:hover,
.apartment-slick:hover,
.construction-slick:hover {
  z-index: 5;
}

.property-hover {
  position: absolute;
  width: calc(100% + 162px);
  top: 0;
  left: 0;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 10;
}
.property-hover .property-details {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  /* -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end; */
          -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(29, 41, 81, 0.85);
}
.property-hover .property-details--address {
  font-size: 21px;
  color: #fff;
}
.property-hover .property-details--price {
  font-size: 33px;
  color: #fff;
}
.property-hover .view-details {
  display: flex;
  align-items: center;
  justify-content: center;
  font: 300 18px/1.2 "Poppins", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  min-height: 53px;
  padding: 18px 20px;
  min-width: 165px;
  /* width: 100%; */
  margin: 40px 0 47px;
  -webkit-transition: all 0.4s ease;
          transition: all 0.4s ease;
}
.property-hover .view-details:hover {
  background: #1d2951;
}

.property-item {
  float: none;
  height: auto;
  text-decoration: none;
  outline: none;
  display: block;
  position: relative;
  width: 100%;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.property-item canvas {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: auto;
}
.property-item:hover {
  pointer-events: auto;
}
.property-item:hover .property-hover {
  top: -30px;
  transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.property-item:hover .property-static .property-details {
  visibility: hidden;
  opacity: 0;
}

.property--construction .property-item .property-hover {
  left: unset;
  right: 0;
}

.property--apartment .property-item .property-hover {
  left: 50%;
  margin-left: calc(-50% - 81.5px);
}

.property-static .property-details {
  pointer-events: none;
  display: none;
}

.property-details {
  position: relative;
  text-align: center;
  padding: 25px 40px;
  visibility: visible;
  opacity: 1;
  min-height: 100px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.property-details--address {
  /* display: block; */
  display: none; /*Temporary*/
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font: 400 16px/1.2 "Poppins", sans-serif;
  letter-spacing: 0.1em;
  color: #1d2951;
  text-transform: uppercase;
}

.property-details--price {
  /* display: inline-block; */
  display: none; /*Temporary*/
  font: 600 23px/1.2 "Times New Roman", sans-serif;
  color: #1d2951;
  margin-top: 5px;
}

.properties-list em.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding: 0 10px;
  /* bottom: 38.5px; */
  font-size: 23px;
  font-weight: 700;
  color: #1d2951;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 8;
}

.properties-list em.slick-arrow-next {
  left: unset;
  right: 0;
}

/* Market Data */
#market-sxn {
  padding: 90px 0 115px;
  text-align: center;
}
#market-sxn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(images/bg-market-data.jpg) no-repeat center center;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(images/bg-market-data.jpg) no-repeat center center;
  background-size: cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  height: 100%;
  width: 100%;
  display: block;
}
#market-sxn .sxn-heading {
  font: 400 90px/1.2 "Times New Roman", sans-serif;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #1d2951;
  margin-bottom: 30px;
}
#market-sxn .sxn-heading span {
  font-weight: 600;
}

.market-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.market-row::before {
  display: none;
}

.market-view {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 485px;
  width: 100%;
  margin: 0 auto 20px;
  background: #0e4d92;
  height: 100%;
}

.market--imageview canvas {
  display: block;
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
    max-height: 472px;
}
.market--imageview a:hover canvas {
  opacity: 0.6;
}

.market--textview {
  padding: 26px 33px;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
    min-height: 320px;
}
.market--textview .market-title {
  font: 600 20px/1.2 "Times New Roman", sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.market--textview .market-title:hover {
  opacity: 0.6;
}
.market--textview .market-description {
  font: 300 14px/25px "Open Sans", sans-serif;
  color: #fff;
  letter-spacing: -0.005em;
  margin-bottom: 5px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.market--textview a.read-more {
  display: block;
  box-sizing: border-box;
  max-width: 127px;
  width: 100%;
  height: 50px;
  font: 300 14px/48px "Open Sans", sans-serif;
  color: #fff;
  letter-spacing: -0.005em;
  text-align: center;
  border: 1px solid #fff;
  margin-left: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.market--textview a.read-more:hover {
  background: #fff;
  color: #003366;
}

/* Footer */
footer#footer {
  background: #1d2951;
  text-align: center;
  padding: 60px 0 45px;
}
footer .copyright {
  font: 400 12px/22px 'Poppins', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
footer .copyright a:hover {
  color: #b4c8dd;
}
footer .broker-logos {
  margin-top: 22px;
}
footer .broker-logos em {
  color: #fff;
  font-size: 20px;
  margin: 0 3px;
}

.footer-contact h2 {
  font: 400 70px/1.2 'Times New Roman', sans-serif;
  letter-spacing: -.05em;
  text-transform: uppercase;
  color: #fff;
}
.footer-contact h2 span {
  font-weight: 600;
  color: #0e4d92;
}
.footer-contact div.wpcf7 {
  position: relative;
  padding: 30px 0 35px;
}
.footer-contact div.wpcf7-response-output {
  font-size: 12px;
  position: absolute;
  bottom: 20px;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fff;
}

.git-form {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.git-form .field-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 20.2%;
  padding-bottom: 10px;
  padding-right: 5px;
}
.git-form .field-wrap:last-child {
  width: 39.5%;
  padding-right: 0;
}
.git-form .field-wrap:last-child .wpcf7-spinner {
  position: absolute;
  top: 102%;
  right: 0;
  margin: 0;
}
.git-form input[type*="text"],
.git-form input[type*="tel"],
.git-form input[type*="email"] {
  position: relative;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  height: 41px;
  border: none;
  padding: 0 19px;
  border: 1px solid #cccccc;
  border-radius: 0;
  background: transparent;
  outline: none;
  font: 400 12px/39px 'Poppins',sans-serif;
  letter-spacing: .1em;
  color: #fff;
  text-transform: uppercase;
}
.git-form textarea {
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 41px;
  border: none;
  padding: 14px 50px 0 19px;
  border: 1px solid #cccccc;
  border-radius: 0;
  background: transparent;
  outline: none;
  resize: none;
  overflow: hidden;
  font: 400 12px/14px 'Poppins',sans-serif;
  letter-spacing: .1em;
  color: #fff;
  text-transform: uppercase;
}
.git-form input[type*="submit"] {
  font-size: 0;
  width: 29px;
  height: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -5px;
  right: 10px;
  border: none;
  outline: none;
  background: url(images/ic-airplane.png) no-repeat center center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.git-form input[type*="submit"]:hover {
  background: url(images/ic-airplane-c.png) no-repeat center center;
}
.git-form .wpcf7-form-control-wrap {
  display: block;
}
.git-form span.wpcf7-not-valid-tip {
  font-size: 11px;
}
.git-form .ajax-loader {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.footer-content img {
  margin: 0 auto;
}
.footer-content .contact-list {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 27px 0 40px;
}
.footer-content .contact-list .with-label em[class^="ai-font"] {
  background: #fff;
  border-color: #fff;
  color: #1d2951;
}
.footer-content .contact-list .contact-smi {
  background: #0e4d92;
  border-color: #0e4d92;
}
.footer-content .contact-list .contact-smi:hover {
  background: #fff;
  border-color: #fff;
  color: #0e4d92;
}
.footer-content .contact-list .with-label em[class^="ai-custom"] {
  background: #fff url(images/ic-envelope-c.png) no-repeat center center;
}
.footer-content .contact-list .with-label a {
  color: #fff;
}

.footer-nav {
  display: block;
  list-style: none;
}
.footer-nav li {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin: 0 22px;
}
.footer-nav li a {
  font: 300 12px/22px 'Poppins', sans-serif;
  letter-spacing: .05em;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.footer-nav li a:hover {
  color: #b4c8dd;
}

/*******************************************************
   *
   * 3. IP Styles
   *
   *******************************************************/
.ip-banner {
  position: relative;
  width: 100%;
}

.ip-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
}

.ip-banner canvas {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 400px;
  background: #f9f7f7;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.ip-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.ip-banner h1 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.ip-banner h1 span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* Adjust minimum height of page area */
#content-sidebar,
#content-full {
  min-height: 500px;
  margin-top: 20px;
}

/** Adjust width of content columns **/
#content-sidebar #content {
  width: 77.08%;
}

#content-full #content {
  width: 100%;
}

/* Adjust width of sidebar */
.sidebar {
  width: 20.83%;
}

/* fullwidth template */
.page-template-template-fullwidth #content {
  padding-left: 15px;
  padding-right: 15px;
}

.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
  margin-left: -15px;
  margin-right: -15px;
}

/* Adjust line height of page elements */
#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
  line-height: 1.7;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
  font: 500 50px/1 "Poppins", sans-serif;
  letter-spacing: -0.025em;
  color: #0e4d92;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
  margin-top: 0;
}
#content .archive-thumbnail {
  width: 32.5%;
  max-width: 285px;
  margin-top: 10px;
  font-size: 0;
}
  #content .archive-thumbnail img {
    max-width: 100%;
    min-height: 200px;
  }
#content .archive-content.archive-has-thumbnail {
  width: 65%;
}

#content .entry {
  font-family: 'Open Sans', sans-serif;
}

.ai-default-cf7wrap input[type="submit"], .ai-default-cf7wrap input.wpcf7-submit {
  background: #1d2951 !important;
}

.ai-contact-wrap input.wpcf7-submit:hover, .ai-default-cf7wrap input.wpcf7-submit:hover, .error-forms input.wpcf7-submit:hover {
  background: #0e4d92 !important;
}

#side-widget {
  position: relative;
  display: block;
  font-size: 0;
}

#side-widget .side-widget--item {
  position: relative;
  text-align: center;
  margin: 0 0 30px;
}

.sidebar-qs .qs-container {
  background: #0e4d92;
  margin: 0;
}
.sidebar-qs .qs-container .qs-header {
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.sidebar-qs .qs-container .qs-header em {
  font-size: 50px;
}
.sidebar-qs .qs-container form{
  width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.sidebar-qs .qs-container .qs-fields {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
.sidebar-qs .qs-container .qs-field {
  display: block;
  width: 100% !important;
  padding: 0 5px !important;
  margin-bottom: 5px;
}
.sidebar-qs .qs-container .qs-field.qs--small,
.sidebar-qs .qs-container .qs-field.qs--xsmall {
  display: block;
  width: 50% !important;
}
.sidebar-qs .qs-container .qs-buttons {
  display: block;
  padding: 0;
  width: 100%;
  text-align: left;
}
.sidebar-qs .qs-container .qs-buttons .qs-button {
  display: inline-block;
    vertical-align: middle;
    width: calc(50% - 10px);
    max-width: 100% !important;
    margin: 0 5px!important;
}
.sidebar-qs .qs-container .qs-buttons .btn-icon {
  width: calc(50% - 10px);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    margin: 0 5px;
}

aside .qs-container {
    padding: 15px 5px;
}

.sidebar-contact {
  background: #1d2951;
  padding: 30px 15px;
}
.sidebar-contact h2 {
  font: 400 25px/1.2 'Poppins', sans-serif;
  letter-spacing: -.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
}
.sidebar-contact .git-form {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.sidebar-contact .git-form .field-wrap {
  position: relative;
  width: 100%;
  padding-right: 0;
}
.sidebar-contact div.wpcf7-response-output {
  font-size: 10px;
  color: #fff;
  margin: 0 auto;
}


/******************************************
************ADDITIONAL CSS HERE************
*******************************************/
div.wpcf7-response-output {
  text-align: center;
}

.ip-gallery div[id^="gallery-"] .gallery-item img{
  width: 360px;
  height: 260px !important;
  object-fit: cover;
}

.grecaptcha-badge {
  z-index: 99;
}

#ihf-main-container ul {
    margin-left: 0;
}

    #ihf-main-container .chosen-container .chosen-results {
        padding: 0 !important;
    }

.ihf-listing-detail .ihf-detail-tab-content #ihf-detail-features-tab > .row.mt-10 {
  margin: 0;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
  max-height: 150px !important;
}

#ihf-main-container .mc-total-payment-subline {
  color: #666;
}

.fright{
  float: right;
    margin-left: 16px;
}

.page-id-1121 #content .entry-title {
  display: block;
  text-align: center;
}

.lma-title {
    text-align: center;
}

.lma-comm {
    display: block;
    text-align: center;
}

#content .lma-comm a {
    font-weight: bold;
    text-decoration: underline;
}


/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */


.postid-3337 table {
  border-collapse: collapse;
    width: 100%;
}

.postid-3337 table, .postid-3337 th, .postid-3337 td {
  border: 1px solid #000;
    padding: 10px;
}

.ip-slide {
    margin-bottom: 30px;
}

.ip-slide .cycloneslider {
    text-align: center;
    display: block;
    margin: 0 auto;
}

.services-icons .col-md-2 .services-icon::after {
	display: block;
	font-family: agentimage !important;
	font-size: 41px;
	color: var(--roadmaps-text-color);
	transition: all .25s ease-in-out;
}

.services-icons .col-md-2:nth-child(1) .services-icon::after {
	content: "\b0055";
}

.services-icons .col-md-2:nth-child(2) .services-icon::after  {
  content: "\b0046";
}

.services-icons .col-md-2:nth-child(3) .services-icon::after {
	content: "\b0057";
}

.services-icons .col-md-2:nth-child(4) .services-icon::after {
	content: "\b0078";
}

.services-icons .col-md-2:nth-child(5) .services-icon::after {
	content: "\b0141";
}



.services-icons > div {
    width: calc(100% / 5);
}

.row.services-icons {
    flex-flow: row wrap;
    display: flex;
}


#content .services-icons h2 {
	font-size: 18px;
}

.services-icons {
	text-align: center;
}
.above-footer-cta {
	padding: 60px 0 50px;
}
.above-footer-cta .cta-label {
	font-size: 20px;
}

.above-footer-cta .cta-label span {
	font-size: 35px;
	color: #1d2951;
}
.above-footer-cta .cta-label span {
	font-size: 35px;
	color: #1d2951;
}
.cta-label {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--primary-font);
  line-height: 1;
}
.cta-list {
	max-width: 360px;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.cta-list a {
	display: block;
	position: relative;
	color: #1d2951;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.cta-list a::before {
	content: '';
	position: absolute;
	bottom: -21px;
	left: 0;
	right: 0;
	margin: auto;
	width: calc(100% - 40px);
	height: 18px;
	border: solid 2px #1d2951;
	border-top: none;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.cta-list a::after {
	content: '';
	position: absolute;
	top: -21px;
	left: 0;
	right: 0;
	margin: auto;
	width: calc(100% - 40px);
	height: 18px;
	border: solid 2px #1d2951;
	border-bottom: none;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.above-footer-cta:hover {
	overflow: unset;
}

.cta-list a:hover::after {
  top: -31px;
  opacity: 1;
}
.cta-list a:hover::before {
	bottom: -31px;
	opacity: 1;
}
.cta-list a {
	color: var(--primary-text-color);
}
.above-footer-cta .cta-list a:hover {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}
.cta-list a:hover {
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
}
.cta-list p {
	display: none;
}
.aiosp-wrap .aiosp-container.aiosp-ref-\#join-our-mailing-list .aios-popup-body {
	max-width: 800px;
	min-height: 0;
	padding: 50px;
	line-height: 1.5;
	text-align: center;
}





















.listingphoto {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 26px;
}

.nd-wrappar a {
    position: relative;
    width: 100%;
    display: block;
    height: 100%;
}

.listingphoto img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.listingphoto canvas {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.listing-address span, .listing-units span, .listing-description span, .listing-by span {
    font-weight: bold;
    font-size: 16px;
}

.listing-address, .listing-units , .listing-description , .listing-by{
    margin-bottom: 12px;
}


.nd-wrappar a h2 {
    text-align: center;
}

.nd-wrappar > .row {
    display: flex;
    flex-flow: row wrap;
}



a.ip-btn {
    display: block;
    box-sizing: border-box;
    max-width: 227px;
    width: 100%;
    height: 50px;
    font: 300 14px/48px "Open Sans", sans-serif;
    color: #fff;
    letter-spacing: -0.005em;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: #0e4d92;
    text-transform: uppercase;
}

a.ip-btn:hover {
    background: #1968be;
}



.nf-page-pagination .pagination {
    display: flex;
/*    gap: 20px;*/
  justify-content: space-between;
}

.nf-page-pagination .pagination ul {
    display: flex;
    list-style: none !important;!i;!;
    margin-left: 0px !important;!i;!;!;!i;!;
}

.nf-page-pagination .pagination ul li {
    margin-right: 10px;
}

.nf-page-pagination .pagination ul li a.current {
    opacity: 50%;
}


#news-feed{
 scroll-margin-top: 100px;
}

.scroll-margin{
 scroll-margin-top: 100px;
}

.news-feed > ul li {
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e2e2;
    padding-top: 10px;
}


.services-icons a span {
    font-size: 39px;
}

.services-icons > div {
    margin-bottom: 40px;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    font-size: 12px;
    padding: 0.2em 0.8em;
    width: auto;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
}

.wpcf7-form-control-wrap{
    display: block;
}


.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}






















.dp-row {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 24px;
}

.dp-row .dp-col:first-child {
    width: calc((172 / 494 )* 100%);
}

#content .dp-row .dp-col p {
    margin: 0;
    font-size: 15px;
    color: #343434;
    font-weight: 500;
}

.dp-row .dp-col:last-child {
    width: calc((322 / 494) * 100%);
}

#content .dp-row .dp-col:first-child b {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.page-template-template-development-projects #content .archive-subtitle a {
    font-size: 20px;
    color: #0e4d92;
    font-weight: 700;
}

.page-template-template-development-projects #content .archive-subtitle {
    line-height: 1;
}













.page-template-template-development-projects #content .archive-thumbnail {
    max-width: 100%;
    width: calc((352 / 875)* 100%);
    margin-top: 0;
}

.page-template-template-development-projects #content .archive-content {
    max-width: 100%;
    width: calc((494/ 875) * 100%);
}

.page-template-template-development-projects #content .post {
    padding-bottom: 40px;
    border-bottom: 1px dashed #000;
}

#content .dp-row .dp-col p {
    line-height: 1.1;
}

.dp-row {
    margin-bottom: 18px;
}
