/*
Theme Name: PAY IT FORWARD HOMES
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. 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
 *
 *******************************************************/
 img {
  max-width:100%;
  border:none;
}
 .aios-mobile-header-wrapper {
    z-index: 1020 !important;
}
 div#main-wrapper {
    overflow: hidden;
}
/* Sub Menu */
#nav li {
    position:relative;
    display: inline-block;
}
  
#nav .sub-menu,
.nav .sub-menu {
    list-style: none outside none;
    margin: 0;

    display: none;
    padding: 0;
    position: absolute;
 	width:100%;
     min-width: 150px;
     text-align: center;
     left: 50%;
     transform: translateX(-50%);
     text-align: center;
    visibility: hidden;
    overflow: hidden;
}
#nav .sub-menu a,
.nav .sub-menu a {
/*    background: rgba(255,255,255,.40);*/
    /*background: rgba(38, 70, 83, .7);*/
    background: rgba(38, 70, 83, .85);
    color: #FFFFFF;
    display: block;
    padding: 10px;
}
#nav .sub-menu a:hover,
.nav .sub-menu a:hover {
    background: none repeat scroll 0 0 #b2b2b2;
    color: #000000;
    text-decoration: none;
}
#nav .sub-menu .sub-menu,
.nav .sub-menu .sub-menu {
    margin-left: 100%;
 	top:0;
}
#nav li:hover > .sub-menu,
.nav li:hover > .sub-menu {
    display: block;
    visibility: visible;
    width: 100%;
    opacity: 1;
  z-index: 5;
  -webkit-transition-delay: 0s, 0s, 0.4s;
  transition-delay: 0s, 0s, 0.4s;
  -webkit-animation: menu-transition 1.5s ease-in-out;
  animation: menu-transition 1.5s ease-in-out;
}
#nav .sub-menu li,
.nav .sub-menu li {
    position: relative;
    width: 100%;
    margin-bottom: 1px;
}
/* Split Nav */
.header-inner > .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-inner > .row::before{
    display: none;
}

.nav {
    display: flex;
    position: relative;
    z-index: 2;
    /*justify-content: flex-end;*/
    justify-content: space-around;
    padding-right: 0;
}

/*.nav.nav-left {
    justify-content: flex-start;
}*/

.nav>li:last-child::after {
    display: none;
}

.nav>li::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 45%;
    top: 12px;
    right: 0;
    background: #fff;
}

.nav li a {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 28px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.nav li a:hover{
    color: #be5b43;
}

.nav > li > a {
    white-space: nowrap;
}

.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
}

@-webkit-keyframes menu-transition {
    from {
      max-height: 0;
    }
    to {
      max-height: 1000px;
    }
  }
  @keyframes menu-transition {
    from {
      max-height: 0;
    }
    to {
      max-height: 1000px;
    }
  }

/* HEader */
header.header{
    position: fixed;
    width: 100%;
    font-size: 0;
    z-index: 1010;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.logo-holder a {
    position: relative;
    display: block;
    width: 224px;
    left: -34px;
}

img.fixed-logo {
    position: absolute;
    top: -36px;
    left: 50px;
    opacity: 0;
}

.fixed-smi {
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 90%;
    left: 40px;
    z-index: 12;
}

.fixed-smi a{
    font-size: 16px;
    color: #fff;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(190,91,67,.50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.fixed-smi a:hover{
    background: #264653;
}

.fixed-smi.change-smi a {
    background: #264653;
}

.fixed-smi.change-smi a:hover{
    background: #be5b43;
}

/* Fixed-header */
.header.show-fixed{
    background: url('images/header-bg.png') no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 95px;
}

.header.show-fixed .logo-holder img.show-logo {
    opacity: 0;
    display: none;
}

.header.show-fixed .logo-holder img.fixed-logo {
    opacity: 1;
}

.header.show-fixed .nav {
    padding: 31px 0;
}

.header.show-fixed .nav li a:hover{
    color: #264653;
}

.header.show-fixed .nav .sub-menu a {
    background: #264653;
}

.header.show-fixed .nav .sub-menu a:hover {
    color: #BE5C43;
}
/* End fixed Header */

/* End Of HEader */
/* Slideshow */
.hp-slideshow{
    position: relative;
}

.hp-slideshow > .cycloneslider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.40);
    z-index: 101;
}


.hp-slideshow .cycloneslider-pager{
    position: absolute;
    bottom: 54px;
    right: 50px;
    z-index: 1;
}

.hp-slideshow .cycloneslider-pager strong a {
    font-size: 20px;
    color: #939393;
    letter-spacing: 0.08em;
    margin: 0 8.5px;
    position: relative;
}

.hp-slideshow .cycloneslider-pager strong a::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 18px;
    background: #939393;
    top: 6.5px;
    right: -9px;
}

.hp-slideshow .cycloneslider-pager strong:last-child a::after{
    display: none;
}

.hp-slideshow .cycloneslider-pager strong.cycle-pager-active a{
    color: #fff;
}

.hp-slideshow .cycloneslider-template-responsive .cycloneslider-pager {
    bottom: 54px;
    right: 50px;
    text-align: right !important;
    width: initial;
    z-index: 102;
}

.slide-inner {
    position: absolute;
    width: 100%;
    top: 364px;
    left: 0;
}

.slide-descrip {
    text-align: center;
    position: absolute;
    top: 270px;
    left: 50%;
    transform: translate(-50%);
}

.slide-descrip span{
    font-weight: 600;
    font-size: 28px;
    color: #fff;
    letter-spacing: 0.1em;
    display: block;
    text-transform: uppercase;
    padding-bottom: 22px;
}

.slide-descrip p {
    font-family: 'Merriweather', serif;
    font-size: 46px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.slide-qs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 67px;
}

.qs-box {
    position: relative;
    width: 262px;
    height: 66px;
    border: none;
    background: rgba(255,255,255,.10);
    text-transform: uppercase;
    font-family: 'Merriweather', serif;
    font-size: 22px;
    color: #fff;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.qs-box a {
    text-decoration: none;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: rgba(255,255,255,.10);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.qs-box a:hover{
    background: #264653;
}

.qs-box::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    bottom: -32px;
    left: 50%;
    transform: translate(-50%);
    background: url(images/qs-arrow.png) no-repeat;
    background-size: 100% 100%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.qs-box.no-after::after {
    display: none;
}

.qs-box.active::after{
    opacity: 1;
}

.qs-box.active{
    background: rgba(190,91,67,.80);
}

.qs-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
    max-width: 715px;
    width: 100%;
    margin: 0 auto;
    padding: 18px 15px;
}

.qs-city {
    flex: 1 1 78.5%;
}

.qs-city input {
    width: 100%;
    height: 65px;
    display: block;
    background: #fff;
    border: none;
    font-size: 12px;
    color: #656565;
    letter-spacing: 0.02em;
    outline: none;
    padding-left: 25px;
}

.qs-search {
    flex: 0 1 21.5%;
}

.qs-search input {
    display: block;
    font-weight: 600;
    width: 100%;
    height: 65px;
    border: none;
    background: #264653;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    outline: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.qs-search input:hover{
    background: #cd826f;
}
/* End Slideshow */

/* Welcome */
.hp-welcome {
    font-size: 0;
    position: relative;
    padding-top: 110px;
}

.hp-welcome::before{
    content: '';
    position: absolute;
    width: 1205px;
    height: 675px;
    background: url('./images/welcome-bg.jpg') no-repeat;
    background-size: 100% 100%;
    top: 0;
    left: 0;
    z-index: 1;
    filter: grayscale(1);
    opacity: .10;
}


.welcome-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.welcome-left-col {
    padding-left: 50px;
    padding-right: 79px;
    width: 49%;
    position: relative;
}

.welcome-left-col::after {
    content: '';
    position: absolute;
    width: 137px;
    height: 1px;
    background: #dee0e2;
    top: 14.5%;
    left: 0;
}

.welcome-right-col{
    width: 51%;
    position: relative;
}

