/*
Theme Name: The Shultz Team
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
*/

/*

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
 *
 *******************************************************/

/* Sub Menu */
#nav li {
  position: relative;
  display: inline-block;
}

#nav > li:first-child {
  padding-left: 0;
}

#nav > li:last-child {
  padding-right: 0;
  border: none;
}

#nav > li {
  padding: 0 14px;
  border-right: 1px solid #58b7b2;
  pointer-events: none;
}

#nav li a {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.025em;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  pointer-events: all;
}

#nav > li > a:before {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  width: 100%;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}

#nav > li:hover > a:before {
  opacity: 1;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  width: 100%;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0;
}

#nav .sub-menu {
  list-style: none outside none;
  margin: 0;
  position: absolute;
  width: 100%;
  min-width: 180px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding-top: 38px;
}

#nav .sub-menu li a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.025em;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

#nav .sub-menu > li {
  position: relative;
  display: block;
  background: #3a6ab2;
  margin: 0 auto 1px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

#nav .sub-menu li:hover {
  background: #58b7b2;
}

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

#nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

#nav li > .sub-menu .sub-menu {
  margin-left: 100%;
  top: 0;
  padding-top: 0;
}

#nav .sub-menu .sub-menu li:hover {
  background: #58b7b2;
}

/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/

/* Global */

body {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  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; */
}

/*CSS Reset*/
a,
a:hover,
a:visited,
a:focus,
textarea {
  text-decoration: none;
  outline: 0;
  cursor: pointer;
}

.slick-track * {
  outline: none;
  -webkit-transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
}

select::-ms-expand {
  display: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  border-radius: 0;
}

[class*="ai-icon-"] {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

#main-wrapper {
  overflow: hidden;
}

/*Global Title*/

.global-title-right {
  text-align: right;
  display: block;
  margin: 0 auto;
}

.global-title-right > .global-title {
  display: inline-block;
}

.global-title-center {
  text-align: center;
  display: block;
  margin: 0 auto;
}

.global-title-center > .global-title {
  display: inline-block;
}

.global-title h2 {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.25em;
  color: #202834;
  text-transform: uppercase;
  display: inline-block;
  padding-left: 33px;
  text-align: left;
}

.global-title h2 span {
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #3a6ab2;
  display: block;
  margin-top: 9px;
}

.global-title.is-black h2 span {
  color: #3e3d3d;
}

.global-title.is-black .global-section-no:before {
  background: #e5e3e3;
}

.global-section-no {
  position: absolute;
  width: 10px;
  height: 93%;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  display: block;
  z-index: 5;
  padding-right: 0;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000;
  text-align: left;
  overflow: hidden;
}

.global-section-no span {
  display: inline-block;
}

.global-title {
  display: block;
  position: relative;
  margin: 0 auto;
  text-align: left;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.global-section-no:before {
  position: absolute;
  content: "";
  top: 20px;
  right: 0;
  width: 1px;
  height: 100%;
  background: #3a6ab2;
  z-index: -1;
  margin: 0 auto;
  left: 0;
}

/*Fixed Header*/

#fixed-header {
  position: fixed;
  z-index: 1029;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #fff;
  padding: 14px 0;
  min-height: 90px;
  font-size: 0;
}

#fixed-header.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#fixed-header:not(.active) {
  opacity: 0;
  pointer-events: none;
}

#fixed-header > .container {
  width: 100%;
  padding: 0 72px;
}

#fixed-header .logo a {
  padding: 0;
  background: transparent;
}

#fixed-header .logo img {
  max-width: 162px;
  height: auto;
}

/* Sub Menu */
#fixed-nav li {
  position: relative;
  display: inline-block;
}

#fixed-nav > li:first-child {
  padding-left: 0;
}

#fixed-nav > li:last-child {
  padding-right: 0;
  border: none;
}

#fixed-nav > li {
  padding: 0 14px;
  border-right: 1px solid #58b7b2;
  pointer-events: none;
}

#fixed-nav li a {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.025em;
  color: #000;
  text-transform: uppercase;
  position: relative;
  pointer-events: all;
}

#fixed-nav > li > a:before {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  width: 100%;
  height: 3px;
  background: #3a6ab2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}

#fixed-nav > li:hover > a:before {
  opacity: 1;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  width: 100%;
}

#fixed-nav .sub-menu {
  list-style: none outside none;
  margin: 0;
  position: absolute;
  width: 100%;
  min-width: 180px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding-top: 39px;
}

#fixed-nav .sub-menu li a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.025em;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

#fixed-nav .sub-menu > li {
  position: relative;
  display: block;
  background: #3a6ab2;
  margin: 0 auto 1px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

#fixed-nav .sub-menu li:hover {
  background: #58b7b2;
}

#fixed-nav .sub-menu li:hover > a {
  color: #fff;
  text-decoration: none;
}

#fixed-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

#fixed-nav li > .sub-menu .sub-menu {
  margin-left: 100%;
  top: 0;
  padding-top: 0;
}

#fixed-nav .sub-menu .sub-menu li:hover {
  background: #58b7b2;
}

/* Header */

.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1028;
  width: 100%;
  font-size: 0;
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 49px 0;
}

.header-wrapper:before {
  position: absolute;
  content: "";
  top: auto;
  left: 0;
  width: 100%;
  height: calc(100% - 46px);
  background: #3a6ab2;
  bottom: auto;
}

.header-wrapper > .container {
  width: 100%;
  padding: 0 72px;
}

