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

/*

TABLE OF CONTENTS

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


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

:root {
    /* --primary : #003369; */
    --primary : #343434;
    --secondary: #9b9b9b;
}

.fix-burger-navigation {
    position: relative;
    display: block;
    padding-top: 15px;
    padding-bottom: 0;
    width: 100%;
}
    #nav {
        padding: 0;
        margin: 0;
        list-style: none;
        line-height: 1;
        text-align: left;
    }
        #nav > li {
            display: block;
            position: relative;
            padding: 0;
        }
            #nav > li > a {
                position: relative;
                display: block;
                text-decoration: none;
                outline: none;
                color: #ffffff;
                font: normal 16px 'Barlow', sans-serif;
                text-transform: capitalize;
                padding: 10px 0 10px 57px;
                background: transparent;
                -webkit-transition: all 0.2s ease-in-out;
                -moz-transition: all 0.2s ease-in-out;
                -ms-transition: all 0.2s ease-in-out;
                -o-transition: all 0.2s ease-in-out;
                transition: all 0.2s ease-in-out;
            }

                /* Sub Menu */
                #nav .sub-menu {
                    list-style: none outside none;
                    margin: 0 0 0 0;
                    display: none;
                    background: none;
                    padding: 0 0 0;
                    position: absolute;
                    min-width: 216px;
                    left: -216px;
                    top: 0;
                    z-index: 9;
                }
                    #nav .sub-menu li {
                        position: relative;
                    }
                        #nav .sub-menu a {
                            color: #FFFFFF;
                            font: normal 14px 'Barlow', sans-serif;
                            text-align: center;
                            text-transform: capitalize;
                            display: block;
                            padding: 11px;
                            outline: none;
                            text-decoration: none;
                            background: var(--primary);
                            -webkit-transition: all 0.3s ease-in-out;
                            -moz-transition: all 0.3s ease-in-out;
                            -ms-transition: all 0.3s ease-in-out;
                            -o-transition: all 0.3s ease-in-out;
                            transition: all 0.3s ease-in-out;
                        }
                            #nav .sub-menu .sub-menu {
                                margin-left: 0;
                                top:0;
                            }
                            #nav .sub-menu li.menu-item-244 .sub-menu {
                                margin-left: 0;
                                top: 0;
                                left: -400px;
                                column-count: 2;
                                min-width: 400px;
                                column-gap: 0;
                            }
                            #nav .sub-menu li.menu-item-250 .sub-menu {
                                margin-left: 0;
                                top: -156px;
                                left: -400px;
                                column-count: 2;
                                min-width: 400px;
                                column-gap: 0;
                            }
                            #nav .sub-menu li.menu-item-251 .sub-menu {
                                margin-left: 0;
                                top: -312px;
                                left: -400px;
                                column-count: 2;
                                min-width: 400px;
                                column-gap: 0;
                            }

                            #nav li:hover > .sub-menu {
                                display: block;
                            }
                            #nav .sub-menu li {
                                position: relative;
                            }
                            #nav .sub-menu li.hide-tab {
                                opacity: 0;
                                visibility: hidden;
                            }

        /* HOVER */
        #nav > li:hover > a {
            background: var(--secondary);
        }
        #nav .sub-menu a:hover {
            background: var(--secondary);
            color: #ffffff;
            text-decoration: none;
        }


/* FIXED NAVIGATION */
.fixed-header-navigation {
    position: relative;
    display: none;
    padding: 0 0;
}
.fixed .fixed-header-navigation {
    display: block;
}
    /* Navigation */
    .aios-split-nav {
        position: relative;
        margin: 0;
        padding: 20px 0;
        list-style: none;
        text-align: center;
    }
    .fixed-header-navigation > div > ul:first-child {
        text-align: right;
    }
        .aios-split-nav > li {
            display: inline-block;
            position: relative;
            padding: 0 2.65%;
        }
        .fixed-header-navigation > div > ul:first-child > li:last-child {
            padding-right: 9%;
        }
        .aios-split-nav > li:first-child {
            padding-left: 0;
        }
        .aios-split-nav > li:last-child {
            padding-right: 0;
        }
            .aios-split-nav > li > a {
                position: relative;
                display: block;
                text-decoration: none;
                outline: none;
                color: #666666;
                font: normal 16px 'Barlow', sans-serif;
                text-transform: capitalize;
                padding: 0 0;
                background: transparent;
                -webkit-transition: all 0.2s ease-in-out;
                -moz-transition: all 0.2s ease-in-out;
                -ms-transition: all 0.2s ease-in-out;
                -o-transition: all 0.2s ease-in-out;
                transition: all 0.2s ease-in-out;
            }
                .aios-split-nav > li > a:before {
                    content: '';
                    display: block;
                    background: #555555;
                    width: 0;
                    height: 4px;
                    opacity: 1;
                    position: absolute;
                    bottom: -35px;
                    left: 0;
                    right: 0;
                    margin: 0 auto;
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -ms-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                }
                /* Sub Menu */
                .aios-split-nav .sub-menu {
                    list-style: none outside none;
                    margin: 0 0 0 -82.5px;
                    display: none;
                    background: none;
                    padding: 34px 0 0;
                    position: absolute;
                    min-width: 165px;
                    left: 50%;
                    z-index: 9;
                }
                .aios-split-nav .sub-menu li {
                    position: relative;
                    padding-bottom: 1px;
                }
                .aios-split-nav > li:first-child > .sub-menu {
                    margin: 0 0 0 -89.5px;
                }
                .aios-split-nav > li:last-child > .sub-menu {
                    margin: 0 0 0 -96.5px;
                }
                .aios-split-nav .sub-menu li:last-child a {
                    border-bottom: none;
                }
                .aios-split-nav .sub-menu a {
                    color: #ffffff;
                    font: normal 16px 'Barlow', sans-serif;
                    text-align: center;
                    display: block;
                    padding: 5px;
                    outline: none;
                    text-transform: capitalize;
                    text-decoration: none;
                    background: #666666;
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -ms-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                }
                .aios-split-nav .sub-menu a:hover {
                    background: #333333;
                }
                .aios-split-nav .sub-menu .sub-menu {
                    margin-left: 51%;
                    top: 0;
                    padding: 0 0 0 0;
                }
                .aios-split-nav .sub-menu li#menu-item-244 .sub-menu,
                .aios-split-nav .sub-menu li#menu-item-250 .sub-menu,
                .aios-split-nav .sub-menu li#menu-item-251 .sub-menu {
                    column-count: 2;
                    column-gap: 2px;
                    min-width: 340px;
                }


                .aios-split-nav li:hover > .sub-menu {
                    display: block;
                }
                .aios-split-nav .sub-menu li {
                    position: relative;
                }

        .aios-split-nav > li:hover a:before {
            width: 100%;
        }

