/*
Theme Name: Debra Johnston
Theme URI: http://aios3-staging.agentimage.com/d/debraajohnston.com/htdocs/
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.4.4
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/
/*

TABLE OF CONTENTS

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

@font-face {
    font-family: luxruryGold;
    src: url(font/Luxury-Gold.otf);
}

/*******************************************************
 *
 * 1. Navigation
 *
 *******************************************************/

#nav {
    width: 100%;
    display: block;
    text-align: right;
}

/* Sub Menu */

#nav li {
    position: relative;
    display: inline-block;
    margin: 0 20px;
}

#nav li:last-child {
    margin-right: 0;
}

#nav li a {
    line-height: 1;
    font-size: 14px;
    text-transform: uppercase;
    color: #1f1f1f;
    padding: 25px 0;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    display: block;
    font-weight: 600;
}

#nav > li:last-child a {
    padding: 10px 30px;
    border: 1px solid #c7c7c7;
}

#nav > li:last-child a:hover {
    background: #232323;
    color: #fff;
    border: 1px solid #232323;
}

#nav li:hover a,
.header.fixed-hdr #nav li:hover a,
.header.fixed-hdr #nav li li:hover a {
    color: #999;
}

#nav li:hover li a,
.header.fixed-hdr #nav li:hover li a {
    color: #1f1f1f;
}

.header.fixed-hdr #nav li a {
    padding: 35px 0;
    color: #fff;
    font-weight: 500;
}

.header.fixed-hdr .h-logo,
.header.fixed-hdr .h-logo-sub {
    color: #fff;
}

.header.fixed-hdr #nav > li:last-child a {
    padding: 10px 30px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

#nav > li:last-child a {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.header.fixed-hdr #nav li:last-child a:hover {
    background: #000;
}

.header.fixed-hdr #nav li li:last-child a:hover {
    background: transparent;
}

#nav li a:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 55%;
    right: 55%;
    bottom: 0;
    background: #232323;
    height: 3px;

    transition: 400ms ease-in-out;

    /*webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;*/
}

#nav li:last-child a:before {
    display: none;
}

.header.fixed-hdr #nav li a:before {
    background: #fff;
}

#nav li li a:before {
    display: none;
}

#nav li:hover a:before,
#nav li:focus a:before,
#nav li:active a:before {
    left: 0;
    right: 0;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: #fff;
    display: none;
    padding: 10px 0;
    position: absolute;
    width: 200px;
    left: 50%;
    margin-left: -100px;
    text-align: center;
}

#nav .sub-menu li {
    width: 100%;
    margin: 0;
}

#nav .sub-menu a {
    color: #1f1f1f;
    display: block;
    padding: 10px;
    text-align: center;
}

.header.fixed-hdr #nav li li a {
    padding: 10px;
    color: #1f1f1f;
}

#nav .sub-menu a:hover {
    color: #999 !important;
    text-decoration: none;
}

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

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

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

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

/* Global */

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background: #FFF;
    color: #232323;
    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; */
}

a,
a:hover,
a:active,
a:focus {
    color: #666;
    outline: 0;
}

a:hover {
    text-decoration: underline;
}

