/*
Theme Name: tdinkins-pending.com
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.0
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-family-default: 'Rubik', sans-serif;
    --font-family-title: 'Crimson Text', serif;
    --font-size-default: 15px;
    --font-size-title: 18px;
    --font-color-default: #fff;
    --font-color-title: #6c757d;
    
    /** Use for input, button, and any other element */
    --primary: #151414;
    --secondary: #8d8e8f;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}

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

/* Sub Menu */
#nav li {
    position:relative;
    display: inline-block;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: rgba(0,0,0,0.9) url("images/submenu-fixer.png");
    display: none;
    padding: 0;
    position: absolute;
    width:100%;
    min-width:180px;
}
#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
}
#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 var(--light);
    color: var(--font-color-default);
    text-decoration: none;
}
#nav .sub-menu .sub-menu {
    margin-left: 100%;
    top:0;
}
#nav li:hover > .sub-menu {
    display: block;
}
#nav .sub-menu li {
    position: relative;
}


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

/* Global */

body{
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    background: var(--primary);
    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; */
}

html.a-true {
    margin-top: 0!important
}

body::-webkit-scrollbar { width: 0; }

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;
        color: #000;
    }

.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;
    }

.custom-container {
    padding: 0 15px;
}

#main-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}
    #main-wrapper:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 23px;
        background: var(--primary);
        border-bottom: 2px solid #fff;
        z-index: 2;
    }

.section-title.is-center {
    text-align: center;
}
.section-title,
#content .section-title {
    line-height: 0.95;
    font-size: 75px;
    letter-spacing: 0.03em;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--font-family-title);                
}
    .section-title em,
    #content .section-title em {
        font-weight: 400;
        font-style: normal;
        letter-spacing: 0.25em;
        line-height: 1;
        color: #b5b5b5;
        font-size: 20px;
        font-family: var(--font-family-default);
        display: block;
        margin-bottom: 7px;
    }

/*SLIDE MENU : START*/
body.active_menu {
    overflow: hidden;
}
.active_menu #main-wrapper main,
.active_menu footer.footer-wrapper {
    -webkit-transform: translateX(70%);
    -ms-transform: translateX(70%);
    transform: translateX(70%);
}
#main-wrapper main, .active_menu .slide-menu-wrap, footer.footer-wrapper {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.slide-menu-wrap, #main-wrapper main, footer.footer-wrapper {
    -webkit-transition: transform 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    -moz-transition: transform 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    -o-transition: transform 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    transition: transform 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
}
.slide-menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1011;
    background-position: center;
    background-size: cover;
    padding: 180px 0 5% 199px;

    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}
    .slide-menu-wrap:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 23px;
        background: var(--primary);
        border-bottom: 2px solid #fff;
        z-index: 2;
    }
    .slide-menu-wrap:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #7c7c7c;
        opacity: 0.85;
        z-index: -1;

    }
    .slide-menu-inner {
        max-height: 100%;
    }
    .active_menu #slide_nav {
        opacity: 1;
        transform: translateY(0);
        transition-delay: .8s;
    }
    #slide_nav {
        transition: all .5s ease;
        opacity: 0;
        transform: translateY(20px);
        display: inline-block;
        padding-right: 30px;
    }
        #slide_nav > li {
            margin-bottom: 31px;
        }
            #slide_nav > li > a {
                font-weight: 500;
                font-size: 20px;
                letter-spacing: 0.05em;
                line-height: 1.2;
                color: #Fff;
                text-transform: uppercase;
                transition: color .3s ease;
            }
                #slide_nav > li > a:hover {
                    color: #b5b5b5;
                }
            #slide_nav li .sub-menu {
                display: none;
            }
                #slide_nav li .sub-menu li {
                    margin: 10px 0 0;
                }
                    #slide_nav li .sub-menu li a {
                        font-size: 16px;
                        letter-spacing: 0.05em;
                        line-height: 1.2;
                        color: #b5b5b5;
                        text-transform: uppercase;
                        transition: color .3s ease;
                    }
                    #slide_nav li .sub-menu li a:hover {
                        color: #fff;
                    }
/*SLIDE MENU : END*/

/*HEADER : START*/
header.header.animate-in,
header.header.active {
    position: fixed;
    background: var(--primary)
}
header.header.animate-in,
header.header.active.animate-out {
    transform: translateY(-250px);
}
header.header.active.animate-out {
    transition: all .6s ease;
    opacity: 0;
}
header.header.active {
    transform: translateY(0);
    transition: all .6s ease;
}
    .header.active .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
        .header.active .container:before,
        .header.active .container:after {
            display: none;
        }
        .header.active .menu-toggle {
            display: none;
        }
        .header.active .header-logo {
            position: relative;
            display: inline-block;
            width: 126px;
            padding: 14px 0;
        }
        .header.active .header-contact-info {
            padding: 0;
        }