.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.logo {
  position: relative;
  max-width: 100%;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  display: inline-block;
  vertical-align: middle;
}

.logo a {
  display: block;
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  max-width: 100%;
  padding: 26px 38px;
  background: #fff;
}

.logo img {
  max-width: 100%;
}

/*Slideshow*/
.slideshow-container {
  position: relative;
}

.slideshow-wrapper {
  position: relative;
}

.slideshow-wrapper .splide__pagination__page{}
.slideshow-wrapper #aios-slider-hp-slideshow .splide__pagination__page,
.slideshow-wrapper #aios-slider-hp-slideshow .splide__pagination__page.is-active{
  background: #fff;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  opacity: 1;
  margin: 0 13px;
}
.slideshow-wrapper #aios-slider-hp-slideshow .splide__pagination__page:before{
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 1;
  width: 34px;
  height: 34px;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  opacity: 0;
}
.slideshow-wrapper #aios-slider-hp-slideshow .splide__pagination__page.is-active:before{
  opacity: 1;
}
.slideshow-container .cycloneslider-slide:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 37, 38, 0.1);
  pointer-events: none;
}

.slideshow-wrapper .cycloneslider-template-responsive .cycloneslider-pager {
  bottom: 50px;
}

.slideshow-wrapper
  .cycloneslider-template-responsive
  .cycloneslider-pager
  span {
  background: #fff;
  width: 6px;
  height: 6px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0 13px;
  position: relative;
}

.slideshow-wrapper
  .cycloneslider-template-responsive
  .cycloneslider-pager
  span.cycle-pager-active {
  background-color: #fff;
}

.slideshow-wrapper
  .cycloneslider-template-responsive
  .cycloneslider-pager
  span:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 1;
  width: 34px;
  height: 34px;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.slideshow-wrapper
  .cycloneslider-template-responsive
  .cycloneslider-pager
  span.cycle-pager-active:before {
  opacity: 1;
  visibility: visible;
}

/*Featured Properties*/

.fp-main-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto 60px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.fp-container {
  display: block;
  position: relative;
  padding: 79px 0 0;
  font-size: 0;
  z-index: 4;
  overflow: hidden;
}

.fp-wrapper {
  display: block;
  position: relative;
}

.fp-main {
  display: block;
  position: relative;
}

.fp-slide {
  display: block;
  position: relative;
  margin: 0 -17.5px;
}

.fp-slide:not(.slick-initialized) .fp-item:nth-child(n + 3) ~ div {
  display: none;
}

.fp-prev span,
.fp-next span {
  width: 40px;
  height: 40px;
  border: 1px solid #58b7b2;
  font-size: 12px;
  color: #58b7b2;
  line-height: 1;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
}

.fp-prev,
.fp-next {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}

.fp-next {
  margin: 0;
}

.fp-main-title-col {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
}

.fp-prev:hover span,
.fp-next:hover span {
  background: #3a6ab2;
  color: #fff;
  border-color: #3a6ab2;
}

.fp-item {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: calc(100% / 3);
  padding: 0 17.5px;
  overflow: hidden;
}

.fp-item a {
  display: block;
  position: relative;
}

.fp-img {
  position: relative;
}

.fp-img canvas {
  display: block;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #3a6ab2;
}

.fp-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 25px 30px 25px;
  margin-left: 50px;
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.fp-banner {
  position: absolute;
  top: 50px;
  right: 0;
  width: 110px;
}