.transition {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.arrow-wrap {
    max-width: 180px;
    margin: 20px auto 0;
    position: relative;
    width: 100%;
    text-align: center;
    display: none;
}

/*** header ***/

header.header {
    position: absolute;
    z-index: 1035;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    font-size: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

header.header.fixed-hdr {
    background: #232323;
    position: fixed;
}

header .logo {
    width: 41%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

header .logo img {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

header .logo img.fixed-logo {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    opacity: 0;
}

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

header .navigation {
    width: 59%;
    display: inline-block;
    vertical-align: middle;
}

header .navigation .hdr-contact {
    font-size: 14px;
    color: #1f1f1f;
    width: 100%;
    display: block;
    text-align: right;
    line-height: 1;
    padding-top: 14px;
}

header .navigation .hdr-contact span {
    font-size: 12px;
    display: inline-block;
    margin-right: 10px;
}

header .navigation .hdr-contact em.sep {
    display: inline-block;
    margin: 0 20px;
    font-style: normal;
    color: #d6d6d6;
}

header .navigation .hdr-contact a {
    color: #1f1f1f;
}

.header.fixed-hdr .hdr-contact {
    font-size: 0;
    padding-top: 0;
    height: 0;
}

/*** homepage ***/

.hp-smi {
    position: fixed;
    left: 0;
    top: 27%;
    color: #fff;
    font-size: 20px;
    z-index: 10;
}

.smi-det .ai-mobile-phone {
    border-bottom: 1px solid #1a1a1a;
}

.hp-smi .smi-det {
    display: block;
    padding: 5px;
    width: 44px;
    background: #000;
    text-align: center;
    /*
            margin-top: 3px;*/
}

.hp-smi .hide-element {
    display: none !important;
    font-size: 0;
}

.hp-smi .smi-det a,
.hp-smi .smi-det.top em {
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    border-top: 1px solid #1a1a1a;
    line-height: 1;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.hp-smi .smi-det a:hover,
.hp-smi .smi-det.top em:hover {
    color: #999;
}

.hp-smi .smi-det.top a,
.hp-smi .smi-det.top em {
    padding: 13px 0;
    display: block;
}

.hp-smi .smi-det.top em a {
    padding: 0;
}

.hp-smi .smi-det span.ai-font-envelope,
.hp-smi .smi-det span.ai-font-phone {
    font-size: 16px;
}

.hp-smi .smi-det a:first-child {
    border: 0;
}

.hp-smi .mute-btn,
.slider-vid-mute .mute-btn {
    background: #000;
    width: 44px;
    padding: 0 5px 13px 5px;
    display: block;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    position: relative;
}

.hp-smi .mute-btn span,
.slider-vid-mute .mute-btn span {
    padding-top: 13px;
    border-top: 1px solid #1a1a1a;
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.slider-vid-mute .mute-btn span {
    border-top: 0 solid #1a1a1a;
    color: #fff;
}

.hp-smi .mute-btn .ai-font-mute,
.slider-vid-mute .mute-btn .ai-font-mute {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    opacity: 0;
}

.hp-smi .mute-btn.btn-muted .ai-font-volume-a,
.slider-vid-mute .mute-btn.btn-muted .ai-font-volume-a {
    opacity: 0;
}

.hp-smi .mute-btn.btn-muted .ai-font-mute,
.slider-vid-mute .mute-btn.btn-muted .ai-font-mute {
    opacity: 1;
}

.slider-vid-mute {
    position: absolute;
    top: 90px;
    right: 0;
    display: none;
}


.hp-smi .mute-btn{
    display: none !important;
}

/* .slide {
    width: 100%;
    position: relative;
    z-index: 1;
    font-size: 0;
    background: #000;
    padding-top: 70px;
}

.slide .slide-video {
    display: inline-block;
    width: 71%;
    position: relative;
    vertical-align: middle;
}

.slide-video-mob {
    display: none;
}

.slide-video .slide-overlay {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: url('images/hp-slide-overlay.png') top right repeat-y;
}

.slide .slide-logo {
    display: inline-block;
    width: 29%;
    vertical-align: middle;
    padding-right: 50px;
}

.slide .slide-logo img {
    display: block;
    margin: 0 auto 10px;
} */

.hp-videos .inner-wrap .arrow-wrap .videos-next,
.hp-videos .inner-wrap .arrow-wrap .videos-prev {
    position: relative;
    top: initial;
    display: inline-block !important;
    vertical-align: middle;
}

.hp-videos .inner-wrap .arrow-wrap .videos-prev {
    left: 0;
    margin-right: 10px;
}

.hp-videos .inner-wrap .arrow-wrap .videos-next {
    right: 0;
    left: initial;
    margin-left: 10px;
}

.inner-wrap {
    width: 84%;
    max-width: 1325px;
    display: block;
    margin: 0 auto;
    padding: 0 15px
}

.light-btn,
.dark-btn {
    font-size: 15px;
    font-weight: 700;
    color: #3c3c3c;
    width: 90%;
    max-width: 320px;
    display: block;
    padding: 21px 0 20px 5px;
    text-align: center;
    border: 1px solid #000;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 50px auto 0;
    text-decoration: none;
    font-family: 'Syncopate', sans-serif;
    line-height: 1;
    text-decoration: none;
}

.dark-btn {
    border: 1px solid #fff;
    color: #fff;
}

.dark-btn:hover {
    background: #fff;
    border: 1px solid #fff;
    color: #232323;
    text-decoration: none;
}

.light-btn:hover {
    background: #232323;
    color: #fff;
    text-decoration: none;
}

/*** featured properties ***/

.hp-fp {
    display: block;
    width: 100%;
    padding: 90px 0;
}

.hp-fp .inner-wrap {
    position: relative;
}

.hp-fp .fp-wrap {
    width: 100%;
    /*        overflow: hidden;      */
}

.hp-fp .inner-wrap .fp-next,
.hp-fp .inner-wrap .fp-prev {
    width: 18px;
    height: 55px;
    position: absolute;
    top: 35%;
    left: -40px;
    background: url('images/slick-prev-d.png') no-repeat;
    cursor: pointer;
}

.hp-fp .inner-wrap .fp-next {
    left: auto;
    right: -40px;
    background: url('images/slick-next-d.png') no-repeat;
}

.hp-fp .fp-wrap .fp-list {
    margin: 0 -15px;
    font-size: 0;
}

.hp-fp .fp-wrap .fp-list .fp-col {
    margin: 0 15px;
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.hp-fp .fp-img {
    display: block;
    width: 100%;
    position: relative;
    background: #232323;
}

.hp-fp .fp-img iframe {
    width: 100%;
    display: block;
    /*position: absolute;*/
    width: 100%;
    height: 320px;
    top: 0;
    left: 0;
}

.hp-fp .fp-img canvas {
    display: block;
    width: 100%;
    height: 325px;
    background-size: cover !important;
    background-position: center !important;
    /*background-size: 100% !important;*/
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.hp-fp a:hover .fp-img canvas {
    opacity: .8;
}

.hp-fp .fp-img .fp-price {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 22px;
    color: #fff;
    font-family: 'Open Sans Condensed', sans-serif;
    width: 180px;
    height: 65px;
    line-height: 65px;
    font-weight: 700;
    text-align: center;
    background: rgba(0, 0, 0, .65);
    letter-spacing: 2px;
}

.hp-fp .fp-col a {
    outline: none;
    text-decoration: none;
}

.hp-fp .fp-details {
    width: 100%;
    border: 1px solid #ccc;
    border-top: 0;
    padding: 32px 10%;
    text-align: center;
    font-size: 15px;
    line-height: 26px;
    color: #646464;
    font-family: 'Montserrat', sans-serif;
}

.hp-fp .fp-col:hover a .fp-details {
    background: #232323;
    border: 1px solid #232323;
    border-top: 0;
}

.fp-details span {
    color: #3c3c3c;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    font-family: 'Syncopate', sans-serif;
}

.fp-list a:hover .fp-details span {
    color: #fff;
}

.fp-list a:hover .fp-details {
    color: #9f9f9f;
}

.hp-fp .inner-wrap .arrow-wrap .fp-next,
.hp-fp .inner-wrap .arrow-wrap .fp-prev {
    position: relative;
    top: initial;
    vertical-align: middle;
    margin-top: 0;
}

.hp-fp .inner-wrap .arrow-wrap .fp-prev {
    left: 0;
    margin-right: 10px;
}

.hp-fp .inner-wrap .arrow-wrap .fp-next {
    right: 0;
    left: initial;
    margin-left: 10px;
}

/*** welcome area ***/

.hp-welcome {
    width: 100%;
    display: block;
}

.welcome-wrap {
    font-size: 0;
    background: #FFF;
}

.welcome-wrap .welcome-img {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}

.welcome-wrap .welcome-img canvas {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    display: block;
}

.welcome-wrap .welcome-text {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}

.welcome-text .text-in {
    padding-left: 6.5%;
}

.welcome-text h1 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 10px;
    line-height: 1;
    position: relative;
    padding-bottom: 27px;
    margin-bottom: 0px;
    font-family: 'Syncopate', sans-serif;
}

/*
                    .welcome-text h1:after {
                        position: absolute;
                        content: '';
                        bottom: 0;
                        left: 0;
                        width: 30px;
                        height: 1px;
                        background: #fff;
                    }*/

.welcome-text .text-in p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 25px;
    color: #000;
    text-align: justify;
    width: 67%;
}

.welcome-text .text-in a {
    color: #000;
    font-size: 14px;
    padding: 25px 20px;
    display: inline-block;
    margin-top: 32px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 4px;
    text-decoration: none;
    border: 1px solid #000;
    line-height: 1.3;
    max-width: 450px;
    text-align: center;
    display: block;
}

.welcome-text .text-in a:hover {
    background: #000;
    color: #FFF;
}

/*** videos ***/

.hp-videos {
    display: block;
    width: 100%;
    padding: 85px 0;
}

.hp-videos video {
    background-size: cover !important;
}

.hp-videos .inner-wrap {
    position: relative;
}

.hp-videos .videos-wrap {
    width: 100%;
    overflow: hidden;
}

.hp-videos .inner-wrap .videos-next,
.hp-videos .inner-wrap .videos-prev {
    width: 18px;
    height: 55px;
    position: absolute;
    top: 40%;
    left: -40px;
    background: url('images/slick-prev-d.png') no-repeat;
    cursor: pointer;
}

.hp-videos .inner-wrap .videos-next {
    left: auto;
    right: -40px;
    background: url('images/slick-next-d.png') no-repeat;
}

.hp-videos .videos-wrap .videos-list {
    margin: 0;
    font-size: 0;
}

.hp-videos .videos-wrap .videos-list .video-det {
    margin: 0 15px;
    display: inline-block;
    position: relative;
}

.hp-videos .videos-wrap .videos-list .video-det .fp-img {
    position: relative;
}


.hp-videos iframe,.hp-videos video {
    display: block;
    width: 100%;
    position: relative;
    background: #232323;
}

/*.hp-videos .video-img canvas {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover !important;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

    .hp-videos > div:hover .video-img canvas {
        opacity: .8;
    }

.hp-videos .video-img .play-btn {
    position: absolute;
    top: 50%;
    margin-top: -37px;
    left: 50%;
    margin-left: -37px;
    width: 75px;
    height: 75px;
    background: url('images/hp-video-play.png') no-repeat;
}*/

.hp-videos .video-title {
    width: 100%;
    border: 1px solid #ccc;
    border-top: 0;
    padding: 60px 10%;
    text-align: center;
    line-height: 1;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 2px;
    display: block;
    color: #3c3c3c;
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
}

.hp-videos .video-det:hover .video-title {
    background: #232323;
    border: 1px solid #232323;
    border-top: 0;
    color: #fff;
}

/*** communities ***/

.hp-communities {
    display: none;
    width: 100%;
    padding: 0 0 85px;
}

.hp-communities .light-btn {
    max-width: 390px;
}

.comm-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.comm-wrap .comm-next,
.comm-wrap .comm-prev {
    width: 26px;
    height: 60px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    left: 45px;
    background: url('images/slick-prev-l.png') no-repeat;
    cursor: pointer;
    z-index: 8;
}

.comm-wrap .comm-next {
    left: auto;
    right: 45px;
    background: url('images/slick-next-l.png') no-repeat;
}

.comm-list {
    font-size: 0;
    text-align: center;
    margin: 0 -3px;
}

.comm-list a {
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    margin: 0;
    position: relative;
    margin: 0 3px;
}

.comm-list a canvas {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover !important;
}

.comm-list a .comm-center-holder {
    font-size: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.comm-list a:hover .comm-center-holder {
    background: rgba(0, 0, 0, .65);
}

.comm-list a .comm-center-holder:before {
    content: '';
    width: 0%;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.comm-list a .comm-center-holder span {
    color: #fff;
    text-transform: uppercase;
    padding: 28px 0;
    width: 90%;
    max-width: 240px;
    margin: 0 auto;
    vertical-align: middle;
    display: inline-block;
    font-size: 18px;
    position: relative;
    z-index: 2;
    line-height: 1;
    background: rgba(0, 0, 0, .65);
    font-family: 'Syncopate', sans-serif;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.comm-list a:hover .comm-center-holder span {
    font-weight: 700;
    background: transparent;
}

.comm-wrap .arrow-wrap .comm-next,
.comm-wrap .arrow-wrap .comm-prev {
    position: relative;
    top: initial;
    display: inline-block !important;
    vertical-align: middle;
    margin-top: 0;
}

.comm-wrap .arrow-wrap .comm-prev {
    left: 0;
    margin-right: 10px;
    background: url(images/slick-prev-d.png) no-repeat;
}

.comm-wrap .arrow-wrap .comm-next {
    right: 0;
    left: initial;
    margin-left: 10px;
    background: url(images/slick-next-d.png) no-repeat;
}

/*** news ***/

.hp-news {
    display: block;
    width: 100%;
    background: #232323;
    padding: 85px 0;
}

.hp-news .inner-wrap {
    position: relative;
}

.hp-news .news-wrap {
    width: 100%;
    overflow: hidden;
}

.hp-news .inner-wrap .news-next,
.hp-news .inner-wrap .news-prev {
    width: 26px;
    height: 60px;
    position: absolute;
    top: 40%;
    left: -60px;
    background: url('images/slick-prev-l.png') no-repeat;
    cursor: pointer;
}

.hp-news .inner-wrap .news-next {
    left: auto;
    right: -60px;
    background: url('images/slick-next-l.png') no-repeat;
}

.hp-news .news-wrap .news-list {
    margin: 0 -30px;
    font-size: 0;
}

.hp-news .news-wrap .news-list a {
    padding-bottom: 120px;
    margin: 0 30px;
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.hp-news .news-wrap .news-list .news-img {
    display: block;
    width: 100%;
    position: relative;
    background: #000;
}

.news-list .news-img canvas {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover !important;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.hp-news a:hover .news-img canvas {
    opacity: .5;
}

.news-list .blog-hover {
    position: absolute;
    top: 50%;
    margin-top: -56px;
    left: 50%;
    margin-left: -54px;
    width: 108px;
    height: 112px;
    background: url('images/hp-blog-hover.png') no-repeat;
    opacity: 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.hp-news .news-list a:hover .blog-hover {
    opacity: 1;
}

.news-list a .text-holder {
    position: absolute;
    left: 13.5%;
    bottom: 0;
    width: 73%;
    margin: 0;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 24px;
    display: block;
    background: #343434;
    z-index: 9;
    padding: 20px 15px 10px;
    font-family: 'Syncopate', sans-serif;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.news-list a.testimonials .text-holder {
    padding: 30px 20px;
    margin-top: -87%;
    text-transform: uppercase;
}

.news-list a.testimonials .text-holder .test-more {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin-top: 20px;
    letter-spacing: 3px;
}

.news-list a:hover .text-holder {
    background: #fff;
    color: #343434;
}

.news-list a .text-holder span {
    display: block;
    text-transform: uppercase;
}

.news-list a.testimonials .text-holder span {
    text-transform: uppercase;
    padding-top: 65px;
    position: relative;
}

.news-list a.testimonials .text-holder span:before {
    position: absolute;
    content: '';
    left: 50%;
    margin-left: -18px;
    top: 0;
    width: 36px;
    height: 30px;
    background: url('images/hp-test-quote.png') no-repeat;
}

.news-list a .text-holder .blog-logo {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.news-list a .text-holder .blog-logo img {
    display: block;
}

.news-list a .text-holder .blog-logo img.hover {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.news-list a:hover .text-holder .blog-logo img.hover {
    opacity: 1;
}

.hp-news .inner-wrap .arrow-wrap .news-next,
.hp-news .inner-wrap .arrow-wrap .news-prev {
    position: relative;
    top: initial;
    display: inline-block !important;
    vertical-align: middle;
}

.hp-news .inner-wrap .arrow-wrap .news-prev {
    left: 0;
    margin-right: 10px;
}

.hp-news .inner-wrap .arrow-wrap .news-next {
    right: 0;
    left: initial;
    margin-left: 10px;
}

/*** social media feed ***/

.hp-smfeed {
    width: 100%;
    display: block;
    padding: 80px 0;
}

.hp-smfeed .feed-wrap {
    width: 100%;
    overflow: hidden;
}

.hp-smfeed .feed-wrap .feed-list {
    margin: 0 -2.5%;
    font-size: 0;
}

.hp-smfeed .feed-wrap .feed-list .feed-list-item {
    width: 28.33%;
    padding-bottom: 187px;
    margin: 0 2.5%;
    display: inline-block;
    text-decoration: none;
    position: relative;
    vertical-align: top;
}

.hp-smfeed .feed-wrap .feed-list .feed-img {
    display: block;
    width: 100%;
    position: relative;
    background: #000;
}

.hp-smfeed .feed-wrap .feed-list .feed-img canvas {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover !important;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.hp-smfeed a:hover .feed-img canvas {
    opacity: .5;
}

.feed-list .feed-text {
    position: absolute;
    left: 13.5%;
    bottom: 49px;
    width: 73%;
    margin: 0;
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 22px;
    display: block;
    z-index: 9;
    padding: 20px 25px 40px;
    border: 1px solid #cfcfcf;
    background: #fff;
    font-family: 'Syncopate', sans-serif;
    z-index: 1;
}
    
    .feed-list .feed-text a {
        text-decoration: none;
    }

.feed-list a .feed-text span {
    display: block;
    text-transform: uppercase;
}

.feed-text .feed-btn {
    position: absolute;
    width: 75px;
    height: 75px;
    bottom: -49px;
    left: 50%;
    margin-left: -37.5px;
    border-radius: 50%;
    background: #232323;
    border: 1px solid #232323;
    color: #fff;
    font-size: 32px;
    text-align: center;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.feed-list a:hover .feed-btn {
    background: #fff;
    color: #232323;
    border: 1px solid #cfcfcf;
}

.feed-text .feed-btn span {
    line-height: 75px;
}

.hp-smfeed .feed-wrap .feed-list .feed-img iframe {
    width: 100%;
    height: auto;
    min-height: 300px;
}

/*** get in touch ***/

.hp-git {
    display: block;
    width: 100%;
    padding: 175px 0;
    background: url('images/hp-git-bg.jpg') center;
    background-size: cover;
}

.hp-git a {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 325px;
    line-height: 1;
    padding: 20px 0;
    border: 1px solid #fff;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
}

.hp-git a:hover {
    background: #fff;
    color: #232323;
}

/*** footer ***/

footer {
    display: block;
    width: 100%;
    padding: 45px 0;
    background: #000;
}

footer a:hover {
    text-decoration: underline
}

.footer-top {
    font-size: 0;
    padding-bottom: 25px;
    border-bottom: 1px solid #151515;
    margin-bottom: 20px;
}

.top-left {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    color: #666;
    font-size: 14px;
    text-align: center;
}

.f-logo,
.f-logo-sub {
    font-family: luxruryGold;
    color: #fff;
    font-weight: bold;
}

.f-logo a:hover {
    text-decoration: none;
}

.f-logo {
    font-size: 24px;
    letter-spacing: 2px;
    display: block !important;
}

.f-logo-sub {
    font-size: 12px;
    letter-spacing: 1.2px;
    display: block !important;
    margin-bottom: 30px;
}

.top-left img {
    display: block;
    margin-bottom: 30px;
}

.top-left > div {
    display: inline-block;
}

.top-left a {
    text-decoration: none;
    color: #666;
}

.top-left span {
    color: #fff;
    display: inline-block;
    margin-right: 5px;
    margin-left: 30px;
}

.top-left span.ai-font-envelope {
    font-size: 11px;
}

.top-left span.ai-font-location-c {
    font-size: 16px;
}

.top-left span.ai-font-phone {
    margin-right: 10px;
    margin-left: 0;
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
}

.top-right {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    text-align: center;
	padding-top: 30px;
}

.top-right img {
	display: inline-block;
	width: 100%;
	max-width: 25%;
	margin: 0;
	padding: 0 3%;
	vertical-align: middle;
}

.top-right img:nth-child(1) {
	max-width: 25%;
	width: auto;
	/*height: 100px;*/
}

.footer-bottom {
    font-size: 0;
    color: #c8c8c8;
}

.footer-bottom .bottom-left {
    font-size: 13px;
    display: inline-block;
    width: 70%;
    vertical-align: middle
}

.footer-bottom a {
    color: #c8c8c8;
}

.home .footernav {
    display: none;
}

.footer-bottom .footernav li {
    display: inline-block;
    text-transform: uppercase;
    border-left: 1px solid #c8c8c8;
    line-height: 12px;
    padding: 0 10px;
}

.footer-bottom .footernav li:first-child {
    border: 0;
    padding-left: 0;
}

.footer-bottom .bottom-right {
    font-size: 28px;
    display: inline-block;
    width: 30%;
    text-align: right;
    vertical-align: middle
}

.footer-bottom .bottom-right img,
.footer-bottom .bottom-right span {
    display: inline-block vertical-align: middle;
}

.footer-bottom .bottom-right img {
    margin-right: 4px;
}

/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/

#inner-page-wrapper {
    padding: 120px 0;
    margin: 0;
}

#inner-page-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 83%;
    width: 100%;
    height: 375px;
    background-color: transparent;
    background-image: url(images/ip-banner.jpg);
    z-index: 1;
    display: none;
}

/* 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: 70%;
}

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

/*.inner-wrap h1.entry-title {
    max-width: 1140px;
    margin: 0 auto .67em !important;
}*/

/* Adjust width of sidebar */

.sidebar {
    width: 28%;
    text-align: center;
    padding-top: 30px;
    color: #232323;
}

.sidebar a {
    color: #232323;
}

img.side-agent,
img.side-name {
    display: block;
    margin-bottom: 15px;
}

img.side-name {
    margin-bottom: 10px;
}

.sidebar span.phem {
    display: inline-block;
    margin-right: 5px;
    font-size: 12px;
}

.sidebar .side-smi {
    display: block;
    margin-top: 10px;
    font-size: 0;
}

.sidebar .side-smi a {
    background: #000;
    color: #fff;
    text-decoration: none;
    width: 35px;
    height: 35px;
    display: inline-block;
    line-height: 35px;
    margin: 0 2px;
    font-size: 18px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.sidebar .side-smi a:hover {
    color: #777;
}

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

#content h1,
#content h2,
#content h3,
#content h4,
#content h5,
#content h6 {
    text-transform: uppercase !important;
    font-family: 'Syncopate', sans-serif !important;
}

/* Style post/page main headings (h1) */

#content .entry-title,
#content .archive-title {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* Style category/archive/etc main headings (h1) */

#content .archive-title {}

/* Styles for category/archive/search/etc subheadings (h2) */

#content .archive-subtitle {}

/*** video page ***/

.video-main {
    display: block;
    margin-bottom: 10px;
}

.video-column iframe {
    display: block;
    margin-top: 30px;
}

.video-desc {
    font-size: 12px;
}

/*** video alternate layoout ***/

.video-main2 {
    display: block;
    margin-bottom: 10px;
}

.video-row {
    width: 100%;
    font-size: 0;
    display: block;
    margin: 15px 0;
}

.video-row .video-frame,
.video-row .video-desc {
    display: inline-block;
    width: 50%;
    vertical-align: middle;
}

.video-main2 .video-desc {
    font-size: 12px;
    display: block;
    width: 100%;
}

.video-row .video-desc {
    padding: 0 3%;
    font-size: 12px;
}

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

.h-logo,
.h-logo-sub {
    font-family: luxruryGold;
    color: #000;
    font-weight: bold;
}

.logo a,
.logo a:hover {
    text-decoration: none;
}

.h-logo {
    font-size: 24px;
    letter-spacing: 1px;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.h-logo-sub {
    font-size: 12px;
    letter-spacing: 1.2px;
}

.hp-fp .light-btn {

    max-width: 420px;
}

h2.neigborhoods-title {
    text-align: center;
    padding-top: 84px;
    margin-top: -84px !important;
}

a.search-listings-neighborhoods {
    padding: 10px 30px;
    border: 1px solid #c7c7c7;
    line-height: 1;
    font-size: 14px;
    text-transform: uppercase;
    color: #1f1f1f;
    /* padding: 25px 0; */
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    /* display: block; */
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    margin-right: 10px;
}

a.search-listings-neighborhoods:hover {
    color: #fff;
    background-color: #000;
}

.page-id-53 .search-listings-school-finder {
    text-align: center;
}

.school-finder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.school-finder {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.sign-up-register {
    margin: auto;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

.sign-up-register a:hover {
    color: #fff;
    background-color: #000;
}

.sign-up-register a {
    padding: 10px 30px;
    border: 1px solid #c7c7c7;
    line-height: 1;
    font-size: 14px;
    text-transform: uppercase;
    color: #1f1f1f;
    /* padding: 25px 0; */
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    /* display: block; */
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

/*** custom templates ***/

#inner-page-wrapper .inner-wrap {
    width: 95%;
    max-width: 1325px;
}

.page-template-template-videos #inner-page-wrapper .inner-wrap {
    width: 95%;
}

/*** videos page ***/

.inner-wrap #content .entry {
    position: relative;
}

#inner-page-wrapper .videos-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
}

#inner-page-wrapper .videos-next,
#inner-page-wrapper .videos-prev {
    width: 18px;
    height: 55px;
    position: absolute;
    top: 40%;
    left: -40px;
    background: url('images/slick-prev-d.png') no-repeat;
    cursor: pointer;
}

#inner-page-wrapper .videos-next {
    left: auto;
    right: -40px;
    background: url('images/slick-next-d.png') no-repeat;
}

#inner-page-wrapper .videos-wrap .videos-list {
    margin: 0 -15px;
    font-size: 0;
}

#inner-page-wrapper .videos-wrap .videos-list .video-det {
    margin: 0;
    display: inline-block;
    padding: 0 15px;
    width: 50%;
    vertical-align: top;
    margin-bottom: 40px;
}

#inner-page-wrapper .videos-wrap .videos-list .video-det .fp-img {
    position: relative;
}

#inner-page-wrapper .videos-wrap iframe {
    display: block;
    width: 100%;
    position: relative;
    background: #232323;
}

#inner-page-wrapper .videos-wrap .video-title {
    width: 100%;
    border: 1px solid #ccc;
    border-top: 0;
    padding: 60px 10%;
    text-align: center;
    line-height: 1;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 2px;
    display: block;
    color: #3c3c3c;
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
}

#inner-page-wrapper .videos-wrap .video-det:hover .video-title {
    background: #232323;
    border: 1px solid #232323;
    border-top: 0;
    color: #fff;
}

/*** meet debra page ***/

.meet-image iframe {
    display: block;
    margin: 0 auto;
}

.meet-image img {
    display: block;
    margin: 15px auto 0;
}

.meet-image img.img-three {
    display: none;
}

.meet-image,
.meet-text {
    display: inline-block;
    width: 50%;
    /*max-width: 630px;*/
    vertical-align: top;
    margin: 0;
    padding: 0 15px;
}

body.page-template-template-meet-debra .entry {
    font-size: 0;
}

.meet-image,
.meet-text {
    font-size: 14px;
}

.meet-text {
    text-align: justify;

}

.img-full {
    width: 100%;
    margin: 0px;
    padding: 0px;
    max-width: 100%;
}

.cl-img {
    margin: 0 !important;
    padding: 0 !important;

    margin-top: 16px !important;
}

.cl-img li img {
    width: 100%;

}

.cl-img li {
    list-style: none;
    display: inline-block;
    width: 100%;
    max-width: 50%;
    vertical-align: top;
}

.cl-img li:first-child {
    padding-right: 15px;
}

.cl-img li:nth-child(2) {
    padding-left: 15px;
}

ul.cl-img {
    font-size: 0;
}

/*** meet debra page ***/

.page-template-template-meet-debra .bottom-testimonials {
    text-align: center;
    display: block;
    margin-top: 40px;
    position: relative;
    padding-bottom: 80px;
}

.page-template-template-meet-debra .bottom-testimonials h2 {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}

.page-template-template-meet-debra .bottom-testimonials .test-arrows {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.bottom-testimonials .test-next {
    position: absolute;
    right: 0;
}

.bottom-testimonials .test-prev {
    position: absolute;
    left: 0;
}

.bottom-testimonials .test-next,
.bottom-testimonials .test-prev {
    width: 18px;
    height: 55px;
    background: url('images/slick-prev-d.png') no-repeat;
    cursor: pointer;
    display: inline-block;
    margin: 0 20px;
}

.bottom-testimonials .test-next {
    background: url('images/slick-next-d.png') no-repeat;
}

.meet-title {
    font-size: 12px !important;
}

.testimonials-list {
    width: 90%;
    margin: 0 auto;
}

.testi-link a {
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid #000;
    padding: 5px 15px;
}

#inner-page-wrapper .videos-wrap .videos-list .video-det {
    position: relative;
}

.sold-box {
    color: #fff;
    background: #232323;
    position: absolute;
    z-index: 100;
    font-size: 16px;
    text-transform: uppercase;
    padding: 5px 20px;
    position: absolute;
    bottom: 0;
}

body.search.search-results.ip-container .sidebar {
    display: none;
}

#searchform input[type="submit"] {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#searchform input[type="submit"]:hover {
    color: #fff;
    border-color: #000;
    background: #000;
}

.ihf-main-image {
    background: #fff !important;
}

/*** news Plugin ***/

#content .archive-thumbnail a:hover > img,
#content .archive-content h2.archive-subtitle a,
#content .archive-content .archive-more:hover {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#content .archive-content h2.archive-subtitle a:hover {
    color: #000;
}

#content .archive-thumbnail img {
    transform: translateZ(0);
}

#content .archive-thumbnail a:hover > img {
    opacity: .6;
}

#content .archive-content .archive-more:hover {
    color: #000;
}

/*** IP IHF ***/

#ihf-main-container .nav-tabs {
    margin-left: 0;
}

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

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

/*** search page **/

body.search-results #content-sidebar #content {
    width: 100%;
}