/** Search Bar **/

.gsearch-wrap {
    position: relative;
    padding-top: 60px;
    max-width: 145px;
    margin-left: 47px;
}

.s-group {
    position: relative;
    display: block;
    border: 1px solid #9a9a9a;
}

.gsearch-wrap input.s-bar-form {
    background: none;
    border: none;
    width: 100%;
    height: 30px;
    color: #fff;
    padding-right: 30px;
    padding-left: 5px;
    font: normal 16px 'Barlow', sans-serif;
}

    .sidebar .gsearch-wrap input.s-bar-form {
        color: #9a9a9a;
    }

.gsearch-wrap button.s-btn {
    background: none;
    color: #fff;
    border: 0;
    position: absolute;
    right: 0;
    top: 3px;
    font-size: 16px;
    outline: none;
    text-decoration: none;
    transform: rotate(270deg);
    z-index: 2;
}

/** sidebar search ***/

.sidebar .gsearch-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-bottom: 50px;
    padding: 0;
}

.sidebar .gsearch-wrap button.s-btn {
    top: 1px;
    color: #666;
    font-weight: 600;
}
/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/

/* Global */

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



/* INTRO */
.user-navigated-from-a-page-on-the-site #preloader,
.user-navigated-from-a-page-on-the-site #intro-animation-wrapper {
    display: none !important;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 1002;
}
.ip-container #preloader,
.ip-container #intro-animation-wrapper {
    display: none !important;
}
    #status {
        width: 200px;
        height: 200px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-image: url("images/status.gif");
        background-repeat: no-repeat;
        background-position: center;
        margin: -100px 0 0 -100px;
    }

.preloader {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url("images/status.gif");
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
}

#intro-animation-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1002;
    background: url("images/slide1.jpg") fixed no-repeat;
    background-size: cover;
    top: 0;
    display: none;
}
.prop-txt-content{
    margin-left: 221.5px;
}



    #intro-animation:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(255,255,255,.84);
        width: 100%;
        height: 100%;
        z-index: -1;
    }
        #intro-animation {
            width: 100%;
            height: 100%;
            position: relative;
        }
            .intro-title {
                display: inline-block;
                width: 100%;
                height: 100%;
                text-align: center;
                vertical-align: middle;
                font-size: 0;
                display: none;
            }
                .intro-title:before {
                    content: "";
                    display: inline-block;
                    vertical-align: middle;
                    width: 0;
                    height: 100%;
                }
                    .intro-title h2 {
                        font-size: 60px;
                        font-weight: 200;
                        color: #303030;
                        display: inline-block;
                        vertical-align: middle;
                        letter-spacing: 3px;
                        text-transform: uppercase;
                        position: relative;
                        line-height: 1.7;
                    }
                        .intro-title h2 span:nth-child(2) {
                            font-weight: 200;
                        }

                        .intro-title span.top-border {
                            display: block;
                            width: 0%;
                            height: 1px;
                            background-color: #303030;
                            text-align: left;
                        }

                        .intro-title span.bottom-border {
                            display: block;
                            width: 0%;
                            height: 1px;
                            background-color: #303030;
                            text-align: right;
                            margin-left: 100%;
                        }

            .intro-communities-wrapper {
                position: relative;
                width: 71.25%;
                height: 100%;
                display: block;
                vertical-align: middle;
                font-size: 0;
                text-align: center;
                margin: 0 auto;
                display: none;
            }

                .intro-communities:before {
                    content: "";
                    display: inline-block;
                    vertical-align: middle;
                    width: 0;
                    height: 100%;
                }

                    .intro-communities {
                        position: relative;
                        display: inline-block;
                        vertical-align: middle;
                        width: 100%;
                        height: 100%;
                        font-size: 0;
                    }

                        .intro-comm {
                            display: inline-block;
                            width: 31.5%;
                            vertical-align: middle;
                        }

                        .intro-comm:nth-child(2) {
                            margin: 0 15px;
                            padding-top: 131px;
                        }

                        .intro-comm span {
                            font-size: 15px;
                            font-weight: 700;
                            color: #303030;
                            text-transform: uppercase;
                            display: block;
                            vertical-align: middle;
                            letter-spacing: 14px;
                        }
                            .intro-comm:first-child span,
                            .intro-comm:last-child span {
                                padding: 53px 0;
                            }

                            .intro-comm:nth-child(2) span {
                                padding: 50px 0;
                            }