.welcome-right-col img {
    width: 100%;
}

.welcome-image{
    position: relative;
}

.welcome-image::after{
    content: '';
    position: absolute;
    width: 733px;
    height: 48px;
    background: url('./images/welcome-shadow.png') no-repeat;
    background-size: 100% 100%;
    bottom: -32px;
    left: 0;
    z-index: 1;
}



.welcome-title span{
    display: block;
    font-size: 23px;
    font-weight: 500;
    text-transform: uppercase;
    color: #264653;
    letter-spacing: 0.08em;
    padding-bottom: 42px;
}

.welcome-title em{
    display: block;
    font-style: normal;
    font-family: 'Merriweather', serif;
    font-size: 58px;
    text-transform: uppercase;
    color: #be5b43;
    padding-left: 120px;
}

.welcome-title em:last-child {
    font-size: 48px;
    padding-top: 9px;
}

.welcome-descrip p {
    font-size: 13px;
    color: #5d5d5d;
    letter-spacing: 0.04em;
    line-height: 25px;
    padding-left: 120px;
    font-weight: 300;
    padding-top: 38px;
}

.welcome-know{
    margin-top: 60px;
}

.welcome-know a{
    font-style: italic;
    font-family: 'Merriweather', serif;
    font-size: 13px;
    color: #be5b43;
    padding-left: 20px;
    letter-spacing: 0.02em;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.welcome-know a:hover{
    color: #264653;
}

.welcome-know a::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    background: #be5b43;
    left: 0;
    top: 0;
}

.welcome-know a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #BE5C43;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.welcome-know a:hover::before{
    opacity: 1;
    width: 100%;
}
/* End Welcome */

/* Featured Listings */
.featured-listings {
    font-size: 0;
    padding-top: 60px;
    position: relative;
}

.listings-title {
    width: 500px;
    position: absolute;
    top: 100px;
    right: 40px;
    text-align: right;
    z-index: 1;
}

.listings-title::after {
    content: '';
    position: absolute;
    width: 130px;
    height: 1px;
    background: #dee0e2;
    top: 31.5%;
    right: -42px;
}

.listings-title span {
    font-weight: 500;
    font-size: 48px;
    color: #264653;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding-bottom: 20px;
}

.listings-title em{
    font-style: normal;
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 58px;
    color: #be5b43;
    text-transform: uppercase;
    padding-bottom: 38px;
    padding-right: 120px;
}

.listings-title p {
    font-size: 13px;
    color: #5d5d5d;
    line-height: 25px;
    letter-spacing: 0.04em;
    padding-right: 100px;
    padding-left: 70px;
    padding-bottom: 25px;
}

.listings-title a{
    font-family: 'Merriweather', serif;
    font-size: 13px;
    color: #be5b43;
    letter-spacing: 0.02em;
    font-style: italic;
    position: relative;
    margin-right: 100px;
    padding-right: 32px;
}

.listings-title a::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 14px;
    background: #cd826f;
    top: 0;
    right: 0;
}

.listings-title a::before{
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #BE5C43;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.listings-title a:hover::before{
    opacity: 1;
    width: 100%;
}

.featured-row.display-mobile{
    display: none;
}

.featured-row,
.featured-row.display-mobile {
    max-width: 1505px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.fp-outer{
    width: 100%;
    position: relative;
}

.fp-list a {
    position: relative;
    padding: 2px;
    display: block;
    outline: none;
    pointer-events: auto;
}

.fp-img {
    position: relative;
    display: inline-block;
    width: 100%;
}

.fp-img::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.30);
}

.fp-img canvas{
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    filter: grayscale(1);
}

.fp-descrip {
    position: absolute;
    bottom: 32px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.fp-inner .fp-descrip {
    padding: 0 0;
    bottom: 0;
    background: #fff;
}

.fp-descrip-inner {
    display: flex;
    width: 100%;
    justify-content: space-between;
    max-width: 448px;
    padding-left: 30px;
}

.fp-descrip span{
    font-weight: 600;
    font-size: 17px;
    color: #fff;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fp-inner .fp-descrip span{
    color: #373737;
    font-size: 20px;
}

.fp-inner {
    position: absolute;
    width: 700px;
    left: 0;
    transform: translateY(-50%) scale(.9);
    top: 50%;
    opacity: 0;
    visibility: hidden;
    transition: 400ms ease;
    box-shadow: 0px 0px 16px #00000070;
    z-index: 2;
}


.fp-list a:hover .fp-inner {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

.featured-row .slick-slide > div > div:nth-child(2) .fp-inner {
    left: 50%;
    transform: translate(-50% , -50%) scale(.9);
}

.featured-row .slick-slide > div > div:nth-child(2) a:hover .fp-inner{transform: translate(-50% , -50%) scale(1);}


.fp-inner .fp-img canvas {
    filter: grayscale(0);
}

.fp-inner .fp-img::after {
    background: transparent;
}

.fp-button {
    display: block;
    width: 215px;
    height: 100px;
    background: #264653;
    color: #fff;
    font-family: 'Merriweather', serif;
    text-transform: uppercase;
    letter-spacing: 0.026em;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
}

.featured-row div.slick-slide > div:nth-child(3) > div:nth-child(3) .fp-inner,
.featured-row div.slick-slide > div:nth-child(2) > div:nth-child(3) .fp-inner {
    right: 0;
    left: initial;
}

.featured-row .slick-slide {
    visibility: hidden;
    opacity: 0;
    transition: 400ms ease;
}

.featured-row .slick-slide.slick-active {
    opacity: 1;
    visibility: visible;
}

.featured-row .slick-list {
    overflow: initial;
}

/* End Featured Listing */

/* Meet the team */
.meet-the-team {
    position: relative;
    font-size: 0;
/*    margin-top: 97px;*/
}

.meet-wrapper > div{
    z-index: 2;
}

.meet-row-arrow {
    position: relative;
}

.meet-wrapper {
    padding-top: 60px;
    position: relative;
    padding-bottom: 125px;
}

.meet-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.85);
    top: 0;
    left: 0;
    z-index: 1;
}

.meet-wrapper::before {
    content: '';
    position: absolute;
    width: 1310px;
    height: 655px;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 1;
}

.meet-the-team::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(images/meet-team-bg.jpg) no-repeat;
    background-size: cover;
}

.meet-title {
    position: relative;
    padding-left: 41px;
    padding-bottom: 78px;
}

.meet-title::after {
    content: '';
    position: absolute;
    width: 137px;
    height: 1px;
    background: #dee0e2;
    top: 43.5%;
    left: 0;
}

.meet-title span{
    font-size: 48px;
    color: #264653;
    letter-spacing: 0.02em;
    display: block;
    text-transform: uppercase;
    padding-bottom: 21px;
}

.meet-title-inner {
    max-width: 730px;
    width: 100%;
    display: flex;
    align-items: center;
    margin-left: 122px;
}

.meet-title-inner em{
    font-style: normal;
    font-size: 58px;
    color: #be5b43;
    text-transform: uppercase;
    display: block;
    font-family: 'Merriweather', serif;
}

.meet-title-inner p{
    font-weight: 300;
    font-size: 13px;
    color: #5d5d5d;
    display: block;
    padding-left: 140px;
    line-height: 25px;
}

.meet-row {
    max-width: 1530px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 42px;
}

.meet-list {
    position: relative;
    display: inline-block;
    padding: 0 2px;
    overflow: hidden;
}

.meet-inner{
    position: relative;
}

.meet-inner::after {
    content: '';
    position: absolute;
    width: 367px;
    height: 91px;
    bottom: -36px;
    left: 0;
    background: url(images/meet-shadow.png) no-repeat;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: -1;
    opacity: 0;
}

.meet-inner:hover::after{
    opacity: 1;
}

.meet-img a{
    position: relative;
    display: block;
}

.meet-img {
    width: 100%;
    position: relative;
}

.meet-img::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(38,70,83,.30);
    pointer-events: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}


.meet-list:hover .meet-img::after{
    background: rgba(190,91,67,.90);
}