img.btn-cus-home {
    position: absolute;
    width: 70px;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
    cursor: pointer;

}

/*** pop up maker ***/

.pum-container .pum-content {
    width: 100%;
    overflow: scroll;
}

.yt-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
}

.msie-true .searchform input {
    height: 30px !important;
    border: 1px solid #ccc !important;
}

img.btn-yt-cus.home-btn {

    position: absolute;
    width: 12%;
    top: 26%;
    left: 44%;
    cursor: pointer;
}

img.btn-yt-cus.inner-btn {
    position: absolute;
    width: 12%;
    top: 26%;
    left: 42%;
    cursor: pointer;
}

.featured-property-video-list {
    overflow: hidden;
    position: relative;
}

.featured-property-video-list img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    width: 100%;
}

.featured-property-video-list iframe.youtube-video,
.featured-property-video-list img , .featured-property-video-list video{
    height: 325px;
}

.featured-property-video-list video{
    width: 100%;
}

.featured-property-video-list img{
        width: auto;
    max-width: unset;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.aiosp-iframe-scaler iframe {
    box-shadow: none !important;
}

.ihf-grid-result-attribution img,
.ihf-grid-result-mlsnum-proptype img {
    display: none;
}


.ihf-grid-result-address {
    display: block;
}

#ihf-board-detail-disclaimer > img {
    display: none;
}


