/*
Theme Name: drewfenton.com
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.9
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: "Gotham";
  src: url("css/fonts/gotham/GOTHAM-LIGHT.OTF") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  /*src: url("css/fonts/gotham/GOTHAMBOOK.TTF") format("truetype");*/
  src: url("css/fonts/gotham/GOTHAMBOOK.otf") format("opentype");
  /*src: url("css/fonts/gotham/GOTHAMBOOK.woff") format("woff");*/
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("css/fonts/gotham/GOTHAMMEDIUM.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}


@font-face {
  font-family: "Gotham";
  src: url("css/fonts/gotham/GOTHAM-BOLD.OTF") format("opentype");
  font-weight: 600;
  font-style: normal;
}





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

#nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*-webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
    visibility: hidden;*/
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
    #nav li {
        position: relative;
    } 
        #nav li a {
            display: block;
            font-size: 13px;
            letter-spacing: 0.3em;
            line-height: 1.2;
            color: #fff;
/*            font-family: 'Gotham', Arial, Helvetica, Georgia, Sans-serif;*/
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            text-transform: uppercase;
        }
        .mac-true #nav li a{
            font-weight: 300;
        }
    #nav > li {
        display: inline-block;
        margin: 0 31px;
    }
        #nav > li:first-child {
            margin-left: 0;
        }
        #nav > li:last-child {
            margin-right: 0;
        }
        #nav > li > a {
            position: relative;
        } 
            #nav > li > a:before {
                content: '';
                position: absolute;
                pointer-events: none;
                margin-top: 10px;
                top: 100%;
                left: 0;
                width: 100%;
                height: 4px;
                background: rgba(255,255,255,.3);
                content: '';
                opacity: 0;
                -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
                -moz-transition: opacity 0.3s, -moz-transform 0.3s;
                transition: opacity 0.3s, transform 0.3s;
                -webkit-transform: translateY(10px);
                -moz-transform: translateY(10px);
                transform: translateY(10px);
            }
            #nav > li:hover > a:before,
            #nav > li:focus-within > a:before {
                opacity: 1;
                -webkit-transform: translateY(0px);
                -moz-transform: translateY(0px);
                transform: translateY(0px);
            }
        #nav .sub-menu {
            list-style: none outside none;
            margin: 0;
            display: none;
            padding: 0;
            position: absolute;
            width:100%;
            min-width:180px;
            text-align: center;
        }
        #nav > li > .sub-menu {
            padding: 15px 0 0;
            left: calc(50% - 90px);
        }
            #nav .sub-menu a {
                color: #FFFFFF;
                display: block;
                padding: 10px;
                -webkit-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
                background: #000;
            }
                #nav .sub-menu li:hover > a,
                #nav .sub-menu li:focus-within > a {
                    background: #fff;
                    color: #000;
                }
                    #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: 'Spartan', Arial, Helvetica, Georgia, Sans-serif;*/
/*    font-family: "Gotham", Arial, Helvetica, Georgia, Sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    background: #000000;
    color: #FFF;
    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; */
}

#main-wrapper {
    overflow: hidden;
}