header.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1011;
    opacity: 1;
    transition: opacity .1s ease;
}
    .header-logo {
        position: absolute;
        top: 0;
        left: 0;
        width: 320px;
        background-color: var(--primary);
        font-size: 0;
        padding: 0;
        text-align: center;
    }
            .header-logo a {
                display: block;
                width: 100%;
                margin: 0 auto;
                padding: 17px 0;
            }
            .header-logo a img {
                display: block;
                width: 100%;
                max-width: 200px;
                height: auto;
                margin: 0 auto;
            }

        .menu-toggle {
            position: absolute;
            top: 100%;
            left: 0;
            width: 112px;
            height: 85px;
            background: #434343 url(images/bg-menu-button.jpg) center/cover no-repeat;
            border: none;
            transition: opacity .3s ease;
        }
        .menu-toggle:hover {
            opacity: 0.7;
        }
            .menu-toggle span {
                width: 45px;
                height: 27px;
                display: block;
                position: relative;
                margin: auto;
            }
                .menu-toggle span em {
                    position: absolute;
                    height: 3px;
                    background-color: #fff;
                    left: 0;
                    transform: rotate(0);
                    -ms-transition: all 100ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
                    -webkit-transition: all 100ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
                    -moz-transition: all 100ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
                    transition: all 100ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
                }
                .menu-toggle span em:nth-child(1) {
                    top: 0;
                    width: 20px;
                    transform-origin: top left;
                }
                .menu-toggle span em:nth-child(2) {
                    top: 0;
                    bottom: 0;
                    margin: auto;
                    width: 100%;
                    transform-origin: left;
                }
                .menu-toggle span em:nth-child(3) {
                    bottom: 0;
                    width: 36px;
                    transform-origin: bottom left;
                }
                .active_menu button.menu-toggle span em:nth-child(1) {
                    width: 100%;
                    transform: rotate(45deg) translate(3px,-8px);
                }
                .active_menu button.menu-toggle span em:nth-child(2) {
                    width: 100%;
                    transform: scaleX(0);
                }
                .active_menu button.menu-toggle span em:nth-child(3) {
                    width: 100%;
                    transform: rotate(-45deg) translate(3px,8px);
                }

    .header-contact-info {
        position: relative;
        padding: 53px 0 0;
    }
        .header-contact-info span {
            letter-spacing: 0.025em;
            font-size: 15px;
        }
            .header-contact-info span a {
                transition: color .3s ease;
            }
        .header-contact-info span.contact-email {
            margin-right: 23px;
        }
            .header-contact-info span.contact-email i {
                font-size: 12px;
                margin-right: 10px;
            }
        .header-contact-info span.contact-phone {
            margin-right: 43px;
        }
            .header-contact-info span.contact-phone i {
                font-size: 13px;
                margin-right: 11px;
            }
        .header-contact-info span.contact-smi {
            font-size: 19px;
            padding-right: 18px;
            padding-left: 27px;
            border-left: 2px solid rgba(255,255,255,0.34);
            letter-spacing: 0;
        }
            .header-contact-info span.contact-smi a {
                margin-left: 19px;
            }
            .header-contact-info span.contact-smi a:first-child {
                margin-left: 0;
            }
        
/*HEADER : END*/