.fp-img:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 37, 38, 0.4);
  pointer-events: none;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.fp-add {
  display: block;
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.fp-btn {
  display: block;
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fp-add h2 {
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}

.fp-add span {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
  margin-top: 5px;
}

.fp-btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #3a6ab2;
  text-transform: uppercase;
  background: #fff;
}

.fp-hover:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.fp-item a:hover .fp-hover {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  padding-top: 0;
}

.fp-item a:hover .fp-hover:before {
  background: #fff;
}

.fp-item a:hover .fp-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fp-item a:hover .fp-add {
  margin-bottom: 19px;
}

.fp-item a:hover .fp-img:before {
  background: rgba(58, 106, 178, 0.75);
}

.fp-banner span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fp-banner.for-sale {
  background: #58b7b2;
}

.fp-banner.sold {
  background: #b75858;
}

/*Featured Neighborhood*/
.sm-map-container {
  display: block;
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 35px 0;
}

.sm-map-wrapper {
  display: block;
  position: relative;
}

.sm-comm-areas {
  display: inline-block;
  position: relative;
  margin-top: 55px;
  margin-left: 33px;
  pointer-events: auto;
}

.sm-map-transparent {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  opacity: 0;
}

.sm-map-main {
  position: relative;
  width: 1600px;
}

.sm-map-hovers {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sm-map-img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  z-index: 4;
}

.sm-map-pin {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  z-index: 5;
  display: block;
  text-align: center;
  pointer-events: none;
}

.sm-map-pin span {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  width: 100%;
  display: inline-block;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  text-shadow: rgb(70, 147, 143) 2px 0px 0px,
    rgb(70, 147, 143) 1.75517px 0.958851px 0px,
    rgb(70, 147, 143) 1.0806px 1.68294px 0px,
    rgb(70, 147, 143) 0.141474px 1.99499px 0px,
    rgb(70, 147, 143) -0.832294px 1.81859px 0px,
    rgb(70, 147, 143) -1.60229px 1.19694px 0px,
    rgb(70, 147, 143) -1.97998px 0.28224px 0px,
    rgb(70, 147, 143) -1.87291px -0.701566px 0px,
    rgb(70, 147, 143) -1.30729px -1.5136px 0px,
    rgb(70, 147, 143) -0.421592px -1.95506px 0px,
    rgb(70, 147, 143) 0.567324px -1.91785px 0px,
    rgb(70, 147, 143) 1.41734px -1.41108px 0px,
    rgb(70, 147, 143) 1.92034px -0.558831px 0px;
}

.sm-comm-areas li.sm-comm-title {
  z-index: 1;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #454545;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  font-weight: 300;
  display: block;
}

.sm-comm-areas li.sm-comm-title:not(:last-child) {
  margin-bottom: 26px;
}

.sm-comm-areas ul {
  display: block;
  position: relative;
  width: 100%;
}

.sm-comm-areas li.sm-comm-title:hover:before {
  width: 100%;
}

.sm-comm-areas li.sm-comm-title a {
  color: inherit;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  display: inline-block;
  position: relative;
}

.sm-comm-areas li.sm-comm-title a:after {
  position: absolute;
  content: "";
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  pointer-events: none;
  z-index: -1;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  background-color: #3a6ab2;
  opacity: 0;
  visibility: hidden;
}

.sm-map-content {
  position: absolute;
  top: 98px;
  left: 235px;
  z-index: 4;
  pointer-events: none;
}

.sm-comm-areas li.sm-comm-title.active a:after,
.sm-comm-areas li.sm-comm-title:hover a:after {
  opacity: 1;
  visibility: visible;
  width: 100%;
}

.sm-comm-areas li.sm-comm-title.active a:before,
.sm-comm-areas li.sm-comm-title:hover a:before {
  opacity: 0;
  visibility: hidden;
}

.sm-map-hovers > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.sm-map-hovers > div.active .sm-map-img {
  opacity: 1;
  visibility: visible;
}

/*hovers*/
.sm-map-hovers > div.king-george .sm-map-img {
  top: 4px;
  left: 824px;
}

.sm-map-hovers > div.essex .sm-map-img {
  top: 171px;
  left: 910px;
}

.sm-map-hovers > div.king-and-queen .sm-map-img {
  top: 299px;
  left: 899px;
}

.sm-map-hovers > div.king-william .sm-map-img {
  top: 342px;
  left: 814px;
}

.sm-map-hovers > div.gloucester .sm-map-img {
  top: 550px;
  left: 1176px;
}

.sm-map-hovers > div.matthews .sm-map-img {
  top: 598px;
  left: 1315px;
}

/*Pin*/
.sm-map-hovers > div.king-george .sm-map-pin {
  top: 85px;
  left: 855px;
}

.sm-map-hovers > div.essex .sm-map-pin {
  top: 326px;
  left: 1021px;
}

.sm-map-hovers > div.king-and-queen .sm-map-pin {
  top: 428px;
  left: 965px;
}

.sm-map-hovers > div.king-william .sm-map-pin {
  top: 478px;
  left: 882px;
}

.sm-map-hovers > div.gloucester .sm-map-pin {
  top: 641px;
  left: 1187px;
}

.sm-map-hovers > div.matthews .sm-map-pin {
  top: 658px;
  left: 1338px;
}

.map-sub-hovers-title {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: rgb(70, 147, 143) 2px 0px 0px,
    rgb(70, 147, 143) 1.75517px 0.958851px 0px,
    rgb(70, 147, 143) 1.0806px 1.68294px 0px,
    rgb(70, 147, 143) 0.141474px 1.99499px 0px,
    rgb(70, 147, 143) -0.832294px 1.81859px 0px,
    rgb(70, 147, 143) -1.60229px 1.19694px 0px,
    rgb(70, 147, 143) -1.97998px 0.28224px 0px,
    rgb(70, 147, 143) -1.87291px -0.701566px 0px,
    rgb(70, 147, 143) -1.30729px -1.5136px 0px,
    rgb(70, 147, 143) -0.421592px -1.95506px 0px,
    rgb(70, 147, 143) 0.567324px -1.91785px 0px,
    rgb(70, 147, 143) 1.41734px -1.41108px 0px,
    rgb(70, 147, 143) 1.92034px -0.558831px 0px;
  pointer-events: none;
  z-index: 2;
}

.map-area-sub-hovers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-area-sub-hovers > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-sub-pin {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  z-index: 5;
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: rgb(38, 71, 120) 1px 0px 0px,
    rgb(38, 71, 120) 0.540302px 0.841471px 0px,
    rgb(38, 71, 120) -0.416147px 0.909297px 0px,
    rgb(38, 71, 120) -0.989992px 0.14112px 0px,
    rgb(38, 71, 120) -0.653644px -0.756802px 0px,
    rgb(38, 71, 120) 0.283662px -0.958924px 0px,
    rgb(38, 71, 120) 0.96017px -0.279415px 0px;
  font-family: "Roboto", sans-serif;
  pointer-events: none;
}

.map-sub-pin:before {
  position: absolute;
  content: "";
  bottom: calc(100% + 6px);
  left: -5px;
  right: 0;
  margin: 0 auto;
  background-image: url(images/map/ai-pin-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 22px;
}

.map-sub-img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
}

.map-area-sub-hovers > div.active .map-sub-img {
  opacity: 1;
  visibility: visible;
}

.map-sub-area-img {
  width: auto;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  pointer-events: auto;
  z-index: 7;
  position: relative;
}

.map-sub-content-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  pointer-events: none;
  z-index: 7;
}