.skip-intro-wrapper {
    position: absolute;
    bottom: 10%;
    right: 5%;
}

    .skip-intro-wrapper span {
        display: inline-block;
        font-size: 16px;
        color: #303030;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 700;
        cursor: pointer;
    }


/* FIXED HEADER */
.fixed-header {
    position: fixed;
    width: 100%;
    padding: 11.5px 0;
    top: -101px;
    z-index: 1002;
    background: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
header.fixed-header.fixed {
    top: 0;
    border-bottom: 1px solid #e0e0e0;
}
    #fix-header-logo {
        position: relative;
        display: block;
        text-align: center;
    }
        #fix-header-logo img {
            width: 100%;
            /* max-width: 199px; */
            max-width: 50px;
        }


/* HEADER */
.header-wrapper {
    position: absolute;
    width: 100%;
    padding: 0;
    z-index: 1001;
}
    .header-contact-info {
        position: relative;
        display: block;
        text-align: left;
        padding: 40px 0 0;
    }
        .header-smi {
            position: relative;
            display: block;
        }
            .header-smi a {
                color: #ffffff;
                outline: none;
                text-decoration: none;
                font-size: 14px;
                margin-right: 20px;

                -webkit-transition: all .25s ease-in-out;
                -moz-transition: all .25s ease-in-out;
                -ms-transition: all .25s ease-in-out;
                transition: all .25s ease-in-out;
            }

                .header-smi a:hover {
                    color: var(--primary);
                }

        .header-contact-details {
            position: relative;
            display: block;
            color: #ffffff;
            padding-top: 9px;
            font: normal 13px 'Barlow', sans-serif;
        }
            .header-contact-details .phone,
            .header-contact-details .email {
                position: relative;
                display: inline-block;
                vertical-align: top;
            }
                .header-contact-details .phone {
                    border-right: 1px solid #ffffff;
                    padding-right: 6px;
                    margin-right: 3px;
                }
                    .header-contact-details a,
                    .header-contact-details span {
                        color: #ffffff;
                    }
                        .header-contact-details .email span.ai-font-envelope-o {
                            font-size: 11px;
                            margin-right: 5px;
                        }
                        .header-contact-details .phone span.ai-font-devices-mobile {
                            font-size: 15px;
                            margin-right: 5px;
                        }

    .header-logo {
        position: relative;
        text-align: center;
        padding-top: 17px;
    }
        .header-logo img {
            width: 100%;
            /* max-width: 297px; */
            max-width: 130px;
        }

    .header-burger-menu {
        position: relative;
        display: block;
        text-align: center;
        padding-top: 45px;
    }
        .bar-menu {
            position: relative;
            display: block;
            cursor: pointer;
            width: 29px;
            margin: 0 auto;
        }
            .bar-menu div {
                width: 29px;
                height: 2px;
                background-color: #ffffff;
                margin: 9px 0;
                transition: 0.4s;

                -webkit-transition: all .25s ease-in-out;
                -moz-transition: all .25s ease-in-out;
                -ms-transition: all .25s ease-in-out;
                transition: all .25s ease-in-out;
            }

            .bar-menu:hover div {
                background: var(--primary);
            }

            #close-menu .bar-menu:hover div {
                background: #9b9b9b;
            }


