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

/*

TABLE OF CONTENTS

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

*/

/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/

:root {
    /** Font default */
    --font-default: 'Raleway', sans-serif;
    --font-title: 'Raleway', serif;
    --font-size-default: 16px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #c05803;

    /** Use for input, button, and any other element */
    --primary: #333333;
    --primary-rbg: 51, 51, 51;
    --secondary: #c05803;
    --secondary-rgb: 192, 88, 3;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4,0,.2,1);
}

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

ul.pojo-a11y-toolbar-items.pojo-a11y-tools > li:nth-child(3),
ul.pojo-a11y-toolbar-items.pojo-a11y-tools > li:nth-child(6) {
    display: none;
}

/* Sub Menu */
#nav li {
    position: relative;
}
    #nav li a {
        font-size: 13px;
        letter-spacing: 0.075em;
        text-transform: uppercase;
        line-height: 1;
        display: block;
    }
#nav > li {
    margin: 0 min(2vw, 26px);
}
    #nav > li:first-child {
        margin-left: 0;
    }
    #nav > li:last-child {
        margin-right: 0;
    }
    #nav > li > a {
        font-weight: 500;
        font-size: min(0.938vw, 15px);
        letter-spacing: 0.075em;
        color: #fff;
        text-transform: uppercase;
        line-height: 1;
        padding: 10px 0;
        position: relative;
    }
        #nav > li > a:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            border-top: 1px solid rgba(255,255,255,0.6);
            border-bottom: 1px solid rgba(255,255,255,0.6);
            transform: scaleX(0);
            transition: all var(--default-transition);
        }
        #nav > li:hover > a:before,
        #nav > li:focus-within > a:before {
            transform: scaleX(1);
        }
    #nav .sub-menu {
        list-style: none outside none;
        margin: 0;
        background: transparent;
        padding: 0;
        position: absolute;
     	width:100%;
     	min-width:180px;
        text-align: center;
        transform: translateY(20px);
        visibility: hidden;
        pointer-events: hidden;
        opacity: 0;
        transition: all var(--default-transition);
    }
    #nav > li > .sub-menu {
        left: calc(50% - 90px);
        padding-top: 15px;
    }
        #nav .sub-menu a {
            color: #FFFFFF;
            display: block;
            padding: 10px;
            background: rgba(var(--primary-rbg), 0.75);
            padding: 11px 10px;
            transition: all var(--default-transition);
        }
            #nav .sub-menu li:hover > a,
            #nav .sub-menu li:focus-within > a {
                background: rgba(var(--secondary-rgb), 1);
            }
        #nav .sub-menu .sub-menu {
            margin-left: 100%;
         	top:0;
        }
        #nav li:hover > .sub-menu,
        #nav li:focus-within > .sub-menu {
            transform: translateY(0);
            visibility: visible;
            pointer-events: all;
            opacity: 1;
        }
    #nav .sub-menu li {
        position: relative;
        padding-bottom: 1px;
    }


/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/

/* Global */

body{
	font-family: var(--font-default);
	font-size: var(--font-size-default);
	background: #FFFFFF;
	color: var(--font-color-default);
	margin: 0;
    font-variant: lining-nums;

    /* 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 {
    color: inherit;
}
    a:hover {
        color: var(--secondary);
    }
    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;
    }

#main-wrapper {
    overflow: hidden;
}

.custom-container {
    /* width: 100%;
    max-width: 1600px; */
    margin: 0 auto;
    /* padding: 0 5.938%; */


   width: 88.125vw;
}
.section-title {
    font-weight: 800;
    font-size: 50px;
    letter-spacing: 0.025em;
    line-height: 1.3;
    text-transform: uppercase;
    color: #1b1b1b;
}
    .section-title span {
        color: var(--secondary);
    }
.section-title.is-white {
    color: #fff;
}
.section-title-small {
    position: relative;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0 0 15px;
    margin-bottom: 26px;
}
    .section-title-small .accent-line {
        bottom: 0;
    }

a.btn-a,
.btn-a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.25em;
    line-height: 1;
    text-transform: uppercase;
    color: #000;
    background: transparent;
    border: 1px solid #b3b3b3;
    padding: 19px 0 18px;
    padding-left: 43px;
    padding-right: 19px;
    position: relative;
    text-align: center;
    transition: background var(--default-transition), color var(--default-transition), border var(--default-transition);
}
    .btn-a:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 45px;
        height: 1px;
        background: #b3b3b3;
        left: -24px;
    }
    .btn-a .icon-btn-arrow {
        width: 13px;
        height: 13px;
        background: url(images/icon-button-arrow.svg) center/contain no-repeat;
        transition: all var(--default-transition);
        margin-left: 10px;
    }

    a.btn-a:hover,
    .btn-a:hover {
        border-color: var(--secondary)!important;
        color: #fff!important;
        background: var(--secondary)!important;
    }
    .btn-a:hover .icon-btn-arrow {
        -webkit-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1);
    }

