/*
Theme Name: dthompson-pending.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: 'Open Sans', sans-serif;
    --font-title: 'Bebas Neue', sans-serif;
    --font-size-default: 15px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;

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

/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/

/* Sub Menu */
#nav li {
    position:relative;
}
    #nav li a {
        display: block;
        font-size: 14px;
        letter-spacing: 0.02em;
        line-height: 1;
        text-transform: uppercase;
        color: #fff;
    }
#nav > li {
    position: relative;
}
    #nav > li:before {
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        bottom: 0;
        margin-top: auto!important;
        margin-bottom: auto!important;
        width: 1px;
        height: 15px;
        background: #8f8f8f;
    }
    #nav > li,
    #nav > li:before {
        margin: 0 24px;
    }
    #nav > li:last-child {
        margin-right: 0;
    }
    #nav > li:last-child:before {
        display: none;
    }
    #nav > li > a {
        padding: 10px 0;
        transition: opacity var(--default-transition), color var(--default-transition);
    }
        #nav > li:hover > a,
        #nav > li:focus-within > a {
            opacity: 0.6;
        }
    #nav .sub-menu {
        list-style: none outside none;
        margin: 0;
        background: rgba(0,0,0,0.9);
        padding: 0;
        position: absolute;
     	width:100%;
     	min-width: 200px;
        text-align: center;
        transform: translateY(20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all var(--default-transition);
    }
    #nav > li > .sub-menu {
        left: calc(50% - 100px);
    }
    #nav .sub-menu a {
        color: #FFFFFF;
        display: block;
        padding: 10px;
        transition: all var(--default-transition);
    }
    #nav .sub-menu li:hover > a {
        background: var(--secondary);
        color: #fff;
    }
    #nav .sub-menu .sub-menu {
        margin-left: 100%;
     	top:0;
    }
    #nav li:hover > .sub-menu,
    #nav li:focus-within > .sub-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    #nav .sub-menu li {
        position: relative;
    }


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

    /* 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;
    background: linear-gradient(0deg, #000 1px, transparent 1px);
}

.custom-container {
    padding: 0 6.25%;
}

/*header*/
header.header.animate-in,
header.header.active {
    position: fixed;
    background: rgba(255,255,255,0.9);
    transform: translateY(-100%);
    padding: 16px 0 15px;
}
header.header.active {
    top: 0;
    transform: translateY(0);
    transition: all var(--default-transition);
}
    header.header.active .header-logo {
        width: 330px;
    }
        header.header.active .header-logo img.logo-default {
            display: none;
        }
        header.header.active .header-logo img.logo-fixed {
            display: block;
        }
    header.header.active .header-navigation {
        padding: 0;
    }
        header.header.active #nav > li > a {
            color: #000;
        }
        header.header.active .header-contact-info span a {
            color: var(--secondary);
        }

header.header.animate-out {
    transform: translateY(-100%);
    opacity: 0;
}

header.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    padding: 27px 0 0;
    transition: opacity var(--default-transition);
}
    .header-logo {
        width: 232px;
        font-size: 0;
    }
        .header-logo a {
            display: inline-block;
        }
            .header-logo a img {
                display: block;
                width: 100%;
                height: auto;
            }
            .header-logo a img.logo-fixed {
                display: none;
            }

    .header-navigation {
        padding: 0 0 33px;
    }
        #nav {
            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;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;

            /* margin-right: 67px; */
            margin-right: 20px;
        }
        .header-contact-info {
            font-size: 0;
        }
            .header-contact-info span {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 0 ;
                line-height: 15px;
                border-right: 1px solid #8f8f8f;
                padding: 0 14px;
            }
                .header-contact-info span:last-child {
                    border-right: 0;
                    padding-right: 13px;
                }
                .header-contact-info span i {

                }
                .header-contact-info span i.ai-font-envelope-f {
                    font-size: 11px;
                }
                .header-contact-info span a {
                    transition: color var(--default-transition);
                    color: #fff;
                    font-size: 12px;
                    transition: opacity var(--default-transition), color var(--default-transition);
                }
                .header-contact-info span a:hover,
                .header-contact-info span a:focus {
                    opacity: 0.6;
                }



/*slideshow*/
#hp-slideshow {
    position: relative;
}
    .slideshow-shortcode {
        position: relative;
    }
        .slideshow-canvas {
            display: block;
            width: 100%;
            height: auto;
            min-height: 400px;
        }
        .slideshow-shortcode canvas {
            min-height: 400px;
        }
        .slideshow-shortcode .aios-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
            .slideshow-shortcode .aios-slider:before,
            .slideshow-shortcode .aios-slider:after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 2;
            }
            .slideshow-shortcode .aios-slider:before {
                background: #000;
                opacity: 0.16;
            }
            .slideshow-shortcode .aios-slider:after {
                height: 554px;
                height: 50%;
                opacity: 0.68;
                background: rgb(0,0,0);
                background: -moz-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                background: -webkit-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
            }

    .slideshow-tagline {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        padding: 4.4% 0 0;
    }
        .slideshow-tagline h2 {
            font-size: 95px;
            line-height: 1;
            text-transform: uppercase;
            color: #fff;
            text-align: center;
            font-family: var(--font-title);
            font-weight: 400;
        }
            .slideshow-tagline h2 span {
                display: block;
                font-size: 35px;
                text-transform: initial;
                letter-spacing: -0.06em;
                font-weight: 700;
                font-family: var(--font-default);
            }