/* FIXED SIDE MENU */
.fixed-burger-menu-wrapper {
    position: fixed;
    right: -330px;
    width: 326px;
    height: 100%;
    z-index: 1002;
    background-color: var(--primary);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.fixed-burger-menu-wrapper.open-menu {
    right: 0;
}
    .fixed-burger-menu-container {
        position: relative;
        display: block;
        width: 100%;
        padding: 43px 0 0 0;
    }
        .burger-menu-close {
            position: relative;
            padding-left: 47px;
        }
            .burger-menu-close .bar-menu {
                position: relative;
                display: block;
                margin: 0;
                height: 26px;
            }
                .burger-menu-close .bar-menu div {
                    width: 33px;
                }
                    .burger-menu-close .bar-menu .bar1 {
                        -webkit-transform: rotate(-41deg) translate(-11px, 7px);
                        -moz-transform: rotate(-41deg) translate(-11px, 7px);
                        -ms-transform: rotate(-41deg) translate(-11px, 7px);
                        -o-transform: rotate(-41deg) translate(-11px, 7px);
                        transform: rotate(-41deg) translate(-11px, 7px);
                    }
                    .burger-menu-close .bar-menu .bar2 {
                        -webkit-transform: rotate(41deg) translate(-1px, 3px);
                        -moz-transform: rotate(41deg) translate(-1px, 3px);
                        -ms-transform: rotate(41deg) translate(-1px, 3px);
                        -o-transform: rotate(41deg) translate(-1px, 3px);
                        transform: rotate(41deg) translate(-1px, 3px);
                    }



/* SLIDESHOW */
.slider-wrapper {
    position: relative;
    z-index: 1;
    background: #000000;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
    .hp-slider {
        height: 100%;
        left: 0;
        position: relative;
        top: 0;
        width: 100%;
        z-index: 0;
    }
        .hp-slider:before {
            content: '';
            display: block;
            background: -moz-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
            background: -webkit-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
            background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80000000', endColorstr='#00000000',GradientType=0 );
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            z-index: 2;
        }
        .hp-slider:after {
            content: '';
            display: block;
            background: rgba(0,0,0,0.15);
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            z-index: 1;
        }


/* QUICK SEARCH */
.qs-wrapper {
    position: relative;
    display: block;
    padding: 30px 0 0;
    z-index: 2;
}
    .qs-fields-wrap {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        font-size: 0;
        padding: 0;
    }
        .qs-group {
            position: relative;
            display: inline-block;
            vertical-align: top;
        }
        .qs-group label {
            display: none;
        }
            .qs-group select,
            .qs-group input {
                width: 100%;
                height: 52px;
                padding: 0 15px 0 15px;
                background: transparent;
                -webkit-border-radius: 0;
                -moz-border-radius: 0;
                border-radius: 0;
                outline: none;
                border: 1px solid #9a9a9a;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                font: normal 16px 'Barlow', sans-serif;
                color: #c3c2c2;
                text-transform: capitalize;
            }

                .qs-group input.search-city {
                    position: absolute;
                    top: 3px;
                    right: 3px;
                    background: url("images/search-icon.png") no-repeat;
                    width: 46px;
                    height: 46px;
                    border: none;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    outline: none;
                    font-size: 0;

                    -webkit-transition: all .25s ease-in-out;
                    -moz-transition: all .25s ease-in-out;
                    -ms-transition: all .25s ease-in-out;
                    transition: all .25s ease-in-out;
                }

                    .qs-group input.search-city:hover {
                        opacity: .7;
                    }

            .qs-group.search .search-btn {
                position: relative;
                display: block;
                color:#FFFFFF;
                font: normal 16px 'Barlow', sans-serif;
                background: var(--primary);
                text-transform: capitalize;
                border: none;
                -webkit-border-radius: 0;
                -moz-border-radius: 0;
                border-radius: 0;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                text-align: center;
                text-decoration: none;
                width: 100%;
                height: 52px;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -ms-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

                .qs-group.search .search-btn:hover {
                    background: #9b9b9b;
                }

            .qs-group.short.beds select,
            .qs-group.short.baths select {
                color: #777777;
            }

            .qs-group.long {
                width: 39.56%;
                margin-right: 0.4%;
            }
            .qs-group.short {
                width: 11.23%;
                margin-right: 0.4%;
            }
             .qs-group.search {
                width: 13.5%;
                margin-right: 0;
            }


/* CTA */
.cta-wrapper {
    position: relative;
    display: block;
    padding: 70px 0 93px;
    z-index: 1;
}
    .cta-btn-content-wrap {
        position: relative;
        display: block;
        width: 100%;
    }
        .cta-btn-holder {
            position: relative;
            display: inline-block;
            vertical-align: top;
            width: 212px;
            height: 212px;
            margin: 0 0.74%;
        }
            .cta-btn-content-wrap .cta-btn-holder:first-child {
                margin-left: 0;
            }
            .cta-btn-content-wrap .cta-btn-holder:last-child {
                margin-right: 0;
            }

            .cta-btn-holder a {
                position: relative;
                display: block;
                width: 100%;
                height: 100%;
                padding: 11px;
                -webkit-border-radius: 100%;
                -moz-border-radius: 100%;
                border-radius: 100%;
                box-sizing: border-box;
                background-color: #e6e6e6;
                outline: none;
                text-decoration: none;
            }
                .cta-btn-holder .cta-btn-content {
                    position: relative;
                    display: block;
                    width: 100%;
                    height: 100%;
                    -webkit-border-radius: 100%;
                    -moz-border-radius: 100%;
                    border-radius: 100%;
                    box-sizing: border-box;
                    background-color: #9b9b9b;
                    text-align: center;
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -ms-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                }
                    .cta-btn-holder .cta-btn-content::before {
                        content: '';
                        width: 0;
                        height: 100%;
                        vertical-align: middle;
                        display: inline-block;
                    }
                    .cta-btn-holder .cta-btn-content::after {
                        content: '';
                        display: block;
                        background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%, rgba(0,0,0,0.43) 100%);
                        background: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(0,0,0,0.43) 100%);
                        background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%,rgba(0,0,0,0.43) 100%);
                        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#6e000000',GradientType=1 );
                        width: 100%;
                        height: 100%;
                        position: absolute;
                        top: 0;
                        z-index: 0;
                        opacity: 0;
                        -webkit-border-radius: 100%;
                        -moz-border-radius: 100%;
                        border-radius: 100%;
                        -webkit-transition: all 0.3s ease-in-out;
                        -moz-transition: all 0.3s ease-in-out;
                        -ms-transition: all 0.3s ease-in-out;
                        -o-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                    }
                    .cta-btn-holder .cta-btn-title {
                        position: relative;
                        display: inline-block;
                        vertical-align: middle;
                        color: #ffffff;
                        width: 80%;
                        z-index: 2;
                        font: normal 24px/16px 'Barlow', sans-serif;
                    }
                        .cta-btn-holder .cta-btn-title span {
                            display: block;
                            font: normal 14px 'Barlow', sans-serif;
                        }
                            .cta-btn-holder .icon-buyers .cta-btn-title::before {
                                content: '';
                                position: absolute;
                                background: url("images/cta-icon-buyers.png") no-repeat;
                                width: 70px;
                                height: 54px;
                                opacity: 0.10;
                                top: 0;
                                bottom: 0;
                                left: 0;
                                right: 0;
                                margin: auto;
                            }
                            .cta-btn-holder .icon-fyhv .cta-btn-title::before {
                                content: '';
                                position: absolute;
                                background: url("images/cta-icon-fyhv.png") no-repeat;
                                width: 54px;
                                height: 54px;
                                opacity: 0.10;
                                top: 0;
                                bottom: 0;
                                left: 0;
                                right: 0;
                                margin: auto;
                            }
                            .cta-btn-holder .icon-sellers .cta-btn-title::before {
                                content: '';
                                position: absolute;
                                background: url("images/cta-icon-sellers.png") no-repeat;
                                width: 92px;
                                height: 53px;
                                opacity: 0.10;
                                top: 0;
                                bottom: 0;
                                left: 0;
                                right: 0;
                                margin: auto;
                            }
                            .cta-btn-holder .icon-uyh .cta-btn-title::before {
                                content: '';
                                position: absolute;
                                background: url("images/cta-icon-uyh.png") no-repeat;
                                width: 66px;
                                height: 57px;
                                opacity: 0.10;
                                top: 0;
                                bottom: 0;
                                left: 0;
                                right: 0;
                                margin: auto;
                            }
                            .cta-btn-holder .icon-off .cta-btn-title::before {
                                content: '';
                                position: absolute;
                                background: url("images/cta-icon-off.png") no-repeat;
                                width: 58px;
                                height: 48px;
                                opacity: 0.10;
                                top: 0;
                                bottom: 0;
                                left: 0;
                                right: 0;
                                margin: auto;
                            }

            /* HOVER */
            .cta-btn-holder a:hover .cta-btn-content {
                background-color: var(--primary);
            }
            .cta-btn-holder a:hover .cta-btn-content::after {
                opacity: 1;
            }



