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

*/
/*******************************************************
 *
 * 1. CSS RESET
 *
*******************************************************/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font: 16px/1 sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
p,
blockquote,
figure,
ol,
ul {
  margin: 0;
  padding: 0;
}

header,
section,
footer,
aside,
nav,
main,
article,
figure {
  display: block;
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
}

strong {
  font-weight: bold;
}

a,
button {
  color: inherit;
  transition: 0.3s;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: #bfa067;
}

button {
  overflow: visible;
  border: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border: 0;
}

:focus {
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

/*******************************************************
  *
  * 2. Navigation
  *
  *******************************************************/
/* Sub Menu */
#nav li,
#fixednav li {
  position: relative;
}

#nav .sub-menu,
#fixednav .sub-menu {
  list-style: none outside none;
  margin: 0;
  display: none;
  position: absolute;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.85);
  min-width: 220px;
}

#nav .sub-menu li:first-of-type a,
#fixednav .sub-menu li:first-of-type a {
  margin-top: 0;
}

#nav .sub-menu a,
#fixednav .sub-menu a {
  display: block;
  padding: 11px 5px;
  text-transform: uppercase;
  color: #fff;
}

#nav .sub-menu a:hover,
#fixednav .sub-menu a:hover {
  color: #bfa067;
}

#nav li:hover>.sub-menu,
#fixednav li:hover>.sub-menu {
  display: none;
}

#nav .sub-menu .sub-menu,
#fixednav .sub-menu .sub-menu {
  margin-left: 100%;
  top: 0;
}

#nav li:hover>.sub-menu,
#fixednav li:hover>.sub-menu {
  display: block;
}

#nav .sub-menu li,
#fixednav .sub-menu li {
  position: relative;
}

.home select,
.sidebar select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

.home select,
.sidebar select {
  background: transparent url(images/dd-arrow.png) no-repeat;
  background-position: right 11px center;
  -webkit-background-size: 8px;
  -moz-background-size: 8px;
  -o-background-size: 8px;
  background-size: 8px;
}

.bulletNav ul a {
  text-align: left;
}
  .bulletNav ul a:before {
    content: '';
    display: inline-block;
    height: 5px;
    width: 5px;
    background: #FFF;
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 5px;
    margin-top: -2px;
  }

/*******************************************************
  *
  * 3. Custom CSS
  *
  *******************************************************/
/* Global */
body {
  font-family: "Montserrat", sans-serif, Arial, Helvetica, Georgia, Sans-serif;
  font-size: 14px;
  background: #ffffff;
  color: #838383;
  margin: 0;
}

p {
  line-height: 25px;
  letter-spacing: 0.02em;
}

.transition,
a:after,
.cta-text,
.fp-item,
.fp-item * {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*** Header ***/
header.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1029;
}

header.header nav {
  font-size: 0;
  margin-top: 12px;
}

#nav,
#fixednav {
  display: flex;
  justify-content: space-between;
  position: relative;
}

#nav:before,
#fixednav:before {
  content: '';
  position: absolute;
  bottom: 1px;
  background: rgba(255, 255, 255, 0.3);
  left: 0;
  right: 0;
  height: 1px;
}

#nav>li>a,
#fixednav>li>a {
  display: block;
  padding: 37px 17px 34px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}

#nav>li>a:before,
#fixednav>li>a:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: -1px;
  background: #bfa067;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

#nav>li:hover>a:before,
#fixednav>li:hover>a:before {
  right: 0;
}

#nav .sub-menu,
#fixednav .sub-menu {
  padding: 18px 0px;
  background: rgba(191, 160, 103, 0.9);
}

#nav .sub-menu li,
#fixednav .sub-menu li {
  display: block;
}

#nav .sub-menu li a,
#fixednav .sub-menu li a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 12px;
  color: #fff;
}

#nav .sub-menu li:hover>a,
#fixednav .sub-menu li:hover>a {
  background: rgba(134, 112, 72, 0.9);
}

/*** SMI ***/
.smi {
  /*position: fixed;
  top: 0;
  bottom: 0;
  left: 65px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;*/
  display: inline-block;
  margin-left: 15px;
}

.smi ul li {
    display: inline-block;
}

.smi a {
  font-size: 0;
  color: #fff;
  display: inline-block;
  height: 40px;
  width: 40px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  margin: 11px 0px;
  background: #4a4a4a;
}