.sm-map-hover-content {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sm-map-hover-content > div {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  pointer-events: none;
}

/*******************************************************
 *
 * Lancaster
 *
 *******************************************************/
.sm-map-hover-content > div.lancaster .map-sub-content-holder {
  top: 383px;
  left: 1190px;
  /* width: 216px; */
  /* height: 176px; */
}

.sm-map-hover-content > div.lancaster .map-sub-hovers-title {
  top: 54px;
  left: 14px;
}

/*Sub Pin */
.map-area-sub-hovers > div.lancaster .map-sub-pin {
  top: 39px;
  left: 52px;
}

.map-area-sub-hovers > div.weems .map-sub-pin {
  top: 98px;
  left: 96px;
}

.map-area-sub-hovers > div.weems .map-sub-pin:before {
  left: 16px;
  top: -24px;
}

.map-area-sub-hovers > div.irvington .map-sub-pin {
  top: 115px;
  left: 120px;
}

.map-area-sub-hovers > div.white-stone .map-sub-pin {
  top: 147px;
  left: 150px;
}

/*Sub Image*/
.map-area-sub-hovers > div.lancaster .map-sub-img {
  top: 0;
  left: 0;
}

.map-area-sub-hovers > div.weems .map-sub-img {
  top: 78px;
  left: 102px;
}

.map-area-sub-hovers > div.irvington .map-sub-img {
  top: 92px;
  left: 124px;
}

.map-area-sub-hovers > div.white-stone .map-sub-img {
  top: 96px;
  left: 117px;
}

/*******************************************************
 *
 * End of Lancaster
 *
 *******************************************************/

/*******************************************************
 *
 * westmoreland
 *
 *******************************************************/

.sm-map-hover-content > div.westmoreland .map-sub-content-holder {
  top: 94px;
  left: 984px;
  /* width: 288px; */
  /* height: 205px; */
}

.sm-map-hover-content > div.westmoreland .map-sub-hovers-title {
  top: 106px;
  left: 14px;
}

/*Sub Pin */
.map-area-sub-hovers > div.colonial-beach .map-sub-pin {
  top: 64px;
  left: -23px;
}

.map-area-sub-hovers > div.montross .map-sub-pin {
  top: 92px;
  left: 109px;
}

.map-area-sub-hovers > div.kinsale-hague .map-sub-pin {
  top: 138px;
  left: 159px;
}

/*Sub Image*/
.map-area-sub-hovers > div.colonial-beach .map-sub-img {
  top: 1px;
  left: 0;
}

.map-area-sub-hovers > div.montross .map-sub-img {
  top: 54px;
  left: 47px;
}

.map-area-sub-hovers > div.kinsale-hague .map-sub-img {
  top: 80px;
  left: 170px;
}

/*******************************************************
 *
 * End of westmoreland
 *
 *******************************************************/

/*******************************************************
 *
 * Richmond
 *
 *******************************************************/
.sm-map-hover-content > div.richmond .map-sub-content-holder {
  top: 201px;
  left: 1048px;
  /* width: 226px; */
  /* height: 220px; */
}

.sm-map-hover-content > div.richmond .map-sub-hovers-title {
  top: 105px;
  left: 58px;
}

/*Sub Pin */
.map-area-sub-hovers > div.warsaw .map-sub-pin {
  top: 90px;
  left: 54px;
}

.map-area-sub-hovers > div.farnham .map-sub-pin {
  top: 161px;
  left: 147px;
}

/*Sub Image*/

.map-area-sub-hovers > div.warsaw .map-sub-img {
  top: 0;
  left: 0;
}

.map-area-sub-hovers > div.farnham .map-sub-img {
  top: 103px;
  left: 131px;
}

/*******************************************************
 *
 * End of Richmond
 *
 *******************************************************/

/*******************************************************
 *
 * Northumberland
 *
 *******************************************************/
.sm-map-hover-content > div.northumberland .map-sub-content-holder {
  top: 255px;
  left: 1211px;
  /* width: 209px; */
  /* height: 235px; */
}

.sm-map-hover-content > div.northumberland .map-sub-hovers-title {
  top: 60px;
  left: 31px;
}

/*Sub Pin */
.map-area-sub-hovers > div.callao-lottsburg .map-sub-pin {
  top: 38px;
  left: -6px;
}

.map-area-sub-hovers > div.heathsville .map-sub-pin {
  top: 108px;
  left: 57px;
}

.map-area-sub-hovers > div.burgess .map-sub-pin {
  top: 121px;
  left: 121px;
}

.map-area-sub-hovers > div.burgess .map-sub-pin:before {
  left: 4px;
}

.map-area-sub-hovers > div.reedville .map-sub-pin {
  top: 112px;
  left: 201px;
}

.map-area-sub-hovers > div.reedville .map-sub-pin:before {
  bottom: 1px;
  left: -22px;
  right: auto;
}

.map-area-sub-hovers > div.wicomico-church .map-sub-pin {
  top: 144px;
  left: 156px;
}

.map-area-sub-hovers > div.kilmarnock .map-sub-pin {
  top: 195px;
  left: 123px;
}

/*Sub Image*/

.map-area-sub-hovers > div.callao-lottsburg .map-sub-img {
  top: 0;
  left: 0;
}

.map-area-sub-hovers > div.heathsville .map-sub-img {
  top: 16px;
  left: 45px;
}

.map-area-sub-hovers > div.burgess .map-sub-img {
  top: 87px;
  left: 137px;
}

.map-area-sub-hovers > div.reedville .map-sub-img {
  top: 86px;
  left: 154px;
}

.map-area-sub-hovers > div.wicomico-church .map-sub-img {
  top: 126px;
  left: 136px;
}

.map-area-sub-hovers > div.wicomico-church .map-sub-pin:before {
  bottom: -3px;
  left: -20px;
  right: auto;
}

.map-area-sub-hovers > div.kilmarnock .map-sub-img {
  top: 158px;
  left: 112px;
}

/*******************************************************
 *
 * End of Northumberland
 *
 *******************************************************/

/*******************************************************
 *
 * Middlesex
 *
 *******************************************************/
.sm-map-hover-content > div.middlesex .map-sub-content-holder {
  top: 430px;
  left: 1146px;
  /* width: 255px; */
  /* height: 178px; */
}

.sm-map-hover-content > div.middlesex .map-sub-hovers-title {
  top: 109px;
  left: 51px;
}

/*Sub Pin */
.map-area-sub-hovers > div.urbanna .map-sub-pin {
  top: 50px;
  left: 17px;
}

.map-area-sub-hovers > div.saluda .map-sub-pin {
  top: 99px;
  left: 57px;
}

.map-area-sub-hovers > div.central .map-sub-pin {
  top: 157px;
  left: 133px;
}

.map-area-sub-hovers > div.deltaville .map-sub-pin {
  top: 159px;
  left: 193px;
}

/*Sub Image*/

.map-area-sub-hovers > div.urbanna .map-sub-img {
  top: 0;
  left: 0;
}

.map-area-sub-hovers > div.saluda .map-sub-img {
  top: 48px;
  left: 33px;
}

.map-area-sub-hovers > div.central .map-sub-img {
  top: 104px;
  left: 88px;
}

.map-area-sub-hovers > div.deltaville .map-sub-img {
  top: 118px;
  left: 182px;
}

/*******************************************************
 *
 * End of Middlesex
 *
 *******************************************************/

img.sm-map-base {
  display: block;
  width: 100%;
  max-width: 100%;
}

.sm-map-hovers
  > div[data-community-target].active.active-hover
  .sm-map-img.sub {
  opacity: 0;
  visibility: hidden;
}

.sm-map-hovers > div.active-hover .sm-map-img:not(.sub) {
  opacity: 1;
  visibility: visible;
}

.sm-map-hovers
  > div[data-community-target].active.active-hover
  .sm-map-img.sub {
  opacity: 1;
  visibility: visible;
}

.sm-map-hovers > div.colonial-beach .sm-map-img {
  top: 94px;
  left: 984px;
}

.sm-map-hovers > div.montross .sm-map-img {
  top: 147px;
  left: 1031px;
}

.sm-map-hovers > div.kinsale-hague .sm-map-img {
  top: 173px;
  left: 1154px;
}

/*Richmond*/

.sm-map-hovers > div.warsaw .sm-map-img {
  top: 201px;
  left: 1048px;
}

.sm-map-hovers > div.farnham .sm-map-img {
  top: 304px;
  left: 1179px;
}

/*northumberland */

.sm-map-hovers > div.callao-lottsburg .sm-map-img {
  top: 255px;
  left: 1212px;
}

.sm-map-hovers > div.heathsville .sm-map-img {
  top: 271px;
  left: 1257px;
}

.sm-map-hovers > div.burgess .sm-map-img {
  top: 341px;
  left: 1348px;
}

.sm-map-hovers > div.reedville .sm-map-img {
  top: 341px;
  left: 1364px;
}

.sm-map-hovers > div.wicomico-church .sm-map-img {
  top: 383px;
  left: 1344px;
}

.sm-map-hovers > div.kilmarnock .sm-map-img {
  top: 413px;
  left: 1323px;
}

/*northumberland */

.sm-map-hovers > div.lancaster .sm-map-img {
  top: 383px;
  left: 1190px;
}

.sm-map-hovers > div.weems .sm-map-img {
  top: 460px;
  left: 1292px;
}

.sm-map-hovers > div.irvington .sm-map-img {
  top: 475px;
  left: 1313px;
}

.sm-map-hovers > div.white-stone .sm-map-img {
  top: 479px;
  left: 1307px;
}

/*middlesex */

.sm-map-hovers > div.urbanna .sm-map-img {
  top: 429px;
  left: 1147px;
}

.sm-map-hovers > div.saluda .sm-map-img {
  top: 478px;
  left: 1179px;
}

.sm-map-hovers > div.central .sm-map-img {
  top: 534px;
  left: 1234px;
}

.sm-map-hovers > div.deltaville .sm-map-img {
  top: 548px;
  left: 1328px;
}

/*Welcome*/

.welc-container {
  display: block;
  position: relative;
  font-size: 0;
}

.welc-wrapper {
  display: block;
  position: relative;
}

.welc-main {
  display: block;
  position: relative;
}

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

.welc-col {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  width: 50%;
}

.welc-content {
  display: block;
  position: relative;
  padding-left: 35px;
}

.welc-content p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.025em;
  color: #333333;
  text-align: justify;
}