/* WELCOME */
.welcome-wrapper {
    position: relative;
    display: block;
    background: url("images/slide1.jpg") no-repeat center top / cover;
    width: 100%;
    height: 100%;
    /*min-height: 646px;*/
}
    .welcome-wrapper::before {
        content: '';
        display: block;
        background: rgba(0,0,0,0.15);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 0;
    }
        .agents-photo-wrap {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
            z-index: 6;
        }
            .agents-photo-holder {
                position: absolute;
                bottom: 0;
                right: -60px;
                width: 100%;
                max-width: 376px;
                background: #ffffff;
            }
                .agents-photo-holder img {
                    position: relative;
                    width: 100%;
                    max-width: 354px;
                    top: 23px;
                    left: 22px;
                }

        .welc-content-wrap {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
            /* min-height: 646px; */
            min-height: 440px;
            z-index: 5;
            background-color: #ffffff;
        }
            .welc-content-inner {
                position: relative;
                display: block;
                padding: 39px 68px 0;
            }
                .welc-title {
                    position: relative;
                    display: block;
                    text-align: left;
                }
                    .welc-title h1 {
                        color: #777777;
                        font: normal 16px 'Barlow', sans-serif;
                    }
                        .welc-title h1 span {
                            display: block;
                            color: var(--primary);
                            font: normal 36px 'Barlow', sans-serif;
                        }

                .welc-text-content {
                    position: relative;
                    display: block;
                    padding-top: 30px;
                    color: #777777;
                    line-height: 24px;
                }


/* FEATURED PROPERTIES */
.fp-wrapper {
    position: relative;
    display: block;
    width: 100%;
    padding: 114px 0 59px;
    overflow: hidden;
}
    .fp-container {
        position: relative;
        display: block;
        margin: 0;
        padding: 0;
        font-size: 0;
        overflow: hidden;
    }
        .prop-txt-wrap {
            position: relative;
            display: inline-block;
            vertical-align: top;
            width: 44.937%;
            margin-top: 42px;
            z-index: 2;
        }
            .prop-txt-wrap::before {
                content: '';
                display: block;
                width: 110%;
                height: 100%;
                border-top: 3px solid #e0e0e0;
                border-right: 3px solid #e0e0e0;
                border-bottom: 3px solid #e0e0e0;
                position: absolute;
                top: -3px;
                right: -61px;
                z-index: 1;
            }
            .prop-txt-content {
                position: relative;
                display: block;
                padding: 80px 0 78px;
                z-index: 2;
            }
                .prop-title {
                    position: relative;
                    display: block;
                    text-align: left;
                }
                    .prop-title h2 {
                        color: #777777;
                        font: normal 16px 'Barlow', sans-serif;
                    }
                        .prop-title h2 span {
                            display: block;
                            color: var(--primary);
                            font: normal 36px 'Barlow', sans-serif;
                        }

                .prop-txt-slider {
                    position: relative;
                    display: block;
                    width: 100%;
                    margin: 0 0 0;
                    padding: 40px 0 0;
                }
                    .prop-item {
                        position: relative;
                        display: block;
                        margin: 0;
                    }
                        .prop-item a {
                            position: relative;
                            display: block;
                            text-decoration: none;
                            outline: none;
                            box-sizing: border-box;
                            width: 100%;
                            padding: 0 0 0;
                        }
                            .prop-desc {
                                position: relative;
                                display: block;
                                width: 100%;
                                height: 100%;
                            }
                                .prop-address {
                                    color: #7e7e7e;
                                    font: 300 24px/30px 'Barlow', sans-serif;
                                }
                               .prop-price {
                                    color: #7e7e7e;
                                    font: 300 24px/30px 'Barlow', sans-serif;
                                    padding-top: 10px;
                                }
                                .prop-desc a.view-properties {
                                    position: relative;
                                    color: #7e7e7e;
                                    outline: none;
                                    margin-top: 72px;
                                    max-width: 100px;
                                    text-decoration: underline ;
                                    font: 500 11px 'Barlow', sans-serif;
                                }
                                .prop-desc a.view-properties:hover {
                                    color: var(--primary);
                                }
                                

        .prop-img-wrap {
            position: relative;
            display: inline-block;
            vertical-align: top;
            width: 55.06%;
            z-index: 1;
        }
            .prop-img-slider {
                position: relative;
                display: block;
                width: 100%;
                margin: 0 0 0;
                padding: 0 0 0;
            }
                .prop-img-holder {
                    position: relative;
                    display: block;
                    width: 100%;
                    height: 556px;
                    background: no-repeat center;
                    background-size: cover;
                }
                    .prop-img-holder::before {
                        content: '';
                        display: block;
                        background: rgba(0,0,0,0.4);
                        width: 100%;
                        height: 100%;
                        position: absolute;
                        top: 0;
                        z-index: 1;
                        opacity: 0;
                        -webkit-transition: all 0.3s ease-in-out;
                        -moz-transition: all 0.3s ease-in-out;
                        -ms-transition: all 0.3s ease-in-out;
                        -o-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                    }
                    .prop-img-holder canvas {
                        position: relative;
                        display: block;
                        width: 100%;
                    }

                .prop-item a:hover .prop-img-holder::before {
                    opacity: 1;
                }

            .prop-img-slider .slick-arrow {
                position: absolute;
                bottom: 0;
                width: 50px;
                height: 50px;
                color: #505050;
                font-size: 18px;
                z-index: 5;
                padding: 16px 0;
                text-align: center;
                cursor: pointer;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -ms-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }
                .prop-img-slider .slick-next.slick-arrow {
                    background: #ffffff;
                }
                .prop-img-slider .slick-prev.slick-arrow {
                    background: #e4e4e4;
                    left: -50px;
                }

                /* HOVER */
                .prop-img-slider .slick-arrow:hover {
                    background: #cccccc;
                }