/*about*/
#hp-about {
    position: relative;
    padding: 100px 0 0;
    margin-bottom: 113px;
}
    .bg-section {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
        .bg-section:before,
        .bg-section:after {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

    .bg-section.bg-about-a {
        width: 587px;
        width: 36.688%;
        height: 403px;
    }
    .bg-section.bg-about-b {
        /*width: 915px;*/
        width: 57.188%;
        top: 100px;
        left: initial;
    }
        .bg-section.bg-about-b:before {
            content: '';
            background: #fff;
            opacity: 0.85;
        }
    .about-inner {
        position: relative;
        padding: 0 4.563% 0 0;
    }
        .about-img {
            width: 714px;
            width: 46.759%;
            position: relative;
            padding: 62px 0 0;
            align-self: flex-end;
            z-index: 2;
        }
            .bg-section.accent-about {
                right: 28px;
                right: 3.922%;
                left: 100px;
            }
            .about-img canvas {
                display: block;
                width: 100%;
                background-position: center;
                background-size: cover;
            }
        .about-text {
            width: 53.241%;
            position: relative;
            padding: 30px 38px 131px;
            padding-bottom: 8.579%;
            margin-bottom: 83px;
        }
            .about-text:before {
                content: '';
                position: absolute;
                top: 0;
                left: -28px;
                right: 0;
                bottom: 0;
                background: #fff;
                z-index: -1;
            }
            .section-title {
                font-family: var(--font-title);
                font-size: 100px;
                line-height: 1;
                color: var(--primary);
                text-transform: uppercase;
            }
                .section-title span {
                    display: block;
                    font-family: var(--font-default);
                    color: var(--secondary);
                    letter-spacing: -0.06em;
                    line-height: 1;
                    font-size: 16px;
                    font-weight: 700;
                    margin-bottom: 9px;
                }
            .about-text .section-title {
                margin-bottom: 37px;
                font-size: 90px;
            }
                .about-text .section-title span {
                    margin-bottom: 16px;
                }
            .about-text p {
                letter-spacing: -0.04em;
                line-height: 1.6;
                margin: 24px 0;
            }
            .about-btn {
                margin: 73px 0 0;
            }
                .about-btn a.btn-a {
                    margin-right: 27px;
                }
                a.btn-a,
                .btn-a {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                    padding: 11px 10px 9px;
                    font-size: 21px;
                    letter-spacing: 0.1em;
                    font-family: var(--font-title);
                    text-transform: uppercase;
                    min-width: 180px;
                    min-height: 53px;
                    position: relative;
                    z-index: 1;
                    transition: all var(--default-transition);
                    color: #fff;
                    background: rgb(26,139,203);
                    background: -moz-linear-gradient(90deg, rgba(26,139,203,1) 48%, rgba(93,188,243,1) 100%);
                    background: -webkit-linear-gradient(90deg, rgba(26,139,203,1) 48%, rgba(93,188,243,1) 100%);
                    background: linear-gradient(90deg, rgba(26,139,203,1) 48%, rgba(93,188,243,1) 100%);
                    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a8bcb",endColorstr="#5dbcf3",GradientType=1);
                }
                    .btn-a:before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        transition: all var(--default-transition);
                        z-index: -1;
                    }
                    .btn-a:before {
                        background: rgb(26,139,203);
                        background: -moz-linear-gradient(90deg, rgba(26,139,203,1) 30%, rgba(227,160,45,1) 100%);
                        background: -webkit-linear-gradient(90deg, rgba(26,139,203,1) 30%, rgba(227,160,45,1) 100%);
                        background: linear-gradient(90deg, rgba(26,139,203,1) 30%, rgba(227,160,45,1) 100%);
                        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a8bcb",endColorstr="#e3a02d",GradientType=1);
                    }

                    a.btn-a:hover,
                    .btn-a:hover {
                        letter-spacing: -0.04em;
                    }
                        .btn-a:hover:before {
                            opacity: 0;
                        }


/*services*/
#hp-services {
    position: relative;
    padding: 71px 0 0;
    margin-bottom: 115px;
}
    .bg-section.bg-services-a {
        width: 678px;
        width: 42.375%;
        height: 505px;
        max-height: 100%;
    }
    .bg-section.bg-services-b {
        width: 922px;
        width: 57.625%;
        height: 434px;
        max-height: 100%;
        left: initial;
        top: 71px;
    }
        .bg-section.bg-services-b:before {
            content: '';
            background: #fff;
            opacity: 0.85;
        }
    .services-inner {

    }
        .services-title {
            width: 576px;
            margin-left: 102px;
            width: 36%;
            margin-left: 6.375%;
            position: relative;
            padding: 58px 0 58px;
        }
            .services-title:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: -199px;
                z-index: -1;
                background: #fff;
                display: block;
                box-shadow: 0px 3px 51px 0px rgba(0, 0, 0, 0.07);
            }

        .services-list {
            padding: 0 7px;
        }
            .service-item {
                width: 25%;
                padding: 0 5px;
            }
                .service-item a {
                    display: block;
                    position: relative;
                    border-bottom: 15px solid var(--secondary);
                    overflow: hidden;
                    transition: border var(--default-transition);
                }
                    .service-img {
                        position: relative;
                        overflow: hidden;
                    }
                        .service-img canvas {
                            display: block;
                            width: 100%;
                            background-position: center;
                            background-size: cover;
                            transition: all var(--default-transition);
                        }
                        .service-img:before {
                            content: '';
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            right: 0;
                            top: 50%;
                            opacity: 0.8;
                            z-index: 1;
                            background: rgb(0,0,0);
                            background: -moz-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
                            background: -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
                            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
                            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
                            transition: all var(--default-transition);
                        }
                        /*.service-item a:hover .service-img:before {
                            opacity: 0.8;
                        }*/
                    .services-details {
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        right: 0;
                        z-index: 2;
                        color: #fff;
                        padding: 0 30px 20px;
                        transform: translateY( calc(100% - 56px) );
                        transition: transform var(--default-transition);
                    }
                        .services-details h2 {
                            font-family: var(--font-title);
                            font-size: 45px;
                            letter-spacing: -0.04em;
                            line-height: 1;
                            text-transform: uppercase;
                            margin-bottom: 11px;
                        }
                        .services-details p {
                            font-size: 15px;
                            letter-spacing: -0.04em;
                            line-height: 1.6;
                            opacity: 0;
                            transition: opacity var(--default-transition);
                        }

                .service-item a:hover {
                    border-color: var(--accent);
                }
                    .service-item a:hover .service-img canvas {
                        transform: scale(1.09);
                    }
                    .service-item a:hover .services-details {
                        transform: translateY( 0 );
                    }
                        .service-item a:hover .services-details p {
                            opacity: 1;
                        }


