/*
Theme Name: Kommerina Luxury Real Estate
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.0
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. Variables
2. Custom CSS
3. IP styles
4. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/
@import url(css/flex.css);
/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/
:root {
  /** Font default */
  --font-family-default: 'Rubik', sans-serif;
  --font-family-title: 'Old Standard TT', serif;
  --font-size-default: 15px;
  --font-size-title: 90px;
  --font-color-default: #5f5f5f;
  --font-color-title: #000000;
  --primary-color: #000000;
  --secondary-color: #c3a659;
  --hover-color: #c3a659;
  --hover-color-alt: #000000;
  --background-color: #c3a659;
  /** Use for input, button, and any other element */
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
}

/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/
/* Global */
body {
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  background: #FFFFFF;
  color: var(--font-color-default);
  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; */
}

p {
  font-size: var(--font-size-default);
}

.slick-slide {
  outline: none !important;
}

a,
a:focus,
a:visited,
a:hover,
button {
  outline: 0 !important;
  text-decoration: none !important;
}

#main-wrapper {
  position: relative;
  overflow: hidden;
}

.background-cover {
  background-color: #cccccc;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.global-site-title {
  position: relative;
  font: 400 var(--font-size-title)/0.95 var(--font-family-title);
  color: var(--font-color-title);
  letter-spacing: -0.02em;
  padding: 18px 40px 8px;
}

.global-site-title::before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: calc( 100% - 18px);
  top: 0;
  left: 0;
  background: #9f9f9f;
  opacity: 0.5;
}