a.btn-a.is-white,
.btn-a.is-white {
    color: #fff;
}

.accent-line {
    position: absolute;
    height: 1px;
    background: #fff;
    left: 0;
    right: 0;
}
    .accent-line:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--secondary);
    }

.bg-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-position: center;
    background-size: cover;
}
    .bg-section:before,
    .bg-section:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

/*floating smi*/
#floating-smi {
    position: fixed;
    top: 53%;
    right: 18px;
    width: 38px;
    z-index: 1011;
    transform: translateY(-50%);
}
    #floating-smi .smi-list {

    }
        #floating-smi .smi-list a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 37px;
            height: 37px;
            border-radius: 50%;
            border: 1px solid #fff;
            font-size: 14px;
            color: #fff;
            margin: 0 auto 14px;
            transition: all var(--default-transition);
        }
            #floating-smi .smi-list a:hover {
                background: var(--secondary)!important;
                border-color: var(--secondary)!important;
                color: #fff!important;
            }
        #floating-smi .smi-list a:last-of-type {
            margin-bottom: 0;
        }
        #floating-smi .smi-list .smi-line {
            display: block;
            width: 1px;
            height: 32px;
            background: #fff;
            opacity: 0.5;
            margin: 10px auto;
            transition: all var(--default-transition);
        }
        #floating-smi .smi-list .smi-text {
            width: 12px;
            height: 78px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            margin: 0 auto;
        }
            #floating-smi .smi-list .smi-text span {
                position: absolute;
                transform: rotate(-90deg);
                font-size: 12px;
                letter-spacing: 0.075em;
                line-height: 1;
                text-transform: uppercase;
                color: #fff;
                text-transform: uppercase;
                transition: color var(--default-transition);
            }


    #floating-smi.nav-active-section-hp-featured-in .smi-list a,
    #floating-smi.nav-active-section-hp-cta .smi-list a {
        border-color: #393b3e;
        color: #393b3e;
    }
        #floating-smi.nav-active-section-hp-featured-in .smi-list .smi-line,
        #floating-smi.nav-active-section-hp-cta .smi-list .smi-line {
            background: #454545;
            opacity: 0.5;
        }
        #floating-smi.nav-active-section-hp-featured-in .smi-list .smi-text span,
        #floating-smi.nav-active-section-hp-cta .smi-list .smi-text span {
            color: #454545;
        }

/*burger menu*/
.bm-menu-bg.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.bm-menu-wrap.active {
    transform: translateX(0);
}
.bm-menu-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1011;
    background: rgba(0,0,0,0.2);
    transition: all .5s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.bm-menu-wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1011;
    width: 912px;
    max-width: 90%;
    background: rgba(0,0,0,0.65);
    background: #333333;
    border-bottom: 5px solid var(--secondary);
    transform: translateX(100%);
    transition: all .5s ease;
}
    .bm-menu-wrap:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        max-height: 545px;
        height: 100%;
        z-index: -1;
        background: rgb(0,0,0);
        background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
        background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
        opacity: 0;
    }
    .bm-menu-scrollable {
        max-height: 100%;
    }
        .bm-menu-scrollable .simplebar-scrollbar:before {
            background: var(--secondary);
            border-radius: 0;
        }
        .bm-menu-scrollable .simplebar-track .simplebar-scrollbar.visible:before,
        .bm-menu-scrollable .simplebar-track:hover .simplebar-scrollbar:before {
            opacity: 1;
        }
    .bm-menu-inner {
        padding: 65px 66px 53px;
        position: relative;
    }
        .bm-menu-logo {
            font-size: 0;
            margin-bottom: 73px;
        }
            .bm-menu-logo a {
                display: inline-block;
            }
                .bm-menu-logo a img {
                    display: block;
                    max-width: 100%;
                    height: auto;
                }

        .bm-menu-close {
            position: absolute;
            top: 82px;
            right: 120px;
            background: transparent;
            border: none;
            font-size: 25px;
            color: #fff;
            padding: 0;
            transition: color var(--default-transition);
        }
            .bm-menu-close:hover {
                color: var(--secondary);
            }

        .bm-menu-nav {

        }
            #bm_nav {
                display: flex;
                flex-flow: row wrap;
                max-height: 440px;
            }
                #bm_nav > li {
                    margin-bottom: 44px;
                    width: 33.33%;
                }
                    #bm_nav > li > a {
                        font-weight: 700;
                        font-size: 30px;
                        letter-spacing: 0.075em;
                        line-height: 1;
                        color: #fff;
                        text-transform: uppercase;
                        display: inline-block;
                        margin-bottom: 18px;
                        transition: color var(--default-transition);
                    }

                /*contact tab*/
                #bm_nav > li.menu-item-15 {
                    display: none;
                }
                #bm_nav li ul {

                }
                    #bm_nav li ul li {

                    }
                        #bm_nav li ul li a {
                            font-size: 13px;
                            letter-spacing: 0.075em;
                            line-height: 1.923;
                            text-transform: uppercase;
                            color: #fff;
                            transition: color var(--default-transition);
                        }
                        #bm_nav > li > a:hover,
                        #bm_nav li ul li a:hover {
                            color: var(--secondary);
                        }

    .bm-menu-contact {
        border-top: 1px solid rgba(255,255,255,0.17);
        margin: 19px 20px 0 0;
        padding: 40px 0 0;
    }
        .bm-menu-contact .contact-info {
            text-align: center;
            margin: 0 20px 8px;
        }
        .bm-menu-contact .contact-info:first-child {
            margin-left: 0;
        }
        .bm-menu-contact .contact-info:last-child {
            margin-right: 0;
        }
            .bm-menu-contact .contact-info i {
                font-size: 20px;
                color: var(--secondary);
                height: 31px;
                display: block;
                margin-bottom: 5px;
            }
            .bm-menu-contact .contact-info i.ai-font-phone {
                font-size: 16px;
            }
            .bm-menu-contact .contact-info i.ai-font-envelope-filled-a {
                font-size: 14px;
            }
            .bm-menu-contact .contact-info strong {
                display: block;
                font-size: 16px;
                font-weight: 500;
                letter-spacing: 0.4em;
                line-height: 1;
                text-transform: uppercase;
                color: #fff;
                margin-bottom: 10px;
            }
            .bm-menu-contact .contact-info span {
                display: block;
                font-weight: 500;
                font-size: 13px;
                letter-spacing: 0.1em;
                line-height: 1.384;
                color: #fff;
            }
                .bm-menu-contact .contact-info span a {
                    transition: color var(--default-transition);
                }
                    .bm-menu-contact .contact-info span a:hover {
                        color: var(--secondary);
                    }

            .bm-menu-contact .contact-info.contact-location {
                max-width: 210px;
            }

            .bm-menu-contact .contact-info.contact-smi {
                width: 100%;
                margin: 0;
            }
                .bm-menu-contact .contact-info.contact-smi a {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    width: 35px;
                    height: 35px;
                    border-radius: 50%;
                    border: 1px solid rgba(255,255,255,0.3);
                    font-size: 14px;
                    color: var(--secondary);
                    margin: 6px;
                    transition: all var(--default-transition);
                }
                .bm-menu-contact .contact-info.contact-smi a:hover {
                    color: #fff;
                    background: var(--secondary);
                    border-color: var(--secondary);
                }