/*SLIDESHOW AND QS : START*/
#slideshow {
    position: relative;
}
    .hp-slideshow {
        position: relative;
    }
        .hp-slideshow:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 148px;
            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);
            opacity: 0.7;
            z-index: 1;
        }

    #slideshow .cycloneslider-template-responsive {
        background-position: center;
        background-size: cover;
    }

    .slide-contact {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 1.5%;
    }

        .slide-contact a {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f7c632;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            font-size: 22px;
            margin: 15px 0;
            color: #fff;
            transition: all .3s ease;
        }

        .slide-contact a:hover {
            background: #0d0d0d;
            color: #fff;
        }

    .hp-qs {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2 !important;
        background: rgba(22,22,22,0.9);
    }
        .hp-qs i {
            width: 113px;
            height: 113px;
            background: #434343 url(images/bg-qs-icon.jpg) center/cover no-repeat;
            font-size: 41px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .qs-fields {
            width: calc(100% - 113px);
            padding: 0 27px 4px 23px;
            font-size: 0;
        }
            .qs-field.qs-lg {
                /*width: 301px;*/
                width: 20.947%;
            }
            .qs-field.qs-xs {
                /*width: 150px;*/
                width: 10.509%;
            }
            .qs-field {
                display: inline-block;
                padding: 0 8px;
            }
                .qs-field button.btn.dropdown-toggle.bs-placeholder.btn-default,
                .qs-field button.btn.dropdown-toggle.btn-default {
                    border-radius: 0;
                }
                .qs-field .bootstrap-select.btn-group .dropdown-toggle .filter-option {
                    text-overflow: ellipsis;
                }
                .qs-field .bootstrap-select.btn-group .dropdown-menu.inner {
                    max-height: 200px !important;
                }
                .qs-field select {
                    width: 100%;
                    height: 34px;
                    border: none;
                    border-bottom: 1px solid rgba(255,255,255,0.3);
                    font-size: 13px;
                    letter-spacing: 0.15em;
                    color: #fff;
                    text-transform: uppercase;
                    background-color: transparent;
                    -webkit-appearance: none;
                    appearance: none;
                }
                    .qs-field select::-ms-expand {
                        display: none;
                    }

            .qs-btn {
                width: 26.508%;
                display: flex;
                justify-content: space-between;
                padding: 0 8px 0 10px;
            }
                .qs-btn input,
                .qs-btn a {
                    width: calc(50% - 5px);
                    height: 38px;
                    background-color: transparent;
                    border: 1px solid #fff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                    font-weight: 500;
                    font-size: 14px;
                    letter-spacing: 0.1em;
                    color: #fff;
                    text-transform: uppercase;
                    transition: background .3s ease, color .3s ease, border .3s ease;
                }
                    .qs-btn input:hover,
                    .qs-btn a:hover {
                        background-color: var(--secondary);
                        border-color: var(--secondary);
                        color: #fff;
                    }

/*SLIDESHOW AND QS : END*/

/*CALL TO ACTION : START*/
#call-to-action {
    position: relative;
    /* background: #fff; */
}
    .cta-list {
        position: relative;
        padding-left: 30px;
        background: rgba(13,13,13,0.95);
    }
        .cta-list:before {
            content: '';
            position: absolute;
            width: 114px;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(23,23,23,0.9);
            transform: skewX(-27deg);
            transform-origin: top right;
            display: block;
            pointer-events: none;
        }
        .cta {
            width: 25%;
            overflow: hidden;
            transform: skewX(-27deg);
            transform-origin: top right;
            position: relative;
            transition: background .3s ease;
        }
            .cta:nth-child(1) {
                padding-right: 2%;
            }
            .cta:nth-child(even) {
                background: rgba(23,23,23,0.9);
            }
            .cta:hover {
                /*background: var(--secondary);*/
                background: #E7BDC1;
            }
            .cta:nth-child(even):hover {
                background: #ffbbc1;
            }
            .cta a {
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                height: 156px;
            }
                .cta a span {
                    font-family: var(--font-family-title);
                    font-size: 24px;
                    letter-spacing: 0.03em;
                    line-height: 1;
                    color: #fff;
                    text-transform: uppercase;
                    transform: skewX(27deg);
                    position: relative;
                    z-index: 2;
                    transition: all .3s ease;
                    top: 0;
                    left: 0;
                }
                    .cta a span em {
                        display: block;
                        font-family: var(--font-family-default);
                        font-size: 18px;
                        letter-spacing: 0.16em;
                        line-height: 1;
                        font-style: normal!important;
                        margin-bottom: 8px;
                    }
                    .cta a:hover span {
                        top: 15px;
                        left: 7px;
                    }

                .cta a img {
                    position: absolute;
                    margin: 0;
                    max-width: 100%;
                    opacity: 0;
                    z-index: 1;
                    transition: all .3s ease;
                    transform: skewX(27deg) scale(0.95);
                }
                    .cta a:hover img {
                        opacity: 0.4;
                        transform: skewX(27deg) scale(1);
                    }
/*CALL TO ACTION : END*/