.smi a:before {
  font-size: 14px;
  line-height: 2.8em;
}

.smi a:hover {
  background: #bfa067;
}

/*** Header Contacts ***/
.header-contacts {
  text-align: right;
}

.header-contacts a:hover {
  opacity: 0.6;
  color: #fff;
}

.agent-contact-info {
  background: rgba(138, 112, 64, 0.88);
  display: inline-block;
  padding: 10px 17px 11px;
}

.hc-phone {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.hc-phone .ai-font-phone {
  font-size: 11px;
  margin-right: 6px;
}

.hc-email {
  font-size: 15px;
  color: #fff;
  margin-left: 26px;
}

.hc-email .ai-font-envelope {
  font-size: 10px;
  margin-right: 6px;
}

/*** Fixed Header ***/
.fixheader {
  position: fixed;
  top: -200px;
  left: 0;
  right: 0;
  z-index: 1030;
  background: #1b2549;
  opacity: 0;
}

.fixheader.fixed {
  top: 0;
  opacity: 1;
}

.fh-logo {
  float: left;
  width: 23%;
  font-size: 25px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 37px;
}

.fh-nav {
  float: right;
  width: 77%;
}

#fixednav {
  text-align: right;
  font-size: 0;
  display: block;
}

#fixednav:before {
  display: none;
}

#fixednav>li {
  display: inline-block;
}

#fixednav>li>a {
  padding: 42px 11px 43px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

#fixednav>li>a:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  margin: auto;
}

#fixednav>li:first-of-type>a:after {
  display: none;
}

/*** Popup ***/
a.aios-content-popup.popup-trigger {
  display: none;
}

html.popup-ready {
  overflow: hidden;
}

.hp-popup {
  display: flex;
  max-width: 1104px;
  margin: auto;
  background: #bfa067;
}

.aiosp-bg {
  background: #1b2549;
  opacity: .96;
}

.popup-left {
  width: 83%;
  position: relative;
}
  .popup-left img {
    width: 100%;
  }
  
button.aiosp-close {
  position: absolute;
  top: 21px;
  right: 0;
  background: #1b2549;
  opacity: 1;
  color: #fff !important;
}

button.aiosp-close:hover {
  background: #354685;
}

.popup-form h2 {
  font-size: 29px;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 30px;
}

.popup-form form {
  position: relative;
}

.safari .popup-form h2 {
  margin-bottom: 10px;
}

.safari .popup-form form input[type="submit"] {
  margin-top: 15px;
}

.popup-form form input,
.popup-form form textarea {
  color: #fff;
  background: transparent;
  font-size: 12px;
  color: #fff;
  border: none;
  border-bottom: 1px solid #fff;
  margin-bottom: 5px;
  width: 100%;
}

.popup-form form input {
  height: 65px;
}

.popup-form form textarea {
  height: 94px;
  margin-top: 9px;
  resize: none;
}

.popup-form form input[type="submit"] {
  width: auto;
  height: auto;
  border: 2px solid #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 14px 38px;
  text-transform: uppercase;
  margin-top: 36px;
}

.popup-form form input[type="submit"]:hover {
  color: #bfa067;
  background: #fff;
}

.popup-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pp-form-innerwrap {
  max-width: 74%;
}

.pp-form-innerwrap .wpcf7-response-output {
  position: absolute;
  top: 100%;
  margin: 2px 0 0 !important;
  text-align: center;
  color: #fff;
  font-size: 11px;
  left: 0;
  right: 0;
}

/*** Slideshow ***/
#hero {
  position: relative;
  overflow: hidden;
  font-size: 0;
}

#hero:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 641px;
  background: rgba(255, 255, 255, 0.47);
  right: 0;
  z-index: 1;
  -webkit-transform: translate(-43px) skewX(-44deg);
  -moz-transform: translate(-43px) skewX(-44deg);
  -o-transform: translate(-43px) skewX(-44deg);
  -ms-transform: translate(-43px) skewX(-44deg);
  transform: translate(-43px) skewX(-44deg);
}