.meet-img canvas{
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.meet-descrip {
    position: absolute;
    top: 262px;
    left: 0;
    text-align: center;
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.meet-list:hover .meet-descrip {
    top: 160px;
}

.meet-descrip > span {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 40px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.meet-list:hover .meet-descrip > span{
    font-size: 25px;
}

.meet-descrip > span::after {
    content: '';
    position: absolute;
    width: 165px;
    height: 2px;
    background: #be5b43;
    left: 50%;
    bottom: -22px;
    transform: translate(-50%);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.meet-list:hover .meet-descrip > span::after{
    background: #fff;
}

.meet-phone {
    padding-bottom: 4px;
}

.meet-phone span{
    font-size: 18px;
    color: #fff;
}

.meet-phone em,
.meet-email a{
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.08em;
    padding-left: 10px;
}

.meet-email {
    padding-bottom: 23px;
}

.meet-email span{
    font-size: 11px;
    color: #fff;
}

.meet-smi a span{
    font-size: 15px;
    color: #fff;
    padding: 0px 14px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.meet-smi a:hover span{
    color: #264653;
}

.meet-know-more {
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 13px;
    color: #fff;
    letter-spacing: 0.02em;
    padding-top: 78px;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.meet-list:hover .meet-know-more{
    opacity: 1;
}

.meet-arrow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meet-arrow span {
    font-family: 'Merriweather', serif;
    font-size: 40px;
    color: #be5b43;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0 20px;
    cursor: pointer;
    pointer-events: auto;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.meet-arrow span:hover{
    color: #264653;
}

.meet-arrow span.prev::after {
    content: '';
    position: absolute;
    top: 6px;
    left: -25px;
    width: 34px;
    height: 1px;
    background: #be5b43;
    display: none;
}

.meet-arrow span.next::after {
    content: '';
    position: absolute;
    top: 6px;
    right: -25px;
    width: 34px;
    height: 1px;
    background: #be5b43;
    display: none;
}
/* End Meet The Team */

/* Featured Communities */
.featured-communities {
    font-size: 0;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
}

.featured-communities::after {
    content: '';
    position: absolute;
    width: 49.5%;
    height: 57.4%;
    bottom: 0;
    right: 0;
    background: url(images/fc-bg.jpg) no-repeat;
    background-size: 100% 100%;
    filter: grayscale(1);
    opacity: .1;
    z-index: -1;
}

.fc-row{
    display: flex;
}

.fc-title {
    position: relative;
    text-align: right;
    margin-top: 0px;
    padding-right: 26px;
}

.fc-title::after {
    content: '';
    position: absolute;
    width: 130px;
    height: 1px;
    background: #dee0e2;
    top: 31.5%;
    right: -42px;
}

.fc-title span {
    font-weight: 500;
    font-size: 48px;
    color: #264653;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding-bottom: 20px;
}

.fc-title em{
    font-style: normal;
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 58px;
    color: #be5b43;
    text-transform: uppercase;
    padding-bottom: 38px;
    padding-right: 120px;
}

.fc-title p {
    font-size: 13px;
    color: #5d5d5d;
    line-height: 25px;
    letter-spacing: 0.04em;
    padding-right: 120px;
    padding-bottom: 54px;
    padding-left: 164px;
}

.fc-left {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 45px;
}

.fc-box a{
    position: relative;
    display: block;
    margin: 1.5px;
}

.fc-box {
    width: calc(100% / 2 );
}

.fc-img{
    max-width: 445px;
    position: relative;
}

.fc-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.60);
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.fc-img::after {
    content: '';
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    top: 10px;
    left: 10px;
    border: 1px solid #7e7c71;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.fc-box a:hover .fc-img::after{
    opacity: 1;
}

.fc-box a:hover .fc-img::before{
    background: transparent;
}

.fc-img canvas{
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    filter: grayscale(1);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.fc-box a:hover .fc-img canvas{
    filter: grayscale(0);
}

.fc-descrip {
    font-family: 'Merriweather', serif;
    font-size: 23px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* End Featured Communities */

/* Testimonials */
.hp-testimonials {
    font-size: 0;
    padding-top: 50px;
}

.testmonials-row {
    display: flex;
}

.testimonial-left {
    width: 50.5%;
}

.test-right {
    max-width: 652px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.test-right-outer{
    width: 49.5%;
    position: relative;
}

.test-right-outer::before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    background: url(images/testi-right-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    opacity: .1;
}

.testi-img {
    max-width: 100%;
    position: relative;
}

.testi-img::after {
    content: '';
    position: absolute;
    width: 132px;
    height: 545px;
    background: url(images/testi-shadow.png) no-repeat;
    background-size: 100% 100%;
    top: 52px;
    right: -43px;
}

.testi-img canvas{
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.testi-descrip {
    padding-left: 80px;
    position: relative;
}

.testi-descrip::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 25px;
    background: url(images/testi-qoute.png) no-repeat;
    background-size: 100% 100%;
    top: -18px;
    left: 0;
}

.testi-descrip p{
    font-size: 15px;
    font-weight: 300;
    color: #4c4c4c;
    line-height: 26px;
    letter-spacing: 0.08em;
}

.testi-descrip span{
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: #264653;
    letter-spacing: 0.08em;
    padding-top: 46px;
    display: block;
    position: relative;
}

.testi-descrip span.pad-bottom {
    padding-bottom: 120px;
}

.testi-descrip span.pad-bottom::after {
    content: '';
    position: absolute;
    width: 670px;
    height: 1px;
    background: #dfdfdf;
    bottom: 78px;
    left: -100px;
}

.testi-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 108px;
}

.testi-arrow {
    position: relative;
}

.testi-arrow span {
    font-style: italic;
    font-family: 'Merriweather', serif;
    font-size: 13px;
    color: #be5b43;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0 20px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.testi-arrow span:hover{
    color: #264653;
}

.testi-arrow span.testi-prev::after {
    content: '';
    position: absolute;
    top: 6px;
    left: -25px;
    width: 34px;
    height: 1px;
    background: #be5b43;

}

.testi-arrow span.testi-next::after {
    content: '';
    position: absolute;
    top: 6px;
    right: -25px;
    width: 34px;
    height: 1px;
    background: #be5b43;
}

.testi-read a{
    font-style: italic;
    font-family: 'Merriweather', serif;
    font-size: 13px;
    color: #be5b43;
    padding-left: 20px;
    letter-spacing: 0.02em;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.testi-read a:hover{
    color: #264653;
}

.testi-read a::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    background: #be5b43;
    left: 0;
    top: 0;
}

.testi-read a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #BE5C43;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.testi-read a:hover::before{
    opacity: 1;
    width: 100%;
}

.hp-testimonials .slick-initialized .slick-slide {
    padding-top: 24px;
}
/* End Testimonials */

/* Instagram */
.hp-instagram {
    font-size: 0;
    padding-top: 70px;
    padding-bottom: 60px;
}

.insta-icon {
    text-align: center;
    padding-bottom: 41px;
}

.insta-icon span{
    display: block;
    font-size: 58px;
    color: #be5b43;
}

.insta-icon em{
    font-style: normal;
    font-size: 20px;
    color: #525252;
    display: block;
}

.insta-title{
    font-weight: 500;
    font-size: 24px;
    color: #5d5d5d;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 32px;
}

.insta-row {
    display: flex;
    max-width: 1508px;
    margin: 0 auto;
    justify-content: space-between;
    width: 100%;
}

.insta-col {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
}

.insta-left {
    flex: 1 1 auto;
}

.insta-right {
    display: flex;
    flex-wrap: wrap;
    margin: -1.5px 0;
    flex: 1 1 auto;
}

.insta-video a{
    position: relative;
    display: block;
}

.insta-canvas {
    max-width: 754px;
    width: 100%;
    position: relative;
}

.insta-canvas::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(48,48,48,.40);
}

.insta-canvas canvas{
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.insta-play-button {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-img {
    height: calc(100% / 3);
    padding: 1.5px;
    display: block;
    width: calc(100% / 4);
    position: relative;
}

.insta-list {
    display: flex;
    flex-wrap: wrap;
}


.insta-img canvas {
    display: block;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

.global-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.blue-button a,
.orange-button a {
    display: block;
    width: 185px;
    height: 65px;
    border: none;
    color: #fff;
    background: #264653;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.09em;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.orange-button a{
    background: #be5b43;
    margin-left: 10px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.orange-button a:hover{
    background: #264653;
}

.blue-button a:hover{
    background: #be5b43;
}

.home .aiosp-iframe-scaler iframe {
    left: 0 !important;
    width: 100% !important;
}

.insta-img img {
    position: absolute;
    width: 45px;
    height: 45px;
    top: 50%;
    left: 50%;
    left: 50%;
    max-width: 50p;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
/* End Instagram */

/* Contact Form */
.contact-form{
    font-size: 0;
    margin-top: 100px;
    padding-bottom: 60px;
    position: relative;
}

.contact-form::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('images/contact-bg.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    filter: grayscale(1);
    opacity: .2;
}

.contact-title{
    padding-top: 95px;
    text-align: center;
}

.contact-title span{
    font-size: 57px;
    color: #be5b43;
    text-transform: uppercase;
    font-family: 'Merriweather', serif;
    display: block;
}

.contact-title em{
    display: block;
    font-style: normal;
    font-size: 14px;
    color: #525252;
    letter-spacing: 0.05em;
    padding-top: 18px;
    display: none;
}

.hp-form {
    max-width: 945px;
    width: 100%;
    margin: 0 auto;
    padding-top: 58px;
    position: relative;
}

.ct-input-field input[type="text"],
.ct-input-field input[type="email"],
.ct-input-field textarea {
    width: 100%;
    height: 44px;
    display: block;
    outline: none;
    background: #fff;
    border: none;
    font-size: 11px;
    color: #474747;
    letter-spacing: 0.07em;
    padding: 0 20px;
    margin-bottom: 6px;
}

.ct-input-field textarea {
    resize: none;
    overflow: hidden;
    padding-top: 17px;
}

.ct-input-field {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.ct-input-field:nth-child(2) {
    margin-left: 0;
}

.ct-input-field.short {
    width: calc(30% - 3px);
}

.ct-input-field.long {
    width: calc(40% - 5px);
}

.ct-button {
    padding-top: 28px;
}

.ct-input-field.submit {
    text-align: center;
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
}

.ct-input-field input[type="submit"] {
    width: 185px;
    height: 65px;
    border: none;
    background: #264653;
    color: #fff;
    text-transform: uppercase;
    outline: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.09em;
    display: block;
    margin: 0 auto;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ct-input-field input[type="submit"]:hover{
    background: #BE5C43;
}

.hp-form div.wpcf7-response-output {
    font-size: 12px;
    text-align: center;
    position: absolute;
    width: 100%;
    margin: 0;
    bottom: -31px;
}

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

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

.hp-form form {
    position: relative;
}

/* End Contact */

/* Footer */
footer.footer{
    font-size: 0;
    background: url('images/footer-bg.jpg') no-repeat;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    padding-top: 70px;
    padding-bottom: 50px;
}

.footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    max-width: 695px;
    margin: 0 auto;
    padding-left: 83px;
}


.footer-phone span,
.footer-email span,
.footer-address span{
    font-size: 18px;
    color: #be5b43;
    display: block;
    padding-bottom: 8px;
}

.footer-email span{
    font-size: 13px;
}

.footer-phone em,
.footer-email a,
.footer-address em{
    font-size: 14px;
    color: #fff;
    display: block;
    font-style: normal;
    line-height: 15px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.footer-email a:hover{
    color: #be5b43;
}

.footer-address{
    max-width: 180px;
    width: 100%;
}

.footer-smi a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #be5b43;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 9px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.footer-smi a:hover{
    background: #264653;
}

.footer-smi {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 56px;
}

.footer-logo{
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    width: calc(100vw - 112px);
    height: 1px;
    background: #214954;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.footer-logo img {
    margin: 0 auto;
    padding-top: 33px;
}

.footernav li a {
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.footernav li a:hover{
    color: #BE5C43;
}

.footernav li a::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 14px;
    top: 4px;
    right: -36px;
    background: #fff;
}

.footernav li:last-child a::after {
    display: none;
}

.footernav {
    max-width: 845px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 80px;
}


.wpl-page .footernav{
     margin: 0 auto;
    padding-top: 80px;
}

.copyright {
    font-weight: 300;
    font-size: 12px;
    color: #e7e7e7;
    letter-spacing: 0.02em;
    text-align: center;
    padding-top: 32px;
}

.copyright a{
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.copyright a:hover{
    color: #BE5C43;
}

.mls {
    font-size: 20px;
    color: #fff;
    text-align: center;
    padding-top: 20px;
}

/* End Footer */

/* listing details page css */
/*** Listing Details Page CSS ***/
.listing-details-wrap .pager {
    display: block;
    height: 20px;
    position: relative;
    width: 100%;
}

.listing-details-wrap .pager a {
    display: block;
    color: #8f8f8f;
    text-decoration: none;
    font-size: 14px;
    position: absolute;
}

.listing-details-wrap .pager a.pa-next {
    right: 0;
    top: 0;
}

.listing-details-wrap .pager a.pa-back em {
    padding-right: 6px;
    font-size: 10px;
}

.listing-details-wrap .pager a.pa-next em {
    padding-left: 6px;
    font-size: 10px;
}

.listing-details-wrap .details-head {
    width: 100%;
    position: relative;
    font-size: 0;
    margin: 17px 0 20px;
}

.listing-details-wrap .details-head span.details-price {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 10px;
    line-height: 31px;
    display: inline-block;
    vertical-align: top;
    text-align: right;
    font-weight: 700;
    font-size: 26px;
}

.listing-details-wrap .property-details h2 {
    font-weight: 700;
    font-size: 18px;
    color: #575757;
}

.listing-details-wrap .property-details .details-list {
    width: 100%;
    border-top: 1px solid #cfcfcf;
    border-bottom: 1px solid #cfcfcf;
    padding: 10px 0 6px;
}

.listing-details-wrap .property-details .details-list>div {
    display: inline-block;
    vertical-align: top;
}

.listing-details-wrap .property-details .details-list .det-specs {
    padding-bottom: 10px;
}

.listing-details-wrap .property-details .details-list .det-column {
    width: 100%;
}

.listing-details-wrap .property-details .details-list .det-item {
    max-width: 170px;
    width: 100%;
}

.listing-details-wrap .property-details .details-list .det-specs span {
    display: inline-block;
    vertical-align: top;
    font-size: 13px;
    margin-top: 5px;
    text-transform: uppercase;
    color: #575757;
    white-space: nowrap;
    padding-top: 6px;
}

.listing-details-wrap .property-details .details-list .det-specs span.d-beds {
    margin-left: 0;
    padding-left: 28px;
    position: relative;
}

.listing-details-wrap .property-details .details-list .det-specs span.d-beds em {
    padding-right: 15px;
    font-size: 15px;
    color: #bababa;
}

.listing-details-wrap .property-details .details-list .det-specs span strong {
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    padding-left: 3%;
    color: #666666;
}

.listing-details-wrap .property-details .details-list .det-specs span.d-baths em {
    padding-right: 15px;
    font-size: 15px;
    color: #bababa;
}

.listing-details-wrap .property-details .details-list .det-specs span.d-baths {
    padding-left: 28px;
    position: relative;
}

.listing-details-wrap .property-details .details-list .det-specs span.d-cars {
    padding-left: 28px;
    position: relative;
}

.listing-details-wrap .property-details .details-list .det-specs span.d-cars em {
    padding-right: 15px;
    font-size: 15px;
    color: #bababa;
}

.property-description {
    width: 100%;
    padding-top: 20px;
    font-size: 0;
}

.property-description .property-det {
    display: inline-block;
    vertical-align: top;
    width: 62%;
}

.property-description h2 {
    color: #575757;
    font-weight: 700;
    font-size: 18px;
    padding: 5px 0 0;
    margin: 0;
}

.property-description .property-det p {
    margin: 0;
    padding: 10.5px 0;
    color: #5f5f5f;
    font-size: 13px;
    line-height: 24px;
    text-align: justify;
}

.property-description .property-add-type {
    display: inline-block;
    vertical-align: top;
    width: 35%;
    margin-left: 3%;
    border-left: 1px solid #d2d2d2;
    padding-left: 4%;
    padding-top: 9px;
    box-sizing: border-box;
}

.property-description .property-add-type div {
    display: block;
    width: 100%;
    border-top: 1px solid #d2d2d2;
    padding: 14px 0;
    position: relative;
}

.property-description .property-add-type div:first-child {
    border-top: none;
}

.property-description .property-add-type p {
    display: block;
    color: #575757;
    margin: 0;
    padding: 0 11%;
}

.property-description .property-add-type span {
    font-size: 13px;
    display: block;
    text-transform: uppercase;
}

.property-description .property-add-type span em {
    position: absolute;
    top: 16px;
    left: 0;
    font-size: 15px;
    color: #bababa;
}

.property-description .prop-location {
    margin-bottom: 30px;
}

.property-description .prop-location h2 {
    padding: 0!important;
}

.property-description .prop-location h3 {
    margin: 0!important;
    color: #5f5f5f;
    font-weight: 700;
    font-size: 15px;
    padding-bottom: 23px;
}

.listing-details-wrap * {
    outline: none;
}

#listing-map-canvas {
    margin: 0;
    padding: 0;
    height: 223px;
    width: 100%;
}

.popupform{
        width: 371px;
    text-align: left;
}

.property-description .prop-cta {
    width: 100%;
    font-size: 0;
    margin-top: 15px;
}

.property-description .prop-cta a {
    display: inline-block;
    vertical-align: top;
    width: 24.2%;
    height: 39px;
    box-sizing: border-box;
    border: 1px solid #cdcdcd;
    text-align: center;
    color: #6a6a6a;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 15px;
    margin-left: 1%;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    text-decoration: none;
}

.property-description .prop-cta a {
    background: #ffffff;
    color: #6a6a6a;
}

.property-description .prop-cta a:first-child {
    margin-left: 0;
}

.property-description .prop-cta span {
    display: inline-block;
    vertical-align: middle;
}

.property-description .prop-cta a:hover {
    background: #666666;
    color: #ffffff;
}

.listing-details-wrap .pager.footer-pager {
    margin-top: 60px;
}

.property-description .prop-cta a:after {
    content: "";
    height: 100%;
    width: 0;
    display: inline-block;
    vertical-align: middle;
}

.descript-map iframe {
    height: 100%;
}

.ld-ps-item canvas {
    background-size: cover !important;
}

.featured-row:not(slick-initialized) .fp-list:nth-child(n+2){
    display: none;
}

/*** Listing Details ***/
/* End of listing details page */
/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/

/* Global */

body{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
	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; */
}
 
/*******************************************************
 *
 * 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,.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: 70px;
            text-align: center;
            color: #FFF;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 1.7;
            padding-top: 28px;
        }
            .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: 45px;
    font-weight: 500;
    color: #264653;
    line-height: 1.4;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 50px;
}
    #content .entry-title span,
    #content .archive-title span {
        display: block;
        position: relative;
        font: 400 65px/1 'Merriweather', serif;
        color: #be5b43;
        letter-spacing: 0.075em;
        margin-top: 15px;
        padding: 0 65px;
    }
    #content .entry-title span::before,
    #content .archive-title span::before {
        content: '';
        display: block;
        position: absolute;
        width: 100px;
        height: 1px;
        background: #000000;
        opacity: 0.1;
        top: 35px;
        left: -65px;
    }

#content .entry {
    font-size: 15px;
    color: #5d5d5d;
}
    #content .entry p {
        color: #5d5d5d;
        margin: 25px 0;
    }

#inner-page-wrapper {
    background: url(images/inner-page-bg.jpg) no-repeat center center / cover;
    margin-bottom: 0;
}
#inner-page-wrapper::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.85);
}
    #inner-page-wrapper > .container {
        position: relative;
    }

    #content-sidebar, #content-full {
        background: #ffffff;
        margin-top: 0;
        display: flex;
        align-items: flex-start;
    }

    #inner-page-wrapper article#content,
    #inner-page-wrapper section#content {
        width: 100%;
        padding: 28px 65px 100px;
    }
    body:not(.page-template-default):not(.single-aios_agent) #inner-page-wrapper article#content,
    body.page-id-234 #inner-page-wrapper article#content {
        width: 100%;
    }
        #content #breadcrumbs {
            margin: 15px 0 82px;
            font-size: 13px;
            font-weight: 300;
            color: #5d5d5d;
            line-height: 1;
            letter-spacing: 0.049em;
            text-transform: uppercase;
        }
        #content #breadcrumbs span {
            margin: 0 3px 0 5px;
        }
        #content #breadcrumbs span:first-of-type {
            margin-left: 0;
        }
        #content #breadcrumbs .breadcrumb_last {
            font-weight: 700;
            color: #be5b43;
        }
    .page-featured-image {
        position: relative;
        width: 35.44%;
        /*margin-top: 145px;*/
        margin-bottom: 50px;
        float: right;
        margin-left: 20px;
    }
    .page-featured-image::after {
        content: '';
        display: block;
        position: absolute;
        width: 642px;
        height: 132px;
        bottom: -85px;
        background: url(images/featured-image-shadow.png) no-repeat center center;
        z-index: 1;
    }
        .page-featured-image canvas {
            display: block;
            width: calc( (100vw - 1010px) / 2 + 100% );
            background-image: url(images/featured-image.jpg);
            background-color: #cccccc;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            z-index: 2;
        }

.ip-container .contact-form {
    margin-top: 0;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle { 

}

/* Preverred Vendors */

.pv-accordion .panel-title{
    margin: 0 !important;
}

.pv-accordion .pv-details{
    display: flex;
    flex-direction: column;
}

.pv-heading{
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #264653;
}

.pv-button .pv-icon {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 100%;
    position: relative;
    margin-right: 15px;
}

.pv-button .pv-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

.pv-button .pv-icon::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 20px;
    background: #000;
    opacity: 1;
    transition: all .4s ease;
}
.pv-button.active .pv-icon::after{
    opacity: 0;
}

.pv-category {
    margin-bottom: 60px;
}

/* End Preverred Vendors */

/* Down Payment Assistance */
.page-id-368 .ip-banner h1{
    font-size: 60px;
}

.dpa-content{

}

.dpa-item {
    padding-top: 20px;
}

.dpa-description{
    text-align: center;
}

.dpa-heading{
    color: #264653;
    font-size: 40px;
    text-align: center;
}

.dpa-title{
    font-size: 22px;
    color: #264653;
    text-align: center;
}

.dpa-details > strong{
    display: list-item; 
    list-style-type: disc;
    list-style-position: inside; 
}
/* End Down Payment Assistance */

/* Resources */
.res-wrap {
    margin-bottom: 30px;
}
.res-heading{
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #264653;
}
.res--title{
    font-size: 13px;
    line-height: 24px;
    color: #5d5d5d;
    font-weight: 500;
    text-transform: uppercase;
    flex: 1;
}
.res-list{
    list-style: none;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}
.res-list .res--item{
    display: inline-block;
    margin-bottom: 30px;
}
.res-list .res--item:last-child{
    margin-bottom: 0;
}
.res-list .res--item:last-child .res--icon::after{
    display: none;
}
.res-list .res--link{
    display: flex;
    align-items: center;
}
.res-list--circle .res--icon{
    border-radius: 50%;
}
.res-list--hex .res--icon{
    margin-top: 20px;
    margin-bottom: 20px;
    height: 40px;
}
.res-list--hex span{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.res-list--hex .res--icon span::before{
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 25px solid;
    border-bottom-color: #264653;
}
.res-list--hex .res--icon span::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 25px solid;
    border-top-color: #264653;
}
.res-list--hex .res--icon::after{
    top: calc(100% + 20px);
}
.res--icon{
    position: relative;
    width: 80px;
    height: 80px;
    background: #264653;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.res--icon::after{
    content: '';
    height: 100%;
    position: absolute;
    top: 100%;
    left: 50%;
    border-right-width: 1px;
    border-right-style: dashed;
    z-index: -1;
}
.res--icon .res-flag{
    width: 27px;
    height: 24px;
    background: url('images/ic-flag.png') no-repeat center center;
    display: inline-block;
    vertical-align: middle;
}

/* End Resources */

.aiosp-iframe-scaler iframe{
    width: auto !important;
    left: 35% !important;
}
.aiosp-iframe-holder .aiosp-close{
    text-align: center;

}

.wpl_property_listing_container aside,
.wpl_plisting_bottom_sidebar_container aside{
    float: none;
    width: 100%;
}

.hp-quick-search .bootstrap-select.btn-group {
    /*select width, display and position are set here and set to !important
    no height attribute. padding in .hp-quick-search .bootstrap-select.btn-group .dropdown-toggle sets the height*/
    width: 100% !important;    
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle {
    /*form appearance should be set here
    no height attribute. set the height by setting the padding*/
    height: 65px;
    display: block;
    background: #fff;
    border: none;    
    padding-left: 25px;
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    /*font size, family, etc. should be set here*/
    font-size: 12px;
    color: #656565;
    letter-spacing: 0.02em;
    outline: none;
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-menu {
    min-width: 100% !important;
    top: 0px;
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-menu > .status{
    display: none !important;
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-menu.inner {
    max-height: 200px !important;
}
	 
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */

/*featured search*/

.featured-searches-holder {
    margin: 0 -15px;
    padding-bottom: 25px;
}

.featured-searches-list a {
    display: block;
    max-width: 360px;
    position: relative;
    position: relative;
    margin: 0 auto 30px;
}

.featured-searches-list a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .25) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFUlEQVQYV2NkYGD4z8DAwMjIAAH/AQ8oAgJbL/zzAAAAAElFTkSuQmCC);
    z-index: 1;
    opacity: .5;
}

.featured-searches-list a .fs-photo {
    height: 280px;
    opacity: .75;
}

.fs-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 5;
    padding: 17px;
}

.fs-hover {
    position: relative;
    width: 100%;
    height: 100%;
    border: solid 1px rgba(255, 255, 255, 0.25);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.fs-hover::before {
    content: '';
    width: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.fs-content .fs-name {
    display: inline-block;
    vertical-align: middle;
    font-size: 19px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1.3px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 5;
    line-height: 1.25;
    transform: scale(1) rotate(0);
    -moz-transform: scale(1) rotate(0);
    -webkit-transform: scale(1) rotate(0);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.fs-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #be5b43;
    opacity: 0;
    z-index: 1;
    transform: scale(0) rotate(30deg);
    -moz-transform: scale(0) rotate(30deg);
    -webkit-transform: scale(0) rotate(30deg);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.featured-searches-list a:hover .fs-hover::after {
    opacity: .8;
    transform: scale(1) rotate(0);
    -moz-transform: scale(1) rotate(0);
    -webkit-transform: scale(1) rotate(0);
}

.featured-searches-list a:hover .fs-hover {
    border: solid 1px transparent;
}

.featured-searches-list a:hover .fs-name {
    transform: scale(0) rotate(-30deg);
    -moz-transform: scale(0) rotate(-30deg);
    -webkit-transform: scale(0) rotate(-30deg);
}

.fs-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 42px;
    height: 42px;
    background: url(images/search-icon.png) no-repeat;
    background-size: contain;
    background-position: center;
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    opacity: 0;
    z-index: 5;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.featured-searches-list a:hover .fs-icon {
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1;
}

/*neighborhood report*/

.neighborhood-report-form {
    font-size: 0;
}

.neighborhood-report-form input {
    width: 100%;
    font-size: 14px;
    border: 0;
    padding: 0 14px;
    color: #999999;
    height: 50px;
    border-radius: 0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: solid 1px rgba(0, 0, 0, 0.4);
}

.neighborhood-report-form select {
    color: #999999;
    height: 50px;
    border: solid 1px rgba(0, 0, 0, 0.4);
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    background: #fff url(images/dd-arrow.png) no-repeat scroll right 15px center;
    padding: 0 18px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    font-size: 14px;
}

.neighborhood-report-form select::-ms-expand {
    display: none;
}

.nr-field-column3 {
    display: inline-block;
    vertical-align: top;
    width: 33.3333333%;
    padding: 0 4.5px;
}

.nr-field-column2 {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 0 4.5px;
    margin-bottom: 9px;
}

.neighborhood-report-form .nr-row {
    margin: 0 -4.5px;
}

.nr-field-column4 {
    width: 30%;
    display: inline-block;
    vertical-align: top;
    padding: 0 4.5px;
}

.nr-row .nr-field-column4:last-child {
    width: 10%;
}

.neighborhood-report-form .nr-field-btn input {
    background: #264653;
    border: 0;
    border-radius: 25px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
    max-width: 247px;
    letter-spacing: .5px;
    height: 45px;
    font-family: 'Poppins', sans-serif;
}

.neighborhood-report-form .nr-field-btn input:hover {
    background: #be5b43;
}

.neighborhood-report-form .nr-field-btn {
    margin-top: 30px;
}

.neighborhood-report-form .nr-label {
    color: #666666;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 12px;
    display: block;
}

.neighborhood-report-form span.nr-label:first-of-type {
    padding-bottom: 33px;
    text-transform: uppercase;
}

.neighborhood-report-form span.nr-label.nr-label-pad {
    padding-top: 34px;
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
    font-size: 12px;
}


.bp-image img {
    margin: 0 auto;
    display: block;
}

/*PIF CAREER*/
.ip-career-btn {
    position: relative;
}
.ip-career-btn a {
    width: 185px;
    width: 185px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: none;
    background: #264653;
    color: #fff;
    text-transform: uppercase;
    outline: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.09em;
    display: block;
    margin: 0 auto;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ip-career-btn a:hover{
    background: #BE5C43;
} 

/* 12/27/19 */
.addtoany_content {
    display: none;
}

.wpl_search_from_box.wpl_search_kind0 .chosen-container[id*="sf2_min_price_sale_chosen"], .wpl_search_from_box.wpl_search_kind0 .chosen-container[id*="sf2_max_price_sale_chosen"], .wpl_search_from_box.wpl_search_kind0 [id*="_search_field_container_8"] .chosen-container, .wpl_search_from_box.wpl_search_kind0 [id*="_search_field_container_9"] .chosen-container {
        min-width: 120px !important;
}

.wpl_search_from_box.wpl_search_kind0 .chosen-container[id*="sf2_select_property_type_chosen"] {
    min-width: 132px;
}

.page-id-226 #content .entry-title {
    text-align: center;
}

.wpl_prp_show_bottom aside {
    width: 100%;
    float: none;
    text-align: center;
}

.ip-custom-img {
    position: relative;
}

.ip-custom-img canvas {
    background-image:url('./images/featured-image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: block;
    width: 100%;
}

.wpl-powered-by-realtyna, .wpl_plisting_bottom_sidebar_container {
    text-align: center;
}

/* Additional CSS */

#wpl_searchwidget_2 ul.chosen-results {
    margin: 0;
    padding: 0;
}

div#wpl_default_search_2 .wpl_search_from_box_top {
    display: flex;
    align-items: center;
    justify-content: center;
}

    div#wpl_searchwidget_2 div.minmax_selectbox_type {
        display: flex;
    }

    div#wpl_searchwidget_2 div.minmax_selectbox_type .wpl_listing_price_sale {
        display: flex;
        width: 100%;
    }

    aside#wpl_search_widget-2 form#wpl_search_form_2 {
        padding-left: 0;
        padding-right: 0;
    }

    aside#wpl_search_widget-2 .wpl_search_from_box .search_submit_box {
        margin-right: 0;
    }

#content .buyers-process h2 {
    padding-top: 20px;
}

#content .with-side-image {
    max-width: 60%;
    float: left;
    width: 100%;
}

    #content .with-side-image .wpforms-field-container .wpforms-field-medium {
        width: 100%;
        max-width: 100%;
    }

    #content .with-side-image .wpforms-field-container input,
    #content .with-side-image .wpforms-field-container select {
        width: 100%;
        max-width: 100%;
    }


div#wpl_default_search_2 .wpl_search_from_box_top .wpl_search_field_container.advanced_locationtextsearch_type {
    width: 26%;
}

div#wpl_default_search_2 .wpl_search_from_box_top .wpl_search_field_container {
    width: 14%;
    margin: 0;
    padding: 0 5px;
}

div#wpl_default_search_2 .wpl_search_from_box_top .search_submit_box {
    width: 10%;
    margin-bottom: 0;
}

div#wpl_default_search_2 .wpl_search_from_box_top .wpl_search_field_container.minmax_selectbox_type {
    width: 25%;
}

div#wpl_default_search_2 .wpl_search_from_box_top input,
div#wpl_default_search_2 .wpl_search_from_box_top select {
    width: 100%;
    max-width: 100%;
}