/*header*/
header.header.sticking {
    position: fixed;
    background: #333333;
    border-bottom: 1px solid var(--secondary);
    padding: 16px 0 20px;
}
header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1011;
    padding: 65px 0 0;
    border-bottom: 1px solid transparent;
    transition: all var(--default-transition);
}
    .header-inner {
        padding: 0 1.5%;
    }
        .header-logo {
            /*width: 250px;*/
            width: 18.28%;
            font-size: 0;
        }
            .header-logo a {
                display: inline-block;
            }
                .header-logo a img {
                    width: 100%;
                    height: auto;
                    transition: all var(--default-transition);
                }
                header.header:not(.sticking) .header-logo a img {
                    -webkit-filter: brightness(0) invert(1);
                    filter: brightness(0) invert(1);
                }

        .header-navigation {
            width: 81.72%;
        }
            #nav {
                flex-grow: 1;
                display: flex;
                flex-flow: row wrap;
                align-items: center;
                justify-content: flex-end;
            }
            .header-contact {
                border-left: 1px solid rgba(255,255,255,0.45);
                padding-left: min(0.625vw, 10px);
                margin-left: min(2.375vw, 38px);
            }
                .header-contact span {
                    display: inline-block;
                    vertical-align: middle;
                    margin-left: min(2.188vw, 35px);
                }
                    .header-contact span a {
                        color: #fff;
                        transition: all var(--default-transition);
                    }
                        .header-contact span a i {
                            font-size: min(1.063vw ,17px);
                        }
                    .header-contact span a:hover {
                        color: var(--secondary);
                    }
                .bm-menu-open {
                    display: inline-block;
                    vertical-align: middle;
                    width: min(1.688vw, 27px);
                    background: transparent;
                    border: none;
                    padding: 0;
                    margin-left: min(2.938vw, 47px);
                    transition: opacity var(--default-transition);
                }
                    .bm-menu-open i.icon-menu-open {
                        width: min(1.688vw, 27px);
                        height: min(1.688vw, 27px);
                        background: url(images/icon-menu-open.svg) center/contain no-repeat;
                        display: block;
                        -webkit-filter: brightness(0) invert(1);
                        filter: brightness(0) invert(1);
                        transition: all var(--default-transition);
                    }
                .bm-menu-open:hover {

                }
                    .bm-menu-open:hover i.icon-menu-open {
                        -webkit-filter: none;
                        filter: none;
                    }