#hero:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 641px;
  background: rgba(27, 37, 73, 0.6);
  right: -642px;
  -webkit-transform: translate(-43px) skewX(-44deg);
  -moz-transform: translate(-43px) skewX(-44deg);
  -o-transform: translate(-43px) skewX(-44deg);
  -ms-transform: translate(-43px) skewX(-44deg);
  transform: translate(-43px) skewX(-44deg);
}

.slideshow {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.slideshow:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.slideshow canvas {
  min-height: 100vh;
}

.ss-logo-wrap {
  text-align: center;
  margin-left: -15px;
  margin-right: -15px;
}

.ss-logo-wrap:after {
  content: '';
  display: block;
  height: 1px;
  width: 20px;
  background: #fff;
  margin: 39px auto 45px;
}

.ss-logo-wrap span {
  display: block;
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 22px;
}

.ss-agent-photo {
  margin-left: -22px;
  margin-right: -82px;
}

/*** Quick Search ***/
#qs {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 14.2%;
  position: relative;
  z-index: 1;
}

.qs-title h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.65em;
  text-align: center;
  color: #fff;
  position: relative;
}

.qs-inner-wrap {
  position: relative;
}

.qs-inner-wrap:before {
  content: '';
  position: absolute;
  top: -48px;
  bottom: -136px;
  left: -70px;
  width: 50%;
  background: url(images/magnifying-icon.png) no-repeat;
  background-size: 100%;
  opacity: 0.1;
}

.qs-inner-wrap form {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 29px;
  font-size: 0;
  position: relative;
}

.qs-field-wrap {
  display: inline-block;
  width: 50%;
  padding: 0px 15px;
  margin-bottom: 17px;
}

.qs-field-wrap input {
  width: 100%;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  padding: 0;
  height: 34px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
}

.qs-field-wrap select {
  width: 100%;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  padding: 0;
  height: 34px;
  border-bottom: 1px solid #fff;
}

.qs-field-wrap select option {
  color: #555;
}

.qs-field-wrap-inner {
  display: inline-block;
  width: 50%;
}

.qs-field-wrap-inner:first-of-type {
  padding-right: 15px;
}

.qs-field-wrap-inner:last-of-type {
  padding-left: 15px;
}

.qs-btn {
  text-align: center;
  margin-top: 18px;
}

.qs-btn .qs-btn-wrapper {
  display: inline-block;
  vertical-align: top;
}

.qs-btn input,
.qs-btn a {
  background: transparent;
  border: 2px solid #fff;
  position: relative;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #fff;
  height: 37px;
  width: 191px;
  padding: 0;
}

.qs-btn input:hover,
.qs-btn a:hover {
  background: #bfa067;
  border-color: #bfa067;
  z-index: 1;
}

.qs-btn input {
  margin-right: -1px;
}

.qs-btn a {
  margin-left: -1px;
  display: block;
  line-height: 2.8em;
}

.qs-custom-cities button.btn.dropdown-toggle.bs-placeholder.btn-default,
.qs-custom-cities .btn-group.bootstrap-select.qs-select button {
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    padding: 0;
    height: 34px;
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #fff;
}

.qs-custom-cities ul.dropdown-menu.inner {
  max-height: 130px !important;
}

.bootstrap-select.btn-group .dropdown-menu li a {
  padding-top: 0;
  padding-bottom: 0;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  font-size: 12px;
}

.dropdown-header {
  font-size: 10px;
}

.qs-custom-cities .bs-searchbox input {
  color: #000;
}

/*** CTA ***/
.cta a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-size: 0;
}

.cta a:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(top, rgba(92, 87, 12, 0) 0%, rgba(92, 87, 12, 0.9) 100%);
  background: -webkit-linear-gradient(top, rgba(92, 87, 12, 0) 0%, rgba(92, 87, 12, 0.9) 100%);
  background: linear-gradient(to bottom, rgba(92, 87, 12, 0) 0%, rgba(92, 87, 12, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#005c570c', endColorstr='#e65c570c', GradientType=0);
  z-index: 1;
}

.cta a:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 37, 73, 0.6);
  opacity: 0;
}