.global-site-title::after {
  content: '';
  display: block;
  position: absolute;
  width: 4px;
  height: 54px;
  top: 0;
  left: -2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#af903a), color-stop(50%, #d4c183), to(#b59139));
  background: linear-gradient(to bottom, #af903a 0%, #d4c183 50%, #b59139 100%);
}

.global-site-title span {
  display: block;
  font: 400 22px/1 var(--font-family-default);
  color: #848484;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.global-site-title.is-text-white {
  color: #ffffff;
}

.global-site-title.is-text-white span {
  color: #ffffff;
}

.global-site-button,
a.global-site-button {
  display: inline-block;
  position: relative;
  width: 280px;
  max-width: 100%;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
  color: #252525;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  background: none;
  border: 2px solid #b1913b;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.global-site-button::before, .global-site-button::after,
a.global-site-button::before,
a.global-site-button::after {
  content: '';
  display: block;
  position: absolute;
  width: 2px;
  height: calc( 100% + 4px);
  top: -2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#b1913b), color-stop(50%, #d7c387), to(#b28e35));
  background: linear-gradient(to bottom, #b1913b 0%, #d7c387 50%, #b28e35 100%);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.global-site-button::before,
a.global-site-button::before {
  left: -2px;
}

.global-site-button::after,
a.global-site-button::after {
  right: -2px;
}

.global-site-button div, .global-site-button span,
a.global-site-button div,
a.global-site-button span {
  position: relative;
  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: 56px;
}

.global-site-button:hover,
a.global-site-button:hover {
  background: var(--hover-color);
  border-color: var(--hover-color);
  color: #ffffff;
}

.global-site-button:hover::before, .global-site-button:hover::after,
a.global-site-button:hover::before,
a.global-site-button:hover::after {
  opacity: 0;
}

.global-site-button.is-text-white,
a.global-site-button.is-text-white {
  color: #ffffff;
}

.global-site-bg {
  position: absolute;
}

.global-site-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.form-input {
  position: relative;
}

.form-input input:not([type="submit"]),
.form-input select,
.form-input textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  width: 100%;
  padding: 0;
  outline: none;
  background: none;
}

.form-input textarea {
  resize: none;
}

.form-button {
  position: relative;
}

.form-button input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  width: 100%;
  padding: 0;
  outline: none;
  background: none;
}

.form-button button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 0;
  outline: none;
}

.filter-white {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.parallax-scroll {
  background-attachment: fixed !important;
}

.is-mobile .parallax-scroll {
  background-attachment: scroll !important;
}

.image-with-spacer {
  position: relative;
}

.image-with-spacer canvas {
  display: block;
  width: 100%;
  background: #cccccc;
}

.image-with-spacer img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-with-spacer img.lazyload, .image-with-spacer img.lazyloading {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

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

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

.site-navi .sub-menu.show-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.aios-mobile-header-wrapper {
  z-index: 1026 !important;
}

.lazyload,
.lazyloading {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.admin-bar .header {
  top: 32px;
}

/* Header : START */
.header {
  position: fixed;
  width: 100%;
  padding: 52px 0;
  top: 0;
  left: 0;
  z-index: 1020;
  font-size: 0;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.header::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(images/header-bg.jpg) no-repeat center center/cover;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.header::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: -4px;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#af903a), color-stop(51%, #d4c183), to(#b59139));
  background: linear-gradient(to bottom, #af903a 0%, #d4c183 51%, #b59139 100%);
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  pointer-events: none;
}

.header .container {
  position: relative;
}

.header-left {
  position: relative;
}

.header-logo {
  text-align: center;
}

.header-logo a {
  display: inline-block;
}

.header-logo a img {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.header-right {
  position: relative;
}

.header-contact-smis-button {
  position: relative;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.header-contact {
  position: relative;
}

.header-contact a {
  display: block;
  position: relative;
  color: #ffffff;
  margin: 0 20px;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.header-contact a::before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 28px;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: -webkit-gradient(linear, left top, left bottom, from(#af903a), color-stop(50%, #d4c183), to(#b59139));
  background: linear-gradient(to bottom, #af903a 0%, #d4c183 50%, #b59139 100%);
}

.header-contact a i {
  font-size: 18px;
}

.header-contact a i.ai-font-envelope {
  font-size: 12px;
}

.header-contact a:first-child::before {
  display: none;
}

.header-contact a:hover {
  color: var(--hover-color);
}

.header-smis {
  position: relative;
}

.header-smis a {
  display: block;
  position: relative;
  color: #ffffff;
  margin: 0 20px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header-smis a::before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 28px;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: -webkit-gradient(linear, left top, left bottom, from(#af903a), color-stop(50%, #d4c183), to(#b59139));
  background: linear-gradient(to bottom, #af903a 0%, #d4c183 50%, #b59139 100%);
}

.header-smis a i {
  font-size: 22px;
}

.header-smis a:hover {
  color: var(--hover-color);
}

.header-button {
  position: relative;
  width: 132px;
  max-width: 100%;
  margin-left: 14px;
}

.header-button a {
  display: block;
  font: 400 12px/1 var(--font-family-title);
  color: #000000;
  letter-spacing: 0.025em;
  text-align: center;
  text-transform: uppercase;
  padding: 0 5px;
  background: #ffffff;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.header-button.mobile-view {
  display: none;
  border: 1px solid #000;
  margin: 24px auto 0;
}

.header-button a div {
  height: 30px;
  padding-top: 3px;
  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;
}

.header-button a:hover {
  background: var(--hover-color);
  color: #ffffff;
}

.navigation {
  margin-top: 28px;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.site-navi li {
  display: block;
  position: relative;
}

.site-navi li a {
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.site-navi > li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 25px;
}

.site-navi > li > a::after {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(images/nav-caret.png) no-repeat center center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.site-navi > li:hover > a::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.site-navi > li:first-child {
  margin-left: 0;
}

.site-navi > li:last-child {
  margin-right: 0;
}

.site-navi .sub-menu {
  position: absolute;
  width: 100%;
  min-width: 190px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.site-navi .sub-menu .sub-menu {
  top: 0;
  margin-left: 100%;
}

.site-navi .sub-menu li {
  background: var(--secondary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-navi .sub-menu li a {
  padding: 10px;
  font-weight: 400;
}

.site-navi .sub-menu li:hover > a {
  background: var(--hover-color-alt);
}

.site-navi .sub-menu li:last-child {
  border-bottom: 0;
}

.site-navi > li > .sub-menu {
  left: -150%;
  right: -150%;
  margin: auto;
  padding-top: 18px;
}

.site-navi li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header.is-sticky {
  padding: 12px 0;
}

.header.is-sticky::before, .header.is-sticky::after {
  opacity: 1;
}

.header.is-sticky .header-logo a img {
  width: 290px;
}

.header.is-sticky .header-contact-smis-button {
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.header.is-sticky .navigation {
  margin-top: 0;
}

.header.is-sticky .site-navi > li > .sub-menu {
  padding-top: 42px;
}

/* Header : END */
/* Hero : START */
.hero {
  position: relative;
  font-size: 0;
}

.hero::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(images/logo-accent.png) no-repeat left bottom/44.31% auto;
  -webkit-filter: invert(1);
          filter: invert(1);
  -webkit-transform: translate(5%);
          transform: translate(5%);
  opacity: 0.07;
  z-index: 2;
}

.slide-holder {
  position: relative;
  z-index: 1;
}

.slide-holder::before, .slide-holder::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.slide-holder::before {
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.slide-holder::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), color-stop(45%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 45%);
  z-index: 3;
}

.slide-holder > canvas {
  display: block;
  width: 100%;
  z-index: 1;
}

.slide-holder .cycloneslider {
  z-index: 1;
}

.tagline-holder {
  position: absolute;
  width: 100%;
  bottom: 130px;
  z-index: 3;
}

.tagline-holder .tagline-inner {
  position: relative;
  padding: 0 0 0 45px;
}

.tagline-holder .tagline-inner::before {
  content: '';
  display: block;
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}

.tagline-holder .tagline-inner::after {
  content: '';
  display: block;
  position: absolute;
  width: 4px;
  height: 102px;
  top: 0;
  left: -1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#af903a), color-stop(50%, #d4c183), to(#b59139));
  background: linear-gradient(to bottom, #af903a 0%, #d4c183 50%, #b59139 100%);
}

.tagline-holder h2 {
  font: 400 100px/1 var(--font-family-title);
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
  margin-bottom: 18px;
}

.qsearch-holder {
  position: absolute;
  width: 100%;
  bottom: 130px;
  z-index: 4;
  pointer-events: none;
}

.qsearch-holder .qsearch-inner {
  position: relative;
  padding: 0 0 0 45px;
}

.hp-qsearch {
  position: relative;
  background: #ffffff;
  padding: 30px 0;
  z-index: 1;
}

.hp-qsearch .qsearch-form {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.qsearch-form {
  background: var(--background-color);
  padding: 13px 34px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.qsearch-form.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.qsearch-form .form-input {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.36%;
}

.qsearch-form .form-input input:not([type="submit"]),
.qsearch-form .form-input select {
  height: 25px;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  padding: 0 2px;
}

.qsearch-form .form-input select option {
  color: #000000;
}

.qsearch-form .form-select::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  right: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 2.5px solid transparent;
  border-right: 2.5px solid transparent;
  border-top: 4px solid #ffffff;
}

.qsearch-form .form-lg {
  width: 18.16%;
}

.qsearch-form .form-sm {
  width: 7.42%;
}

.qsearch-form .form-button {
  display: inline-block;
  vertical-align: middle;
  width: 11.42%;
  margin-left: 1.75%;
  margin-right: 0.68%;
}

.qsearch-form .form-button input[type="submit"] {
  height: 35px;
  background: #ffffff;
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.qsearch-form .form-button input[type="submit"]:hover {
  background: var(--hover-color-alt);
  color: #ffffff;
}

.qsearch-form a.advanced-button {
  display: inline-block;
  vertical-align: middle;
  width: 11.42%;
  background: #ffffff;
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.qsearch-form a.advanced-button div {
  height: 35px;
  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;
}

.qsearch-form a.advanced-button:hover {
  background: var(--hover-color-alt);
  color: #ffffff;
}

.hero-accent {
  position: absolute;
  width: 6.2%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: rgba(245, 245, 245, 0.55);
  pointer-events: none;
  z-index: 5;
}

.hero-accent::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 35.49%;
  left: 0;
  bottom: 0;
  background: rgba(237, 230, 219, 0.95);
}

/* Hero : END */
/* Communities : START */
.hp-communities {
  position: relative;
  padding: 90px 0 108px;
  font-size: 0;
  z-index: 1;
}

.hp-communities .global-site-bg.main-bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hp-communities .global-site-bg.main-bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 0.92;
}

.hp-communities .global-site-bg.main-bg canvas {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.communities-container {
  position: relative;
  width: 1430px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  z-index: 2;
}

.communities-holder {
  margin-top: 45px;
}

.communities-list {
  margin: 0 -5px;
}

.communities-list:not(.slick-initialized) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.communities-list:not(.slick-initialized) .communities-item {
  width: 25%;
}

.communities-list:not(.slick-initialized) .communities-item:nth-child(8) ~ div {
  display: none;
}

.communities-item {
  position: relative;
  padding: 5px;
}

.communities-item a {
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
}

.communities-image {
  z-index: 1;
}

.communities-image::before, .communities-image::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.communities-image::before {
  background: #000000;
  opacity: 0.3;
  z-index: 2;
}

.communities-image::after {
  background: url(images/logo-mono.png) no-repeat left center/auto 100%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.communities-image img {
  z-index: 1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.communities-item a:hover .communities-image::before {
  background: var(--secondary-color);
  opacity: 0.9;
}

.communities-item a:hover .communities-image::after {
  opacity: 0.1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.communities-item a:hover .communities-image img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.communities-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
  -webkit-transform: translateY(42px);
          transform: translateY(42px);
  z-index: 2;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.communities-name {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
}

.communities-text .global-site-button {
  width: 220px;
  margin-top: 25px;
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--hover-color-alt);
  opacity: 0;
}

.communities-text .global-site-button::before, .communities-text .global-site-button::after {
  opacity: 0;
}

.communities-item a:hover .communities-text {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.communities-item a:hover .communities-text .global-site-button {
  opacity: 1;
}

.communities-arrows {
  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-top: 35px;
}

.communities-arrow {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  width: 72px;
  height: 70px;
  margin: 0 5px;
  font-size: 24px;
  color: #000000;
  background: rgba(255, 255, 255, 0.5);
  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;
  border: 2px solid #b1913b;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.communities-arrow::before, .communities-arrow::after {
  content: '';
  display: block;
  position: absolute;
  width: 2px;
  height: calc( 100% + 4px);
  top: -2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#b1913b), color-stop(50%, #d7c387), to(#b28e35));
  background: linear-gradient(to bottom, #b1913b 0%, #d7c387 50%, #b28e35 100%);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.communities-arrow::before {
  left: -2px;
}

.communities-arrow::after {
  right: -2px;
}

.communities-arrow:hover {
  color: #ffffff;
  border-color: var(--hover-color);
  background: var(--hover-color);
}

.communities-arrow:hover::before, .communities-arrow:hover::after {
  opacity: 0;
}

.hp-featured-extend-bg {
  position: absolute;
  z-index: 1;
  width: 39.12%;
  height: 42.3%;
  bottom: 0;
  right: -24.5%;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
  overflow: hidden;
}

.hp-featured-extend-bg .global-site-bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 0;
  bottom: 0;
  margin-left: -38%;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}

.hp-featured-extend-bg .global-site-bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #eee7dd;
  opacity: 0.92;
}

.hp-featured-extend-bg .global-site-bg canvas {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

/* Communities : END */
/* Featured : START */
.hp-featured {
  position: relative;
  padding: 90px 0 108px;
  font-size: 0;
  z-index: 1;
}

.hp-featured .global-site-bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hp-featured .global-site-bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #eee7dd;
  opacity: 0.92;
}

.hp-featured .global-site-bg canvas {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.properties-container {
  position: relative;
  width: 1430px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.properties-holder {
  margin-top: 35px;
}

.properties-list {
  margin: 0 -15px;
  text-align: center;
}

.properties-list:not(.slick-initialized) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.properties-list:not(.slick-initialized) .properties-item {
  width: 50%;
}

.properties-list:not(.slick-initialized) .properties-item:nth-child(4) ~ div {
  display: none;
}

.properties-item {
  padding: 15px;
  text-align: left;
}

.properties-item a {
  display: block;
  position: relative;
  overflow: hidden;
}

.properties-image {
  z-index: 1;
}

.properties-image::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.5) 100%);
}

.properties-image img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.properties-item a:hover .properties-image img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.properties-text {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 40px;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  z-index: 2;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.properties-price {
  font: 400 40px/1 var(--font-family-title);
  color: #ffffff;
}

.properties-address {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 6px;
}

.properties-button {
  width: 220px;
  background: var(--hover-color);
  color: #ffffff;
  border-color: var(--hover-color);
  margin-top: 18px;
  opacity: 0;
}

.properties-button::before, .properties-button::after {
  opacity: 0;
}

.properties-item a:hover .properties-text {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.properties-item a:hover .properties-text .properties-button {
  opacity: 1;
}

.properties-status {
  position: absolute;
  width: 114px;
  height: 40px;
  top: 10px;
  right: 10px;
  padding: 0 5px;
  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: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.25em;
  text-align: center;
  text-transform: uppercase;
  background: var(--secondary-color);
  z-index: 3;
}

.properties-holder a.global-site-button {
  display: block;
  margin: 25px auto 0;
}

/* Featured : END */
/* Sold : START */
.hp-sold {
  position: relative;
  padding: 90px 0 108px;
  font-size: 0;
  z-index: 1;
}

.hp-sold .global-site-bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hp-sold .global-site-bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f2f2f2;
  opacity: 0.92;
}

.hp-sold .global-site-bg canvas {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.hp-sold .properties-image img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

/* Sold : END */
/* Welcome : START */
.hp-welcome {
  position: relative;
  background: #ffffff;
  padding: 110px 0 138px;
  font-size: 0;
  overflow: hidden;
  z-index: 1;
}

.hp-welcome::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(images/logo-accent.png) no-repeat left bottom/68.93% auto;
  -webkit-transform: translateX(-7.5%);
          transform: translateX(-7.5%);
  opacity: 0.05;
  z-index: 1;
}

.hp-welcome .global-site-bg.main-bg {
  width: 35.31%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 0;
}

.hp-welcome .global-site-bg.main-bg::before, .hp-welcome .global-site-bg.main-bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hp-welcome .global-site-bg.main-bg::before {
  background: rgba(255, 255, 255, 0.85);
  z-index: 2;
}

.hp-welcome .global-site-bg.main-bg::after {
  background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 3;
}

.hp-welcome .global-site-bg.main-bg canvas {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  z-index: 1;
}

.welcome-container {
  position: relative;
  width: 1430px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  z-index: 2;
}

.welcome-image {
  position: relative;
  width: 47.42%;
  padding: 0 64px 20px 20px;
}

.welcome-image::before {
  content: '';
  display: block;
  position: absolute;
  width: calc( 100% - 80px);
  height: calc( 100% - 20px);
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f1e8cc), to(#ede6db));
  background: linear-gradient(to bottom, #f1e8cc 0%, #ede6db 100%);
}

.welcome-image img {
  position: relative;
}

a.welcome-logo {
  position: absolute;
  background: url(images/home/welcome-satin.jpg) #f5efe5 no-repeat center center/cover;
  width: 286px;
  height: 272px;
  right: 0;
  bottom: -30px;
  padding: 5px;
  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-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.24);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.24);
}

a.welcome-logo img {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

a.welcome-logo:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.welcome-text {
  position: relative;
  width: 48.92%;
  padding-right: 30px;
  padding-top: 55px;
}

.welcome-text .global-site-title {
  max-width: 550px;
  margin-bottom: 30px;
}

.welcome-text p {
  font-size: var(--font-size-default);
  color: var(--font-color-default);
  line-height: 1.7;
  letter-spacing: 0.025em;
  margin-bottom: 28px;
}

.welcome-text a.global-site-button {
  margin-top: 30px;
}

.welcome-contact {
  font-size: 17px;
  font-weight: 500;
  color: var(--font-color-default);
  line-height: 1.7;
  letter-spacing: 0.025em;
  margin-bottom: 15px;
}

.welcome-contact a {
  transition: all 0.35s ease-in-out;
}

.welcome-contact a:hover {
  color: var(--hover-color); 
}

.hp-sold-extend-bg {
  position: absolute;
  z-index: 1;
  width: 29.12%;
  height: 32.3%;
  top: -3%;
  left: -21.5%;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
  overflow: hidden;
}

.hp-sold-extend-bg .global-site-bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 0;
  bottom: 0;
  margin-right: -38%;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}

.hp-sold-extend-bg .global-site-bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f2f2f2;
  opacity: 0.92;
}

.hp-sold-extend-bg .global-site-bg canvas {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

/* Welcome : END */
/* Testimonials : START */
.hp-testimonials {
  position: relative;
  padding: 90px 0 135px;
  font-size: 0;
  z-index: 1;
}

.hp-testimonials .global-site-bg.main-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hp-testimonials .global-site-bg.main-bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 0.9;
}

.hp-testimonials .global-site-bg.main-bg canvas {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.testimonials-container {
  position: relative;
  width: 1430px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  z-index: 2;
}

.testimonials-holder {
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #b1913b;
  border-left-color: transparent;
  border-right-color: transparent;
  padding: 65px 15px 0;
  margin-top: 34px;
}

.testimonials-holder::before, .testimonials-holder::after {
  content: '';
  display: block;
  position: absolute;
  width: 2px;
  height: calc( 100% + 4px);
  top: -2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#b1913b), color-stop(50%, #d7c387), to(#b28e35));
  background: linear-gradient(to bottom, #b1913b 0%, #d7c387 50%, #b28e35 100%);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.testimonials-holder::before {
  left: -2px;
}

.testimonials-holder::after {
  right: -2px;
}

.testimonials-list:not(.slick-initialized) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.testimonials-list:not(.slick-initialized) .testimonials-item {
  width: 33.33%;
}

.testimonials-list:not(.slick-initialized) .testimonials-item:nth-child(3) ~ div {
  display: none;
}

.testimonials-list:not(.slick-initialized) .testimonials-item:nth-child(1)::before {
  display: none;
}

.testimonials-list.slick-initialized .testimonials-item.slick-current::before {
  opacity: 0;
}

.testimonials-item {
  position: relative;
  text-align: center;
  padding: 0 55px;
}

.testimonials-item::before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(225, 225, 225, 0.1)), color-stop(50%, #e1e1e1), to(rgba(225, 225, 225, 0.1)));
  background: linear-gradient(to bottom, rgba(225, 225, 225, 0.1) 0%, #e1e1e1 50%, rgba(225, 225, 225, 0.1) 100%);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.testimonials-item i {
  display: inline-block;
  font: 700 149px/1 var(--font-family-title);
  color: #eee7dc;
  height: 60px;
  overflow: hidden;
}

.testimonials-item p {
  font-size: 15px;
  font-style: italic;
  color: var(--font-color-default);
  line-height: 1.7;
  letter-spacing: -0.02em;
  margin-top: 38px;
  min-height: 204px;
}

.testimonials-item strong {
  display: block;
  font: 700 23px/1 var(--font-family-title);
  color: var(--font-color-default);
  margin-top: 28px;
}

.testimonials-holder a.global-site-button {
  display: block;
  margin: 50px auto -30px;
  background: #ffffff;
}

.testimonials-holder a.global-site-button:hover {
  background: var(--hover-color);
}

.testimonials-holder-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(images/home/testimonials-holder-gradient.png) no-repeat right bottom/contain;
}

.hp-contact-extend-bg {
  position: absolute;
  z-index: 1;
  width: 39.12%;
  height: 42.3%;
  bottom: 0;
  right: -27.5%;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
  overflow: hidden;
}

.hp-contact-extend-bg .global-site-bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 0;
  bottom: 0;
  margin-left: -38%;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}

.hp-contact-extend-bg .global-site-bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f2f2f2;
  opacity: 0.85;
}

.hp-contact-extend-bg .global-site-bg canvas {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

/* Testimonials : END */
/* Contact : START */
.hp-contact {
  position: relative;
  padding: 90px 0 108px;
  font-size: 0;
  z-index: 1;
}

.hp-contact .global-site-bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hp-contact .global-site-bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f2f2f2;
  opacity: 0.85;
}

.hp-contact .global-site-bg canvas {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.hp-contact .global-site-bg canvas:last-child {
  display: none;
}

.is-mobile .hp-contact .global-site-bg canvas:first-child,
.name-Safari .hp-contact .global-site-bg canvas:first-child {
  display: none;
}

.is-mobile .hp-contact .global-site-bg canvas:last-child,
.name-Safari .hp-contact .global-site-bg canvas:last-child {
  display: block;
}

.hp-contact .container {
  position: relative;
}

.contact-form {
  position: relative;
  max-width: 945px;
  margin: 10px auto 0;
}

.contact-form .form-fields {
  margin: 0 -15px;
}

.contact-form .form-input {
  display: inline-block;
  vertical-align: middle;
  padding: 0 15px;
  margin-bottom: 18px;
}

.contact-form .form-input input:not([type="submit"]),
.contact-form .form-input textarea {
  height: 65px;
  font-size: 15px;
  color: var(--font-color-default);
  letter-spacing: 0.1em;
  border-bottom: 1px solid #000000;
}

.contact-form .form-input textarea {
  padding-top: 25px;
  height: 108px;
}

.contact-form .form-lg {
  width: 100%;
}

.contact-form .form-sm {
  width: 50%;
}

.contact-form .form-button {
  width: 280px;
  margin: 30px auto 0;
}

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

.contact-form .wpcf7 .ajax-loader {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  margin: 0 auto;
}

.contact-form .wpcf7 form .wpcf7-response-output {
  position: absolute;
  width: 100%;
  margin: 5px auto 0;
  font-size: 12px;
}

/* Contact : END */
/* Footer : START */
.footer {
  position: relative;
  padding: 108px 0 50px;
  margin-top: 28px;
  font-size: 0;
  z-index: 1;
}

.footer::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 28px;
  top: -28px;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f1e8cc), to(#ede6db));
  background: linear-gradient(to bottom, #f1e8cc 0%, #ede6db 100%);
}

.footer .global-site-bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.footer .global-site-bg::before, .footer .global-site-bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer .global-site-bg::before {
  background: rgba(0, 0, 0, 0.85);
  z-index: 2;
}

.footer .global-site-bg::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), color-stop(50%, rgba(0, 0, 0, 0.55)), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 3;
}

.footer .global-site-bg canvas {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  z-index: 1;
}

.footer-top {
  position: relative;
  z-index: 1;
}

.footer-top .heading-title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.footer-contact {
  position: relative;
  width: 280px;
  max-width: 100%;
}

.footer-contact .footer-contact-item {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
}

.footer-contact .footer-contact-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.footer-contact .footer-contact-item a:hover {
  color: var(--hover-color);
}

.footer-contact .footer-contact-item i {
  color: var(--secondary-color);
  width: 18px;
  text-align: center;
  margin-right: 12px;
}

.footer-contact .footer-contact-item i.ai-font-envelope {
  font-size: 10px;
}

.footer-contact .footer-contact-item i.ai-font-business-card {
  font-size: 16px;
}

.footer-logo {
  position: relative;
  text-align: center;
}

.footer-logo a {
  display: inline-block;
}

.footer-smis {
  position: relative;
  width: 280px;
  max-width: 100%;
}

.footer-smis .heading-title {
  text-align: right;
  margin-bottom: 22px;
}

.footer-smis a {
  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: 35px;
  height: 35px;
  background: var(--secondary-color);
  font-size: 22px;
  color: #ffffff;
  margin: 0 14px;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.footer-smis a:hover {
  background: var(--hover-color-alt);
}

.footer-smis a:first-child {
  margin-left: 0;
}

.footer-smis a:last-child {
  margin-right: 0;
}

.footer-middle {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.footer-brokerage {
  position: relative;
}

.footer-brokerage .footer-brokerage-item {
  position: relative;
  padding: 0 35px;
}

.footer-brokerage .footer-brokerage-item::before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 106px;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.15);
}

.footer-brokerage .footer-brokerage-item:first-child::before {
  display: none;
}

.footer-brokerage .footer-brokerage-logo {
  padding: 6px 0;
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-brokerage .footer-brokerage-logo img {
  margin: 0 auto;
}

.footer-brokerage .footer-brokerage-address {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-align: center;
  margin-top: 8px;
  color: #fff;
}

.footernav {
  position: relative;
  text-align: center;
  margin-top: 55px;
}

.footernav li {
  position: relative;
  display: inline-block;
  margin: 0 40px;
}

.footernav li a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.footernav li a:hover {
  color: var(--hover-color);
}

.footer-accessibility {
  position: relative;
  margin-top: 20px;
  padding: 0 40px 25px;
}

.footer-accessibility::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#af903a), color-stop(50%, #d4c183), to(#b59139));
  background: linear-gradient(to bottom, #af903a 0%, #d4c183 50%, #b59139 100%);
}

.footer-accessibility p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.025em;
  text-align: center;
  color: #fff;
}

.footer-accessibility p a {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.footer-accessibility p a:hover {
  color: var(--hover-color);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.footer-disclaimer {
  position: relative;
  padding: 0 10px;
  color: #fff;
}

.footer-disclaimer p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 10px;
}

.copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.025em;
  text-align: center;
  margin-top: 5px;
  color: #fff;
}

.copyright a {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.copyright a:hover {
  color: var(--hover-color);
}

.footer-realtors {
  text-align: center;
  margin-top: 12px;
}

.footer-realtors i {
  display: inline-block;
  vertical-align: middle;
  font-size: 28px;
  color: var(--secondary-color);
  margin: 0 5px;
}

.footer-realtors i.ai-font-eho {
  font-size: 22px;
}

/* Footer : END */
/*******************************************************
 *
 * 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.3);
}

.ip-banner canvas {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 200px;
  background-color: var(--dark);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
}

.name-Safari .ip-banner canvas,
.is-mobile .ip-banner canvas {
  /* background-attachment: fixed; */
}

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

.ip-banner h1 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #FFFFFF;
  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,
#content .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-title strong {
  font: 400 75px/0.95 var(--font-family-title);
  color: var(--font-color-title);
  letter-spacing: -0.02em;
}

#content .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-title strong {
  text-transform: none;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
  font: 400 35px/0.95 var(--font-family-title);
  color: var(--font-color-title);
  letter-spacing: -0.02em;
}

/* LISTINGS */
#ihf-main-container .ihf-grid-result-container, .ihf-main-container .ihf-grid-result-container {
  border-radius: 0;
}
#ihf-main-container .title-bar-1, .ihf-main-container .title-bar-1 {
  background-color: #ffffff;
  color: #000000;
  border-radius: 0;
}
#ihf-main-container .ihf-grid-result-price a, .ihf-grid-result-price a,
.ihf-sold-price-grid {
  color: #000000;
}
#ihf-main-container .ihf-grid-result-price a:hover {
  color: #999999;
}
#ihf-main-container #ihf-map-canvas {
  z-index: 1;
}
#content .entry #ihf-main-container ul {
  padding-left: 0;
  margin-left: 0;
}
#ihf-detail-features-tab .row.mt-10 {
  margin-left: 0;
  margin-right: 0;
}
.page-id-0 #inner-page-wrapper {
  z-index: unset;
}
.ihf-grid-result-address {
  display: block;
}


button.btn.dropdown-toggle.btn-default {
  height: 25px;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.82) !important;
  padding: 0 2px;
  border-radius: unset;
  background: transparent !important;
  border: 0;
  outline: none !important;
  box-shadow: none;
}
input.form-control{
  color: #000 !important;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  max-height: 200px !important;
}
.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active {
  color: #ffffff !important;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  font-size: 13px;
}

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

body #pojo-a11y-toolbar {
	bottom:0 !important;
	top: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
	top:auto !important;
	bottom:0 !important;
}

.error-page-content-wrapper,
.error-page-content-wrapper .error-forms input[type=email], .error-page-content-wrapper .error-forms input[type=phone], .error-page-content-wrapper .error-forms input[type=text], .error-page-content-wrapper .error-forms textarea {
    font-family: var(--font-family-default) !important;
}

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