/*team*/
#hp-team {
    position: relative;
    overflow: hidden;
    padding: 0 0 80px;
}
    #hp-team .custom-container {
        padding-right: 0;
    }
    .team-inner {

    }
        .team-text {
            width: 345px;
            width: 23%;
        }
            .team-text .section-title {
                margin-bottom: 33px;
            }
            .team-text p {
                font-size: 15px;
                letter-spacing: -0.04em;
                line-height: 1.6;
                margin-bottom: 73px;
            }
            .team-text a.btn-a {

            }
        .team-list {
            font-size: 0;
            width: 77%;
            position: relative;
        }
            .team-list-slick {
                margin-right: -8px;
                margin-left: 90px;
            }
            .team-item {
                display: inline-block;
                width: 33.33%;
                vertical-align: top;
                padding: 0 8px;
            }
            .team-list-slick:not(.slick-initialized) .team-item ~ .team-item {
                display: none;
            }
                .team-item a {
                    display: block;
                    position: relative;
                    overflow: hidden;
                }
                    .team-img {
                        position: relative;
                    }
                        .team-img:before,
                        .team-img:after {
                            content: '';
                            position: absolute;
                            top: 50%;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            z-index: 2;
                            transition: all var(--default-transition);
                        }
                        .team-img:before {
                            opacity: 0.3;
                            background: rgb(0,0,0);
                            background: -moz-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
                            background: -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
                            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
                            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
                        }
                        .team-img:after {
                            opacity: 0;
                            background: rgb(24,133,197);
                            background: -moz-linear-gradient(0deg, rgba(24,133,197,1) 0%, rgba(24,133,197,0) 100%);
                            background: -webkit-linear-gradient(0deg, rgba(24,133,197,1) 0%, rgba(24,133,197,0) 100%);
                            background: linear-gradient(0deg, rgba(24,133,197,1) 0%, rgba(24,133,197,0) 100%);
                            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1885c5",endColorstr="#1885c5",GradientType=1);
                        }
                        .team-img canvas {
                            display: block;
                            width: 100%;
                            background-position: center;
                            background-size: cover;
                            background-color: #000;
                            transform-origin: center top;
                            transition: all var(--default-transition);
                        }
                    .team-details {
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        right: 0;
                        z-index: 2;
                        text-align: right;
                        color: #fff;
                        line-height: 1;
                        padding: 0 20px 15px;
                        transform: translateY(20px);
                        transition: all var(--default-transition);
                    }
                        .team-details h3 {
                            font-family: var(--font-title);
                            font-size: 36px;
                            letter-spacing: -0.04em;
                            text-transform: uppercase;
                            margin-bottom: -2px;
                        }   
                        .team-details span {
                            font-size: 17px;
                            min-height: 17px;
                            display: block;
                            font-weight: 600;
                            letter-spacing: -0.04em;
                            opacity: 0;
                            transition: opacity var(--default-transition);
                        }

                    .team-item a:hover .team-img:before {
                        opacity: 0;
                    }
                    .team-item a:hover .team-img:after {
                        opacity: 0.5;
                        top: 60%;
                    }
                    .team-item a:hover .team-img canvas {
                        transform: scale(1.15);
                    }
                    .team-item a:hover .team-details {
                        transform: translateY(0);
                    }
                        .team-item a:hover .team-details span {
                            opacity: 1;
                        }

            .custom-slider-button {
                position: absolute;
                width: 64px;
                height: 64px;
                background: #fff;
                border: none;
                box-shadow: 0px 3px 51px 0px rgba(0, 0, 0, 0.07);
                font-size: 26px;
                color: var(--secondary);
                z-index: 2;
                transition: color var(--default-transition);
            }
                .custom-slider-button:before {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    top: 0;
                    z-index: -1;
                    opacity: 0;
                    transition: all var(--default-transition);
                    background: rgb(93,188,243);
                    background: -moz-linear-gradient(-90deg, rgba(93,188,243,1) 0%, rgba(26,139,203,1) 100%);
                    background: -webkit-linear-gradient(-90deg, rgba(93,188,243,1) 0%, rgba(26,139,203,1) 100%);
                    background: linear-gradient(-90deg, rgba(93,188,243,1) 0%, rgba(26,139,203,1) 100%);
                    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5dbcf3",endColorstr="#1a8bcb",GradientType=1);
                }
                .custom-slider-button:hover {
                    color: #fff;
                }
                    .custom-slider-button:hover:before {
                        opacity: 1;
                    }

            .team-list .custom-slider-button {
                bottom: 0;
            }
                .team-list .custom-slider-button.slider-prev {
                    left: 0;
                }
                .team-list .custom-slider-button.slider-next {
                    left: 67px;
                }