.welc-content p:not(:last-child) {
  margin-bottom: 26px;
}

.welc-image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  position: relative;
}

.welc-image-wrap {
  display: block;
  position: relative;
  width: 100%;
}

.welc-image {
  width: 100%;
  display: block;
  padding-top: 53px;
  background: #fff;
  position: relative;
}

.welc-content-wrap {
  display: block;
  position: relative;
  padding: 80px 110px 0 74px;
}

.welc-content-wrap > .global-title {
  margin-bottom: 31px;
}

.welc-image:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*OPTIMIZATION*/
  background-position: top center;
  background-size: contain;
  pointer-events: none;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.05;
}

.welc-image:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 90px;
  height: 100%;
  background: #3a6ab2;
  pointer-events: none;
}

/*Waterfront Properties*/
.wf-main-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto 60px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.wf-container {
  display: block;
  position: relative;
  padding: 79px 0 0;
  font-size: 0;
  z-index: 4;
  overflow: hidden;
}

.wf-wrapper {
  display: block;
  position: relative;
}

.wf-main {
  display: block;
  position: relative;
}

.wf-slide {
  display: block;
  position: relative;
  margin: 0 -17.5px;
}

.wf-slide:not(.slick-initialized) .wf-item:nth-child(n + 3) ~ div {
  display: none;
}