a {
    color: inherit;
}
    a:hover {
        color: #898989;
    }
    a:hover, a:focus, .slick-slide, .slick-slide a {
        outline: none;
        text-decoration: none;
    }
    input, select, textarea {
        outline: none;
    }

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
    .flex:before, .flex:after {
        display: none;
    }
    .dir-col {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
    }
    .dir-col-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse wrap;
        flex-flow: column-reverse wrap;
    }
    .dir-row-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse wrap;
        flex-flow: row-reverse wrap;
    }
    .al-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .al-start {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;        
    }
    .al-end {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .ju-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .ju-start {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .ju-end {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .ju-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }


header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 50px;
    z-index: 1011;
    pointer-events: none;
}
    .header-logo {
        position: relative;
        /*width: 292px;*/
        padding: 32px 46px 32px 0;
        font-size: 0;
        pointer-events: all;
    }
        .header-logo:before,
        .header-navigation:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            background: #000;
            transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
            display: block;
            /*opacity: 0;*/
            transform: scaleX(0);
        }
        .sticking .header-logo:before,
        .sticking .header-navigation:before {
            transform: scaleX(1);
        }
        .header-logo:before {            
            right: 0;            
            left: -50px;
            transform-origin: left;
        }
        .header-logo a {
            display: inline-block;
            position: relative;
        }
            .header-logo a img {
                display: block;
                /*max-width: 100%;*/
                width: 246px;
                transition: opacity .3s ease;
            }
                .header-logo a:hover > img {
                    opacity: 0.8;
                }
            .header-logo a span {
                position: absolute;
                left: 0;
                top: 0;
                width: 30px;
                overflow: hidden;
            }

    .header-navigation {
        padding: 30px 0 29px 46px;
        position: relative;
        pointer-events: all;
    }
        .header-navigation:before {
            left: calc(100% - 35px);
            right: -50px;
            transform-origin: right;
        }
        .header-navigation.active:before {
            left: 0;
        }
        .header-navigation.active #nav {
            -webkit-transform: translateX(0);
                -ms-transform: translateX(0);
                    transform: translateX(0);
            opacity: 1;
            visibility: visible;
        }

        .slide-menu-button {
            width: 25px;
            height: 26px;
            position: relative;
            background: transparent;
            border: none;
            outline: none;
            margin-left: 36px;
            padding: 0;
            transform: translateX(20px);
        }
            .slide-menu-button span {
                position: absolute;
                left: 0;
                right: 0;                
                width: 25px;
                height: 2px;
                background: #fff;                
            }
            .slide-menu-button span:nth-child(1) {
                top: 4px;
                -webkit-transition: top 0.2s 0.2s ease, -webkit-transform 0.2s ease, width 0.2s ease;
                transition: top 0.2s 0.2s ease, -webkit-transform 0.2s ease, width 0.2s ease;
                -o-transition: top 0.2s 0.2s ease, transform 0.2s ease, width 0.2s ease;
                transition: top 0.2s 0.2s ease, transform 0.2s ease, width 0.2s ease, width 0.2s ease;
                transition: top 0.2s 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease, width 0.2s ease;
            }
                .slide-menu-button.open span:nth-child(1) {
                    top: calc(50% - 1px);
                    -webkit-transform: rotate(-45deg);
                        -ms-transform: rotate(-45deg);
                            transform: rotate(-45deg);
                    -webkit-transition: top 0.2s ease, -webkit-transform 0.2s 0.2s ease, width 0.2s ease;
                    transition: top 0.2s ease, -webkit-transform 0.2s 0.2s ease, width 0.2s ease;
                    -o-transition: top 0.2s ease, transform 0.2s 0.2s ease, width 0.2s ease;
                    transition: top 0.2s ease, transform 0.2s 0.2s ease, width 0.2s ease;
                    transition: top 0.2s ease, transform 0.2s 0.2s ease, -webkit-transform 0.2s 0.2s ease, width 0.2s ease;
                }
            .slide-menu-button span:nth-child(2) {
                top: 0;
                bottom: 0;
                margin: auto;
                -webkit-transition: -webkit-transform 0.2s ease, width 0.2s ease;
                transition: -webkit-transform 0.2s ease, width 0.2s ease;
                -o-transition: transform 0.2s ease, width 0.2s ease;
                transition: transform 0.2s ease, width 0.2s ease;
                transition: transform 0.2s ease, -webkit-transform 0.2s ease, width 0.2s ease;
            }
                .slide-menu-button.open span:nth-child(2) {
                    -webkit-transform: scaleX(0);
                        -ms-transform: scaleX(0);
                            transform: scaleX(0);
                    -webkit-transition: -webkit-transform 0.2s 0.2s ease, width 0.2s ease;
                    transition: -webkit-transform 0.2s 0.2s ease, width 0.2s ease;
                    -o-transition: transform 0.2s 0.2s ease, width 0.2s ease;
                    transition: transform 0.2s 0.2s ease, width 0.2s ease;
                    transition: transform 0.2s 0.2s ease, -webkit-transform 0.2s 0.2s ease, width 0.2s ease;
                }
            .slide-menu-button span:nth-child(3) {
                bottom: 4px;
                -webkit-transition: bottom 0.2s 0.2s ease, -webkit-transform 0.2s ease, width 0.2s ease;
                transition: bottom 0.2s 0.2s ease, -webkit-transform 0.2s ease, width 0.2s ease;
                -o-transition: bottom 0.2s 0.2s ease, transform 0.2s ease, width 0.2s ease;
                transition: bottom 0.2s 0.2s ease, transform 0.2s ease, width 0.2s ease;
                transition: bottom 0.2s 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease, width 0.2s ease;
            }
                .slide-menu-button.open span:nth-child(3) {
                    bottom: calc(50% - 1px);
                    -webkit-transform: rotate(45deg);
                        -ms-transform: rotate(45deg);
                            transform: rotate(45deg);
                    -webkit-transition: bottom 0.2s ease, -webkit-transform 0.2s 0.2s ease, width 0.2s ease;
                    transition: bottom 0.2s ease, -webkit-transform 0.2s 0.2s ease, width 0.2s ease;
                    -o-transition: bottom 0.2s ease, transform 0.2s 0.2s ease, width 0.2s ease;
                    transition: bottom 0.2s ease, transform 0.2s 0.2s ease, width 0.2s ease;
                    transition: bottom 0.2s ease, transform 0.2s 0.2s ease, -webkit-transform 0.2s 0.2s ease, width 0.2s ease;
                }


            .slide-menu-button:not(.open):hover span:nth-child(1) {
                transform: rotate(-45deg) translate(-4px, 0);
                width: 17px;
            }

            .slide-menu-button:not(.open):hover span:nth-child(3) {
                transform: rotate(45deg) translate(-4px, 0);
                width: 17px;
            }

            .slide-menu-button:not(.open):hover span:nth-child(2) {
                transform: scaleX(0);
                transform-origin: right;
            }


    /*mobile menu*/
    #mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        visibility: hidden;
        z-index: 1010;
    }
    #mobile-menu-overlay.menu-active {
        visibility: visible;
    }
    #mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        padding-top: 80px;
        padding-bottom: 30px;
         height: 100%; 
        overflow-y: auto;
        background: #000;
        z-index: 1010;
        max-width: 80%;
        width: 230px;
        transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(100%);
    }
    #mobile-menu.menu-active {
        transform: translateX(0);
    }
        #menu_nav {

        }
            #menu_nav > li {

            }
                #menu_nav > li > a {
                    font-weight: 300;
                    font-size: 14px;
                    letter-spacing: 0.06em;
                    line-height: 1.2;
                    text-transform: uppercase;
                    color: #fff;
                    text-align: left;
                    padding-left: 8px;
                    display: block;
                    padding: 15px 40px;
                }
                #menu_nav ul.sub-menu {
                    display: none;
                }
                #menu_nav ul a {
                    font-weight: 300;
                    font-size: 15px;
                    letter-spacing: 0.06em;
                    line-height: 1.2;
                    text-transform: uppercase;
                    color: #fff;
                    text-align: left;
                    padding-left: 8px;
                    display: block;
                    padding: 15px 30px;
                }