/*video*/
#hp-videos {
    position: relative;
    padding: 45px 0 96px;
    margin-bottom: 109px;
}
    .bg-section.bg-video {
        top: initial;
        height: 400px;
        max-height: 48.4%;
    }
        .bg-section.bg-video:before {
            content: '';
            background: #fff;
            opacity: 0.85;
        }
    #hp-videos .section-title {
        text-align: center;
        margin-bottom: 54px;
    }
    .video-list-slick:not(.slick-initialized),
    .video-list-slick.slick-initialized .slick-list {
        padding: 42px 0!important;
    }
    .video-list {
        position: relative;
    }
        .video-list-slick {
            font-size: 0;
            margin: 0 -25px;
        }
            .video-list:not(.slick-initialized) .video-item ~ .video-item {
                display: none;
            }
            .video-item {
                display: inline-block;
                vertical-align: top;
                width: 33.33%;
                padding: 0 25px;
            }
                .video-item a {
                    display: block;
                    position: relative;
                }
                    .video-img {
                        position: relative;
                    }
                        .video-img canvas {
                            display: block;
                            width: 100%;
                        }
                        .video-img-src {
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            background-position: center;
                            background-size: cover;
                            transition: all var(--default-transition);
                        }
                            .video-img-src:before,
                            .video-img-src:after {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                margin: auto;
                                transition: all var(--default-transition);
                            }
                            .video-img-src:before {
                                background: #000;
                                opacity: 0.6;
                            }
                            .video-img-src:after {
                                width: 53px;
                                height: 37px;
                                background: url(images/icon-youtube.png) center/contain no-repeat;
                            }

                        /* slide when not active/center*/
                        .video-list .slick-slide .video-img-src,
                        .video-list .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] .video-img-src  {
                            top: 0;
                            bottom: 0;
                            left: 0;
                            right: 0;
                            z-index: 1;
                        }
                            .video-list .slick-slide .video-img-src:before,
                            .video-list .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] .video-img-src:before {
                                opacity: 0.6;
                            }
                            .video-list .slick-slide .video-img-src:after,
                            .video-list .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] .video-img-src:after {
                                width: 53px;
                                height: 37px;
                            }

                        /* slide when active/center */
                        .video-list .slick-current .video-img-src,
                        .video-list .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] .video-img-src {
                            top: -42px;
                            bottom: -42px;
                            left: -90px;
                            right: -90px;
                            z-index: 2;
                        }
                            .video-list .slick-current .video-img-src:before,
                            .video-list .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] .video-img-src:before {
                                opacity: 0.2;
                            }
                            .video-list .slick-current .video-img-src:after,
                            .video-list .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] .video-img-src:after {
                                width: 71px;
                                height: 49px;
                            }

            .video-list .custom-slider-button {
                top: 0;
                bottom: 0;
                margin: auto;
            }
            .video-list .custom-slider-button.slider-prev {
                left: -32px;
            }
            .video-list .custom-slider-button.slider-next {
                right: -32px;
            }
        .video-btn {
            margin: 47px 0 0;
        }


/*testimonials*/
#hp-testimonials {
    position: relative;
    overflow: hidden;
    padding: 0 0 121px;
}
    .bg-section.bg-testi-a {
        /*width: 724px;*/
        width: 45.25%;
        height: 499px;
    }
    .bg-section.bg-testi-b {
        top: 0;
        /*width: 274px;*/
        width: calc( (100vw - 1050px) / 2);
        bottom: 0;
        left: 100%;
    }
        .bg-section.bg-testi-b:before {
            content: '';
            background: #fff;
            opacity: 0.8;
        }
    .testi-title {
        width: 54.75%;
        margin-left: auto;
        margin-bottom: 73px;
        padding: 0 5%;
    }
        .testi-title > div {
            max-width: 590px;
        }
        .testi-title .section-title {
            margin-bottom: 32px;
        }
        .testi-title p {
            letter-spacing: -0.04em;
            line-height: 1.6;
        }
        .testi-item p br:not(:first-of-type) {
            display: none;
        }

    .testi-list {
        position: relative;
        background: #fff;
        max-width: 1051px;
        margin: 0 auto;
        padding: 0 0 68px;
        box-shadow: 0px 3px 51px 0px rgba(0, 0, 0, 0.07);
    }
        .testi-list .custom-slider-button {
            top: 0;
            bottom: 0;
            margin: auto;
        }
        .testi-list .custom-slider-button.slider-prev {
            left: -32px;
        }
        .testi-list .custom-slider-button.slider-next {
            right: -32px;
        }
        .testi-list-slick {
            font-size: 0;
            overflow: hidden;
            margin: 0 5%;
        }
            .testi-list-slick:not(.slick-initialized) .testi-item ~ .testi-item {
                display: none;
            }
            .testi-item {
                position: relative;
                width: 50%;
                display: inline-block;
                vertical-align: top;
                margin: 74px 0 42px;
                padding: 0 40px;
            }
                .testi-item:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    width: 1px;
                    background: rgba(0,0,0,0.1);;
                }
                .slick-active + .slick-active .testi-item:before {
                    display: none;
                }
                .testi-item p {
                    font-size: 15px;
                    letter-spacing: -0.04em;
                    line-height: 1.6;
                    margin-bottom: 32px;
                }
                .testi-item span {
                    display: block;
                    font-family: var(--font-title);
                    font-size: 36px;
                    line-height: 1;
                    color: var(--secondary);
                    text-transform: uppercase;
                }

                .home .aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content {
                    width: 50%;
                    min-height: auto;
                    padding: 80px;
                }
                .home .aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content .star_rating_display {
                    text-align: center;
                    padding-bottom: 30px
                }

                .home .aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content .aios-testimonials-popup-content {
                    font-size: 20px;
                    line-height: 1.7;
                    text-align: center;
                    color: #000
                }

                .home .aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content h2 {
                    padding-top: 30px;
                    text-align: center;
                    font-size: 20px;
                    font-weight: bolder;
                    color: #000
                }

                .home .aios-popup-body .aiosp-close {
                    color: #000
                }
                .home .aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content .star_rating_display i {
                    color: var(--secondary);
                    font-size: 25px;
                    margin: 0 1px
                }