.page-id-303 .page-featured-image canvas {
    display: block;
    width: calc( (100vw - 1010px) / 2 + 100% );
    background-image: url(images/buying-transparent.png);
    background-color: #cccccc;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    z-index: 2;
}

.page-id-307 .page-featured-image canvas {
    display: block;
    width: calc( (100vw - 1010px) / 2 + 100% );
    background-image: url(images/selling-transparent.png);
    background-color: #cccccc;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
}

.wpl_property_show_layout2 #content .entry-title {
    display: none;
}

.wpl_property_show_layout2 #content #breadcrumbs {
    margin-bottom: 0px;
}

.page-id-232 #content .entry-title, .page-id-234 #content .entry-title,
.page-id-236 #content .entry-title,
.page-id-3 #content .entry-title, .page-id-3 #content .archive-title {
    text-align: center;
}

.fp-inner .fp-descrip span:first-child {
    margin-right: 15px;
}
.fp-descrip span:first-child {
    margin-right: 15px;
}

/* 2/21/2020 */
.grecaptcha-badge {
    z-index: 1010 !important;
}

.wpl_search_from_box_top .chosen-container-single .chosen-single span {
    color: #464646;
}

.wpl_search_from_box .wpl_search_widget_location_textsearch {
    font-size: 13px;
    color: #464646;
}