/*ABOUT : START*/
#about-tashia {
    position: relative;
    /*min-height: 912px;*/
    background-position: center;
    background-size: cover;
    z-index: 1;
    padding: 74px 0 136px;
}
    #about-tashia:before,
    #about-tashia:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
    }
    #about-tashia:before {
        right: 0;
        z-index: -1;
        background: #202020;
        opacity: 0.9;
    }
    #about-tashia:after {
        background: #c4c3c4 url(images/bg-accent.jpg) top right/1275px 851px no-repeat;
        width: 14px;
    }
    .at-box {
        position: relative;
        border: 2px solid;
        border-image-slice: 1;
        border-image-source: linear-gradient(to right, #fff, #8d8e8f);
        text-align: center;
        margin-left: 21px;
        margin-right: -21px;
        padding: 76px 0 79px;
        background: rgba(0,0,0,0.1);
    }
        .at-inner {
            max-width: 720px;
            margin: 0 auto;
        }
            .at-inner .section-title {
                margin-bottom: 24px;
            }


            .at-inner .section-title:after {
                content: '';
                position: relative;
                display: block;
                width: 38px;
                height: 43px;
                background: url(images/icon-key-white.png) center/contain no-repeat;
                margin: 23px auto 0;
                right: 21px;
            }
            .at-box p {
                font-weight: 300;
                letter-spacing: 0.05em;
                line-height: 1.9;
                margin: 0 0 28px;
            }
            .at-box p:last-of-type {
                margin-bottom: 23px;
            }

            .at-box .btn-a {
                margin: 0 auto;
            }

            .btn-a {
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                width: 225px;
                height: 52px;
                font-size: 15px;
                font-weight: 400;
                letter-spacing: 0.25em;
                line-height: 1;
                color: #fff!important;
                text-transform: uppercase;
                z-index: 1;
                background: transparent;
                border: none;
                position: relative;
            }
                .btn-a:before {
                    content: '';
                    z-index: -1;
                    background-color: #b5b5b5;
                    position: absolute;
                    height: 2px;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    transition: all .3s ease;
                }
                    .btn-a:hover:before {
                        height: 100%;
                    }

        .at-logo {
            position: absolute;
            width: 230px;
            height: 208px;
            padding: 0 16px;
            bottom: -34px;
            right: -31px;
            background: var(--secondary) url(images/bg-about-logo.jpg) center/cover no-repeat;
        }
            .at-logo img {
                display: block;
                width: 100%;
                height: auto;
            }

        .at-photo {
            position: absolute;
            bottom: -138px;
            left: -253px;
            width: 488px;
            z-index: 1;
        }
            .at-photo img {
                display: block;
                width: 100%;
                height: auto;
            }

/*ABOUT : END*/

/*TESTIMONIALS : START*/
#testimonials {
    position: relative;
    background-position: center top;
    background-size: cover;
    /*min-height: 801px;*/
    padding: 152px 0 136px;
}
    .testi-accent {
        position: absolute;
        top: 0;
        right: 0;
        /*width: 218px;
        height: 475px;*/
        width: 13.625%;
        height: 59.302%;
        pointer-events: none;
    }
        .testi-accent:before,
        .testi-accent:after {
            content: '';
            position: absolute;
            background: url(images/bg-accent.jpg) bottom right/1275px 851px no-repeat;
        }
        .testi-accent:before {
            left: 0;
            right: 0;
            height: 14px;
            background-position: right -475px;
        }
        .testi-accent:after {
            right: 0;
            height: 100%;
            width: 14px;
        }
    .testi-title {
        /*width: 462px;*/
        width: 34.478%;
    }
        .testi-title .section-title {
            margin-bottom: 72px;
        }
            .testi-title .section-title:before {
                content: '';
                position: relative;
                display: block;
                width: 43px;
                height: 33px;
                background: url(images/icon-qoute.png) center/contain no-repeat;
                margin-bottom: 23px;
            }
        .testi-controls {
            margin-bottom: 83px;
        }
            .testi-controls .custom-slick-arrow {
                margin-bottom: 7px;
            }
            .custom-slick-arrow {
                background: transparent;
                border: none;
                padding: 0;
                display: block;
                width: 131px;
                height: 30px;
            }
                .custom-slick-arrow span {
                    font-weight: 500;
                    font-size: 15px;
                    letter-spacing: 0.25em;
                    line-height: 1;
                    color: #fff;
                    display: inline-block;
                    vertical-align: middle;
                    text-transform: uppercase;
                }
                .custom-slick-arrow i.custom-arrow {
                    display: inline-block;
                    vertical-align: middle;
                    width: 61px;
                    height: 23px;
                    background: url(images/icon-arrow.png) center/cover no-repeat;
                    position: relative;
                }
                .custom-slick-arrow i.custom-arrow-left {
                    margin-right: 11px;
                }
                .custom-slick-arrow i.custom-arrow-right {
                    transform: rotateY(180deg);
                    margin-left: 8px;
                }
        .testi-title a.btn-a {

        }
    .testi-right {
        width: 65.522%;
        padding: 38px 0 0;
    }
        .testi-list {
            margin: 0 -21px;
            font-size: 0;
        }
            .testi-list .slick-list {
                margin-top: -67px;
                padding-top: 67px;
            }
            .testi-item {
                display: inline-block;
                vertical-align: top;
                width: 50%;
                padding: 0 21px;
            }
                .testi-item:nth-child(2) ~ .testi-item {
                    display: none;
                }
                .testi-item a {
                    display: block;
                    position: relative;
                    padding: 60px 37px 60px;
                    border-top: 2px solid rgba(255,255,255,0.5);
                    border-bottom: 2px solid rgba(255,255,255,0.5);
                    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.5);
                    text-align: center;
                    transition: background .3s ease;
                    pointer-events: none;
                }
                    .testi-item a:before {
                        content: '';
                        position: absolute;
                        width: 176px;
                        height: 201px;
                        background: url(images/icon-key.png) center/cover no-repeat;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        margin: auto;
                        opacity: 0;
                        transform: scale(0.95);
                        transition: all .3s ease;
                    }
                    .testi-item a:hover {
                        /*background-color: var(--secondary);*/
                        background-color: #E7BDC1;
                    }
                        .testi-item a:hover:before {
                            transform: scale(1);
                            opacity: 0.4;
                        }
                    .testi-img {
                        width: 227px;
                        max-width: 100%;
                        margin: -57px auto 45px;
                        position: relative;
                        overflow: hidden;
                        box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.5);
                        display: none;
                    }
                        .testi-img img {
                            display: block;
                            width: 100%;
                            height: 173px;
                            object-fit: cover;
                        }
                    .testi-item a p {
                        font-size: 14px;
                        letter-spacing: 0.03em;
                        line-height: 28px;
                        color: #fff;
                        position: relative;
                    }
                    .testi-name {
                        font-family: var(--font-family-title);
                        font-size: 22px;
                        letter-spacing: 0.05em;
                        text-transform: uppercase;
                        font-weight: 600;
                        color: #fff;
                        margin-top: 31px;
                        position: relative;
                    }
                    .testi-stars {
                        margin-top: 20px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 20px;
                        color: #f7c632;
                        transition: all .3s ease;
                    }
                        .testi-stars i {
                            margin: 0 3px;
                        }
                    .testi-item a:hover .testi-stars {
                        color: #Fff;
                    }