/*featured listings*/
#hp-featured-listings {
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}
    #hp-featured-listings .custom-container {
        padding-right: 0;
    }
    .fl-inner {
        margin-left: -9px;
        padding-bottom: 90px;
        position: relative;
    }
        .bg-section.bg-fl {
            /*width: 931px;*/
            width: 61.7%;
            height: 244px;
            top: initial;
        }
            .bg-section.bg-fl:before {
                content: '';
                background: #fff;
                opacity: 0.85;
            }
        .fl-title {
            /*width: 430px;*/
            width: 28.562%;
            padding-right: 4%;
            padding-bottom: 5%;
            align-self: flex-start;
            background: #fff;
        }
            .fl-title .section-title {
                margin-bottom: 32px;
            }
            .fl-title p {
                letter-spacing: -0.04em;
                line-height: 1.6;
                margin-bottom: 73px;
            }
            .fl-title a.btn-a {

            }

        .fl-list {
            width: 71.438%;
            position: relative;
            padding-bottom: 32px;
        }
            .fl-list-slick {
                font-size: 0;
                margin: 0 -5px;
            }
                .fl-list-slick:not(.slick-initialized) .fl-item ~ .fl-item {
                    display: none;
                }
                .fl-item {
                    display: inline-block;
                    vertical-align: top;
                    width: 50%;
                    padding: 0 5px;
                }
                    .fl-item a {
                        position: relative;
                        display: block;
                        overflow: hidden;
                    }
                        .fl-img {
                            position: relative;
                            background-color: #000;
                        }
                            .fl-img canvas {
                                display: block;
                                width: 100%;
                                background-size: cover;
                                background-position: center;
                                transition: all var(--default-transition);
                                min-height: 350px;
                            }
                            .fl-img:before,
                            .fl-img:after {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                z-index: 1;
                                transition: all var(--default-transition);
                            }
                            .fl-img:before {
                                top: 50%;
                                opacity: 0.3;
                                background: rgb(0,0,0);
                                background: -moz-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
                                background: -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
                                background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
                                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
                            }
                            .fl-img:after {
                                opacity: 0;
                                background: rgb(24,133,197);
                                background: -moz-linear-gradient(0deg, rgba(24,133,197,1) 0%, rgba(24,133,197,0) 100%);
                                background: -webkit-linear-gradient(0deg, rgba(24,133,197,1) 0%, rgba(24,133,197,0) 100%);
                                background: linear-gradient(0deg, rgba(24,133,197,1) 0%, rgba(24,133,197,0) 100%);
                                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1885c5",endColorstr="#1885c5",GradientType=1);
                                top: 20%;
                            }

                            .fl-item a:hover .fl-img canvas {
                                transform: scale(1.15);
                            }
                            .fl-item a:hover .fl-img canvas,
                            .fl-item a:hover .fl-img:after {
                                opacity: 0.9;
                            }
                            .fl-item a:hover .fl-img:before {
                                opacity: 0;
                            }
                            .fl-item a:hover .fl-details {
                                transform: translateY(0);
                            }
                                .fl-item a:hover .fl-price,
                                .fl-item a:hover .fl-amenities,
                                .fl-item a:hover .btn-a {
                                    opacity: 1;
                                }
                        .fl-details {
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            right: 0;
                            padding: 0 50px 52px;
                            /*padding: 0 9.365% 9.74%;*/
                            color: #fff;
                            z-index: 3;
                            transform: translateY(148px);
                            transition: transform var(--default-transition);
                        }
                            .fl-price {
                                font-size: 70px;
                                font-family: var(--font-title);
                                letter-spacing: -0.04em;
                                line-height: 1;
                                margin-bottom: 13px;
                                opacity: 0;
                                transition: opacity var(--default-transition);
                            }
                            .fl-address {
                                font-size: 40px;
                                letter-spacing: -0.04em;
                                font-family: var(--font-title);
                                text-transform: uppercase;
                                line-height: 1;
                                margin-bottom: 19px;
                            }
                                .fl-address span {
                                    display: block;
                                    font-family: var(--font-default);
                                    font-size: 18px;
                                    font-weight: 700;
                                    letter-spacing: -0.06em;
                                    margin-top: 4px;
                                }

                            .fl-amenities {
                                font-weight: 600;
                                font-size: 16px;
                                letter-spacing: -0.06em;
                                line-height: 1;
                                text-transform: uppercase;
                                margin-bottom: 40px;
                                opacity: 0;
                                transition: opacity var(--default-transition);
                            }
                            .fl-item .btn-a {
                                letter-spacing: -0.04em;
                                opacity: 0;
                            }
                                .fl-item .btn-a:before {
                                    opacity: 0;
                                }

        .fl-list .custom-slider-button {
            bottom: 0;
        }
            .fl-list .custom-slider-button.slider-prev {
                left: -100px;
            }
            .fl-list .custom-slider-button.slider-next {
                left: -34px;
            }