/* Testimonials */
.testimonials-wrapper {
    position: relative;
    display: block;
    background: url("images/slide1.jpg") no-repeat center top / cover;
    width: 100%;
    height: 100%;
    /*min-height: 525px;*/
    padding: 72px 0 83px;
}
    .testimonials-wrapper::before {
        content: '';
        display: block;
        background: rgba(96,96,96,0.80);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 1;
    }
        .testimonial-content-wrap {
            position: relative;
            display: block;
            text-align: center;
            z-index: 2;
        }
            .testi-title {
                position: relative;
                display: block;
            }
                .testi-title h2 {
                    color: #ffffff;
                    font: 300 36px 'Barlow', sans-serif;
                }

            .testi-quote {
                position: relative;
                display: block;
                color: #8f8f8f;
                background: url("images/test-quote.png") no-repeat;
                width: 46px;
                height: 33px;
                margin: 37px auto 0;
            }

            .testimonials-slider {
                position: relative;
                display: block;
                text-align: center;
                padding: 0 30px 63px;
                font-size: 0;
                width: 100%;
                margin: 30px auto 0;
            }
                .test-item {
                    position: relative;
                    display: block;
                    padding: 0 0 0 0;
                }
                    .testimonials-slider a {
                        position: relative;
                        display: block;
                        text-decoration: none;
                        outline: none;
                        box-sizing: border-box;
                        width: 100%;
                    }
                        .test-holder {
                            position: relative;
                            display: block;
                            width: 100%;
                            height: 100%;
                        }
                            .test-info-txt {
                                color: #ffffff;
                                font: 300 20px/30px 'Barlow', sans-serif;
                            }
                            .test-name {
                                display: inline-block;
                                color: #ffffff;
                                padding-top: 40px;
                                font: 500 20px/20px 'Barlow', sans-serif;

                                -webkit-transition: all .25s ease-in-out;
                                -moz-transition: all .25s ease-in-out;
                                -ms-transition: all .25s ease-in-out;
                                transition: all .25s ease-in-out;
                            }

                                .test-name:hover {
                                    color: var(--primary);
                                }

                                .test-name span {
                                    display: block;
                                    font: 400 12px 'Barlow', sans-serif;
                                }
            /* Slick Arrows */
            .testimonials-slider .slick-prev:hover, .testimonials-slider .slick-prev:focus, .testimonials-slider .slick-next:hover, .testimonials-slider .slick-next:focus {
                opacity: 0.8;
            }
            .testimonials-slider .slick-prev {
                background: url("images/test-arrow-prev.png") left no-repeat;
                width: 24px;
                height: 36px;
                font-size: 0;
                border: none;
                position: absolute;
                top: 7%;
                left: -39px;
                cursor: pointer;
                z-index: 9;
            }
            .testimonials-slider .slick-next {
                background: url("images/test-arrow-next.png") right no-repeat;
                width: 24px;
                height: 36px;
                font-size: 0;
                border: none;
                position: absolute;
                top: 7%;
                right:-39px;
                cursor: pointer;
                z-index: 9;
            }
            /* Slick Dots */
            .testimonials-slider .slick-dots {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                display: block;
                width: 100%;
                padding: 0;
                list-style: none;
                text-align: center;
                z-index: 2;
            }
            .testimonials-slider .slick-dots li {
                position: relative;
                display: inline-block;
                width: 9px;
                height: 9px;
                margin: 0 5px;
                padding: 0;
                cursor: pointer;
                z-index: 2;
            }
            .testimonials-slider .slick-dots li button {
                background: transparent;
                width: 9px;
                height: 9px;
                border: none;
                font-size: 0;
                line-height: 0;
                display: inline-block;
                cursor: pointer;
                outline: none;
                position: relative;
            }
            .testimonials-slider .slick-dots li button::before {
                font-family: slick;
                font-size: 6px;
                line-height: 20px;
                position: absolute;
                top: 0;
                left: 0;
                width: 9px;
                height: 9px;
                background: #a5a5a5;
                text-align: center;
                content: '';
                display: block;
                -webkit-font-smoothing: antialiased;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                border-radius: 50%;
            }
            .testimonials-slider .slick-dots li.slick-active button:before {
                background: #ffffff;
                width: 9px;
                height: 9px;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                border-radius: 50%;
            }