/*TESTIMONIALS : END*/

/*FEATURED PROPERTIES : START*/
#featured-properties {
    position: relative;
}
    .fp-details-wrap {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        background: rgba(0,0,0,0.6);
        padding: 47px 83px 61px;
        width: 688px;
        max-width: 100%;
    }
        .fp-details-wrap .section-title {
            margin-bottom: 32px;
        }
            .fp-details-wrap .section-title em {
                color: #fff;
            }
        .fp-state {
            font-size: 20px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .fp-address {
            font-size: 30px;
            line-height: 1.25;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }
        .fp-price {
            font-size: 20px;
            letter-spacing: 0.25em;
            margin-bottom: 28px;
        }

    .fp-img-list {
        position: relative;
        font-size: 0;
    }
        .fp-img {
            position: relative;
            overflow: hidden;
        }
            .fp-img canvas {
                display: block;
                width: 100%;
            }
            .fp-img img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .fp-img:before {
                content: '';
                position: absolute;
                top: 151px;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgb(0,0,0);
                background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
                opacity: 0.5;
                z-index: 1;
            }
/*FEATURED PROPERTIES : END*/

/*FEATURED AREAS : START*/
#featured-areas {
    /*min-height: 840px;*/
    background-position: center;
    background-size: cover;
    padding: 48px 0 46px;
    display: none;
}
    .farea-left {
        padding-top: 84px;
    }
        .farea-left .section-title {
            margin-bottom: 85px;
        }
        .farea-list {
            font-size: 0;
            margin-right: -52px;
        }
            .farea-list li {
                display: inline-block;
                width: 50%;
                margin-bottom: 39px;
            }
                .farea-list li a {
                    font-size: 18px;
                    letter-spacing: 0.05em;
                    line-height: 1.2;
                    color: #fff;
                    text-transform: uppercase;
                    transition: color .3s ease;
                }
                    .farea-list li a:hover {
                        color: var(--secondary);
                    }
        .farea-left .btn-a {
            margin-top: 37px;
        }
    .farea-right {

    }
        .farea-map {
            width: 587px;
            max-width: 100%;
            margin: 0 0 0 24px;
        }
            .farea-map img {
                display: block;
                width: 100%;
                height: auto;
            }
/*FEATURED AREAS : END*/