#wpl_login_form_container label, #wpl_login_form_container .wpl-gen-form-label {
    display: block;
    width: 100% !important;
    max-width: 133px !important;
}

#wpl_login_form_container .wpl-login-form {
    max-width: 100%;
}

.page-id-316 div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
    width: 60%;
}

.wpl_prp_show_detail_boxes_cont .rows span {
    float: none;
}

ul.wpl-gallery-pshow {
    margin-left: 0 !important;
}

div#sf2_min_price_sale_chosen {
    padding-left: 2px;
    padding-right: 6px;
}

div#sf2_max_price_sale_chosen {
    padding-left: 6px;
}

.wpl_search_from_box select{
    background: transparent;
}

select#sf2_min_price_sale {
    margin-right: 8px;
}

.wpl_property_listing_container.wpl-property-listing-mapview .wpl_pagination_container {
    background: transparent;
    bottom: 11px;
    left: -27px;
    display: flex;
    align-items: center;
}

.wpl_property_listing_container.wpl-property-listing-mapview .wpl_property_listing_list_view_container {
    width: 33%;
}

div#fp-container-desktop {
    min-height: 300px;
}

/* 3-2-2020 */
#content-listings img {
    display: block;
    max-width: 100px !important;
    height: 100px !important;
}

#wpl_property_listing_container ul.pagination {
    margin-left: 31px;
}