.cta a:hover canvas {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.cta a:hover:after {
  opacity: 1;
}

.home .cta a:hover .cta-text {
  top: 0;
}

.cta a:hover .cta-text .plus-icon {
  top: -67px;
}

.cta a:hover .cta-hover {
  bottom: 28px;
  opacity: 1;
}

.cta .cta-mid:before {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5c570c+0,1b2549+100&0+0,0.9+100 */
  background: -moz-linear-gradient(top, rgba(92, 87, 12, 0) 0%, rgba(27, 37, 73, 0.9) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(92, 87, 12, 0) 0%, rgba(27, 37, 73, 0.9) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(92, 87, 12, 0) 0%, rgba(27, 37, 73, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#005c570c', endColorstr='#e61b2549', GradientType=0);
  /* IE6-9 */
}

.cta .cta-mid:after {
  background: rgba(92, 87, 12, 0.6);
}

.cta canvas {
  width: 100%;
  -webkit-background-size: cover !important;
  background-size: cover !important;
}

.ctaw-inner-wrap:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: rgba(255, 255, 255, 0.47);
}

.ctaw-inner-wrap:after {
  content: '';
  position: absolute;
  top: 65px;
  right: 0;
  bottom: 50%;
  width: 50%;
  background: #1b2549;
  z-index: -1;
}

.cta-text {
  position: absolute;
  bottom: 0;
  top: 69px;
  left: 0;
  right: 0;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.065em;
  padding: 37px 45px 37px 32px;
  color: #fff;
  line-height: 1.09em;
  z-index: 2;
}

.cta-text .plus-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 43px;
  height: 30px;
  width: 1px;
  background: #fff;
  margin: auto;
}

.cta-text .plus-icon:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
  width: 30px;
  background: #fff;
  left: -14px;
}

.cta-hover {
  position: absolute;
  bottom: 0px;
  left: 33px;
  right: 0;
  opacity: 0;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  letter-spacing: 0.245em;
  text-transform: uppercase;
}

/*** Welcome ***/
#cta-welcome {
  overflow: hidden;
  padding-top: 65px;
  margin-top: -65px;
  padding-bottom: 65px;
  position: relative;
  z-index: 1;
}

#cta-welcome:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: calc(50% - 1px);
  width: 78%;
  right: 252px;
  background: #fff;
  -webkit-transform: skew(46deg);
  -moz-transform: skew(46deg);
  -o-transform: skew(46deg);
  -ms-transform: skew(46deg);
  transform: skew(46deg);
}

#cta-welcome:after {
  content: '';
  position: absolute;
  top: 50%;
  bottom: 0;
  width: 78%;
  right: 235px;
  background: #fff;
  -webkit-transform: skew(-44deg);
  -moz-transform: skew(-44deg);
  -o-transform: skew(-44deg);
  -ms-transform: skew(-44deg);
  transform: skew(-44deg);
}

.welcome-title {
  margin-bottom: 50px;
  margin-top: 140px;
  position: relative;
  z-index: 1;
}

.welcome-title h1 {
  font-weight: 600;
  color: #010101;
  font-size: 60px;
  text-transform: uppercase;
  letter-spacing: 0.065em;
  display: inline-block;
  position: relative;
}

.welcome-title h1 small {
  display: block;
  color: #bfa067;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.465em;
  margin-bottom: 10px;
}

.welcome-title h1 span {
  display: block;
  margin-top: -3px;
  margin-left: 150px;
}

.welcome-title h1 em.plus-icon {
 /* width: 1px;
  height: 105px;
  background: #bfa067;
  display: inline-block*/;
  position: absolute;
  top: 17px;
  right: -61px;
}

.welcome-title h1 em.plus-icon:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 106px;
  background: #bfa067;
}

.welcome-text {
  position: relative;
  z-index: 1;
}

.welcome-text strong {
  color: #bfa067;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: block;
}

.welcome-text p {
  font-weight: 300;
  margin-bottom: 32px;
}

.welcome-text p.text-bold {
  margin-bottom: 27px;
}

.wt-top {
  padding-left: 37px;
  padding-right: 26px;
}

.wt-bottom {
  margin-right: -20px;
}

/*** Featured Properties ***/
#fp {
  position: relative;
  padding-top: 93px;
  overflow: hidden;
}

#fp:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 19%;
  background: #1b2549;
  z-index: 1;
}

#fp:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 135px;
  background: #fff;
}

#fp h2 {
  text-align: center;
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.065em;
  position: relative;
  z-index: 1;
}

#fp h2 span {
  font-weight: 400;
}

.fp-slide-wrap {
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
  font-size: 0;
  z-index: 1;
}