/* ABOUT PAGE LOGOS */
.ip-logo-icons {
    text-align: center;
    font-size: 0;
}
    .ip-logo-icons .ip-logo-list {
        width: 12%;
        display: inline-block;
        vertical-align: middle;
        margin: 0 2%;
    }

    .ip-logo-list-big {
        margin-top: 20px;
    }
        .ip-logo-list-big img {
            width: 100%;
            max-width: 400px !important;
        }

.debra-listing-press-wrap h2 {
    font-family: 'Syncopate', sans-serif;
    line-height: 1;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3c3c3c;
    text-align: center;
    padding: 50px 0;
}   

.debra-listing img {
    margin: 0 auto;
}

.news-logo{
    width: 100%;
}

.slide-logo {
	padding: 15px 96px 0 69px;
}

.cycloneslider-template-video video {
    max-width: 100% !important;
    max-height: 100% !important;
}

.list-40-cates-ridge-road-atlanta-ga-30327 {
	position: relative;
}


.video-pending-banner::before {
	content: "";
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	max-width: 270px;
	max-height: 170px;
	background-image: url('images/pending-only-banner.png');
	background-size: 100%;
	background-repeat: no-repeat;
}
.video-sold-banner::before{
   content: "";
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    max-width: 270px;
    max-height: 170px;
    background-image: url('images/sold-banner.png');
    background-size: 100%;
    background-repeat: no-repeat;
}
.list-40-cates-ridge-road-atlanta-ga-30327::before{
    background-image: url('images/sold-banner.png');
}
.ip-container .video-pending-banner::before{
    left: 15px;
}