/* Video Blog */
.video-blog-wrapper {
    position: relative;
    display: block;
    width: 100%;
    padding: 44px 0 0;
    overflow: hidden;
} 
    .vid-blog-container {
        position: relative;
        display: block;
        text-align: center;
        margin: 0 -8px;
    }
        .vid-blog-title {
            position: relative;
            display: block;
        }
            .vid-blog-title h2 {
                color: var(--primary);
                font: 300 36px 'Barlow', sans-serif;
            }

        .vid-blog-slider {
            position: relative;
            display: block;
            text-align: center;
            padding: 0 0 0;
            font-size: 0;
            width: 100%;
            margin: 46px auto 0;
        }
            .vid-item {
                position: relative;
                display: block;
                padding: 0 8px 0;
            }
                .vid-item a {
                    position: relative;
                    display: block;
                    text-decoration: none;
                    outline: none;
                    box-sizing: border-box;
                    width: 100%;
                }
                    .vid-img-holder {
                        position: relative;
                        display: block;
                        width: 100%;
                        height: 100%;
                        background: no-repeat center;
                        background-size: cover;
                    }
                        .vid-img-holder::before {
                            content: '';
                            display: block;
                            background: rgba(0,0,0,0.50);
                            width: 100%;
                            height: 100%;
                            position: absolute;
                            top: 0;
                            z-index: 1;
                            -webkit-transition: all 0.3s ease-in-out;
                            -moz-transition: all 0.3s ease-in-out;
                            -ms-transition: all 0.3s ease-in-out;
                            -o-transition: all 0.3s ease-in-out;
                            transition: all 0.3s ease-in-out;
                        }
                        .vid-img-holder::after {
                            content: '';
                            display: block;
                            background: url("images/play-btn.png") no-repeat;
                            width: 73px;
                            height: 73px;
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            margin: auto;
                            z-index: 1;
                            -webkit-transition: all 0.3s ease-in-out;
                            -moz-transition: all 0.3s ease-in-out;
                            -ms-transition: all 0.3s ease-in-out;
                            -o-transition: all 0.3s ease-in-out;
                            transition: all 0.3s ease-in-out;
                        }

                            .vid-img-holder canvas {
                                position: relative;
                                display: block;
                                width: 100%;
                            }
                /* HOVER */
                .vid-item a:hover .vid-img-holder::before {
                    opacity: 0;
                }

        .vid-blog-slider .slick-arrow {
            position: absolute;
            top: 41.6%;
            width: 50px;
            height: 50px;
            color: #505050;
            background: #ffffff;
            font-size: 18px;
            z-index: 5;
            padding: 16px 0;
            text-align: center;
            cursor: pointer;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }
        .vid-blog-slider .slick-next.slick-arrow {
            right: 0;
        }
        .vid-blog-slider .slick-prev.slick-arrow {
            left: 0;
        }


/* FOOTER */
.footer-wrapper {
    position: relative;
    display: block;
    width: 100%;
    padding: 85px 0 49px;

}
.ip-container .footer-wrapper {
    border-top: 1px solid #a5a5a5;
}
    .footer-top {
        position: relative;
        display: block;
        text-align: center;
    }
        .footer-logo img {
            width: 100%;
            max-width: 249px;
        }

        .footer-contacts {
            position: relative;
            display: block;
            padding: 25px 0 36px;
            font: 300 18px 'Barlow', sans-serif;
        }
            .footer-contacts .phone {
                position: relative;
                display: inline-block;
                vertical-align: middle;
                color: #666666;
                margin-right: 14px;
            }
                .footer-contacts .phone a {
                    color: #666666;
                }
                .footer-contacts .phone span.ai-font-devices-mobile {
                    color: var(--primary);
                    font-size: 15px;
                    margin-right: 5px;
                }
                
            .footer-contacts .email {
                position: relative;
                display: inline-block;
                vertical-align: middle;
            }
                .footer-contacts .email a {
                    color: var(--primary);
                }
                .footer-contacts .email span.ai-font-envelope-o {
                    color: var(--primary);
                    font-size: 11px;
                    margin-right: 5px;
                }

        .footer-remax img {
            width: 100%;
            max-width: 166px;
        }

    .footer-bottom {
        position: relative;
        display: block;
        padding: 43px 0 0;
    }
        .footer-navigation {
            position: relative;
            display: block;
            padding-top: 0;
        }
            /* Footer navigation */
            .footernav {
                text-align: center;
                padding-top: 0;
                margin: 0;
            }
                .footernav li {
                    position: relative;
                    display: inline-block;
                    padding: 0 1%;
                }
                .footernav li::after {
                    content: '';
                    display: block;
                    background: #777777;
                    width: 1px;
                    height: 14px;
                    position: absolute;
                    top: 3px;
                    right: -2px;
                }
                .footernav li:last-child::after {
                    display: none;
                }
                    .footernav li a {
                        font: 400 14px 'Barlow', sans-serif;
                        color:#777777;
                        text-transform: capitalize;
                        text-decoration: none;
                        outline: none;
                    }
                    .footernav li a:hover {
                        color: var(--primary);
                    }

        .footer-copyright {
            position: relative;
            display: block;
            text-align: center;
            color: #777777;
            padding-top: 19px;
            font: 400 12px/17px 'Barlow', sans-serif;
        }
            .footer-copyright a {
                color: var(--primary);
            }
            
        .footer-mls {
            text-align: center;
            position: relative;
            display: block;
            color: var(--primary);
            font-size: 21px;
            padding-top: 17px;
        }



/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
/* IP BANNER */
.ipbg-banner {
    position: absolute;
    display: block;
    background: url("images/slide1.jpg") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 350px;
}
    .ipbg-banner:before {
        content: '';
        display: block;
        background: -moz-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
        background: -webkit-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
        background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80000000', endColorstr='#00000000',GradientType=0 );
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 1;
    }
    .ipbg-banner:after {
        content: '';
        display: block;
        background: rgba(0,0,0,0.15);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 1;
    }

#inner-page-wrapper {
    padding-top: 350px;
}

/* 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%;
    text-align: center;
    margin-top: 63px;
}
.sidebar .cta-btn-holder {
    margin: 10px auto;
}

/* 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 post/page main headings (h1) */
#content .entry-title {
    color: var(--primary);
    font: normal 36px 'Barlow', sans-serif;
}

/* Style category/archive/etc main headings (h1) */
#content .archive-title {
    color: var(--primary);
    font: normal 36px 'Barlow', sans-serif;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    color: var(--primary);
    font: normal 36px 'Barlow', sans-serif;
}


/* MARKET SNAPSHOT PAGE */
.market-btn-wrap {
    position: relative;
    display: block;
    margin: 40px 0 0;
}
    #content .market-btn-wrap p {
        display: none;
    }
    .market-btn-wrap .cta-btn-holder {
        position: relative;
        display: block;
        width: 100%;
        height: 100px;
        max-width: 360px;
        margin: 0 auto;
    }
        .market-btn-wrap .cta-btn-holder a,
        .market-btn-wrap .cta-btn-holder .cta-btn-content,
        .market-btn-wrap .cta-btn-holder .cta-btn-content::after {
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            border-radius: 0;
        }

    .market-form-wrap {
        position: relative;
        text-align: center;
    }
        .market-form-wrap h3 {
            text-transform: uppercase;
        }
        .owner-form-fields {
            position: relative;
            display: block;
            margin: 0 5px;
            height: 35px;
        }
            .owner-form-fields::before {
                content: '';
                clear: both;
            }
            .owner-form-fields input,
            .owner-form-fields select {
                padding: 0 15px;
                margin: 0 auto;
                height: 30px;
                width: 100%;
                background: rgba(255,255,255,0);
                border: 1px solid #bababa;
                outline: none;
                appearance: none;
                -webkit-appearance: none;
                -moz-appearance: none;
            }

            .owner-form-fields select {
                background: transparent url(images/dropdown-arrow.png) no-repeat scroll right 8px center;
            }
           /* .owner-form-fields.left {
                width: 49%;
                float: left;
            }
            .owner-form-fields.right {
                width: 49%;
                float: right;
            }*/
            .market-form-wrap input#market-send-btn {
                background: #444444;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                border: none;
                -webkit-border-radius: 0;
                -moz-border-radius: 0;
                border-radius: 0;
                text-transform: uppercase;
                color: #ffffff;
                height: 35px;
                margin-top: 10px;
            }


/* CONTACT PAGE */
.page-id-38 article#content {
    text-align: center;
}
.page-id-38 #content .entry-title {
    color: var(--primary);
    font: normal 50px 'Barlow', sans-serif;
}
.page-id-38 .aidefcf-title span,
.page-id-38 .ai-contact-wrap span {
    font-size: 30px;
}
.page-id-38 .aidefcf-title {
    font-size: 25px;
}
.page-id-38 .ai-contact-wrap span.context-mob,
.page-id-38 .ai-contact-wrap span.context-email {
    line-height: 30px;
    font-size: 24px;
    font-weight: 500;
}
.page-id-38 *[class*=aidefcf-wrapper-contact-us] .wpcf7 {
    margin: 0 auto;
}

ul#ihf-search-location-tabs {
    margin-left: 0;
}

ul.chosen-results {
    margin-left: 0px !important;
}

ul.chosen-results {
    padding-left: 0 !important;
}

ul#ihf-detail-extrainfotabs {
    margin-left: 0;
}

#content .searchform label.screen-reader-text {
    display: inline-block;
    vertical-align: middle;
}

#content .searchform input {
    display: inline-block;
    vertical-align: top;
    height: 32px;
}

#content .searchform input[type="submit"] {
    border: 1px solid #9a9a9a;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font: normal 16px 'Barlow', sans-serif;
    color: #9a9a9a;
    background: #fff;
}

.market-form-wrap .wpcf7-response-output {
    margin: 4em 0.5em 1em;
    /* border: 2px solid #f7e700; */
}

.off-wrapper a {
    word-wrap: break-word;
}

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

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

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