.fp-slide-wrap .slick-list.draggable {
  padding-top: 108px;
  padding-bottom: 135px;
}

.fp-slide-wrap .slick-slide.slick-current.slick-active .fp-item {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  -ms-transform-origin: left center;
}

.fp-slide-wrap .slick-slide.slick-current.slick-active+div+div+div .fp-item {
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -o-transform-origin: right center;
  -ms-transform-origin: right center;
}

.fp-item {
  position: relative;
  padding: 0px 15px;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -o-transform-origin: center center;
  -ms-transform-origin: center center;
}

.fp-item:hover {
  -webkit-transform: scale(1.47, 1.5);
  -moz-transform: scale(1.47, 1.5);
  -o-transform: scale(1.47, 1.5);
  -ms-transform: scale(1.47, 1.5);
  z-index: 1;
}

.fp-item:hover .fp-price {
  opacity: 1;
}

.fp-item:hover .fp-add {
  font-size: 9px;
}

.fp-item:hover .fp-bnb {
  margin-top: 17px;
  max-height: 100px;
  padding-top: 5px;
}

.fp-item:hover .outer-fp-price {
  opacity: 0;
  bottom: 80%;
}

.fp-img {
  font-size: 0;
}

.fp-img:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  right: 15px;
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
  /* IE6-9 */
}

.fp-img canvas {
  width: 100%;
  -webkit-background-size: cover !important;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center;
}

.fp-details {
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  padding: 50px 40px;
}

.outer-fp-price {
  position: absolute;
  bottom: 100%;
  left: 37px;
  color: #fff;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.07em;
  margin-bottom: 17px;
}

.fp-add {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.07em;
  line-height: 1.8;
}

.fp-bnb {
  margin-top: 0px;
  overflow: hidden;
  max-height: 0;
}

.fp-bnb>span {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-weight: 500;
  font-size: 8px;
  letter-spacing: 0.07em;
}

.fp-bnb .fp-view-btn {
  border: 1px solid #fff;
  padding: 9px 15px;
  float: right;
  margin-top: -5px;
}

.fp-bnb .fp-view-btn:hover {
  background: #bfa067;
  border-color: #bfa067;
}

.fp-price {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.065em;
  margin-bottom: 9px;
  opacity: 0;
}

.fp-bed-icon {
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 12px;
  background: url(images/fp-icons.png) -4px -12px no-repeat;
  margin-right: -1px;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -o-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  position: relative;
  top: -1px;
}

.fp-bath-icon {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background: url(images/fp-icons.png) -30px -4px no-repeat;
  position: relative;
  top: -2px;
  margin-right: -1px;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -o-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
}

.fp-sqft-icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: url(images/fp-icons.png) -59px -9px no-repeat;
  margin-right: 0px;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -o-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  position: relative;
  top: -1px;
}

.fp-bath,
.fp-sqft {
  margin-left: 3px;
}

/*** Last Fold ***/
#last-fold {
  position: relative;
  overflow: hidden;
}

#last-fold #fc {
    display: none;
}

#last-fold:before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  left: 17.5%;
  width: 73%;
  background: rgba(191, 160, 103, 0.82);
  -webkit-transform: skew(42deg);
  -moz-transform: skew(42deg);
  -o-transform: skew(42deg);
  -ms-transform: skew(42deg);
  transform: skew(42deg);
}

#last-fold:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  left: 90.5%;
  width: 100%;
  background: #ffffff;
  -webkit-transform: skew(42deg);
  -moz-transform: skew(42deg);
  -o-transform: skew(42deg);
  -ms-transform: skew(42deg);
  transform: skew(42deg);
}

#ld-inner-wrap {
  position: relative;
  padding-top: 125px;
  z-index: 1;
}

#ld-inner-wrap:before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  left: -82.5%;
  width: 100%;
  background: rgba(255, 255, 255, 0.58);
  -webkit-transform: skew(42deg);
  -moz-transform: skew(42deg);
  -o-transform: skew(42deg);
  -ms-transform: skew(42deg);
  transform: skew(42deg);
}