#ihf-main-container .extra-link {
        margin: 6px 6px 6px 0;
    padding: 4px 6px;
    border-radius: .25rem;
    font-size: .85em;
    text-transform: uppercase;
    background-color: #999;
}

#ihf-main-container .extra-link a {
    color: #fff;
}

.slide-video-mob, .slide-logo {
	display: none;
}

.cycloneslider-slides .cycloneslider-volume {
	display: none;
}

footer {
	background: #fff !important;
}

.top-left * {
	color: #000 !important;
}

.top-left img {
	filter: invert(1);
}

.top-right img:nth-child(1) {
	filter: invert(1);
}

.footer-bottom .bottom-left, .footer-bottom .bottom-left a {
	color: #000;
}

.bottom-right {
	filter: invert(1);
}

.fp-col.fp-sold::before {
  content: '';
  position: absolute;
  width: 287px;
  height: 166px;
  display: block;
  top: 0;
  left: 0;
  background: url('images/sold-banner.png');
  z-index: 100;
}

.fp-col.fp-active-contract::before {
  content: '';
  position: absolute;
  width: 287px;
  height: 166px;
  display: block;
  top: 0;
  left: 0;
  background: url('images/ac-banner.png');
  z-index: 100;
}

.fp-col.fp-pending::before {
	content: '';
	position: absolute;
	width: 287px;
  height: 166px;
	display: block;
	top: 0;
	left: 0;
	background: url('images/fp-pending-banner.png');
	z-index: 100;
}

.top-right img:nth-child(3) {
    height: 91px !important;
}


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

.wpcf7 form .wpcf7-response-output {
    text-align: center;
    margin: 10px auto 0;
}

.wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

body.aios-custom-ihomefinder-details-template .wpcf7-not-valid-tip {
    top: 20%!important;
    left: 20%!important;
    width: auto;
    right: auto!important;
    font-size: 10px;
}

body #listings-details .listings-form div.wpcf7-response-output {
    position: absolute;
    bottom: -35px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 11px;
    line-height: 1;
}

body #listings-details .listings-form form {
    position: relative;
}




body.page-id-274.ip-container #main-wrapper {
    z-index: auto;
}


body.page-id-274 #inner-page-wrapper {
    z-index: auto;
}

body.page-id-274 #ihf-main-container #ihf-map-canvas {
    height: 470px !important;
}



#ihf-main-container span.glyphicon.glyphicon-remove-circle {
    color: #fff!important;
}

body.page-id-16 #inner-page-wrapper > .container {
    width: 100%;
}


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

.featured-property-video-list img {
	width: 100%;
}