.wf-prev span,
.wf-next span {
  width: 40px;
  height: 40px;
  border: 1px solid #58b7b2;
  font-size: 12px;
  color: #58b7b2;
  line-height: 1;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
}

.wf-prev,
.wf-next {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}

.wf-next {
  margin: 0;
}

.wf-main-title-col {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
}

.wf-prev:hover span,
.wf-next:hover span {
  background: #3a6ab2;
  color: #fff;
  border-color: #3a6ab2;
}

.wf-item {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: calc(100% / 3);
  padding: 0 17.5px;
  overflow: hidden;
}

.wf-item a {
  display: block;
  position: relative;
}

.wf-img {
  position: relative;
}

.wf-img canvas {
  display: block;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #3a6ab2;
}

.wf-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 25px 30px 25px;
  margin-left: 50px;
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.wf-banner {
  position: absolute;
  top: 50px;
  right: 0;
  width: 110px;
}

.wf-img:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 37, 38, 0.4);
  pointer-events: none;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.wf-add {
  display: block;
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.wf-btn {
  display: block;
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.wf-add h2 {
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}

.wf-add span {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
  margin-top: 5px;
}

.wf-btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #3a6ab2;
  text-transform: uppercase;
  background: #fff;
}

.wf-hover:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.wf-item a:hover .wf-hover {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  padding-top: 0;
}

.wf-item a:hover .wf-hover:before {
  background: #fff;
}

.wf-item a:hover .wf-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wf-item a:hover .wf-add {
  margin-bottom: 19px;
}

.wf-item a:hover .wf-img:before {
  background: rgba(58, 106, 178, 0.75);
}

.wf-banner span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wf-banner.for-sale {
  background: #58b7b2;
}

.wf-banner.sold {
  background: #b75858;
}

/*Testimonials*/
#testimonials {
  font-size: 0;
}
.testi-main {
  display: block;
  position: relative;
  width: 100%;
  max-width: 872px;
  margin: 0 auto;
  background: #fff;
  padding: 72px 130px 79px;
  text-align: center;
  z-index: 1;
}

.testi-slide:not(.slick-initialized) .testi-item:nth-child(n + 2) {
  display: none;
}

.testi-slide {
  display: block;
  position: relative;
}

.testi-main .global-title {
  display: inline-block;
  margin-bottom: 30px;
}

.testi-container {
  display: block;
  position: relative;
}

.testi-container:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*OPTIMIZATION*/
  background-position: center;
  background-size: cover;
  pointer-events: none;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.25;
}

.testi-container:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 1)),
    to(rgba(255, 255, 255, 0))
  );
  background: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
  pointer-events: none;
}

.testi-wrapper {
  display: block;
  position: relative;
  padding: 112px 0 132px;
}

.testi-wrapper:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 1)),
    to(rgba(255, 255, 255, 0))
  );
  background: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
}

.testi-content {
  display: block;
  position: relative;
  margin-bottom: 37px;
  width: 100%;
  max-width: 94%;
  margin: 0 auto 37px;
}

.testi-agent {
  display: block;
  position: relative;
}

.testi-content p {
  font-size: 15px;
  font-weight: 200;
  line-height: 1.7;
  font-style: italic;
  letter-spacing: 0.025em;
  color: #333333;
}

.testi-agent span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.025em;
  color: #333333;
  text-transform: uppercase;
}

.testi-prev span,
.testi-next span {
  width: 40px;
  height: 40px;
  border: 1px solid #58b7b2;
  font-size: 12px;
  color: #58b7b2;
  line-height: 1;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
}

.testi-prev,
.testi-next {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
}

.testi-arrows {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: calc(100% + 200px);
  margin: 0 auto;
  left: 50%;
  pointer-events: none;
}

.testi-prev:hover span,
.testi-next:hover span {
  background: #3a6ab2;
  color: #fff;
  border-color: #3a6ab2;
}

/*Contact Us*/

.cu-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cu-col {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 50%;
}

.cu-col:first-child {
  width: calc(39.3% - 30px);
}

.cu-col:last-child {
  width: calc(60.7% - 30px);
}

.cu-main {
  display: block;
  position: relative;
}

.cu-container {
  display: block;
  position: relative;
  padding: 140px 0 147px;
  background: #3a6ab2;
}

.cu-container:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*OPTIMIZATION*/
  background-position: center;
  background-size: cover;
  pointer-events: none;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.1;
}

.cu-wrapper {
  display: block;
  position: relative;
}