/*slideshow*/
#hp-slideshow {
    position: relative;
}
    #hp-slideshow .aios-slider:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 187px;
        background: rgb(0,0,0);
        background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
        background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
        opacity: 0.54;
    }
    #hp-slideshow .aios-slider:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000;
        opacity: 0.3;
        z-index: 2;
    }
    .hp-tagline {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 9.5% 0 0;
    }
        .hp-tagline h2 {
            font-weight: 800;
            font-size: 50px;
            letter-spacing: 0.075em;
            line-height: 1.2;
            color: #fff;
            text-transform: uppercase;
            padding: 0 1.5%;
        }
            .hp-tagline h2 span {
                display: block;
                font-size: 20px;
                letter-spacing: 0.25em;
                line-height: 1;
                color: #c3bfbf;
                font-weight: 700;
                margin-bottom: 16px;
            }
    .hp-qs {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        background: rgba(0,0,0,0.85);
    }
        .qs-inner {
            padding: 0 1.5%;
        }
            .qs-inner form {
                position: relative;
            }
                .qs-inner form i {
                    font-size: 24px;
                    color: #70798c;
                    position: absolute;
                    /* top: 16px; */
                    left: 0;
                }
                .qs-inner form input[type="text"] {
                    width: 100%;
                    font-weight: 700;
                    font-size: 20px;
                    letter-spacing: 0.25em;
                    line-height: 1;
                    color: #b8bcc6;
                    text-transform: uppercase;
                    height: 56px;
                    padding-left: 57px;
                    background: transparent;
                    border: none;
                }
                
                .qs-inner form a.btn-search {
                    width: 100%;
                    font-weight: 700;
                    font-size: 20px;
                    letter-spacing: 0.25em;
                    line-height: 1;
                    color: #b8bcc6;
                    text-transform: uppercase;
                    padding: 23px 23px 23px 57px;
                    background: transparent;
                    border: none;
                    display: block;
                }

/*about*/
#hp-about {
/*    background: var(--primary);*/
    background: #3c3b3c;;
    padding: 55px 0 0;
    position: relative;
    z-index: 1;
}
    .about-video {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        top: 0;
        z-index: -1;
    }
        /*.about-video video {
            position: absolute;
            top: 0;
            left: 0;
            display: block;
            width: 100%;
            height: 100%;
            transform: scale(1.01);
            -o-object-fit: cover;
            object-fit: cover;
            -webkit-clip-path: inset(1px 1px);
            clip-path: inset(1px 1px);
            -webkit-mask-image: -webkit-radial-gradient(white, black);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            border: none;
        }*/

        .about-video > .aios-slider, .about-video > .aios-slider > div {
            height: 100%!important;
        }
        .about-video .aios-slider .aios-slider-splide .aios-slider-custom-video canvas,
        .about-video .splide__track,
        .about-video .splide__track--fade>.splide__list>.splide__slide,
        .about-video .aios-slider .aios-slider-splide .aios-slider-custom-video {
            height: 100%;
        }
        .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-custom-video video {
            object-position: 50% 70%;
        }

    .about-inner {
        position: relative;
        padding-bottom: 127px;
    }
    .about-col-holder {
        display: flex;
        flex-wrap: wrap;
    }

    .about-col {
        width: 50%;
        padding: 0 30px;
    }
        .about-img {
            position: absolute;
            bottom: 11px;
            right: 0;
            width: 55.675%;
            opacity: 0;
        }
            .about-img img {
                display: block;
                max-width: 100%;
                height: auto;
            }

        .about-inner .section-title {
            max-width: 877px;
            position: relative;
            padding: 0 0 27px;
            margin-bottom: 49px;
            font-size: 35px;
        }

            .about-inner .section-title .accent-line {
                background: #fff;
                bottom: 0;
                left: 0;
                right: 0;
            }
                .about-inner .section-title .accent-line:before {
                    background: var(--secondary);
                    width: 328px;
                    left: initial;
                }

        .about-inner p {
            font-weight: 500;
            letter-spacing: 0.075em;
            line-height: 2.25;
            color: #fff;
            max-width: 590px;
        }
        .about-btn {
            padding-left: 25px;
            margin-top: 70px;
        }

    .about-inner > .accent-line {
        bottom: 0;
        left: 0;
        right: 0;
    }
        .about-inner > .accent-line:before {
            width: 41%;
        }


/*fp*/
#hp-fp {
    position: relative;
/*    background: var(--primary);*/
    background: #3c3b3c;
    padding: 23px 0 104px;
}

#hp-fp #buildout iframe {
  width: 100% !important;
  height: 80vh !important;
}
    #hp-fp .section-title {
        margin-bottom: 56px;
    }
    .fp-list {
        font-size: 0;
        margin: 0 -7.5px;
    }
        .fp-item {
            padding: 0 7.5px;
            display: inline-block;
            vertical-align: top;
            width: 33.33%;
            margin-bottom: 48px;
        }
            .fp-item a {
                display: block;
                position: relative;
            }
                .fp-img {
                    position: relative;
                }
                    .fp-img canvas {
                        display: block;
                        width: 100%;
                        background-position: center;
                        background-size: cover;
                        min-height: 260px;
                    }
                .fp-hover {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    z-index: 2;
                    background: rgba(0,0,0,0.51);
                    display: flex;
                    flex-flow: column;
                    /*padding: 0 27px 33px;*/
                    padding: 0 5.88% 7.18%;
                    transition: opacity var(--default-transition);
                    opacity: 0;
                }
                    .fp-desc {
                        font-size: 14px;
                        letter-spacing: 0.05em;
                        line-height: 1.7857;
                        color: #fff;
                        flex-grow: 1;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        padding: 11% 0 0;
                    }
                        .fp-desc span {
                            width: 100%;
                        }
                    .fp-amenities {
                        display: flex;
                        align-items: center;
                    }
                        .fp-amenities > span {
                            font-size: 10.41px;
                            letter-spacing: 0.05em;
                            line-height: 1;
                            color: #fff;
                            font-variant: lining-nums;
                            margin-right: 19px;
                            text-align: center;
                        }
                            .fp-amenities > span i {
                                display: block;
                                margin: 0 auto 8px;
                                background: url(images/icon-amenities.png) no-repeat;
                            }
                            .fp-amenities > span i.icon-beds {
                                width: 13px;
                                height: 13px;
                                background-position: 0 0;
                            }
                            .fp-amenities > span i.icon-baths {
                                width: 13px;
                                height: 13px;
                                background-position: -13px 0;
                            }
                            .fp-amenities > span i.icon-sqft {
                                width: 13px;
                                height: 13px;
                                background-position: -26px 0;
                            }

                        .fp-amenities .btn-a {
                            background: var(--secondary);
                            border-color: var(--secondary);
                            color: #fff;
                            padding-left: 23px;
                            font-size: 12px;
                            letter-spacing: 0.2em;
                            margin-left: auto;
                            text-align: center;
                        }
                            .fp-amenities .btn-a:before {
                                width: 22px;
                                background: #fff;
                                left: -11px;
                            }
                            .fp-amenities .btn-a .icon-btn-arrow {
                                -webkit-filter: brightness(0) invert(1);
                                filter: brightness(0) invert(1);
                            }

                .fp-details {
                    margin-top: 20px;
                    border-left: 2px solid var(--secondary);
                    padding: 5px 20px 4px;
                }
                    .fp-address {
                        font-weight: 700;
                        font-size: 20px;
                        letter-spacing: 0.075em;
                        line-height: 1;
                        color: #fff;
                        text-transform: uppercase;
                        font-variant: lining-nums;
                        margin-bottom: 5px;
                    }
                    .fp-price {
                        font-weight: 500;
                        font-size: 14px;
                        letter-spacing: 0.25em;
                        line-height: 1;
                        color: #fff;
                        font-variant: lining-nums;
                        margin-bottom: 10px;
                    }
                    .fp-other-details {
                        font-weight: 500;
                        font-size: 10px;
                        letter-spacing: 0.2em;
                        line-height: 1;
                        color: #949494;
                        font-variant: lining-nums;
                    }

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

    .fp-btn-more {
        text-align: center;
        margin: 35px 0 0;
    }
        .fp-btn-more a.btn-a {

        }

/*cta*/
#hp-cta {
    position: relative;
    padding: 71px 0 87px;
}
    .cta-list {
        margin: 0 -8px;
    }
        .cta-item {
            width: 25%;
            padding: 8px;
        }
            .cta-item a {
                position: relative;
            }
                .cta-img {
                    position: relative;
                    width: 100%;
                }
                    .cta-img canvas {
                        display: block;
                        width: 100%;
                        background: #000;
                    }
                    .cta-img img {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        opacity: 0.7;
                        transition: opacity var(--default-transition);
                    }
                    .cta-img:before {
                        content: '';
                        position: absolute;
                        top: 0;
                        bottom: 0;
                        left: 0;
                        right: 0;
                        border: 1px solid #fff;
                        border-left-color: transparent;
                        border-right-color: transparent;
                        margin: auto;
                        width: calc(100% - 52px);
                        height: min(5.813vw, 93px);
                        z-index: 2;
                        transition: all var(--default-transition);
                    }
                    .cta-item a:hover .cta-img img {
                        opacity: 1;
                    }
                    .cta-item a:hover .cta-img:before {
                        width: calc(100% - 28px);
                        height: calc(100% - 40px);
                        border-left-color: #fff;
                        border-right-color: #fff;
                    }

                .cta-title {
                    position: absolute;
                    left: min(0.938vw, 15px);
                    right: min(0.938vw, 15px);
                    text-align: center;
                    font-weight: 700;
                    font-size: min(1.875vw, 30px);
                    letter-spacing: 0.075em;
                    line-height: 1;
                    color: #fff;
                    text-transform: uppercase;
                }
                    .cta-title span {
                        display: block;
                        font-weight: 500;
                        font-size: min(1.125vw, 18px);
                        letter-spacing: 0.25em;
                        margin-bottom: min(0.625vw, 10px);
                    }


/*proven performance*/
#hp-performance {
    position: relative;
    background: var(--primary);
    padding: 209px 0 60px;
}
    .pp-img {
        position: absolute;
        top: 50px;
        left: 0;
        width: 60.625vw;
        max-width: 970px;
    }
        .pp-img img {
            display: block;
            width: 100%;
            height: auto;
        }

    #hp-performance .section-title {
        max-width: 670px;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 191px;
        position: relative;
    }
        #hp-performance .section-title-small .accent-line:before {
            width: 53%;
            left: auto;
        }

    .pp-list {

    }
        .pp-item {
            width: 372px;
            border-right: 1px solid rgba(255,255,255,0.6);
            color: #fff;
            text-align: center;
            padding: 17px 0 28px;
            position: relative;
        }
            .pp-item:before,
            .pp-item:after {
                content: '';
                width: 18px;
                height: 1px;
                background: var(--secondary);
                right: -10px;
                top: 0;
                bottom: 11px;
                margin: auto;
                z-index: 1;
                position: absolute;
            }
            .pp-item:after {
                transform: rotate(90deg);
            }
            .pp-number {
                font-size: 70px;
                font-weight: 700;
                letter-spacing: 0.025em;
                line-height: 1;
                margin-bottom: 15px;
            }
            .pp-label {
                font-weight: 500;
                font-size: 18px;
                letter-spacing: 0.25em;
                line-height: 1.333333333333333;
                text-transform: uppercase;
            }
        .pp-item:last-child {
            border-right: 0;
        }
            .pp-item:last-child:before,
            .pp-item:last-child:after {
                display: none;
            }


/*featured in*/
#hp-featured-in {
    position: relative;
    padding: 0 0 110px;
}
    #hp-featured-in:before {
        content: '';
        position: absolute;
        top: -1px;
        left: 0;
        right: 0;
        height: 338px;
        background: var(--primary);
        z-index: -1;
    }
    .fi-photo {
        position: relative;
    }
        .fi-photo canvas {
            display: block;
            width: 100%;
        }
        .fi-photo img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .fi-row {
        margin: 67px 0 0;
        padding: 0 20px;
    }
        .fi-title {
            width: 55%;
        }
            .fi-title .section-title {
                letter-spacing: 0.075em;
                color: #1b1b1b;
            }
                .fi-title .section-title-small .accent-line {
                    max-width: 368px;
                    background: #e9e9e9;
                }
                    .fi-title .section-title-small .accent-line:before {
                        width: 56%;
                    }
                .fi-title .section-title small {
                    display: block;
                    font-size: 18px;
                    font-weight: 700;
                    letter-spacing: 0.075em;
                    line-height: 1;
                    text-transform: uppercase;
                    color: #1b1b1b;
                    margin: 9px 0 0;
                }
        .fi-text {
            width: 43%;
            max-width: 520px;
            margin-left: auto;
        }
            .fi-text p {
                font-weight: 500;
                font-size: 14px;
                line-height: 2.1428;
                letter-spacing: 0.075em;
                color: #182720;
            }
            .fi-text a.btn-a {
                margin-top: 45px;
            }

        .fi-logo-list {
            width: 100%;
            margin: 102px 0 0;
            /*flex-wrap: nowrap;*/
        }
            .fi-logo {
                padding: 0 40px !important;
            }
            .fi-logo:first-child {
                padding-left: 0;
            }
            .fi-logo:last-child {
                padding-right: 0;
            }
                .fi-logo img {
                    max-width: 100%;
                    height: auto;
                    display: block;
                    max-height: 52px;
                }


/*press*/
#hp-press {
    position: relative;
    background: var(--primary);
    padding: 96px 0 89px;
}
    .press-title {
        padding: 0 1.5%;
        margin-bottom: 85px;
    }
        .press-title .section-title {
            letter-spacing: 0.075em;
        }
            .press-title .section-title-small {
                margin-bottom: 19px;
            }
                .press-title .section-title-small .accent-line {
                    max-width: 410px;
                    background: #555555;
                }
                    .press-title .section-title-small .accent-line:before {
                        width: 94%;
                    }
        .press-btn {
            align-self: flex-end;
            padding: 0 3% 1.9% 0;
        }
            .press-btn a.btn-a {

            }

    .press-list {
        font-size: 0;
        margin: 0 -15px;
    }

        .press-item {
            display: inline-block;
            vertical-align: top;
            width: 33.33%;
            padding: 0 15px;
        }
        .press-item:nth-chid(3) ~ .press-item {
            display: none;
        }

            a.press-item-img {
                display: block;
                position: relative;
                margin-bottom: 25px;
            }

                a.press-item-img canvas {
                    display: block;
                    width: 100%;
                    background-position: center;
                    background-size: cover;
                }

            a.press-item-title {
                font-size: 18px;
                font-weight: 700;
                line-height: 1.38;
                letter-spacing: 0.075em;
                color: #fff;
                display: block;
                margin-bottom: 22px;
                transition: color var(--default-transition);
            }
                a.press-item-title:hover {
                    color: var(--secondary);
                }
            .press-item-details {
                font-size: 12px;
                letter-spacing: 0.2em;
                line-height: 1.5;
                color: #949494;
                text-transform: uppercase;
                font-weight: 500;
                margin-bottom: 21px;
            }
            .press-item p {
                font-size: 14px;
                letter-spacing: 0.075em;
                line-height: 2;
                color: #Fff;
                margin-bottom: 41px;
            }

            .press-item a.btn-a {
                font-size: 12px;
                padding-top: 17px;
                padding-bottom: 17px;
            }
                .press-item a.btn-a:before {
                    width: 22px;
                    left: -11px;
                }


    .press-controls {
        margin: 75px 0 0;
    }
        button.custom-slick-arrow,
        a.custom-slick-arrow {
            background: transparent;
            padding: 0;
            border: none;
            display: inline-flex;
            align-items: center;
            font-weight: 500;
            font-size: 12px;
            letter-spacing: 0.2em;
            line-height: 1;
            color: #cdcdcd;
            text-transform: uppercase;
            transition: color var(--default-transition);
        }
            button.custom-slick-arrow .icon-slick-arrow,
            a.custom-slick-arrow .icon-slick-arrow {
                display: inline-block;
                padding: 13px 5px;
                border-bottom: 2px solid rgba(163,163,163,0.51);
            }
                button.custom-slick-arrow .icon-slick-arrow:before,
                a.custom-slick-arrow .icon-slick-arrow:before {
                    content: '';
                    display: block;
                    width: 9px;
                    height: 11px;
                    background: url(images/icon-slick-arrow.svg) center/contain no-repeat;
                }
            button.custom-slick-arrow.slick-prev .icon-slick-arrow,
            a.custom-slick-arrow.slick-prev .icon-slick-arrow {
                margin-right: 15px;
            }
            button.custom-slick-arrow.slick-next .icon-slick-arrow,
            a.custom-slick-arrow.slick-next .icon-slick-arrow {
                transform: rotateY(180deg);
                margin-left: 15px;
            }

            button.custom-slick-arrow:hover,
            a.custom-slick-arrow:hover {
                color: var(--secondary);
            }

        .line-sep {
            width: 1px;
            height: 47px;
            background: #d4d4d4;
            opacity: 0.2;
            margin: 0 14px;
        }


/*git*/
#hp-git {
    min-height: 754px;
    position: relative;
    padding: 64px 0 63px;
}
    .git-box {
        background: rgba(0,0,0,0.6);
        padding: 70px 5% 77px;
    }
        .git-title {
            text-align: center;
            margin-bottom: 29px;
        }
            .git-title .section-title {
                letter-spacing: 0.075em;
            }
                .git-title .section-title-small {
                    margin-bottom: 14px;
                }
                    .git-title .section-title-small .accent-line:before {
                        width: 174px;
                        margin: 0 auto;
                    }

        .git-box p {
            font-weight: 500;
            font-size: 15px;
            letter-spacing: 0.075em;
            line-height: 1.33;
            color: #fff;
            text-align: center;
        }

        .git-form {
            width: 825px;
            max-width: 100%;
            margin: 57px auto 0;
            font-size: 0;
            position: relative;
        }
            .git-form form {
                margin: 0 -7px;
            }
            .git-field.field-6 {
                width: 50%;
                margin-bottom: 11px;
            }
            .git-field.field-12 {
                width: 100%;
            }
            .git-field {
                display: inline-block;
                padding: 0 7px;
                vertical-align: top;
                position: relative;
            }
                .git-field input[type="text"],
                .git-field input[type="tel"],
                .git-field input[type="email"],
                .git-field textarea {
                    width: 100%;
                    height: 41px;
                    border: 1px solid rgba(255,255,255,0.5);
                    font-size: 11px;
                    font-weight: 500;
                    letter-spacing: 0.075em;
                    line-height: 1.36;
                    color: #fff;
                    background: transparent;
                    padding: 0 15px;
                }
                .git-field textarea {
                    resize: none;
                    height: 153px;
                    padding-top: 15px;
                    padding-right: 50px;
                }
                .git-field textarea::-webkit-scrollbar {
                    width: 0;
                }

    .git-btn {
        position: absolute;
        bottom: 15px;
        right: 29px;
        font-size: 20px;
        color: #Fff;
    }
        .git-btn input.wpcf7-submit {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
        }
        .git-btn .wpcf7-spinner {
            position: absolute;
            bottom: -50px;
            right: 0;
            margin: auto;
        }
        .use-floating-validation-tip .wpcf7-not-valid-tip {
            position: absolute;
            width: auto;
            font-size: 12px;
        }
        .git-form .wpcf7 form .wpcf7-response-output {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            font-size: 14px;
            text-align: center;
            margin: 10px auto 0;
            color: #fff;
        }