/*BLOGS : START*/
#blogs-and-articles {
    position: relative;
    /*min-height: 844px;*/
    background-position: center;
    background-size: cover;
    padding: 133px 0 132px;
    display: none;
}
    .ba-accent {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        /*width: 218px;*/
        width: 13.625%;
    }
        .ba-accent:before,
        .ba-accent:after {
            content: '';
            position: absolute;
            background: url(images/bg-accent.jpg) bottom right/1275px 851px no-repeat;
        }
        .ba-accent:before {
            left: 0;
            right: 0;
            height: 14px;
            bottom: 0;
            background-position: bottom center;
        }
        .ba-accent:after {
            left: 0;
            height: 100%;
            width: 14px;
            background-position: bottom center;
        }
    .ba-top {
        position: relative;
        margin-bottom: 63px;
    }
        .ba-top .section-title {

        }
        .ba-controls {
            margin-bottom: 18px;
        }
            .ba-controls .custom-slick-arrow {

            }
            em.ba-line {
                display: inline-block;
                width: 1px;
                height: 24px;
                background: #3a3a3a;
                margin: 0 20px;
            }
    .ba-list {
        margin: 0 -35px;
        font-size: 0;
    }
        .ba-item:nth-child(4) ~ .ba-item {
            display: none;
        }
        .ba-item {
            display: inline-block;
            vertical-align: top;
            width: 25%;
            padding: 0 35px;
        }
            .ba-item a {
                display: block;
                position: relative;
                text-align: center;
            }
                .ba-img {
                    position: relative;
                    border-radius: 20px;
                    padding: 4px;
                    overflow: hidden;
                    z-index: 1;
                }
                    .ba-img:before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        background: rgb(141,142,143);
                        background: -moz-linear-gradient(90deg, rgba(141,142,143,1) 0%, rgba(225,228,229,1) 50%, rgba(141,142,143,1) 100%);
                        background: -webkit-linear-gradient(90deg, rgba(141,142,143,1) 0%, rgba(225,228,229,1) 50%, rgba(141,142,143,1) 100%);
                        background: linear-gradient(90deg, rgba(141,142,143,1) 0%, rgba(225,228,229,1) 50%, rgba(141,142,143,1) 100%);
                        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8d8e8f",endColorstr="#8d8e8f",GradientType=1);
                        z-index: -1;
                    }
                    .ba-img canvas {
                        display: block;
                        width: 100%;
                    }
                    .ba-img img {
                        position: absolute;
                        display: block;
                        width: calc(100% - 8px);
                        height: calc(100% - 8px);
                        top: 0;
                        left: 0;
                        margin: 4px;
                        object-fit: cover;
                        border-radius: 20px;
                    }
                    .ba-category {
                        position: absolute;
                        bottom: 4px;
                        left: 4px;
                        right: 4px;
                        border-bottom-left-radius: 20px;
                        border-bottom-right-radius: 20px;
                        background: rgba(255,255,255,0.75);
                        font-size: 13px;
                        letter-spacing: 0.03em;
                        line-height: 1;
                        color: #000;
                        text-transform: uppercase;
                        padding: 9px 0 8px;
                    }
                .ba-title {
                    font-weight: 500;
                    font-size: 17px;
                    line-height: 22px;
                    letter-spacing: 0.03em;
                    color: #fff;
                    text-transform: uppercase;
                    padding: 0 15px;
                    margin: 21px 0 10px;
                }
                .ba-desc {
                    font-weight: 300;
                    font-size: 14px;
                    letter-spacing: 0.025em;
                    line-height: 20px;
                    color: #b5b5b5;
                    margin: 0 -5px;
                } 
/*BLOGS : END*/