#ld-inner-wrap:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  left: -82.5%;
  width: 100%;
  -webkit-transform: skew(42deg);
  -moz-transform: skew(42deg);
  -o-transform: skew(42deg);
  -ms-transform: skew(42deg);
  transform: skew(42deg);
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+21,0+100 */
  background: -moz-linear-gradient(45deg, white 0%, white 21%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, white 0%, white 21%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, white 0%, white 21%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

/*** Featured Communities ***/
#fc h2 {
  font-size: 50px;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-align: center;
}

#fc h2 span {
  font-weight: 400;
}

#fc .sub-title {
  font-size: 18px;
  color: #000;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 28px;
}

.fc-wrap {
  font-size: 0;
  margin-top: 104px;
}

.fc-item {
  display: inline-block;
  width: 33.33%;
  padding: 1px;
}

.fc-item canvas {
  width: 100%;
  -webkit-background-size: cover;
  background-size: cover;
}

/*** Testimonials ***/
#testimonials {
  position: relative;
  z-index: 1;
}

.testi-header {
  text-align: center;
  margin-top: 215px;
  margin-bottom: 123px;
}

.testi-header h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.testi-header h2:before {
  content: '';
  display: inline-block;
  height: 135px;
  width: 171px;
  background: url(images/quote-icon.png) center center no-repeat;
  position: absolute;
  top: -107px;
  left: -270px;
}

.testi-header h2 span {
  display: block;
  font-weight: 400;
  position: absolute;
  min-width: 439px;
  right: -95px;
  margin-top: 4px;
}

.testi-item {
  color: #010101;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.testi-item p {
  line-height: 40px;
}

.reviewer-name {
  font-size: 25px;
  font-weight: 700;
  display: block;
  margin-top: 40px;
}

.reviewer-name:before {
  content: '- ';
}

/*** Agent Contact Info ***/
.contact-form {
  font-size: 0;
  position: relative;
  z-index: 1;
}

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

.ac-header h2 {
  font-size: 55px;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 35px;
}

.fc-agent-photo {
  margin-left: -50px;
  margin-right: -95px;
  margin-top: -73px;
}

.agents-contact-info {
  margin-top: 96px;
}

.ac-info {
  text-align: center;
  color: #555555;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 22px;
  margin-top: 15px;
  font-size: 14px;
}

.ac-info span {
  display: block;
}

.ac-info span a:hover {
  color: #bfa067;
}

.hp-contact-form form {
  position: relative;
  max-width: 458px;
  margin: 23px auto 0;
}

.hp-contact-form form input,
.hp-contact-form form select,
.hp-contact-form form textarea {
  background: transparent;
  color: #555555;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  border-bottom: 2px solid #1b244d;
  width: 100%;
}

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

.hp-contact-form form .wpcf7-not-valid-tip {
  font-size: 12px;
}

.hp-contact-form form .wpcf7-response-output {
  font-size: 12px;
  text-align: center;
  color: #000;
  margin: 0 !important;
  padding: 5px !important;
}

.hp-contact-form form input, .hp-contact-form form select {
  height: 45px;
  margin-bottom: 4px;
}

.hp-contact-form form textarea {
  height: 116px;
  resize: none;
  margin-bottom: 34px;
  padding-top: 18px;
}

.hp-contact-form form input[type="submit"] {
  height: auto;
  background: #1b244d;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  width: 100%;
  padding: 19px 10px;
  border-bottom: none;
}

.hp-contact-form form input[type="submit"]:hover {
  background: #bfa067;
}

/*** Footer ***/
footer.footer {
  position: relative;
  text-align: center;
  background: #1b2549;
  padding: 61px 0px;
}

footer.footer .site-name {
  font-size: 25px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.copyright {
  font-size: 12px;
  color: #bcbcbc;
  margin-top: 19px;
  letter-spacing: 0.05em;
}

.realtor-logo {
  margin-top: 25px;
}

.realtor-logo img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
}

.mls {
  font-size: 22px;
  color: #d4d4d2;
  margin-top: 25px;
}

/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
body.ip-container {
  color: #4a4949;
}

.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.6);
}

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

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

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

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

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

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

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

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

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

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

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

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
  font-size: 35px;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.065em;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
  font-size: 35px;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.065em;
}

/*** Sidebar ***/
.sb-logo span {
  font-size: 17px;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 5px;
  display: block;
  text-align: center;
}

.sidebar .ac-info {
  font-size: 11px;
  margin-bottom: 30px;
}