.cu-content-wrap {
  display: block;
  position: relative;
  padding-top: 20px;
}

.cu-caption {
  display: block;
  position: relative;
  padding-left: 32px;
}

.cu-content-wrap .global-title {
  margin-bottom: 15px;
}

.cu-content-wrap .global-title h2,
.cu-content-wrap .global-title h2 span,
.cu-content-wrap .global-section-no {
  color: #fff;
}

.cu-content-wrap .global-section-no:before {
  background: #fff;
}

.cu-caption p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.025em;
  color: #fff;
  -webkit-hyphenate-character: auto;
}

.cu-form-wrap {
  display: block;
  position: relative;
}

.cu-form-widget {
  display: block;
  position: relative;
}

.cu-form-widget form {
  position: relative;
}

.cu-form {
  display: block;
  position: relative;
}

.cu-form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 53px;
}

.cu-form-row-full {
  display: block;
}

.cu-form-row .cu-form-col {
  display: inline-block;
  vertical-align: middle;
  width: calc(33.33% - 5px);
}

.cu-form-col input:not([type="submit"]),
.cu-form-col textarea {
  width: 100%;
  height: 50px;
  padding: 0 2px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
}

.cu-form-col textarea {
  height: 110px;
  padding: 10px 2px;
  resize: none;
}

.cu-form-col textarea::-webkit-scrollbar {
  display: none;
}

.cu-form-col textarea {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  padding-right: 50px;
}

.cu-form-submit input[type="submit"] {
  border: none;
  padding: 0;
  font-size: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/ai-plane-icon.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  background-color: transparent;
}

.cu-form-submit input[type="submit"]:hover {
  opacity: 0.75;
}

.cu-form-submit {
  position: absolute;
  bottom: 25px;
  right: 4px;
  width: 38px;
  height: 38px;
}

.cu-form-col {
  display: block;
  position: relative;
}

.cu-form-widget div.wpcf7 .ajax-loader {
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.cu-form-widget div.wpcf7-response-output {
  text-align: center;
  color: #fff !important;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/*Footer*/
.footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-copyright {
  display: block;
  position: relative;
  font-size: 0;
  padding: 54px 0;
  background: #333333;
}

.footer-col {
  display: inline-block;
  vertical-align: middle;
}

#footer-nav > li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 0 9.5px;
}

#footer-nav > li:first-of-type {
  padding-left: 0;
}

#footer-nav > li:last-of-type {
  padding-right: 0;
}

.footer-nav-wrap {
  display: block;
  margin-bottom: 17px;
}

#footer-nav > li > a {
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.025em;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

#footer-nav > li > a:hover {
  color: #58b7b2;
}

/*Copyright*/
.copyright {
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.028em;
  color: #fff;
  position: relative;
  display: block;
}

.copyright a {
  color: #fff;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  text-decoration: none !important;
  font-weight: 300 !important;
}

.copyright a:hover {
  color: #58b7b2;
}

.copyright span {
  color: #58b7b2;
}

.mls-logo {
  position: relative;
  display: block;
}

.mls-logo span {
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  color: #fff;
  margin: 0 6px;
}

.mls-logo span:last-child {
  margin-right: 0;
}

.mls-logo span:first-child {
  margin-left: 0;
}

/* Primary Sidebar */

.sb-qs-container {
  position: relative;
  display: block;
  font-size: 0;
}

.sb-qs-container .qs-title {
  display: block;
  text-align: center;
  position: relative;
}

.sb-qs-container:before,
.sb-qs-container:after {
  display: table;
  clear: both;
  content: "";
}

.sb-qs-container form {
  margin: 0;
}

.sb-qs-container .qs-main {
  max-width: 100%;
  margin: 0 auto;
}

.sb-qs-container .qs-field.mlong,
.sb-qs-container .qs-field.long {
  width: 100%;
  margin-bottom: 4px;
  margin-right: 0;
}

.sb-qs-container .qs-field.short-b,
.sb-qs-container .qs-field.short-i,
.sb-qs-container .qs-field.submit {
  width: calc(50% - 2px);
  float: left;
  margin-bottom: 4px;
  margin-right: 0;
}

.sb-qs-container .qs-field.short-b.fl-r,
.sb-qs-container .qs-field.short-i.fl-r,
.sb-qs-container .qs-field.submit.fl-r {
  float: right;
  margin-right: 0;
}

.sb-qs-container .qs-title h2 span:before,
.sb-qs-container .qs-title h2 span:after {
  display: none;
}

.sb-qs-container .qs-title h2 {
  color: #3a6ab2;
  font-family: var(--title-font);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  overflow: hidden;
  font-weight: 400;
}

.sb-qs-container .qs-field select,
.sb-qs-container .qs-field input#maxprice,
.sb-qs-container .qs-field input#minprice,
.sb-qs-container div.qs-field.long button.btn {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #333;
  width: 100%;
  height: 40px;
  padding: 0;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1.1px;
  color: #333;
  text-transform: uppercase;
  border-radius: inherit;
}

.sb-qs-container .qs-field.submit input[type="submit"] {
  width: 100%;
  height: 40px;
  border: none;
  background: #3a6ab2;
  padding: 0;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1.1px;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.sb-qs-container .qs-field.submit input[type="submit"]:hover {
  background: #58b7b2;
}

.sb-qs-container .qs-field.submit a.qs-adv {
  width: 100%;
  height: 40px;
  border: none;
  background: #525151;
  padding: 0;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1.1px;
  color: #fff;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.sb-qs-container .qs-field.submit a.qs-adv:hover {
  background: #333333;
}

/*Contacts*/

.sb-contacts-container {
  display: block;
  position: relative;
  text-align: center;
  padding: 30px 0;
  font-size: 0;
}

.sb-logo {
  display: block;
  position: relative;
  margin-bottom: 10px;
}

.sb-logo a {
  display: block;
  position: relative;
}

.sb-logo img {
  max-width: 100%;
}

.sb-contacts span {
  display: block;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

.sb-contacts span a {
  color: #000;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.sb-contacts span a:hover {
  color: #3a6ab2;
}

/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
.ip-container #breadcrumbs {
  font-size: 13px;
}

.ip-container #breadcrumbs span.breadcrumb_last {
  color: #3a6ab2;
  font-weight: 700;
}

.ip-banner {
  position: relative;
  overflow: hidden;
}

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

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

.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: 400;
  font-size: 45px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

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

/* 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: 74.08%;
}
#content-full #content {
  width: 100%;
}

/* Adjust width of sidebar */
.sidebar {
  width: 23.83%;
  margin-top: 80px;
}

/* 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-size: 50px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #3a6ab2;
  font-weight: 400;
  text-transform: uppercase;
}

#content .entry {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.025em;
  color: #333333;
}
/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
  margin-top: 0;
  font-size: 45px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #3a6ab2;
  font-weight: 400;
  text-transform: uppercase;
}

.aios-custom-ihomefinder-details-template
  #listings-details
  .listings-cta
  > li
  > a {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  margin: 0 auto;
  padding: 10px;
  border: 2px solid #000;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

.aios-custom-ihomefinder-details-template
  #listings-details
  .listings-link-navigation-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 326px;
  max-width: 100%;
  height: 58px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9c8d5e;
  border: 2px solid #000;
  transition: all 0.3s ease;
}

body.aios-custom-ihomefinder-details-template .sidebar {
  display: none;
}

body.aios-custom-ihomefinder-details-template #content-sidebar #content {
  width: 100%;
  float: none;
}

body .aios-custom-ihomefinder-template-poweredby {
  margin-bottom: 50px;
}

body
  #ai-minimalist-properties-details-wrap
  .ai-minimalist-pd-listings-main-left
  .ai-minimalist-pd-listings-infos
  li
  em {
  color: #3a6ab2;
}

.amh-header-buttons .ai-envelope-f,
.amh-header-buttons .ai-phone,
.amh-header-buttons .ai-menu {
  position: relative;
  font-family: agentimage !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.amh-header-buttons .ai-menu:before,
.amh-header-buttons .ai-font-menu:before {
  content: "\b0070";
}
.amh-header-buttons .ai-phone:before,
.amh-header-buttons .ai-font-phone:before {
  content: "\b0069";
}
.amh-header-buttons .ai-envelope-f:before,
.amh-header-buttons .ai-font-envelope-f:before {
  content: "\b0122";
}

body
  .ai-communities-minimalist-search
  .ai-communities-minimalist-sort
  label:after {
  background: #3a6ab2;
}

.sb-qs-container .qs-main .bootstrap-select.btn-group .dropdown-menu.inner {
  max-height: 230px !important;
}

.single-aios-communities aside.sidebar {
  display: none;
}

.single-aios-communities #content-sidebar #content {
  width: 100%;
}

#listings-results .listings-table .listings-table-body .listings-table-label {
  color: #fff !important;
}

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

body.aios-custom-ihomefinder-details-template .wpcf7-not-valid-tip {
  top: auto !important;
  bottom: 0;
  left: auto;
}

body.aios-custom-ihomefinder-details-template
  #ai-minimalist-properties-details-wrap
  .ai-listings-details-form
  .listings-field
  textarea::-webkit-scrollbar {
  display: none;
}

body.aios-custom-ihomefinder-details-template
  #ai-minimalist-properties-details-wrap
  .ai-listings-details-form
  .listings-field
  textarea {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  padding-right: 35px;
}

body.aios-custom-ihomefinder-details-template
  #ai-minimalist-properties-details-wrap
  .ai-listings-details-form
  .listings-field.submit {
  right: 25px;
}

a.btn.btn-link.ihf-advanced-search-launch {
  white-space: unset !important;
}

body.aios-custom-ihomefinder-results-template
  .container
  #content-full
  .entry-title {
  width: 100%;
  padding: 0;
}

.qs-field .bootstrap-select.btn-group .dropdown-toggle .filter-option {
  width: 100%;
  text-overflow: ellipsis;
}



/* testimonials fix */
body.home .testi-agent {
  display: none;
}
body.home .testi-content {
  margin-block-end: 0px;
}

body.post-type-archive-testimonials
  :where(.aix-testimonial-wrap h2, .aios-testimonials-lists h3) {
  display: none;
}

#ihf-main-container .modal-header .close {
  color: #fff;
  opacity: 1;
}

/*OPTIMIZATION*/
.testi-container:before{
    background-image: url(/wp-content/uploads/2024/04/testi-bg-compressed.jpg);
    background-repeat: no-repeat;
}
.cu-container:before{
    background-image: url(/wp-content/uploads/2024/04/cu-bg-compressed.jpg);
    background-repeat: no-repeat;
}
.welc-image:before{
    background-image: url(/wp-content/uploads/2024/04/welc-bg-compressed.jpg);
    background-repeat: no-repeat;
}
/*OPTIMIZATION*/

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