/*SEND US A MESSAGE : START*/
#send-a-message {
    /*min-height: 822px;*/
    background-position: center;
    background-size: cover;
    z-index: 1;
    position: relative;
    padding: 136px 0 136px;
}
    #send-a-message:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        background: #202020;
        opacity: 0.9;
    }
    .git-box {
        border: 2px solid;
        border-image-slice: 1;
        border-image-source: linear-gradient(to right, #fff, #8d8e8f);
        padding: 76px 11.8% 79px;
    }
        .git-box .section-title {
            margin-bottom: 49px;
        }
        .git-form {
            font-size: 0;
            position: relative;
        }
            .git-col-4 {
                width: 33.33%;
            }
            .git-col-12 {
                width: 100%;
                margin-top: 29px;
            }
            .git-field {
                display: inline-block;
                padding: 0 7.5px;
            }
                .git-field input,
                .git-field textarea {
                    width: 100%;
                    height: 52px;
                    border: none;
                    background: transparent;
                    border-bottom: 1px solid #b5b5b5;
                    font-weight: 500;
                    font-size: 14px;
                    letter-spacing: 0.05em;
                    line-height: 1.2;
                    color: #fff;
                    padding-left: 10px;
                    padding-right: 10px;
                }
                .git-field textarea {
                    padding-top: 18px;
                    resize: none;
                    height: 82px;
                }
            .git-form .btn-a {
                margin: 29px auto 0;
                position: relative;
            }
                .git-form .btn-a input {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    border: none;
                    background: transparent;
                    color: inherit;
                    text-transform: uppercase;
                    font-size: 15px;
                    font-weight: 400;
                    letter-spacing: 0.25em;
                    line-height: 1;
                }

                .git-form .btn-a span.ajax-loader {
                    position: absolute;
                    bottom: -30px;
                }
            .git-form .wpcf7 form .wpcf7-response-output {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                font-size: 13px;
                letter-spacing: 0.025em;
                text-align: center;
                padding: 3px 0;
                margin: 15px 7.5px 0;
            }
 

/*SEND US A MESSAGE : END*/


/*FOOTER : START*/
footer.footer {
    position: relative;
    /*min-height: 534px;*/
    background-position: center 64.3%;
    background-size: cover;
    padding: 106px 0 41px;
}
    .footer-accent {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 14px;
        background: url(images/bg-accent.jpg) bottom right/1275px 851px no-repeat;
    }
    footer.footer h2 {
        font-family: var(--font-family-title);
        font-size: 30px;
        letter-spacing: 0.03em;
        line-height: 1;
        color: #fff;
        text-transform: uppercase;
        margin: 5px 0 0;
    }
    .footer-left {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
        .footer .footer-contact-info h2 {
            margin-bottom: 33px;
        }
        .footer-contact-info {
            padding-left: 65px;
        }
            .footer-contact-info .contact {
                display: flex;
                align-items: center;
                font-size: 15px;
                letter-spacing: 0.05em;
                line-height: 1;
                color: #b5b5b5;
                margin-bottom: 29px;
            }
                .footer-contact-info .contact i {
                    display: inline-block;
                    vertical-align: middle;
                    color: #fff;
                    min-width: 34px;
                }
                .footer-contact-info .contact i.ai-font-envelope-f {
                    font-size: 11px;
                }
                .footer-contact-info .contact a {
                    transition: color .3s ease;
                }
                    .footer-contact-info .contact a:hover {
                        color: #fff;
                    }

            .footer-contact-info .contact-smi {
                font-size: 24px;
            }
                .footer-contact-info .contact-smi a {
                    display: inline-block;
                    color: #fff;
                    margin-right: 27px;
                }
                    .footer-contact-info .contact-smi a:hover {
                        color: var(--secondary);
                    }
    .footer-center {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
        .footer-logo {
            text-align: center;
        }
            .footer-logo a {
                display: inline-block;
            }
                .footer-center a img {
                    display: block;
                    width: 100%;
                    height: auto;
                }
    .footer-right {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
        .footer .footer-nav h2 {
            margin-bottom: 31px;
        }
        .footer-nav {
            padding-left: 67px;
        }
            .footernav {
                display: flex;
                flex-flow: column wrap;
                max-height: 160px;
            }
                .footer-nav li {
                    margin-bottom: 15px;
                }
                    .footer-nav li a {
                        font-size: 15px;
                        letter-spacing: 0.05em;
                        line-height: 1.2;
                        color: #b5b5b5;
                        transition: color .3s ease;
                    }
                        .footer-nav li a:hover {
                            color: #fff;
                        }

    .footer-line {
        width: 100%;
        height: 1px;
        background: #fff;
        opacity: 0.1;
        margin: 74px 0 47px;
    }
    .footer-copyright {
        text-align: center;
        font-size: 12px;
        letter-spacing: 0.1em;
        line-height: 1.2;
        color: #b5b5b5;
    }
        .footer-copyright span,
        .footer-copyright a[style] {
            color: #fff;
        }
        .footer-copyright a {
            color: inherit;
            transition: color .3s ease;
        }
            .footer-copyright a:hover {
                color: #fff;
            }
            .footer-copyright a[style]:hover {
                color: #b5b5b5;
            }
        .footer-icons {
            display: block;
            font-size: 21px;
            color: #fff;
            text-align: center;
            margin-top: 17px;
        }
/*FOOTER : END*/


.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    font-size: 13px;
    width: initial;
}
.grecaptcha-badge {
    z-index: 9999;
}

/*******************************************************
 *
 * 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 {
    line-height: 0.95;
    font-size: 75px;
    letter-spacing: 0.03em;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--font-family-title);  
}

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

}

#content p {
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.9;
    margin: 28px 0;
}
    #content p strong,
    #content p b {
        font-weight: 700;
    }


button.btn.dropdown-toggle.bs-placeholder.btn-default,
button.btn.dropdown-toggle.btn-default {
    width: 100%;
    height: 34px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    font-size: 13px;
    letter-spacing: 0.15em;
    color: #fff;
    text-transform: uppercase;
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.bs-searchbox input{
    color: black;
}

.hp-qs option{
    color: black;
}

#inner-page-wrapper #aios-testimonials.aios-testimonials-page h1 {
    color: #fff;
}

#inner-page-wrapper #aios-testimonials .aios-testimonials-lists .star_rating_display i {
    color: #f7c632;
}
#inner-page-wrapper #aios-testimonials .aios-testimonials-lists a {
    border-color: #fff;
}

#inner-page-wrapper #listings-details .listings-address,
#inner-page-wrapper #listings-details .listings-number span,
#inner-page-wrapper #listings-details .listings-plan > ul > li,
#inner-page-wrapper #listings-details .listings-plan span,
#inner-page-wrapper #listings-details .listings-description h2,
#inner-page-wrapper #listings-details .listings-description p,
#inner-page-wrapper #listings-details .listings-accordion h2,
#inner-page-wrapper #listings-details .listings-accordion-title,
#inner-page-wrapper #listings-details .listings-accordion-title.active, #listings-details .listings-accordion-title:hover,
#inner-page-wrapper #listings-details .listings-accordion-content ul li {
    color: #fff;
}

.ihf-details-template #inner-page-wrapper  .button-amante-ii, .ihf-details-template #inner-page-wrapper  .button-element {
    border-color: #fff;
    color: #fff;
}

#listings-results .listings-list .listings-info {
    animation: none!important;
    color: #000;
    opacity: 1;
}

#listings-results .listings-table {
    color: #000;
}

#listings-results .listings-sort .sort-view i.active,
#listings-results .listings-sort .sort-view i:hover {
    color: #f7c632!important;
}

.aios-roadmaps .aios-roadmap-link .aios-roadmap-name,
.aios-roadmaps .aios-roadmap-link .aios-roadmap-icon:after {
    color: #f7c632!important;
}

.aios-roadmaps .aios-roadmap-link:hover .aios-roadmap-icon:after,
.aios-roadmaps .aios-roadmap-link.active .aios-roadmap-icon:after,
.aios-roadmaps .aios-roadmap-link:hover .aios-roadmap-name,
.aios-roadmaps .aios-roadmap-link.active .aios-roadmap-name {
    color: #fff!important;
}

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

.testi-name, .aios-testimonials-popup h2,.aios-testimonials-lists h3{
    display: none !important;
}

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

.page-id-0.ihf-results-template #content-full .entry-title {
    width: 100%;
    padding: 0;
}
#listings-results .listings-sort .sort-dropdown > div {
    color: #000000;
}
#ihf-main-container .nav-tabs {
    margin: 0;
}
#ihf-main-container ul.chosen-results {
    margin: 0;
    padding: 0;
}
#ihf-main-container #areaPickerClearAll .glyphicon {
    color: #ffffff !important;
}
#listings-results .listings-sort .sort-dropdown button:hover {
    color: #999999 !important;
}
#listings-results .listings-sort .sort-dropdown button:hover:after {
    border-top-color: #999999 !important;
}
#ihf-main-container #ihf-main-search-form label {
    color: #ffffff;
}
#ihf-main-container.ihf-modal-container .modal label {
    color: #000000;
}
#listings-results .listings-pagination ul li a {
    color: #ffffff !important;
}
#listings-details .listings-form textarea {
    padding-right: 50px !important;
}
#listings-details .listings-form div.wpcf7-response-output {
    color: #000000;
}
.page-template-interactive-map #content p#breadcrumbs {
    padding: 0 15px;
}

/* 404 */
.error-page-content-wrapper {
    font-family: inherit !important;
}
.error-page-content-wrapper .error-forms input[type=text],
.error-page-content-wrapper .error-forms input[type=email],
.error-page-content-wrapper .error-forms input[type=phone],
.error-page-content-wrapper .error-forms textarea {
    font-family: inherit !important;
    color: #000000 !important;
}
.error-page-cf-wrap .wpcf7 form .wpcf7-response-output {
    text-align: center;
}

#content .cu-contact span:nth-child(3) {
    display: flex;
}

#content .cu-contact span:nth-child(3) em {
    margin-right: 8px;
}
#content .cu-fields input[type="submit"]:hover {
    color: var(--secondary)!important;
}
.ihf-details-template #inner-page-wrapper .listings-link-navigation .button-element {
    color: #000;
    border-color: #000;
}
.ai-default-cf7wrap input[type=email],
.ai-default-cf7wrap input[type=tel],
.ai-default-cf7wrap input[type=text],
.aidefcf-wrapper .wpcf7-form-control.wpcf7-select {
    color: #000!important;
}
.error-page-content-wrapper .error-forms textarea {
    height: 118px!important;
}

/*#inner-page-wrapper #aios-testimonials .aios-testimonials-lists a {
    pointer-events: none;
}*/

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