@keyframes fadeInLeftCustom {
    0% { opacity: 0; -webkit-transform: translate3d(-30px,0,0); transform: translate3d(-30px,0,0); }
    20% { opacity: 1; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
    80% { opacity: 1; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
    100% { opacity: 0; -webkit-transform: translate3d(-30px,0,0); transform: translate3d(-30px,0,0); }
}
/*scroll button*/
a.scroll-btn.fadeInLeft span {
    animation-delay: 3s;
    animation-iteration-count: infinite;
    animation-duration: 5s;
    animation-name: fadeIn;
}
    a.scroll-btn.fadeInLeft:hover {
        /*animation-name: none;*/
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }
a.scroll-btn {
    position: fixed;
    bottom: 27px;
    right: 45px;
    z-index: 1011;
}
    a.scroll-btn:before {
        content: '';
        position: absolute;
        top: -27px;
        bottom: -27px;
        left: -20px;
        right: -45px;
        background: #000;
        z-index: -1;
        transform-origin: right;
        transform: scaleX(0);
        transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
    }
        .sticking ~ a.scroll-btn:before,
        .sticking ~ main #inner-page-wrapper a.scroll-btn:before {
            transform: scaleX(1);
        }
    a.scroll-btn:after {
        content: '';
        position: absolute;
        pointer-events: none;
        margin-top: 6px;
        top: 100%;
        left: 0;
        right: -35px;
        height: 4px;
        background: rgba(255,255,255,.3);
        content: '';
        opacity: 0;
        -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
        -moz-transition: opacity 0.3s, -moz-transform 0.3s;
        transition: opacity 0.3s, transform 0.3s;
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        transform: translateY(10px);
        display: none;
    }
        a.scroll-btn:hover:after {
            opacity: 1;
            -webkit-transform: translateY(0px);
            -moz-transform: translateY(0px);
            transform: translateY(0px);
        }
    a.scroll-btn span {
        font-weight: 300;
        font-size: 15px;
        letter-spacing: 0.5em;
        line-height: 1;
        text-transform: uppercase;
        color: #fff;
        padding-left: 8px;
        padding-right: 10px;
        transition: 0.35s ease-in-out;
        -webkit-transition: 0.35s ease-in-out;
        -moz-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
    }
        a.scroll-btn span.btt {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 10px;
            opacity: 0;
            width: max-content;
            animation-name: unset;
        }
        a.scroll-btn.back-to-top span.scroll {
            animation-name: unset;
            opacity: 0;
        }
        a.scroll-btn.back-to-top span.btt {
            animation-name: fadein;
            opacity: 1;
        }
    a.scroll-btn i {
        position: absolute;
        left: 100%;
        top: -4px;
        font-size: 20px;
        color: #fff;
    }
    a.scroll-btn.direction-up i {
        transform: rotateX(180deg);
    }

/*section 1*/
section.section-1 {
    position: relative;
}
    #slideshow {
        position: relative;
        background-color: #000;
    }
        #slideshow .cycloneslider:before,
        #slideshow #aios-slider-hp-slideshow::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.1);
            z-index: 2;
        }
        #slideshow .cycloneslider-slides {
            transform: none;
            z-index: 1;
        }

    #slideshow .cycloneslider-template-video .cycloneslider-prev,
    #slideshow .cycloneslider-template-video .cycloneslider-next {
        background: transparent;
        opacity: 1!important;
        width: initial;
        border: none;
        outline: none;
        font-size: 51px;
        color: #fff;
        position: absolute;
        height: 53px;
        top: 0;
        bottom: 0;
        margin: auto;
        z-index: 3;
    }
        #slideshow .cycloneslider-template-video .cycloneslider-prev:before,
        #slideshow .cycloneslider-template-video .cycloneslider-next:before {
            content: '';
            position: relative;
            font-family: agentimage!important;
            speak: none;
            font-style: normal;
            font-weight: 300;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
    #slideshow .cycloneslider-template-video .cycloneslider-prev {
        right: 70px;
        left: initial;
    }
        #slideshow .cycloneslider-template-video .cycloneslider-prev:before {
            content: "\b0001";
        }
    #slideshow .cycloneslider-template-video .cycloneslider-next {
        right: 20px;
    }
        #slideshow .cycloneslider-template-video .cycloneslider-next:before {
            content: "\b0002";
        }

    #slideshow .cycloneslider-pager {
        list-style: none;
        position: absolute;
        right: 44px;
        text-align: center;
        pointer-events: none;
        height: 12px;
        top: 0;
        bottom: 85px;
        margin: auto;
        line-height: 1;
        text-transform: uppercase;
    }
        #slideshow .cycloneslider-pager span {
            width: initial;
            height: initial;
            font-size: 12px;
            display: none;
        }

        #slideshow .cycloneslider-pager span.cycle-pager-active {
            display: block;
            margin: 0;
            border-radius: 0;
            line-height: 1;
            background: transparent;
        }

        #slideshow .cycloneslider-slide-image{
              background-size: auto!important;
            }


/*section 2*/
section.section-2 {
    position: relative;
    background: url(images/bg-about.jpg) center/cover no-repeat;
}
    #about-drew {
        /*min-height: 720px;*/
        background: rgba(0,0,0,0.3);
        /*padding: 192px 122px 160.5px 174px;*/
        padding: 12% 7.625% 10.032% 10.75%;
    }
        .about-drew-inner {
            position: relative;
        }
            .about-drew-title {
                text-align: center;
                margin-top: 48px;
            }
                .about-drew-title img {
                    display: block;
                    max-width: 100%;
                    margin: 0 auto;
                    opacity: 0.5;
                }
                .about-drew-title h2 {
                    font-weight: 300;
                    font-size: 18px;
                    letter-spacing: 0.7em;
                    line-height: 1;
                    text-transform: uppercase;
                    color: #fff;
                    margin-top: 24px;
                    text-align: center;
                    padding-left: 8px;
                }
            .about-drew-text {
                max-width: 275px;
                z-index: 2;
            }
                .about-drew-text p {
                    font-weight: 300;
                    letter-spacing: 0.02em;
                    line-height: 1.7;
                    color: #fff;
                    margin-bottom: 51px;
                }
                .about-drew-text a.site-button {
                    padding-left: 0;
                }
            a.site-button,
            .site-button,
            .ip-press-view-more > a {
                display: -webkit-inline-box;
                display: -ms-inline-flexbox;
                display: inline-flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                font-weight: 300;
                font-size: 13px;
                letter-spacing: 0.1em;
                line-height: 1.2;
                color: #ffff;
                text-transform: uppercase;
                -webkit-transition: opacity .5s ease;
                -o-transition: opacity .5s ease;
                transition: opacity .5s ease;
                padding-left: 24px;
            }
                a.site-button:before,
                .site-button:before,
                .ip-press-view-more > a:before {
                    content: '';
                    display: inline-block;
                    width: 1px;
                    min-height: 12px;
                    height: 100%;
                    background: #fff;
                    margin-right: 24px;
                    top: 2px;
                    position: relative;
                }
                a.site-button > span,
                .site-button > span,
                .ip-press-view-more > a > span {
                    height: 1em;
                    overflow: hidden;
                    display: block;
                }
                    a.site-button > span > span,
                    .site-button > span > span,
                    .ip-press-view-more > a > span > span {
                        transform: translateY(0);
                        display: block;
                        position: relative;
                        transition: all .3s ease;
                    }
                    a.site-button:hover > span > span,
                    .site-button:hover > span > span,
                    .ip-press-view-more a:hover > span > span {
                        transform: translateY(-50%);
                    }


/*section 3 | Listings*/
section.section-3,
section.section-5,
section.section-6{
    position: relative;
}
    section.section-3:before,
    section.section-3:after,
    section.section-5:before,
    section.section-5:after,
    section.section-6:before,
    section.section-6:after {
        content: '';
        top: 0;
        bottom: 0;
        width: 30%;
        position: absolute;
        z-index: 1;
    }
    section.section-3:after,
    section.section-5:after,
    section.section-6:after {
        right: 0;
    }
    #featured-listings,
    #sold-listings,
    #featured-press {
        position: relative;
        width: 100%;
    }
        .section-title,
        #content .section-title {
            font-weight: 300;
            font-size: 18px;
            letter-spacing: 0.7em;
            line-height: 1.2;
            color: #fff;
            text-transform: uppercase;
        }
        .hp-title {
            position: absolute;
            left: 11px;
            right: 0;
            text-align: center;
            padding: 0 15px;
            z-index: 1;
            top: 8.4%;
            pointer-events: none;
            transition: all .5s ease;
        }
        #featured-listings:hover .hp-title,
        #sold-listings:hover .hp-title,
        #featured-press:hover .hp-title {
            /*opacity: 0;*/
        }
        #featured-listings .textwidget > .hp-title,
        #sold-listings .textwidget > .hp-title,
        #featured-press .textwidget > .hp-title {
            height: 19%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-flow: row wrap;
            top: 0;
        }

        #featured-listings .textwidget > .hp-title:before,
        #sold-listings .textwidget > .hp-title:before,
        #featured-press .textwidget > .hp-title:before {
            content: '';
            display: inline-block;
            vertical-align: middle;
            width: 0;
            height: 100%;
        }

        #featured-listings:hover .textwidget > .hp-title,
        #sold-listings:hover .textwidget > .hp-title {
            height: 93.2%;
        }
        #featured-press:hover .textwidget > .hp-title {
            height: 88.3%;
        }
        #fp-list,
        #sl-list,
        #press-list {
            position: relative;
            width: 100%;

        }
            .hplisting-slick {
                position: relative;
                /*width: 100%;*/
                overflow: hidden;
                min-width: 100%;
                width: 0;
            }
                .hplisting {
                    position: relative;
                    display: -webkit-box!important;
                    display: -ms-flexbox!important;
                    display: flex!important;
                    -webkit-box-align: center;
                        -ms-flex-align: center;
                            align-items: center;
                    -webkit-box-pack: center;
                        -ms-flex-pack: center;
                            justify-content: center;
                }
                    .hplisting:before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        background: rgba(0,0,0,0.2);
                        transition: all .5s ease;
                    }
                    .hplisting-slick:hover .hplisting:before {
                        background: rgba(0,0,0,0.5);
                    }
                    .hplisting canvas {
                        display: block;
                        width: 100%;
                        background-position: center;
                        background-size: cover;
                    }

                .hplisting-details {
                    position: absolute;
                    left: 0;
                    text-align: center;
                    width: 100%;
                    margin-bottom: 6px;
                    padding: 0 3%;
                    transition: padding .5s ease;
                }
                    #featured-press .hplisting-details {
                        margin-top: 2.844%;
                    }
                    .hplisting-details h3 {
                        font-weight: 300;
                        font-size: 36px;
                        text-align: center;
                        line-height: 1;
                        color: #fff;
                        text-transform: uppercase;
                        letter-spacing: 0.02em;
                    }
                        .hplisting-details h3 a {
                            color: inherit;
                        }
                        .hplisting-details h3 img {
                            display: block;
                            max-width: 100%;
                            margin: 0 auto;
                        }

                    .hplisting-details p {
                        text-align: center;
                        font-weight: 300;
                        font-size: 15px;
                        line-height: 25px;
                        letter-spacing: 0.02em;
                        color: #fff;
                        max-width: 290px;
                        margin: 27px auto 0;
                    }
                    .hplisting-details .section-title {
                        top: 0;
                        opacity: 0;
                        transition: all .5s ease;
                    }
                    .hplisting-slick:hover .hplisting-details {
                        padding-top: 32px;
                    }
                    .hplisting-slick:hover .hplisting-details .section-title {
                        /*opacity: 1!important;*/
                    }


                .hplisting-links {
                    position: absolute;
                    left: 0;
                    right: 0;
                    width: 100%;
                    bottom: 7.25%;
                    transition: all .5s ease;
                    opacity: 0;
                    visibility: hidden;
                    transform: translateY(20px);
                }
                    .hplisting-links .site-button {
                        margin: 0 6.2%;
                        font-size: 15px;
                        padding-left: 0
                    }
                        .hplisting-links .site-button:first-child {
                            margin-left: 0;
                        }
                        .hplisting-links .site-button:last-child {
                            margin-right: 0;
                        }

                    .hplisting-slick:hover .hplisting-links {
                        opacity: 1;
                        visibility: visible;
                        transform: translateY(0);
                    }


/*section 4*/
section.section-4 {
    position: relative;
}
    #call-to-action {

    }
        .cta-list {
            position: relative;
        }
            .cta {
                width: 33.33%;
            }
                .cta a {
                    position: relative;
                    overflow: hidden;
                }
                    .cta a:before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        background: rgba(0,0,0,0.3);
                        display: block;
                        transition: all .5s ease;
                        z-index: 1;
                    }
                        .cta a:hover:before {
                            background: rgba(0,0,0,0.5);
                        }
                    .cta a canvas {
                        display: block;
                        width: 100%;
                        background-position: center;
                        background-size: cover;
                        transition: all .3s ease;
                    }
                    .cta a:hover canvas {
                        /*transform: scale(1.1);*/
                        transform: scale(1.09);
                    }
                    .cta a h3 {
                        position: absolute;
                        left: 0;
                        right: 0;
                        text-align: center;
                        font-weight: 300;
                        font-size: 36px;
                        letter-spacing: 0.02em;
                        line-height: 1;
                        color: #fff;
                        text-transform: uppercase;
                        z-index: 2;
                    }
                        .cta a h3 span {
                            display: block;
                            font-weight: 300;
                            font-size: 18px;
                            letter-spacing: 0.5em;
                            margin-bottom: 27px;
                            padding-left: 7px;
                            transition: all .3s ease;
                        }
                        .cta a:hover h3 span {
                            margin-bottom: 10px;
                        }


/*section 7*/
section.section-7 {
    position: relative;
}
    #get-social {
        position: relative;
    }
        .get-social-inner {
            position: relative;
        }
        #get-social.scrolled h2,
        .pp-table #get-social.animate-once h2 {
            transform: translateX(0);
            transition: all .8s 1500ms ease;
        }
        #get-social h2 {
            transform: translateX(-100%);
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            width: 40px;
            height: 250px;
            z-index: 1;
            background: #000;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
        }
            #get-social h2 a {
                position: relative;
                font-size: 15px;
                font-weight: 300;
                letter-spacing: 0.7em;
                line-height: 1;
                transform: rotate(-90deg);
                padding-left: 0;
                white-space: nowrap;
            }
            #get-social h2 a:before {
                content: '';
                position: absolute;
                top: -13px;
                left: -26px;
                right: -27px;
                bottom: -12px;
                display: none;
            }
        .ig-feed {
            position: relative;
            font-size: 0;
        }
            .ig-feed * {
                transform: translateZ(0);
            }
            .ig-post {
                width: 20%;
                display: inline-block;
                vertical-align: top;
                opacity: 0;
            }
                .ig-post a {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                        -ms-flex-align: center;
                            align-items: center;
                    -webkit-box-pack: center;
                        -ms-flex-pack: center;
                            justify-content: center;

                    position: relative;
                }
                    .ig-post a canvas {
                        display: block;
                        width: 100%;
                        background-position: center;
                        background-size: cover;
                    }
                    .ig-post a:before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        background: rgba(0,0,0,0.3);
                        transition: all .3s ease;
                    }
                        .ig-post a:hover:before {
                            opacity: 0;
                        }
        .ig-link {
            text-align: center;
            margin-top: 86px;
            margin-top: 2.4%;
        }
            .ig-link .site-button {

            }

/*footer*/
footer.footer {
    position: relative;
    /*min-height: 801px;*/
    margin-top: 113px;
    overflow: hidden;
    padding: 179px 0 140px;
    background: #000;
}
    .footer-accent-lines {
        position: absolute;
        top: 0;
        left: -3.3%;
        right: -3.3%;
        bottom: 0;
        pointer-events: none;
    }
        .footer-accent-lines span {
            width: 16.66%;
            height: 100%;
            border-right: 1px solid rgba(255,255,255,0.05);
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .footer-accent-lines span:last-child {
            border-right: none;
        }
    .footer .container {
        position: relative;
    }
    .footer-logo {
        text-align: center;
        margin-bottom: 53px;
    }
        .footer-logo img {
            max-width: 100%;
            height: auto;
        }
        .footer-logo > img, .footer-logo > a {
            margin: 0 20px;
        }

    .footer-contact-info {
        font-weight: 300;
        font-size: 11px;
        line-height: 20px;
        letter-spacing: 0.1em;
        color: #cccccc;
        text-align: center;
        text-transform: uppercase;
    }
        .footer-contact-name {
            font-weight: 300;
            font-size: 15px;
            letter-spacing: 0.1em;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 13px;
        }
        .footer-contact-name-hilton {
            margin: 29px 0 13px;
        }

        .footer-contact-smi {
            font-size: 17px;
            margin: 31px 0 0;
            line-height: 1;
        }
            .footer-contact-smi a {
                margin: 0 6px;
                color: #898989;
            }
                .footer-contact-smi i.ai-font-envelope-o {
                    font-size: 12px;
                }
                .footer-contact-smi i {
                    display: block;
                }

            .footer-contact-info a,
            .footer-copyright p a {
                transition: color .3s ease;
            }
                .footer-contact-info a:hover,
                .footer-contact-smi a:hover,
                .footer-copyright p a:hover {
                    color: #fff;
                }

    .footer-copyright {
        text-align: center;
        margin: 36px 0 0;
    }
        .footer-copyright p {
            font-weight: 300;
            font-size: 13px;
            letter-spacing: 0.05em;
            line-height: 1.2;
            color: #898989;
        }
        .custom-website-by-agentimage {
            width: 207px;
            margin: 28px auto 0;
            position: relative;
            text-align: center;
            color: #555555;
        }
            .custom-website-by-agentimage a {
                color: inherit;
                transition: color .3s ease;
            }
                .custom-website-by-agentimage a:hover {
                    color: #fff;
                }
            .custom-website-by-agentimage span {
                position: absolute;
                right: 0;
                top: 1px;
                /*font-family: 'Barlow', Sans-serif;*/
                font-weight: 600;
                font-size: 10px;
            }
            .custom-website-by-agentimage i {
                display: block;
                font-size: 45px;
            }


/*page piling overwrite*/
.pp-section.section {
    position: absolute;
    top: 0;
}
/*.pp-section.pp-table {
    transform: translate3d(0, 0, 0)!important;
    transition-duration: 1s!important;
    z-index: 2!important;
}
.section.active {
    transform: translate3d(0, 0, 0)!important;
    transition-duration: 1s!important;
    z-index: 4!important;
}
.section.active ~ .pp-section.pp-table {
    transform: translate3d(0, 100%, 0)!important;
    z-index: 4!important;
}*/

.pp-section #slideshow,
.pp-section #slideshow > div,
.pp-section #slideshow > div canvas,
.pp-section #slideshow > div .cycle-slide {
    height: 100%;
}
.pp-section #slideshow .cycloneslider-slides {
    height: 100%!important;
}
.pp-section .hplisting canvas,
.pp-section .cta a canvas {
    height: 100vh;
}

/*about*/
.pp-section div#about-drew {
    background: transparent;
}
.pp-section.section-2 .pp-tableCell {
    background: rgba(0,0,0,0.3);
}
.pp-section.section-2 .fadeIn {
    -webkit-animation-name: none; 
    animation-name: none;
}
    .pp-section.section-2.active .fadeIn {
        -webkit-animation-name: fadeIn; 
        animation-name: fadeIn;
    }

.pp-section .section-7 {
    table-layout: fixed;
}
footer.footer.pp-section {
    margin-top: 0;
    background: #000;
}
section.section-7.pp-section {
    background: #000;
}

#pp-nav {
    display: none;
}
 
/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/


/* 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-weight: 300;
    font-size: 36px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: none;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle { 
    font-weight: 300;
    font-size: 25px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ai-default-cf7wrap input[type="text"], .ai-default-cf7wrap input[type="tel"], .ai-default-cf7wrap input[type="email"],
.ai-default-cf7wrap select, .ai-default-cf7wrap textarea {
    color: #000;
}

#content p {
    margin: 25px 0;
}

#content i[class*="ai-font"],
#content em[class*="ai-font"] {
    font-style: normal;
}

/*sitemap*/
#content ul.sitemap-list {
    text-align: center;
    margin: 0;
    padding: 0 3%;
    list-style: none;
    text-transform: uppercase;
}
    #content ul.sitemap-list li {
        line-height: 1.4;
        margin: 10px 0;
    }
        #content ul.sitemap-list li a {
            transition: all .3s ease;
        }

.page-template-default #content-full {
    padding: 0 15px;
}
     
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */


.floating-toggle {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    z-index: 2;
}
.ip-ld-about:after,
.section-2:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(left,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
    background: -webkit-linear-gradient(left,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    background: linear-gradient(to right,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=1 );
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    display: block;
}

.ip-ld-about.active-gradient:after,
.section-2.active-gradient:before{
    opacity: 1;
    visibility: visible;
}


.footer-copyright p br {
    display: none;
}


#contact-section-one {
    width: 100%;
    height: auto;
    position: relative;
}

#contact-section-one .contactus-form {
    /* width: 100%; */
    /* margin: 0 auto; */
    /* max-width: 868px; */
}

#contact-section-one .contactus-form h2 {
    font-size: 39px;
    padding-bottom: 30px;
}

#contact-section-one .contactus-form label {
    font-size: 16px;
    text-transform: uppercase;
    color: #bbb;
}

#contact-section-one .contactus-form input[type=text],
#contact-section-one .contactus-form input[type=tel],
#contact-section-one .contactus-form input[type=email],
#contact-section-one .contactus-form textarea {
    border: none;
    border-bottom: solid 2px #fff;
    background-image: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 5px;
    font-size: 16px;
    /* text-transform: uppercase; */
    outline: none !important;
    color: #fff;
}

#contact-section-one .contactus-form input[type=submit] {
    background-image: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    width: 100%;
    height: 75px;
    margin-top: 40px;
    color: #fff;
    border-color: #fff;
    max-width: 500px;
    margin: 40px auto 0;
    display: block;
}

#contact-section-one .contactus-form input[type=submit]:hover {
    background-color: #cbaa45;
    border-color: #cbaa45;
    color: #fff;
}

#contact-section-one .contactus-form textarea {
    height: 60px;
    padding-bottom: 5px;
    resize: none;
}

#contact-section-one .contactus-form .ajax-loader {
    display: none !important;
}

#contact-section-one div.wpcf7-validation-errors,
#contact-section-one div.wpcf7-acceptance-missing {
    width: 70%;
}

#contact-section-one .contactus-form div.wpcf7-response-output {
    margin: 15px 0 0;
    text-align: center;
}

#contact-section-one .contactus-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

#contact-section-one .contactus-form .form-col {
    float: left;
    width: 47%;
    margin-left: 6%;
    margin-top: 12px;
}

#contact-section-one .contactus-form .form-col:first-child {
    margin-left: 0;
}

#contact-section-one .contactus-form .bottom-line {
    border: solid 1px #032241;
    margin-top: 61px;
}

#contact-section-one .contact-us-info {
    background: #032241;
    width: 50.31%;
    float: right;
    margin-top: -60px;
    position: relative;
}

#contact-section-one .contact-us-info:after {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    /*background-image: url(../../images/contact-us/contact-overlay.png);*/
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
}

#contact-section-one .contact-us-info .cus-info-wrap {
    position: relative;
    z-index: 4;
    padding: 162px 0 215px 61px;
    width: 75%;
}

#contact-section-one .contact-us-info .cus-info-wrap .contact-logo {
    font-size: 6vw;
}

#contact-section-one .contact-us-info .cus-info-wrap h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 32px;
    padding-top: 50px;
    padding-bottom: 30px;
}

#contact-section-one .contact-us-info .cus-info-wrap p {
    color: #fff;
    font-weight: 300;
    font-size: 25px;
    clear: both;
    padding: 5px 0;
    font-style: normal !important;
}

#contact-section-one .contact-us-info .cus-info-wrap p em,
#contact-section-one .contact-us-info .cus-info-wrap p span {
    width: 57%;
    float: left;
}

#contact-section-one .contact-us-info .cus-info-wrap p a {
    color: #fff;
}

#contact-section-one .contact-us-info .cus-info-wrap p a:hover {
    color: #d2b66c;
    text-decoration: none;
}

#contact-section-one .contact-us-info .cus-info-wrap p i {
    float: left;
    color: #d2b66c;
    font-size: 26px;
    margin-right: 15px;
    margin-top: 8px;
    width: 26px;
}

#contact-section-one .contact-us-info .cus-info-wrap p.cs-phone i {
    transform: rotate(264deg);
}

#contact-section-one .contact-us-info .cus-info-wrap .cs-email i {
    font-size: 16px;
    margin-top: 14px;
}

#contact-section-one span.wpcf7-form-control-wrap.confirmation-box {
    padding: 20px 0 0;
}

#contact-section-one .form-row:nth-child(5) {
    padding: 16px 0 0;
}

#ip-dsmi .wpcf7 form .wpcf7-response-output {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

#ip-dsmi {
    width: 100%;
    margin: 0 auto;
    max-width: 868px;
}

#ip-dsmi form {
    position: relative;
}

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

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
}

a.itp-v2-logo {
    background-color: #1f1c18;
}

body #pojo-a11y-toolbar {
    bottom:0 !important;
    top: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top:auto !important;
    bottom:0 !important;
}
button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    transition: none !important;
}

#pojo-a11y-toolbar .pojo-a11y-btn-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background,
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display:none !important;
}


.ip-ld-v2-slideshow-main-slick:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    pointer-events: none;
    background: linear-gradient(to top, rgba(14, 14, 14, 0) 35%, rgba(14, 14, 14, 1) 100%) !important;
    z-index: 3;
}

body.page-template-sold.page-id-12 .fl-v2.sold .fl-v2-title,
body.page-template-listings.page-id-11 .fl-v2-title {
    display: none;
}
/*optimize*/
.section-v2-4, .section-v2-3 {
    opacity: 0;
}
.section-v2-8{
    display: none;
}

.footer-v2-copyright {
    color: #7d7d7d;
}