/*git*/
#hp-git {
    position: relative;
    padding: 75px 0;
}
    .bg-section.bg-git {

    }
        .bg-section.bg-git:before {
            content: '';
            background: #000;
            opacity: 0.5;
        }
    .hp-git-inner {
        background: rgba(0,0,0,0.65);
        padding: 65px 15px;
    }
    #hp-git .section-title {
        text-align: center;
        color: #fff;
        margin-bottom: 16px;
    }
        #hp-git .section-title span {
            color: #fff;
        }
    #hp-git p {
        text-align: center;
        color: #fff;
        letter-spacing: -0.04em;
        line-height: 1.6;
    }

    .git-form {
        max-width: 896px;
        margin: 39px auto 0;
        font-size: 0;
        position: relative;
    }
        .git-form form {
            margin: 0 -5px;
        }
        .git-field.field-6 {
            width: 50%;
        }
        .git-field.field-12 {
            width: 100%;
        }
        .git-field {
            display: inline-block;
            vertical-align: top;
            padding: 0 5px;
            margin-bottom: 23px;
        }
            .git-field .wpcf7-form-control-wrap {
                display: block;
            }
            .git-field input,
            .git-field textarea {
                width: 100%;
                height: 44px;
                background: transparent;
                border: none;
                border-bottom: 1px solid #fff;
                font-size: 16px;
                letter-spacing: -0.06em;
                line-height: 1.5;
                color: #fff;
                padding: 0;
            }
            .git-field textarea {
                padding-top: 10px;
                height: 84px;
                resize: none;
            }
            .git-btn {
                position: relative;
                display: flex;
                width: 180px;
                margin: 36px auto 0;
            }
                .git-btn input {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    opacity: 0;
                }
                .git-btn .ajax-loader,
                .git-btn .wpcf7-spinner {
                    position: absolute;
                    bottom: -40px;
                    left: 0;
                    right: 0;
                    margin: auto;
                }

        .git-form .wpcf7 form .wpcf7-response-output {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 14px;
            line-height: 1.2;
            color: #fff;
            margin: 20px 5px 0;
        }

        .use-floating-validation-tip .wpcf7-not-valid-tip {
            font-size: 12px;
            position: absolute;
            width: auto;
            top: 50%;
            transform: translateY(-50%);
        }


/*footer*/
footer.footer {
    padding: 120px 0 51px;
    position: relative;
}
    .footer-inner {

    }
        .footer-logo {
            width: 430px;
            text-align: center;
            width: 37.72%;
            font-size: 0;
        }
            .footer-logo a {
                display: inline-block;
            }
                .footer-logo a img {
                    display: block;
                    width: 100%;
                    height: auto;
                }
        .footer-contact {
            /*width: 420px;*/
            width: 36.843%;
            margin-left: auto;
        }
        .footer-nav {
            /*width: 191px;*/
            width: 16.76%;       
        }
            .footer-contact h2,
            .footer-nav h2 {
                font-family: var(--font-title);
                font-size: 53px;
                line-height: 1;
                color: #000;
                text-transform: uppercase;
                margin-bottom: 10px;
            }
            .footer-contact ul,
            .footer-nav ul {

            }
                .footer-contact ul li,
                .footer-nav ul li {

                }
                    .footer-contact ul li a,
                    .footer-nav ul li a {
                        font-size: 15px;
                        line-height: 1.6;
                        letter-spacing: 0.02em;
                        color: #000;
                        transition: color var(--default-transition);
                    }
                        .footer-contact ul li a:hover,
                        .footer-nav ul li a:hover {
                            color: var(--secondary);
                        }
                        .footer-contact ul li span {
                            color: #6f6f6f;
                        }

                .footer-contact ul li.contact-smi {
                    display: flex;
                    flex-flow: row wrap;
                    margin-top: 53px;
                }
                    .footer-contact ul li.contact-smi a {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 35px;
                        height: 35px;
                        border-radius: 50%;
                        margin-right: 7px;
                        background: var(--secondary);
                        transition: all var(--default-transition);
                        color: #fff;
                        font-size: 19px;
                    }
                        .footer-contact ul li.contact-smi a:hover {
                            background: var(--accent);
                        }
                    .footer-contact ul li.contact-smi a:last-child {
                        margin-right: 0;
                    }

    .footer-copyright {
        text-align: center;
        border-top: 1px solid rgba(0,0,0,0.1);
        margin: 62px auto 0;
        padding: 53px 0 0;
        max-width: 1062px;
    }
        .footer-copyright p {
            font-size: 13px;
            line-height: 1.846153;
            letter-spacing: 0.005em;
            color: #909090;
        }
            .footer-copyright p a {
                transition: color var(--default-transition);
            }
            .footer-copyright p a:hover {
                color: var(--secondary)!important;
            }
        .footer-copyright p:first-child {
            margin-bottom: 28px;
        }
            .footer-copyright p span,
            .footer-copyright p a[style] {
                color: #000;
            }
        .footer-icons {
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #acacac;
            font-size: 27px;
            margin: 12px 0 0;
        }
            .footer-icons i.ai-font-eho {
                font-size: 22px;
                margin-right: 10px;
            }