.sidebar .cta-text {
  top: inherit;
  font-size: 15px;
  padding: 0 20px 20px 20px;
}

table.off-market-tbl>tbody>tr>th, table.off-market-tbl>tbody>tr>td{
    border: 1px solid black;
    text-align: center;
    padding: 10px 10px;
}

.page-id-31 button.aiosp-close,
.page-id-38 button.aiosp-close {
    top: 0;
}

.buyers-form {
    margin-top: 40px;
    padding: 10px;
}

.page-id-31 .aiosp-auto-cursor .aiosp-content,
.page-id-38 .aiosp-auto-cursor .aiosp-content {
    background: #FFF;
    width: 80%;
    max-width: 500px;
}

.page-id-31 .aiosp-auto-cursor .aiosp-content form,
.page-id-38 .aiosp-auto-cursor .aiosp-content form {
    position: relative;
}

.page-id-31 .aiosp-auto-cursor .aiosp-content .ajax-loader ,
.page-id-38 .aiosp-auto-cursor .aiosp-content .ajax-loader  {
  position: absolute;
  bottom: -5px;
  right: 0;
}

.page-id-31 .aiosp-auto-cursor .aiosp-content input[type="submit"] ,
.page-id-38 .aiosp-auto-cursor .aiosp-content input[type="submit"] {
  margin-bottom: 15px;
}

.page-id-31 .aiosp-auto-cursor .aiosp-content .wpcf7-response-output,
.page-id-38 .aiosp-auto-cursor .aiosp-content .wpcf7-response-output {
  text-align: center;
  font-size: 13px;
  margin: 15px 0 !important;
}

/*** PROPERTY SEARCH ***/
ul#ihf-search-location-tabs, ul#ihf-detail-extrainfotabs,
ul.chosen-results {
    margin-left: 0px !important;
    padding-left: 0px !important;
}

.ai-default-cf7wrap textarea {
  resize: none;
  height: 64px;
}

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

.cycloneslider-template-video .cycloneslider-slides,
.cycloneslider-template-video .cycloneslider-slide-custom,
.cycloneslider-template-video .cycloneslider-slide img {
  min-height: 100vh;
}

.cycloneslider-template-video .cycloneslider-volume {
  display: none;
}

body > img, .hideIps {
  display: none;
}

body.page-id-0 .hideIps {
  display: block;
}

#ihf-search-adv2-submit {
  margin-top: 30px !important;
}

#content ul li {
    margin: 1.12em 0;
}

.welcome-logo {
    margin-top: 30px;
}

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

.fpp{
    background: #1b2549;
    position: absolute;
    z-index: 999;
    width: 81%;
}
#fp {
    position: relative;
    padding-top: 93px;
    background: #1b2549;
    overflow: hidden;
   padding:120px;
    height: auto;
}
#fp:before {
    content: '';
    position: unset !important;
  
}

#cta-welcome [data-aios-reveal=true]:not([data-aios-reveal-mobile=true]), [data-aios-staggered-child=true]:not([data-aios-reveal-mobile=true]) {
    opacity: 1;
}
#hero [data-aios-reveal=true]:not([data-aios-reveal-mobile=true]), [data-aios-staggered-child=true]:not([data-aios-reveal-mobile=true]) {
    opacity: 1;
}
#last-fold [data-aios-reveal=true]:not([data-aios-reveal-mobile=true]), [data-aios-staggered-child=true]:not([data-aios-reveal-mobile=true]) {
    opacity: 1;
}
#fp [data-aios-reveal=true]:not([data-aios-reveal-mobile=true]), [data-aios-staggered-child=true]:not([data-aios-reveal-mobile=true]) {
    opacity: 1;
}
#ld-inner-wrap {
   
    padding-bottom: 100px;
}


.iframe-outer {
    background-color: #fff;
    padding: 64px 27px;
    margin-bottom: 150px;
}
#cta-welcome {
    padding-top: 96px!important;
    padding-bottom: 80px;
}
#ld-inner-wrap {
   
    padding-top: 7px;
  
}
.archive header.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1029;
    background: #1b2549;
}
.archive main {
    margin-top: 250px;
}

#last-fold:after {
   
    left: 100.5%;
   
}
#last-fold:before {
   
    left: 17.5%;
    width: 92%;
   
}