.wpl_property_listing_container.wpl-property-listing-mapview .wpl_page_size {
    margin: 0 !important;
}




/***  14-03-2020   ***/

.grid-spaced-all {
    width: 100%;
    float: left;
    padding: 20px 0;
}
.grid-item {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
.grid-item ul li {
    float: left;
}
.grid-item ul li:first-child a {
    background-color:#999;
	color:#fff;
	text-transform:uppercase;
	font-weight:500;
}
.grid-item ul li a {
    display: inline-block;
    padding: 6px 10px;
    border: 1px solid #999;
    font-size: 16px;
    margin-bottom: 5px;
	font-weight:300;
	margin:0;
}
.grid-title {
    width: 100%;
    float: left;
    text-align: center;
	margin-bottom:20px;
}
.grid-title h1{
    font-size: 2.25em;
    line-height: 1.25;
}
.grid-spaced-all-tabs {
	width:100%;
	float:left;
	padding:20px 0;
}
.grid-spaced-all-tabs .tab-items {
	width:100%;
	float:left;
}
.grid-spaced-all-tabs .tab-items ul {
    width: 100%;
    float: left;
    border-bottom: 1px solid #828689;
}
.grid-spaced-all-tabs .tab-items ul li {
    float:left;
	z-index: 2;
}
.grid-spaced-all-tabs .tab-items ul li .sw_common  {
	z-index: 2;
    display: inline-block;
    color: #666;
    cursor: pointer;
    text-transform: uppercase;
    font-family: "Open Sans",sans-serif;
    font-weight: normal;
    padding: 5px 20px;
	font-size: 16px;
}
.grid-spaced-all-tabs .tab-items ul li .sw_common:hover, .grid-spaced-all-tabs .tab-items ul li .active {
	background-color: #828689;
	color: #fff;
}


.grid-spaced-all-tab-content {
    width: 100%;
    float: left;
	padding: 20px 0;
}
.grid-spaced-all-tab-side-bar {
    width: 400px;
    float: left;
    background-color: #eee;
}
.grid-spaced-all-tab-side-bar .side-bar-box {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
.grid-spaced-all-tab-side-bar .side-bar-box:last-child {
    margin-bottom: 0px;
}

.grid-spaced-all-tab-side-bar .content-box-title {
    color: #fff;
    background-color: #828689;
    padding: 7px 10px;
    width: 100%;
    float: left;
}
.content-box-title h4 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 300;
}
.grid-spaced-all-tab-side-bar .content-box {
    padding: 10px;
    background-color: #eee;
    width: 100%;
    float: left;
    margin-bottom: 1px;
}
.grid-spaced-all-tab-side-bar .content-box ul{
    width: 100%;
    float: left;
}
.grid-spaced-all-tab-side-bar .content-box ul li{
    width: 100%;
    float: left;
	margin-bottom: 10px;
}
.grid-spaced-all-tab-side-bar .content-box ul li:last-child{
	margin-bottom:0px;
}
.grid-spaced-all-tab-side-bar .content-box select {
    width: 100%;
    height: 30px;
    font-size: 14px;
    color: #333;
	outline:none;
}
.grid-spaced-all-tab-side-bar .content-box input[type="text"] {
    width: 100%;
    height: 30px;
    font-size: 14px;
    color: #333;
	padding:0 10px;
	outline:none;
	border: 1px solid #999;
    background-color: #fff;
}

.grid-spaced-all-tab-side-bar .content-box ul li label {
    font-size: 14px;
    text-transform: uppercase;
    color: #333;
	vertical-align:middle;
}
.grid-spaced-all-tab-side-bar .content-box ul li label input[type="checkbox"] {
    margin:0 4px 0 0;
	float:left;
}
.grid-spaced-all-tab-side-bar .content-box ul li a{
   font-size:15px;
}
.grid-spaced-all-tab-side-bar .property-box  {
    margin-bottom: 0px;
}
.grid-spaced-all-tab-side-bar .content-box .property-title {
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    color: #636060;
}
.grid-spaced-all-tab-side-bar .property-box ul li {
    margin-bottom: 15px;
}
.grid-spaced-all-tab-side-bar .property-box ul li label {
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.grid-spaced-all-tab-main-content {
    width:calc(100% - 420px);
    float: right;
}

.grid-col-item {
    width: 100%;
    float: left;
}

.grid-col-item ul {
    width: 100%;
    float: left;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 30px;
}
.grid-col-item ul li{
    width: 100%;
    float: left;
}

.grid-col-item ul li .grid-textbox {
    width: 100%;
    float: left;
    border: 1px solid #999;
    background-color: #eee;
    display: block;
    padding: 20px;
    border-top: none;
}
.grid-col-item ul li img {
    width: 100%;
    float: left;
}
.grid-col-item ul li .grid-textbox {
    width: 100%;
    float: left;
    border: 1px solid #999;
    background-color: #eee;
    display: block;
    padding: 20px;
    border-top: none;
}
.grid-col-item ul li .grid-textbox h4 {
    font-size: 18px;
    margin-bottom: 15px;
}
.c-address address {
    font-size: 14px;
    font-family: "Open Sans",sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #666;
}
.square-feet-list {
    width: 100%;
    float: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 20px 0;
}
.square-feet-list .square-feet-list-left ul {
    display: flex;
}
.square-feet-list .square-feet-list-left ul li {
    margin-left:10px;
}
.square-feet-list a {
    font-size: 1.75em;
    color: #333;
}
.grid-col-item ul li p {
    font-size: 14px;
    font-family: "Open Sans",sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #666;
}
/***  14-03-2020  end  ***/



/***  16-03-2020  ***/

.grid-spaced-all-tab-side-bar form {
    width: 100%;
    padding: 0 10px !important;
}

.grid-spaced-all-tab-side-bar .wpl_search_field_property_types .mark {
    padding: 0;
    background-color: transparent;
}

.grid-spaced-all-tab-side-bar .wpl_search_field_property_types label {
    margin: 0 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.grid-spaced-all-tab-side-bar .wpl_search_slider_container .wpl_span_block .ui-slider .ui-slider-range {
    background: #000;
}

.grid-spaced-all-tab-side-bar .wpl_search_slider_container .wpl_span_block .ui-slider .ui-slider-handle {
    border: 1px solid #666;
    background-color: #fff;
    background-image: none;
    border-radius: 100%;
}

.grid-spaced-all-tab-side-bar .wpl_search_from_box .wpl_dashboard_links_container a {
    font-size: 1.2em;
    line-height: 23px;
	text-align:left;
	margin-left: 80px;
}

.grid-spaced-all-tab-main-content .wpl_prp_cont.wpl_prp_cont_old.grid_box .wpl_prp_bot {
    padding: 20px;
    background-color: #eee;
    border: 1px solid #999;
    border-top: transparent;
}

.grid-spaced-all-tab-main-content .grid_box .wpl_gallery_container img {
    width: 100% !important;
    object-fit: cover;
    object-position: center;
}

.grid-spaced-all-tab-main-content .grid_box .wpl_prp_bot {
	text-align:left;
}

.grid-spaced-all-tab-main-content .grid_box .wpl_prp_bot .wpl_prp_title {
    color: #000;
    font-size: 18px;
    font-family: "Open Sans",sans-serif;
    text-align: left;
	transition: 0.5s;
}

.grid-spaced-all-tab-main-content .grid_box .wpl_prp_bot .wpl_prp_title:hover {
    color: #23527c;
}

.grid-spaced-all-tab-main-content .grid_box .wpl_prp_bot h4 {
    font-size: 14px;
    font-family: "Open Sans",sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #666;
	text-align: left;
}

.grid-spaced-all-tab-main-content .grid_box .wpl_prp_listing_icon_box {
    display: flex;
    font-size: 1.4em;
    color: #333;
}

.grid-spaced-all-tab-main-content .grid_box .wpl_prp_listing_icon_box .pic_count {
    display: flex;
    align-items: center;
}

.grid-spaced-all-tab-main-content  .grid_box .wpl_prp_listing_icon_box div {
    display: flex;
    align-items: center;
}

.grid-spaced-all-tab-main-content .grid_box .wpl_prp_listing_icon_box span {
    margin-right: 10px;
}

.grid-spaced-all-tab-main-content .grid_box .wpl-mls-brokerage-info > div {
    display: none;
}

.grid-spaced-all-tab-main-content .wpl_prp_cont.grid_box  {
    position:relative;
	padding-bottom:0;
	border-bottom:none;
}

.grid-spaced-all-tab-main-content .wpl_prp_cont.grid_box .price_box {
    left: auto;
    right: 0;
    background-color: transparent;
	bottom: 35px;
    width: auto;
}

.grid-spaced-all-tab-main-content .wpl_prp_cont.grid_box .price_box span{
    font-size: 1.75em;
    color: #333;
	padding: 5px 10px;
	background-color:transparent;
}

.grid-spaced-all-tab-main-content .wpl_property_listing_container {
}
.grid-spaced-all-tab-main-content .wpl_property_listing_container .wpl_sort_options_container {
    margin: 0px auto 0px;
}
.grid-spaced-all-tab-main-content .wpl-plisting-link-btn, .wpl-save-search-wp {
    display: none;
}
.grid-spaced-all-tab-main-content .wpl_sort_options_container_title {
    display: none;
}
.grid-spaced-all-tab-main-content .grid_box {
    margin-bottom: 0;
}
.grid-spaced-all-tab-main-content .wpl-sort-options-selectbox:hover {
    background-color:#999;
}
.grid-spaced-all-tab-main-content .wpl-sort-options-selectbox select {
    height: 30px;
    border: 1px solid #999;
	outline:none;
}

.wpl_property_show .ip-banner  canvas {
    height: 180px;
    min-height: 180px;
}
.wpl_property_show header.header {
    opacity: 1;
}

.property_details_page_sec .full_slider .carousel-item .slider_box {
    padding: 0;
}
.property_details_page_sec .full_slider .carousel-item .slider_box img {
    width:100%;
}
.property_details_page_sec .full_slider .bg-dark {
    opacity: 1;
    height: 40px;
    top: 50%;
    transform: translate(-0%, -50%);
    padding: 0px 5px;
	background: #a40d2c !important;
}
#wpl_contact_form231956 input[type="text"], #wpl_contact_form231956 input[type="email"], #wpl_contact_form231956 input[type="tel"], #wpl_contact_form231956 textarea {
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 2px;
    color: #333;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
    float: none;
    font-size: 16px;
    border: 1px solid #ccc;
    padding: 6px 10px;
    height: 38px;
    width: 100%;
    line-height: 1.3;
    margin-bottom: 15px;
	outline:none;
}
#wpl_contact_form231956 textarea {
    height: 120px !important;
}
.property_details_page_sec .wpl_prp_show_walkscore #ws-walkscore-tile {
    margin: 0 auto;
}
/***  16-03-2020 end ***/


/***  19-03-2020  ***/


.body_bg {
    background-image: none !important;
    background-color: #fff !important;
}
.body_bg:before {
    content:none !important;
}
.property_details_page_inner .wpl_prp_show_position2, .property_details_page_inner .wpl_prp_right_boxes.details {
    background-color: #f2f2f2;
}
.property_details_page_inner .tabs_container ul li span:before, .property_details_page_inner .tabs_container ul li span:after {
    content: none !important;
}
.grid-spaced-all .grid-title h3 {
    color: #a19f9f;
    font-size: 26px;
}
.grid-spaced-all .grid-title h3 {
    color: #a19f9f;
    font-size: 50px;
}
.grid-spaced-all .grid-title h1 {
    font-size: 40px;
	margin: 0px 0 10px;
}
.grid-spaced-all .grid-title  h4 {
    font-size: 30px;
    margin: 16px 0 0;
	margin-top: 20px;
}


/***  19-03-2020  ***/


/***  resposive  ***/


  

/***  resposive end  ***/