/*popup form*/
#hp-vip-popup {
    width: 970px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    position: relative;
    max-width: calc(100% - 140px);
}
    #hp-vip-popup .aiosp-close {
        width: 73px;
        height: 73px;
        left: 100%;
        right: initial;
        background: var(--secondary);
        border: none;
        font-size: 0;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        opacity: 1;
        top: 0;
        padding: 0;
    }
        #hp-vip-popup .aiosp-close:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: 0;
            z-index: -1;
            opacity: 0;
            transition: all var(--default-transition);
            background: rgb(93,188,243);
            background: -moz-linear-gradient(-90deg, rgba(93,188,243,1) 0%, rgba(26,139,203,1) 100%);
            background: -webkit-linear-gradient(-90deg, rgba(93,188,243,1) 0%, rgba(26,139,203,1) 100%);
            background: linear-gradient(-90deg, rgba(93,188,243,1) 0%, rgba(26,139,203,1) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5dbcf3",endColorstr="#1a8bcb",GradientType=1);
        }
        #hp-vip-popup .aiosp-close:hover:before {
            opacity: 1;
        }
        #hp-vip-popup .aiosp-close:after {
            content: "\b0247";
            position: relative;
            font-family: agentimage!important;
            speak: none;
            font-style: normal;
            font-weight: 400;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 34px;
        }
    .vip-popup-img {
        width: 50%;
        background-position: center;
        background-size: cover;
    }
    .vip-popup-form {
        width: 50%;
        padding: 55px 70px 64px;
    }
        .vip-popup-form .section-title {
            margin-bottom: 20px;
        }
        .vip-popup-form p {
            font-size: 15px;
            letter-spacing: -0.04em;
            line-height: 1.6;
            margin-bottom: 16px;
        }
        .vip-popup-form form {
            margin: 0 -5px;
            position: relative;
        }
        .vip-popup-field.field-6 {
            width: 50%;
        }
        .vip-popup-field.field-12 {
            width: 100%;
        }
        .vip-popup-field {
            display: inline-block;
            vertical-align: top;
            padding: 0 5px;
            margin-bottom: 23px;
        }
            .vip-popup-field .wpcf7-form-control-wrap {
                display: block;
            }
            .vip-popup-field input,
            .vip-popup-field textarea {
                width: 100%;
                height: 44px;
                background: transparent;
                border: none;
                border-bottom: 1px solid #000;
                font-size: 16px;
                letter-spacing: -0.06em;
                line-height: 1.5;
                color: #000;
                padding: 0;
            }
            .vip-popup-field textarea {
                padding-top: 10px;
                height: 84px;
                resize: none;
            }
            .vip-popup-btn {
                position: relative;
                display: flex;
                width: 180px;
                margin: 44px 5px 0;
            }
                .vip-popup-btn input {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    opacity: 0;
                }
                .vip-popup-btn .ajax-loader,
                .vip-popup-btn .wpcf7-spinner {
                    position: absolute;
                    bottom: -40px;
                    left: 0;
                    right: 0;
                    margin: auto;
                }

        .vip-popup-form .wpcf7 form .wpcf7-response-output {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 11px;
            line-height: 1.2;
            color: #000;
            margin: 10px 5px 0;
        }

/*******************************************************
 *
 * 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;
        opacity: 0.65;
        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);
    }
    .ip-banner::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        opacity: 0.16;
        background: #000;
    }
    .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-family: var(--font-title);
    font-size: 100px;
    line-height: 1;
    color: var(--primary);
    text-transform: uppercase;
}

/* 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 {
    display:none !important;
}

/* addtoany */
.page-id-13 .addtoany_content {
    margin: 38px 122px 16px;
}

.page-id-13 .addtoany_list {
    margin-left: -4px;
}

#content .service-item {
    width: 50%;
    padding: 5px;
}

#content .services-details h2 {
    font-size: 45px;
    margin: 0 0 11px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

#content .services-details p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

#content .aios-roadmaps-default-wrapper .aios-roadmaps-default-headings a {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


p#breadcrumbs, #content p#breadcrumbs {
    margin: 20px 0;
    font-size: 13px;
    color: #c3c3c3;
    letter-spacing: -0.06em;
    line-height: 1.7;
    text-transform: uppercase;
}
    p#breadcrumbs span.breadcrumb_last {
        font-weight: 700;
        color: var(--secondary);
    }


body.page-id-13 .aios-contact-form-inner {
    /* display: none; */
    padding: 0;
}

body.page-id-13 .aios-contact-main {
    margin-top: 50px !important;
    margin-bottom: 0 !important;
}

body.page-id-13 .aios-contact-form {
    top: 20px;
}

#ip-element-contact #content #breadcrumbs,
#ip-element-contact #content .entry-title {
    width: 95%;
    max-width: 1340px;
    margin-left: 122px;
    margin-right: 122px;
}

/** Archive Default Layout (Archive Page) */
#content .archive-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

#content .archive-list .post {
    border-bottom: none;
    float: none;
}

#content .archive-list .archive-thumbnail,
#content .archive-list .archive-content {
    width: 100%;
}

#content .archive-list .archive-thumbnail a {
    display: block;
    outline: none;
}

#content .archive-list .archive-thumbnail canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#content .archive-list .article-long .archive-thumbnail {
    width: 60%;
}

#content .archive-list .article-long .archive-has-thumbnail {
    width: 37%;
    margin-left: 3%;
}

#content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
    margin-top: 0;
  font-size: 27px;
  transition: all 0.3s ease-in-out;
  line-height: 1.2;
}

#content .archive-list .article-long p {
    font-size: 22px;
}

#content .archive-more {
    border: 2px solid #000;
  color: #000;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  padding: 18px 45px;
  display: inline-block;
	 -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.back-to-link a.default_button {
	border: 2px solid #000;
	color: #000;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	padding: 18px 45px;
	display: inline-block;
	 -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#content .archive-more:hover,
.back-to-link a.default_button:hover {
	background: #002349;
  border: solid 2px #002349;
	color: #fff;
}

#content .archive-more:hover:after {
    width: 63px;
    opacity: 1;
}

#aios-testimonials .aios-testimonials-lists a {
	border-radius: 35px;
}

.post > .entry.entry-content > table {
    width: 100% !important;
}

/** End of Archive Default Layout (Archive Page) */


.ip-roadmaps-wrap {
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
}
.ip-roadmaps-list {
    margin: 0 -15px;
}
    .ip-roadmaps-btn {
        display: block;
        width: 33.33%;
        padding: 0 15px;
        margin: 0 0 15px;
    }
        .ip-roadmaps-btn a.btn-a {
            width: 100%;
        }

.page-id-123 #content .ai-contact-wrap span.form-note {
    display: block;
    font-size: 11px;
    line-height: 1.5;
    width: 48.7%;
    min-height: 36px;
    margin-top: -10px;
}

.page-id-123 #content .ai-contact-wrap span.form-note.unlisted {
    min-height: auto;
}

.page-id-123 #content .ai-contact-wrap span.form-note.is-right {
    margin-left: auto;
    margin-right: 0;
}

.page-id-123 #content .ai-contact-wrap span.form-note.is-repos {
    margin-top: -40px;
}

.page-id-123 #content .ai-contact-wrap input[type="file"] {
    font-family: Verdana;
    font-size: 11px;
}