/*footer*/
footer.footer {
    min-height: 701px;
    background: var(--primary);
    padding: 82px 0 51px;
}
    .footer-logo {
        text-align: center;
        font-size: 0;
        margin-bottom: 50px;
    }
        .footer-logo a {
            display: inline-block;
        }
            .footer-logo a img {
                display: block;
                max-width: 100%;
                height: auto;
            }


    .footer-contact {

    }
        .footer-contact .contact-info {
            text-align: center;
            margin: 0 36px 8px;
        }
            .footer-contact .contact-info i {
                font-size: 20px;
                color: var(--secondary);
                height: 31px;
                display: block;
            }
            .footer-contact .contact-info i.ai-font-phone {
                font-size: 16px;
            }
            .footer-contact .contact-info i.ai-font-envelope-filled-a {
                font-size: 14px;
            }
            .footer-contact .contact-info strong {
                display: block;
                font-size: 16px;
                font-weight: 500;
                letter-spacing: 0.4em;
                line-height: 1;
                text-transform: uppercase;
                color: #fff;
                margin-bottom: 10px;
            }
            .footer-contact .contact-info span {
                display: block;
                font-weight: 500;
                font-size: 13px;
                letter-spacing: 0.075em;
                line-height: 1.384;
                color: #fff;
            }
                .footer-contact .contact-info span a {
                    transition: color var(--default-transition);
                }
                    .footer-contact .contact-info span a:hover {
                        color: var(--secondary);
                    }

            .footer-contact .contact-info.contact-location {
                max-width: 200px;
            }

            .footer-contact .contact-info.contact-smi {
                width: 100%;
                margin: 0;
            }
                .footer-contact .contact-info.contact-smi a {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    width: 35px;
                    height: 35px;
                    border-radius: 50%;
                    border: 1px solid rgba(255,255,255,0.3);
                    font-size: 14px;
                    color: var(--secondary);
                    margin: 6px;
                    transition: all var(--default-transition);
                }
                .footer-contact .contact-info.contact-smi a:hover {
                    color: #fff;
                    background: var(--secondary);
                    border-color: var(--secondary);
                }

    .footernav {
        border-top: 1px solid rgba(255,255,255,0.18);
        border-bottom: 1px solid rgba(255,255,255,0.18);
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: center;
        margin: 39px 0 36px;
        padding: 9px 0 8px;
    }
        .footernav > li {
            margin: 10px 39px;
        }
            .footernav > li > a {
                font-size: 15px;
                letter-spacing: 0.15em;
                line-height: 1.33;
                text-transform: uppercase;
                color: #fff;
                transition: color var(--default-transition);
            }
            .footernav > li > a:hover {
                color: var(--secondary);
            }

    .footer-disclaimer {
        text-align: center;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.075em;
        color: #838383;
        line-height: 1.846;
        margin-bottom: 25px;
    }

    .footer-copyright {
        text-align: center;
        font-weight: 500;
        font-size: 13px;
        letter-spacing: 0.075em;
        line-height: 1.846;
        color: #fff;
    }
        .footer-copyright span,
        .footer-copyright a[style] {
            color: var(--secondary);
        }

    .footer-disclaimer a,
    .footer-copyright a {
        transition: color var(--default-transition);
    }
    .footer-disclaimer a:hover,
    .footer-copyright a:hover {
        color: var(--secondary);
    }
    .footer-copyright a[style]:hover {
        color: #fff;
    }

    .footer-mls {
        font-size: 0;
        margin: 16px 0 0;
    }
        .footer-mls img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
        }

/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-banner{
    position: relative;
    width: 100%;
}
    .ip-banner::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        background: rgba(0,0,0,.6);
    }
    .ip-banner canvas{
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        min-height: 250px;
        background-color: var(--dark);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .ip-banner .container{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 2;
    }
        .ip-banner h1 {
            font-weight: 700;
            font-size: 32px;
            text-align: center;
            color: #FFFFFF;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 1.7;
        }
            .ip-banner h1 span{
                display: block;
                font-size: 24px;
                font-weight: 400;
                text-transform: none;
                letter-spacing: 0.01em;
            }
/* Adjust minimum height of page area */
#content-sidebar, #content-full{ min-height: 500px; margin-top: 20px;}

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

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

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

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

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
    font-weight: 800;
    font-size: 50px;
    letter-spacing: 0.025em;
    line-height: 1.3;
    text-transform: uppercase;
    color: #1b1b1b;
}

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

}

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

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast,
#agents-results .agents-contact {
    display:none !important;
}



.single-aios-agents ul.ip-ad-listings-btn li a[aria-controls="sold-listings"] {
    display: none;
}

.back-btn {
    margin-top: 30px;
}


.wpcf7 form .wpcf7-response-output {
    text-align: center !important;
}
.post-page-where-you-want-to-be #breadcrumbs{
    margin: 1.12em 0;
    padding: 0px 15px;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