.page-id-123 #content .ai-contact-wrap textarea {
    height: 50px;
}

#content i.ihf-fa {
    font-style: normal!important;
}
#content .ihf-eureka ul {
    list-style: none;
    margin: 0;
}
.ihf-eureka p {
    font-size: 15px;
    letter-spacing: -0.04em;
    line-height: 24px;
}

/*zoodealio*/
.page-id-148 h1.entry-title {
    /*display: none;*/
}
.page-id-148 #inner-page-wrapper {
    margin-bottom: 0;
}
.zoodealio-wrap {
    position: relative;
    margin: 0 calc( (1140px - 100vw)  / 2);
    padding: 100px 0;
}
    .zoodealio-wrap .section-title {
        color: #fff;
        margin-bottom: 40px;
    }
    .zoodealio-wrap .bg-section:before {
        content: '';
        display: block;
        background: #000;
        opacity: 0.6;
    }

.search-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.search-icon-image {
    position: absolute;
    display: inline-block;
    overflow: visible;
    width: 24px;
    opacity: 1;
    color: #a3b231;
    padding-right: 1rem;
    padding: 0!important;
    margin-right: 1em!important;
    filter: brightness(0) invert(1);
}

.search-input-custom {
    position: static;
    display: block;
    min-height: 62px;
    padding-left: 20px;
    float: none;
    border: 1px solid #000;
    border-radius: 8px;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    color: #333333;
    background-color: #ffffff;

    width: 100%;
    height: 44px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    font-size: 16px;
    letter-spacing: -0.06em;
    line-height: 1.5;
    color: #fff;
    padding: 0;
    border-radius: 0;
}
    .search-input-custom:focus {
        color: #fff;
    }
/*zoodealio end*/

/*homebot*/
.homebot-wrap {}

.homebot-img {
    width: 50%;
}

.homebot-img img {
    display: block;
    width: 100%;
    height: auto;
}

.homebot-text {
    width: 50%;
    padding: 5%;
}

#content .homebot-text p {
    margin-bottom: 20px;
}

#content .homebot-text p:last-of-type {
    margin-bottom: 0;
}

.homebot-text #homebot_homeowner {
    margin: 0 -20px;
}

/*homebot end*/

.postid-47 .aios-roadmaps-default-wrapper .aios-roadmaps-default-content img, .postid-47 .ip-roadmaps-list{
    display: none
}


.roadmap-video iframe {
    width: 100% !important;
    height: 355px;
}

.roadmap-video {
    float: right;
    padding-left: 5%;
    padding-bottom: 4%;
    display: block;
    width: 60%;
}
    .aios-roadmaps-default-wrapper .aios-roadmaps-default-content .roadmap-video img {
        width: 100%;
        float: none;
        padding: 0;
    }
    .aios-roadmaps-default-wrapper .aios-roadmaps-default-content .roadmap-video a {
        display: block;
        position: relative;
    }
    .aios-roadmaps-default-wrapper .aios-roadmaps-default-content .roadmap-video a:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transition: all var(--default-transition);
         width: 53px;
        height: 37px;
        background: url(images/icon-youtube.png) center/contain no-repeat;
    }

#content .archive-list .post:not(.article-long) {
    min-height: 700px;
}

/* Cash Offer */
.page-id-148 .cash-offer-top {
    margin: 0 0 50px;
}

.page-id-148 .cash-offer-top .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.post-page-contact .aios-contact-form {
    margin: 15px auto 0;
}

.page-id-13 .addtoany_content {
    padding: 15px 0;
}

.aios-custom-ihomefinder-results-template #content-full .entry-title {
    width: 100% !important;
    padding: 0 !important;
}

body #listings-results .listings-table .listings-table-body .listings-table-label {
    color: #fff;
}
.error404 .wpcf7 form .wpcf7-response-output {
    text-align: center;
    margin: 0;
}

.page-id-95 .services-list {
    margin: 0 -15px;
}

.page-id-123 .wpcf7 form .wpcf7-response-output {
    text-align: center;
    margin: 0;
}

.about-agents {
    margin: 30px 0;
}
    .about-agents span {
        display: block;
        text-align: center;
        font-family: var(--font-title);
        font-size: 40px;
        line-height: 1;
        color: var(--primary);
        text-transform: uppercase;
        margin-top: 15px;
        transition: color var(--default-transition);
    }
    .about-agents br {
        display: none;
    }
    .about-agents a:hover span {
        color: var(--secondary);
    }

body.ip-container #main-wrapper {
    z-index: initial;
}

.page-id-13 .aios-contact-form .ajax-loader{
    bottom: -45px!important;
}

.single-aios-agents .aiosp-ref-\#agents-popup-form .wpcf7-spinner {
    left: auto;
    top: auto;
    bottom: 0;
}

#aios-testimonials .ai-testimonials-pagination ul li.prevArrow {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
}

#aios-testimonials .ai-testimonials-pagination ul li.nextArrow {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
}

#aios-testimonials .ai-testimonials-pagination ul li.prevArrow + li {
    border-left: none;
}

#aios-testimonials .ai-testimonials-pagination ul li a.page-numbers.next,
#aios-testimonials .ai-testimonials-pagination ul li a.page-numbers.prev {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease-in-out;
    width: 46px;
    height: 44px;
    background: var(--aios-testimonials-primary);
    color: #fff;
}

#aios-testimonials .ai-testimonials-pagination ul li a.page-numbers.next:hover,
#aios-testimonials .ai-testimonials-pagination ul li a.page-numbers.prev:hover {
    background: var(--accent);
}

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

.aios-contact-form .aios-contact-field .wpcf7-spinner {
    position: absolute;
    top: 100%;
    right: -0.825em;
    margin: 0.5em 0 0;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */