/*
Theme Name: jbrown-pending.com
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.8
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
 *
 *******************************************************/
 
#nav {
    font-size: 0;
    text-align: center;
}
    #nav li {
        position: relative;
    }
        #nav li a {
            display: block;
            font-size: 16px;
            letter-spacing: 0.1em;
            color: #fff;
            text-transform: uppercase;
            font-weight: 500;
            transition: color .3s ease, background .3s ease, padding .3s ease;
        }
        header.header.active #nav > li > a{
            color: #221f20;
        }
    #nav > li {
        display: inline-block;
        vertical-align: top;
    }
         #nav > li,
         #nav > li:before {
            margin: 0 39px;
         }

        #nav > li:before {
            content: "";
            position: absolute;
            left: 100%;
            top: 0;
            bottom: 0;
            margin-top: auto;
            margin-bottom: auto;
            width: 1px;
            height: 12px;
            background: #fff;
            opacity: 0.5;
            transition: background .3s ease;
        }
            .active #nav > li:before {
                background: #363636;
            }
        #nav > li:first-child {
            margin-left: 0;
        }
        #nav > li:last-child {
            margin-right: 0;
        }
            #nav > li:last-child:before {
                display: none;
            }
        #nav > li > a {
            padding: 33px 0;
        }
            #nav > li:hover > a,
            #nav > li:focus-within > a {
                color: #363636 !important;
            }

        #nav > li.menu-item-has-children > a:before {
            content: '';
            position: absolute;
            right: -15px;
            top: 0;
            bottom: 0;
            margin: auto;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 4px 4px 0 4px;
            border-color: #fff transparent transparent transparent;
            pointer-events: none;

            display: none;
        }
        header.header.active #nav > li.menu-item-has-children > a:before{
            border-color: #232020 transparent transparent transparent;
        }
        #nav .sub-menu {
            list-style: none outside none;
            margin: 0;
            background: #fff;
            padding: 15px 0 18px;
            position: absolute;
            width:100%;
            min-width:176px;
            text-align: center;
            left: calc( 50% - 88px);
            transform: translateY(20px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all .3s ease;
        }
            #nav > li > .sub-menu:before {
                content: '';
                position: absolute;
                bottom: 100%;
                left: 0;
                right: 0;
                margin: auto;
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 0 11px 10px 11px;
                border-color: transparent transparent #ffffff transparent;
            }
            #nav .sub-menu a {
                color: #656565;
                display: block;
                padding: 10px;
                line-height: 1.25;
            }
                #nav .sub-menu li:hover > a,
                #nav .sub-menu li:focus-within > a {
                    color: #8aa5c2;
                }
                #nav .sub-menu .sub-menu {
                    margin-left: 100%;
                    top:0;
                }
                    #nav li:hover > .sub-menu,
                    #nav li:focus-within > .sub-menu {
                        transform: translateY(0);
                        opacity: 1;
                        visibility: visible;
                        pointer-events: all;
                    }
                    #nav .sub-menu li {
                        position: relative;
                    }


/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/

/* Global */

body{
    font-family: 'Dosis', Arial, Helvetica, Georgia, Sans-serif;
    font-size: 15px;
    background: #FFF;
    color: #454545;
    margin: 0;

    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

a {
    color: inherit;
}
    a:hover {
        color: #a2bdda;
    }
    a:hover, a:focus, .slick-slide, .slick-slide a {
        outline: none;
    }

#main-wrapper {
    overflow: hidden;
}

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

.p-rel {
    position: relative;
}
.bg-white {
    background: #fff;
}

.section-title {
    font-size: 65px;
    font-weight: 500;
    text-transform: uppercase;
    color: #363636;
    line-height: 1;
}
    .section-title > span {
        display: block;
        letter-spacing: .58em;
        font-size: 18px;
        color: #777777;
        line-height: 1;
        margin-bottom: 23px;
    }
        .section-title > span span {
            display: inline-block;
            position: relative;
        }
            .section-title > span span:before,
            .section-title > span span:after {
                margin-left: 38px;
            }
            .section-title > span span:before {
                content: "\00B7";
                font-size: 55px;
                width: 17px;
                height: 17px;
                border-radius: 50%;
                border: 1px solid #cacaca;
                top: 0;
                left: 100%;
                position: absolute;
                color: #a2bdda;
                display: flex;
                justify-content: center;
                align-items: center;
                padding-left: 11px;
                padding-bottom: 10px;
                
            }
            .section-title > span span:after {
                content: '';
                position: absolute;
                top: 8px;
                left: calc(100% + 10px);
                height: 1px;
                width: 2000px;
                background: #cacaca;
            }
            .section-title > span span.line-to-left:before,
            .section-title > span span.line-to-left:after {
                margin-left: 0;
                margin-right: 38px;
                left: initial;
                right: 100%;
            }
            .section-title > span span.line-to-left:after {
                right: calc(100% + 10px);
            }
    .section-title em {
        font-style: normal!important;
        display: block;
        font-size: 48px;
        line-height: 1;
        text-align: right;
        margin-top: 6px;
        font-weight: 400;
        letter-spacing: 0;
    }

a.btn-a,
.btn-a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 187px;
    height: 60px;
    background: transparent;
    border: none;
    color: #474747;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 15px;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-property: border, background, color;
    border: 2px solid #a2bdda;
}
    a.btn-a:hover,
    .btn-a:hover,
    a.btn-a:focus,
    .btn-a:focus {
        background: #a2bdda;
        color: #fff;
    }

/* Fixed Background Fix */
.safari-true #slideshow .cycloneslider-template-fixed,
.ios-true #slideshow .cycloneslider-template-fixed{
    position: absolute;
}

.safari-true .section-gap canvas,
.ios-true .section-gap canvas,
.safari-true footer.footer,
.ios-true footer.footer{
    background-image: url(../../../wp-content/uploads/2020/09/slideshow.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*fixed header*/
header.header.active {
    background: #fff;
}
    .header.active .header-logo a,
    .ip-container .header-logo a {
        width: 174px;
    }
    .header.active .header-contact-info,
    .ip-container .header-contact-info {
        top: -30px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .header.active .header-navigation,
    .ip-container .header-navigation {
        padding-top: 0;
        margin-top: 0;
    }
        .header.active #nav > li > a,
        .ip-container #nav > li > a {
            padding: 27px 0;
        }

/*header*/
header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1011;
    background: transparent;
    transition: background .4s ease;
}
    .header-logo {
        width: 25%;
    }
        .header-logo a {
            display: block;
            width: 256px;
            max-width: 100%;
            transition: all .3s ease;
        }
            .header-logo a img {
                display: block;
                width: 100%;
                height: auto;
                filter: invert(1) brightness(1.2);
                transition: all .3s ease;
            }
            header.header.active .header-logo a img{
                filter: none;
            }

    .header-navigation {
        width: 100%;
        position: relative;
        padding-top: 23px;
        transition: padding .3s ease, margin .3s ease;
    }
        .header-contact-info {
            text-align: right;
            position: absolute;
            top: 0;
            right: 0;
            transition: all .3s ease;
        }
            .header-contact-info .contact {
                display: inline-block;
                vertical-align: middle;
                font-weight: 500;
                font-size: 14.69px;
                line-height: 1;
                color: #fff;
                margin-left: 35px;
                transition: color .3s ease;
            }
            header.header.active .header-contact-info .contact{
                color: #221f1f;
            }
                .header-contact-info .contact i.ai-font-envelope-f {
                    font-size: 12px;
                    margin-right: 9px;
                }
                .header-contact-info .contact i.ai-font-phone {
                    margin-right: 10px;
                    min-height: 14px;
                }
                .header-contact-info .contact a {
                    transition: color .3s ease;
                }
                .header-contact-info .contact a:hover {
                    color: #a2bdda;
                    text-decoration: none;
                }
            .header-contact-info .contact-smi {
                margin-left: 33px;
            }
                .header-contact-info .contact-smi a {
                    font-size: 21px;
                    margin-left: 15px;
                }


/*section 1*/
section.section-1 {
    position: relative;
}
    #slideshow {
        position: relative;
    }
        #slideshow:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /*background: rgba(0,0,0,0.16) url(images/overlay-slideshow.png) top left repeat-x;*/
            background: url(images/slide-overlay-shadow.png) center/auto no-repeat;
            z-index: 2;
        }
        .slideshow-canvas {
            display: block;
            width: 100%;
            min-height: 600px;
        }

        #slideshow .cycloneslider-template-fixed {
            height: 100%!important;
        }

        .slideshow-logo {
            position: absolute;
            top: 46.3%;
            transform: translateY(-50%);
            left: 0;
            right: 0;
            text-align: center;
            padding: 0 15px;
            z-index: 2;
        }
            .slideshow-logo a {
                display: inline-block;
            }
            .slideshow-logo img {
                display: block;
                max-width: 100%;
                height: auto;
                margin: 0 auto;
            }
        .scroll-icon-wrap {
            display: block;
            position: absolute;
            bottom: 41px;
            left: 0;
            right: 0;
            width: 120px;
            z-index: 2;
            margin: 0 auto;
        }
            .scroll-icon-wrap span {
                display: block;
                width: 100%;
                font-size: 10px;
                letter-spacing: 0.24em;
                text-transform: uppercase;
                text-align: center;
                font-weight: 600;
                line-height: 1;
                color: #fff;
                position: relative;
            }
                .scroll-icon-wrap span:before {
                    font-family: agentimage!important;
                    speak: none;
                    font-style: normal;
                    font-weight: 400;
                    font-variant: normal;
                    text-transform: none;
                    line-height: 1;
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                    content: "\b0167";
                    position: absolute;
                    top: -25px;
                    left: 0;
                    right: 0;
                    text-align: center;
                    font-size: 10px;
                    padding-left: 3px;
                }
            .scroll-icon {
                display: block;
                width: 23px;
                height: 37px;
                border-radius: 25px;
                border: 1px solid #fff;
                position: relative;
                margin: 0 auto 28px;
            }
                .scroll-icon:before {
                    content: '';
                    position: absolute;
                    left: 0;
                    right: 0;
                    margin: 0 auto;
                    width: 9px;
                    height: 9px;
                    border-radius: 50%;
                    border: 1px solid #fff;
                    top: 6px;
                    opacity: 0;
                    animation-name: scrollIcon;
                    animation-timing-function: ease;
                    animation-duration: 1.5s;
                    animation-fill-mode: forwards;
                    animation-iteration-count: infinite;
                }
                .scroll-icon:after {
                    content: '';
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: -10px;
                    width: 1px;
                    height: 18px;
                    background: #fff;
                    margin: 0 auto;
                }

                    @-webkit-keyframes scrollIcon {
                        0% {opacity: 0; top: 6px;}
                        10% {opacity: 1;}
                        80% { opacity: 1; }
                        95% {opacity: 0;}
                    }
                    @keyframes scrollIcon {
                        0% {opacity: 0; top: 6px;}
                        10% {opacity: 1;}
                        80% { opacity: 1; }
                        95% {opacity: 0; top: 18px;}
                    }
 

/*section 2*/
section.section-2 {
    z-index: 2;
}
    .bg-accent.accent-reverse {
        bottom: 0;
        top: initial;
        transform: rotateX(180deg);
    }
    .bg-accent {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 734px;
        max-height: 100%;
        background: url(images/bg-accent.jpg) center/cover no-repeat;
    }
        .bg-accent:before,
        .bg-accent:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        .bg-accent:before {
            background: #fff;
            opacity: 0.6;
        }
        .bg-accent:after {
            background: rgb(255,255,255);
            background: -moz-linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,1) 100%);
            background: -webkit-linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,1) 100%);
            background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,1) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
        }
    #welcome {
        position: relative;
        padding: 99px 0 0;
    }
        /*lines*/
        .line-accent-v {
            position: absolute;
            width: 1px;
            background: #ececec;
            pointer-events: none;
            top: 0;
            bottom: 0;
            left: 0;
        }
            #welcome .line-accent-v {
                left: 0;
                top: -37px;
                bottom: 0;
            }
        .line-accent-h {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: #ececec;
            pointer-events: none;
        }
        .circle-accent {
            width: 213px;
            height: 213px;
            border-radius: 50%;
            border: 1px solid #e4e4e4;
            position: absolute;
            pointer-events: none;
        }
            .circle-accent:before {
                content: '';
                position: absolute;
                width: 52px;
                height: 52px;
                border-radius: 50%;
                border: 1px solid #e4e4e4;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                margin: auto;
            }
        #welcome .circle-accent {
            bottom: 0;
            left: -106.5px;
            bottom: -106.5px;
            z-index: 2;
        }
        .welcome-text {
            margin-left: -25px;
            margin-top: 12px;
            position: relative;
            z-index: 1;
        }
            .welcome-title {
                text-align: left;
                position: relative;
                margin-bottom: 37px;
            }
                .welcome-title .section-title {
                    display: inline-block;
                }
                    .welcome-title .section-title span {
                        /* margin-bottom: -4px; */
                    }
                    .welcome-title .section-title em {
                        text-align: left;
                    }
                .welcome-title:after {
                    content: '';
                    position: relative;
                    display: block;
                    bottom: 0;
                    margin-left: -90px;
                    width: 264px;
                    height: 1px;
                    background: #ececec;
                    margin-top: 45px;

                    display: none;
                }

            .welcome-text-box {
                background: #fff;
                margin-left: -46px;
                padding: 55px 48px 59px;
                box-shadow: 17px 25px 30px 0px rgba(0, 0, 0, 0.03);
            }
                .welcome-text p {
                    font-weight: 300;
                    letter-spacing: .02em;
                    line-height: 24px;
                    margin-bottom: 24px;
                }
                .welcome-text-box a.btn-a {
                    margin-top: 30px;
                }
        .welcome-img {
            margin-right: -30px;
            position: relative;
        }
            .welcome-img img,
            .welcome-img canvas {
                display: block;
                width: 100%;
                height: auto;
            }
            .welcome-img:before {
                content: '';
                position: absolute;
                width: 393px;
                height: 329px;
                background: url(images/accent-leaf-welcome.png) center/auto 100% no-repeat;
                bottom: -95px;
                left: -117px;
            }
            .welcome-img-slice {
                position: absolute;
                bottom: 0;
                right: 0;
                width: 100%;
                height: 100%;
                background-repeat: no-repeat;
                background-position: bottom right;
                width: 30.396%;
                height: 53.433%;
                -webkit-filter: grayscale(1);
                filter: grayscale(1);
            }

/*section 3*/
section.section-3 {
    z-index: 1;
}
    #search-for-vacancies {
        position: relative;
        padding: 193px 0 149px;
    }
        .welcome-img:before {
            content: '';
            position: absolute;
            width: 393px;
            height: 329px;
            background: url(images/accent-leaf-welcome.png) center/auto 100% no-repeat;
            bottom: -95px;
            left: -117px;
        }
        #search-for-vacancies .container.custom-container {
            padding: 0 5px;
        }
            #search-for-vacancies .container.custom-container:before {
                content: '';
                position: absolute;
                width: 341px;
                height: 341px;
                background: #a2bdda;
                opacity: 0.7;
                top: 24.4%;
                left: -42px;
            }
            #search-for-vacancies .container.custom-container:after {
                content: '';
                position: absolute;
                width: 316px;
                height: 316px;
                border-radius: 50%;
                border: 2px solid #e9e9e9;
                left: 28%;
                top: -63px;
            }
        #search-for-vacancies .line-accent-v {
            left: 0;
        }
        #search-for-vacancies .line-accent-v + .line-accent-v {
            left: initial;
            right: 0;
        }
        #search-for-vacancies .section-title {
            margin: 0;
        }
        .sfv-list {
            margin: 80px -1px 0;
            font-size: 0;
            position: relative;
            z-index: 1;
            text-align: center;
        }
            .sfv-list:before {
                content: '';
                position: absolute;
                width: 288px;
                height: 388px;
                background: url(images/accent-leaf-vacancies.png) center/auto 100% no-repeat;
                bottom: -83px;
                right: -80px;
            }
            .sfv {
                display: inline-block;
                vertical-align: top;
                width: 50%;
                padding: 1px;
                position: relative;
            }
            .sfv:nth-child(1),
            .sfv:nth-child(4) {
                width: 55.751%!important;
            }
            .sfv:nth-child(2),
            .sfv:nth-child(3) {
                width: 44.249%!important;
            }
                .sfv-img {
                    display: block;
                    position: relative;
                    overflow: hidden;
                }
                    .sfv-img canvas {
                        display: block;
                        width: 100%;
                        height: 498px;
                        background-position: center;
                        background-size: cover;
                        transition: all .3s ease;
                    }
                    .sfv-img .btn-a {
                        width: 188px;
                        height: 60px;
                        position: absolute;
                        top: 38%;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        margin: auto;
                        opacity: 0;
                        transition: all .3s ease;
                        background: #a2bdda;
                        color: #fff;
                    }
                    .sfv-img:hover canvas,
                    .sfv:focus-within canvas {
                        transform: scale(1.1);
                    }
                    .sfv-img:hover .btn-a,
                    .sfv:focus-within .btn-a {
                        opacity: 1;
                    }

            .sfv-details {
                text-align: center;
                font-size: 15px;
                line-height: 27px;
                color: #fff;
                padding: 31px 10px 27px;
                background: rgba(52,52,52,0.88);
                position: absolute;
                width: 433px;
                max-width: 90%;
                margin: auto;
                bottom: 1px;
                left: 0;
                right: 0;
                pointer-events: none;
                transition: all .3s ease;
            }
                .sfv-details .price {
                    font-weight: 500;
                    font-size: 36px;
                    line-height: 1;
                    letter-spacing: 0.02em;
                    margin-bottom: 14px;
                }
                .sfv-details .address {
                    font-size: 18px;
                    letter-spacing: 0.05em;
                    line-height: 1.2;
                }
                .sfv-details .desc {
                    padding: 0 15px;
                    letter-spacing: .02em;

                    display: none;
                }

            .sfv:hover .sfv-details,
            .sfv:focus-within .sfv-details {
                bottom: 50%;
                transform: translateY(30%);
            }

            .sfv-controls {
                position: relative;
                top: 5px;
            }
                .sfv-arrow {
                    position: relative;
                    width: inherit;
                    /*height: 58px;*/
                    background: transparent;   
                    font-size: 20px;
                    border: none;
                    outline:none;
                    z-index: 1;
                    padding: 0;
                    transition: background .3s ease;
                }
                    .sfv-arrow i {
                        color: #fff;
                        font-size: 0;
                        width: 72px;
                        height: 58px;
                        vertical-align: middle;
                        display: inline-block;
                        background: url(images/icon-arrows.png) 0 0 no-repeat;
                        position: relative;
                    }
                        .sfv-arrow i:before {
                            content: '';
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            background: url(images/icon-arrows.png) 0 -58px no-repeat;
                            opacity: 0;
                            transition: all .3s ease;
                        }
                            .sfv-arrow:hover i:before,
                            .sfv-arrow:focus i:before {
                                opacity: 1;
                            }
                    .sfv-arrow.slick-prev i {
                        background-position: 0 0;
                    }
                        .sfv-arrow.slick-prev i:before {
                            background-position: 0 -58px;
                        }
                    .sfv-arrow.slick-next i {
                        background-position: -72px 0;
                    }
                        .sfv-arrow.slick-next i:before {
                            background-position: -72px -58px;
                        }
                    .sfv-arrow span {
                        position: relative;
                        font-weight: 600;
                        font-size: 14px;
                        letter-spacing: 0.2em;
                        line-height: 1;
                        color: #363636;
                        text-transform: uppercase;
                        vertical-align: middle;
                        display: inline-block;
                        top: 3px;
                        position: relative;
                    }
                .sfv-line {
                    width: 1px;
                    height: 63px;
                    background: #e1e1e1;
                    display: inline-block;
                    margin: 0 34px;
                }
            .sfv-arrow.slick-prev {
                /*right: 100%;*/
            }
                .sfv-arrow.slick-prev span {
                    margin-left: 24px;
                }
            .sfv-arrow.slick-next {
                /*left: 100%;*/
            }
                .sfv-arrow.slick-next span {
                    margin-right: 24px;
                }

/*section gap*/
.section-gap {
    background: rgba(0,0,0,.3);
    z-index: 1;
}
    .section-gap canvas {
        display: block;
        width: 100%;
        height: 485px;
    }
    .section-gap .line-accent-v {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .section-gap .line-accent-h {
        /*left: 218px;*/
        left: 13.625%;
        right: 0;
        top: 0;  
        bottom: 0;
        margin: auto;
    }
        .section-gap .line-accent-h:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: #e4e4e4;
        }
    .section-gap .circle-accent {
        left: -106.5px;
        top: 0;
        bottom: 0;
        margin: auto;
    }

/*section 4*/
section.section-4 {
    z-index: 1;
}
    #search-by-cities {
        position: relative;
        padding: 125px 0 150px;
    }
        #search-by-cities .line-accent-v {
            top: 0;
            bottom: 0;
            left: 0;
        }
        #search-by-cities .line-accent-v + .line-accent-v {
            left: initial;
            right: 0;
        }
        #search-by-cities .container:before {
            content: '';
            position: absolute;
            width: 341px;
            height: 341px;
            background: #a2bdda;
            opacity: 0.7;
            bottom: -51px;
            right: -45px;
        }
        #search-by-cities .container:after {
            content: '';
            position: absolute;
            width: 316px;
            height: 316px;
            border-radius: 50%;
            border: 2px solid #e9e9e9;
            bottom: -75px;
            left: 14.9%;
        }
        #search-by-cities .section-title {
            text-align: center;
            margin-bottom: 64px;
        }
        .sbc-list {
            font-size: 0;
            margin: 0 -33px 68px;
            display: -ms-grid;
            display: grid;
            /*grid-template-columns: 497px 303px 303px;*/
            -ms-grid-columns: 44.12% 27.94% 27.94%;
            grid-template-columns: 44.12% 27.94% 27.94%;
            -ms-grid-rows: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            /*gap: 17.5px 17.5px;*/
        }
        .sbc-wrap-inner .slick-track > div {
            padding: 0 20px;
        }
        .sbc-wrap-inner {
            font-size: 0;
            margin: 0 -10px;
            position: relative;
            z-index: 1;
        }
            .sbc-wrap-inner:before {
                content: '';
                position: absolute;
                top: -124px;
                left: -43px;
                width: 292px;
                height: 349px;
                background: url(images/accent-leaf-communities.png) center/cover no-repeat;
            }
        .sbc {
            position: relative;
            width: 25%;
            display: inline-block;
            vertical-align: top;
        }
            .sbc a {
                display: block;
                width: 100%;
                height: 100%;
                position: relative;
            }
                .sbc a canvas {
                    display: block;
                    width: 100%;
                    background-position: center;
                    background-size: cover;
                }
                .sbc a h3 {
                    line-height: 1;
                    letter-spacing: 0.1em;
                    color: #fff;
                    text-transform: uppercase;
                    position: absolute;
                    bottom: 27px;
                    left: 0;
                    text-align: center;
                    right: 0;
                    font-weight: 500;
                    font-size: 22px;
                    text-shadow: 1px 2px 2px rgba(0,0,0,0.1);
                    transition: all .3s ease;
                }
                .sbc a span {
                    font-weight: 600;
                    display: block;
                    position: absolute;
                    bottom: 20.5%;
                    left: 0;
                    right: 0;
                    font-size: 15px;
                    letter-spacing: 0.1em;
                    line-height: 1;
                    text-transform: uppercase;
                    z-index: 1;
                    color: #fff;
                    text-align: center;
                    opacity: 0;
                    transition: all .3s ease;
                }
                .sbc a:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: #a2bdda;
                    opacity: 0;
                    transition: all .3s ease;
                }
                .sbc a:hover:before,
                .sbc a:focus:before {
                    opacity: 1;
                }
                    .sbc a:hover h3,
                    .sbc a:focus h3 {
                        bottom: 55%;
                        text-shadow: none;
                    }
                    .sbc a:hover span,
                    .sbc a:focus span {
                        opacity: 1;
                        bottom: 31.5%;
                    }

        .sbc:nth-child(1) {
            -ms-grid-row: 1;
            -ms-grid-row-span: 2;
            -ms-grid-column: 1;
            -ms-grid-column-span: 1;
            grid-area: 1 / 1 / 3 / 2;
        }
        .sbc:nth-child(2) {
            -ms-grid-row: 1;
            -ms-grid-row-span: 1;
            -ms-grid-column: 2;
            -ms-grid-column-span: 1;
            grid-area: 1 / 2 / 2 / 3;
        }
        .sbc:nth-child(3) {
            -ms-grid-row: 1;
            -ms-grid-row-span: 1;
            -ms-grid-column: 3;
            -ms-grid-column-span: 1;
            grid-area: 1 / 3 / 2 / 4;
        }
        .sbc:nth-child(4) {
            -ms-grid-row: 2;
            -ms-grid-row-span: 1;
            -ms-grid-column: 2;
            -ms-grid-column-span: 1;
            grid-area: 2 / 2 / 3 / 3;
        }
        .sbc:nth-child(5) {
            -ms-grid-row: 2;
            -ms-grid-row-span: 1;
            -ms-grid-column: 3;
            -ms-grid-column-span: 1;
            grid-area: 2 / 3 / 3 / 4;
        }

/*testimonials*/
section.section-5 {
    background-image: url(images/bg-testimonials.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}
    .ios-true section.section-5 {
        background-attachment: scroll;
    }
    #testimonials {
        position: relative;
        padding: 104px 0 102px;
    }
        #testimonials .container:before {
            content: '';
            position: absolute;
            width: 341px;
            height: 341px;
            max-height: 100%;
            background: #a2bdda;
            opacity: 0.7;
            left: -35px;
            top: 69px;
        }
        #testimonials .container:after {
            content: '';
            position: absolute;
            width: 131px;
            height: 131px;
            border-radius: 50%;
            border: 2px solid #cacaca;
            left: -79px;
            top: 333px;
        }
        .testi-box {
            background: #fff url(images/bg-testimonials-box.jpg) center/cover no-repeat;
            position: relative;
            /*min-height: 594px;*/
            padding: 93px 0 90px;
            z-index: 1;
        }
            .testi-box:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: #fff;
                opacity: 0.75;
            }
            #testimonials .accent-leaf {
                position: absolute;
                bottom: -63px;
                right: -147px;
                width: 242px;
                height: 269px;
                background: url(images/accent-leaf-testimonials.png) center/cover no-repeat;
            }
            .testi-box .section-title {
                text-align: center;
                position: relative;
                margin-bottom: 64px;
                z-index: 1;
                padding: 0 15px;
            }
            .testi-list {
                text-align: center;
                position: relative;
                width: 738px;
                margin: 0 auto;
                max-width: 90%;
                z-index: 1;
            }
                .testi p {
                    font-weight: 300;
                    font-size: 17px;
                    line-height: 24px;
                    letter-spacing: 0.02em;
                    color: #454545;
                }
                .testi span {
                    display: block;
                    font-weight: 300;
                    font-size: 25px;
                    letter-spacing: 0.02em;
                    line-height: 1;
                    color: #454545;
                    text-transform: uppercase;
                    margin-top: 49px;
                }
        .testi-list ul.slick-dots {
            font-size: 0;
            position: relative;
            left: 0;
            right: 0;
            bottom: 0;
        }
            .testi-list ul.slick-dots li {
                display: inline-block;
                vertical-align: top;
                margin: 0 5px;
            }

                .testi-list ul.slick-dots li button {
                    width: 11px;
                    height: 11px;
                    background: transparent;
                    border: 1px solid #adadad;
                    border-radius: 50%;
                    outline: none;
                    transition: all .3s ease;
                    padding: 0;
                }
                .testi-list ul.slick-dots li.slick-active button {
                    background: #a2bdda;
                    border-color: #a2bdda;
                }
        .testi-controls {
            position: relative;
            justify-content: center;
            margin: 20px 0 0;
        }
            .testi-arrow {
                position: relative;
                width: inherit;
                /*height: 58px;*/
                background: transparent;   
                font-size: 20px;
                border: none;
                outline:none;
                z-index: 1;
                padding: 0;
                transition: background .3s ease;
            }
                .testi-arrow i {
                    color: #fff;
                    font-size: 0;
                    width: 72px;
                    height: 58px;
                    vertical-align: middle;
                    display: inline-block;
                    background: url(images/icon-arrows.png) 0 0 no-repeat;
                    position: relative;
                }
                    .testi-arrow i:before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        background: url(images/icon-arrows.png) 0 -58px no-repeat;
                        opacity: 0;
                        transition: all .3s ease;
                    }
                        .testi-arrow:hover i:before {
                            opacity: 1;
                        }
                .testi-arrow.slick-prev i {
                    background-position: 0 0;
                }
                    .testi-arrow.slick-prev i:before {
                        background-position: 0 -58px;
                    }
                .testi-arrow.slick-next i {
                    background-position: -72px 0;
                }
                    .testi-arrow.slick-next i:before {
                        background-position: -72px -58px;
                    }
                .testi-arrow span {
                    position: relative;
                    font-weight: 600;
                    font-size: 14px;
                    letter-spacing: 0.2em;
                    line-height: 1;
                    color: #363636;
                    text-transform: uppercase;
                    vertical-align: middle;
                    display: inline-block;
                    top: 3px;
                    position: relative;
                }
            .testi-line {
                width: 1px;
                height: 63px;
                background: #e1e1e1;
                display: inline-block;
                margin: 0 34px;
            }
        .testi-arrow.slick-prev {
            /*right: 100%;*/
        }
            .testi-arrow.slick-prev span {
                margin-left: 24px;
            }
        .testi-arrow.slick-next {
            /*left: 100%;*/
        }
            .testi-arrow.slick-next span {
                margin-right: 24px;
            }

/*section 6*/
section.section-6 {
    background-image: url(images/bg-contact-us.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}
    section.section-6:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 490px;
        max-height: 100%;
        background: rgb(255,255,255);
        background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
        background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
    }
    #footer-contact-us {
        position: relative;
        z-index: 1;
        padding: 150px 0 124px;
    }
        #footer-contact-us .section-title {
            text-align: center;
            margin-bottom: 67px;
        }
        #footer-contact-us h3 {
            font-weight: 500;
            font-size: 36px;
            line-height: 1;
            color: #363636;
            text-align: center;
            text-transform: uppercase;
            margin: 0 0 93px;
        }
        .fcu-form {
            font-size: 0;
            max-width: 960px;
            margin: 0 auto;
            position: relative;
        }
            .fcu-form:before {
                content: '';
                position: absolute;
                width: 159px;
                height: 350px;
                background: url(images/accent-leaf-contact.png) no-repeat;
                top: -125px;
                right: -55px;
            }

.section-gap-footer {
    height: 99px;
    position: relative;
    z-index: 1;
}
    .section-gap-footer .bg-accent:after {
        display: none;
    }
    .section-gap-footer .bg-accent {
        background-position: center 65%;
    }

/*footer*/
.ip-container footer.footer {
    background: url(/wp-content/uploads/2020/09/slideshow.jpg) center/cover no-repeat;
    background-attachment: fixed;
}
    .ios-true .ip-container footer.footer {
        background-attachment: scroll;
    }
footer.footer {
    z-index: 1;
    padding: 115px 0 83px;
}   

    footer.footer * {
        transform: translateZ(0);
    }

    footer.footer:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #161616;
        opacity: 0.75;
    }
    .footer .line-accent-v {
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 2;
    }
    .footer .line-accent-v + .line-accent-v {
        left: initial;
        right: 0;
        opacity: .59;
    }
    .footer .container {
        padding: 0 15px;
        position: relative;
        z-index: 1;
    }
        .footer .container:before {
            content: '';
            position: absolute;
            top: 0;
            left: 100%;
            bottom: 0;
            width: 1000px;
            background: #a2bdda;
        }
    .footer-contact-form {
        margin-top: 76px;
        margin-left: 42px;
    }
        .footer-contact-form .section-title {
            margin-bottom: 22px;
        }
        .footer-contact-form p {
            font-weight: 300;
            font-size: 15px;
            letter-spacing: .02em;
            line-height: 27px;
            color: #5d5c5c;
            margin-bottom: 22px;
        }
        .git-form {
            font-size: 0;
        }            
            .git-field {
                display: inline-block;
                vertical-align: top;
                width: 100%;
                padding: 6px 7px;
                position: relative;
            }
                .git-field input,
                .git-field textarea {
                    width: 100%;
                    height: 61px;
                    font-size: 15px;
                    letter-spacing: 0.1em;
                    color: #383838;
                    padding: 0;
                    border: none;
                    background: rgba(255,255,255,0.88);
                    outline: none;
                    text-transform: uppercase;
                    padding: 0 25px;
                }
                .git-field textarea {
                    padding-top: 30px;
                    resize: none;
                    height: 165px;
                    padding-right: 40px;
                }
            .git-col-6 {
                width: 50%;
            }
            .git-form .btn-a {
                width: 159px;
                height: 50px;
                margin-top: 36px;
                /*color: #fff;*/
                outline: none;
            }
            .git-submit {
                position: absolute;
                bottom: 26px;
                right: 30px;
                width: 36px;
                height: 35px;
                background: url(images/icon-plane.png) no-repeat;
                transition: all .3s ease;
            }
                .git-submit input[type="submit"] {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    font-size: 0;
                    opacity: 0;
                    padding: 0;
                }
                .git-submit:hover {
                    opacity: 0.8;
                }
                .git-submit span.ajax-loader {
                    position: absolute;
                    bottom: -20px;
                    right: 0;
                }

            .git-form form {
                position: relative;
            }
            .git-form .ajax-loader {
                position: absolute;
                bottom: -20px;
                left: 0;
            }
            .git-form .wpcf7-response-output {
                position: absolute;
                font-size: 12px;
                text-align: center;
                top: 100%;
                left: 0;
                right: 0;
                margin: 15px 0 0;
            }
            .git-form .wpcf7-form-control-wrap {
                display: block;
            }
            .git-form form .use-floating-validation-tip .wpcf7-not-valid-tip {
                font-size: 12px;
                top: 20px;
            }
            .git-submit span.ajax-loader {
                position: absolute;
                bottom: -20px;
                right: 0;
            }
            .fcu-form span.wpcf7-form-control-wrap {
                display: block;
            }
            .fcu-form .use-floating-validation-tip .wpcf7-not-valid-tip {
                font-size: 12px;
                top: 37%;
            }
            .fcu-form .wpcf7-response-output {
                font-size: 13px;
                text-align: center;
                margin: 6px 7px 0!important;
                color: #fff;
                letter-spacing: 0.1em;
                padding: 4px 0!important;
                position: absolute;
                left: 0;
                right: 0;
                top: 100%;
            }
                
    .footer-contact-info {
        /*min-height: 571px;*/
        color: #fff;
    }
        .footer-logo {
            text-align: center;
            margin-bottom: 99px;
        }
            .footer-logo a {
                display: inline-block;
            }
                .footer-logo a img {
                    display: block;
                    max-width: 100%;
                    height: auto;
                }
                .footer-logo a:hover {
                    opacity: 1;
                }
        .footer-contact-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            font-size: 35.35px;
            line-height: 1;
            text-transform: uppercase;
            margin-bottom: 43px;
        }
        .footer-contact-info .textwidget ul {
            margin: 0 0 101px;
            list-style: none;
            position: relative;
            padding: 0 0 0 7%;
            text-align: center;
        }
            .footer-contact-info .textwidget ul li:last-child {
                margin-bottom: 0;
            }
            .footer-contact-info .textwidget ul li {
                position: relative;
                font-size: 16px;
                letter-spacing: 0.1em;
                line-height: 1.3;
                font-weight: 300;
                margin-bottom: 8px;
                display: inline-block;
                vertical-align: top;
                text-align: left;
                margin: 0 40px;
            }
            .footer-contact-info .textwidget ul li:first-child {
                margin-left: 0;
            }
            .footer-contact-info .textwidget ul li:last-child {
                margin-right: 0;
            }
                .footer-contact-info .textwidget li strong {
                    font-weight: 500;
                    margin-bottom: 7px;
                    display: block;
                }
                    .footer-contact-info .textwidget li a {
                        transition: all .3s ease;
                    }
                    .footer-contact-info .textwidget li a:hover {
                        opacity: 0.6;
                    }

        .footernav {
            font-size: 0;
            text-align: center;
        }
            .footernav li {
                display: inline-block;
                vertical-align: top;
                margin: 5px 25px;
            }
                .footernav li a {
                    font-size: 14px;
                    letter-spacing: 0.1em;
                    line-height: 1.2;
                    color: #fff;
                    text-transform: uppercase;
                    transition: all .3s ease;
                }
                    .footernav li a:hover {
                        opacity: 0.6;
                    }
        .footer-copyright {
            font-size: 12px;
            letter-spacing: 0.1em;
            line-height: 1.3;
            text-align: center;
            color: #b2b2b2;
            margin: 15px 0 0;
        }
            .footer-copyright span {
                display: block;
                font-size: 26px;
                margin: 9px 0 0;
                color: #8e8e8e;
            }

        .footer-contact-info a {
            transition: all .3s ease;
        }
            .footer-contact-info a:hover {
                color: #fff;
            }


/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
.ip-banner{
    position: relative;
    width: 100%;
}
    .ip-banner::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.16) url(images/overlay-slideshow.png) top left repeat-x;
        z-index: 2;
    }
    .ip-banner canvas{
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        min-height: 300px;
        background-color: #f9f7f7;
        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: #FFF;
            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;
            }
    .ip-banner-logo {
        position: absolute;
        top: 55%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        text-align: center;
        z-index: 2;
        font-size: 0;
    }
        .ip-banner-logo a {
            display: inline-block;
        }
            .ip-banner-logo img {
                display: block;
                height: auto;
                width: 400px;
            }
/* 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: 1;
    margin-top: 0;

    font-size: 65px;
    font-weight: 500;
    text-transform: uppercase;
    color: #363636;
    line-height: 1;
}
#content .entry-title {
    text-align: center;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle { 
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    color: #363636;
    line-height: 1;
}

#content p {
    font-weight: 300;
    line-height: 1.8;
}

.sb-contact-info {
    position: relative;
}
    .sb-logo {
        margin-bottom: 20px;
        text-align: center;
    }
        .sb-logo img {
            max-width: 100%;
            height: auto;
        }

    aside .sb-contact-info ul {
        margin: 0;
        list-style: none;
    }
        .sb-contact-info ul li {
            position: relative;
            font-size: 13px;
            letter-spacing: .02em;
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 8px;
        }
            .sb-contact-info ul li strong {
                font-weight: 700;
                margin-right: 5px;
            }
            .sb-contact-info ul li i {
                margin-right: 5px;
            }
            .sb-contact-info ul li i.ai-font-phone {
                font-size: 15px;
                top: 3px;
            }
            .sb-contact-info ul li i.ai-font-fax-a {
                font-size: 18px;
                top: 2px;
            }
            .sb-contact-info ul li i.ai-font-envelope-f {
                font-size: 12px;
                top: 5px;
            }
            .sb-contact-info ul li i.ai-font-location-c {
                font-size: 18px;
                top: 5px;
            }

            .sb-contact-info ul li a {
                transition: color .3s ease;
            }
            .sb-contact-info ul li a:hover {
                color: #a2bdda;
            }
.sb-cta {
    position: relative;
}
    .sb-cta .btn-a {
        width: 100%;
        height: 80px;
        margin: 15px auto;
    }

.grecaptcha-badge {
    z-index: 9999;
    right: initial!important;
    left: 15px;
    width: 70px!important;
    overflow: hidden!important;
    transition: all .3s ease!important;
}
    .grecaptcha-badge:hover {
        width: 256px!important;
    }

#inner-page-wrapper {
    margin-bottom: 0;
}
    #inner-page-wrapper > .container {
        padding-bottom: 30px;
        padding-top: 30px;
    }
        #inner-page-wrapper > .container > .line-accent-v {
            top: 0;
            left: 0;
            bottom: 0;
        }
        #inner-page-wrapper > .container > .line-accent-v + .line-accent-v {
            left: initial;
            right: 0;
        }

/** Single (Single Page)  */
.back-to-link {
    position: relative;
}

.back-to-link a {
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    font-family: var(--primary-font);
    margin-top: 75px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.back-to-link a:hover {
    color: var(--primary-color);
}
/** End of Single (Single Page)  */

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

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

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

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

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

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

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

#content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
    margin-top: 0;
    font-size: 32px;
}

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

#content .archive-more {
    display: inline-block;
    vertical-align: middle;
    font-family: var(--primary-font);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-style: normal;
    text-decoration: none;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#content .archive-more:after {
    content: '';
    position: absolute;
    left: calc(100% + 23px);
    top: calc(50% - 1px);
    background: #ded1c1;
    width: 0;
    height: 2px;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#content .archive-more:hover {
    color: var(--primary-color);
}

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

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


/*COMMUNITIES*/
.single-communities #content .community-featured-image {
    display: none;
}
#content .community-title {
    text-align: center !important;
}
#listings-results .listings-grid .listings-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0,0,0,0.4);
}
.listing-template-default .aiosp-content .listings-popup+.aiosp-close {
    right: calc( ( 100vw - 800px ) / 2 );
    top: 20px;
}
.listing-template-default .aiosp-content .listings-popup > h2 {
    font-size: 40px;
    font-weight: 400;
    margin-top: 15px;
}
.listing-template-default .aiosp-content .listings-popup form {
    margin: 4px auto 0;
}
.listing-template-default .aiosp-content .listings-popup h3+p {
    margin: 5px 0 35px;
    text-align: center;
}
.listing-template-default .aiosp-content .listings-popup input[type="submit"],
.listing-template-default .aiosp-content .listings-popup button[type="submit"] {
    margin: 10px auto;
}
.community-wrap {
    margin: auto;
    width: 90%;
}
    #content .community-main p {
        line-height: 1;
    }

.listing-template-default #listings-details .listings-description h2 {
    margin-top: 50px;
}

.listing-template-default #listings-details .listings-link-navigation>li.listings-link-navigation-prev,
.listing-template-default #listings-details .listings-link-navigation>li.listings-link-navigation-next {
    visibility: hidden;
    pointer-events: none;
}
.page-template-property-listings .entry-title {
    color: #000;
}
.post-type-archive-communities #content .archive-title {
    text-align: center;
}
.communities-template-default #content .listings-wrap {
    margin-top: 0;
}

#listings-details .listings-cta.white>li>a#listings-cta-printable {
    display: none;
}
#content .about-content p {
    font-size: 18px;
}

.page-template-templatestemplate-contact-us-php .ip-banner canvas {
    min-height: 80px;
}
#gallery-4 img {
    border: 2px solid #cfcfcf;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

#content .about-inner {
    margin-bottom: 40px;
}

#content .about-form input[type="text"], #content .about-form input[type="email"], #content .about-form textarea {
    outline: none;
}

.error404 .error-page-cf-wrap .wpcf7-response-output {
    text-align: center;
    margin: 0;
} 

#ip-communities-details #content p#breadcrumbs {
    padding: 0 15px;
}

.ip-featured-communities-area .grid > a .grid-item {
    padding-top: 100%;
    overflow: hidden;
}

    .ip-featured-communities-area .grid > a .grid-item img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.floor-plan img {
    display: block;
    margin: 0 auto;
    max-width: 900px;
    width: calc(100% - 65px);
}

a.skiptobtn {
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 15px;
    z-index: -1;
    opacity: 0;
    background: rgba(255,255,255,0.5);
    color: #000;
  }
a.skiptobtn:focus {
    opacity: 1;
    z-index: 9;
    display: block;
  }

.margin-b {
    display: block;
    margin: 0 auto 20px;
}

.single-listing .aiosp-container.aiosp-image-holder {
    display: flex;
    align-items: center;
    justify-content: center;
}

#content .cu-form input[type="text"], #content .cu-form input[type="email"], #content .cu-form input[type="tel"], #content .cu-form textarea {
    outline: none!important;
}

body #content .cu-form {
    border-color: #a2bdda;
}
.bld{
    font-weight: 500 !important;
}

#content .cu-contact span.mobile-number.client-phone {
    display: none;
}

#listings-details p#breadcrumbs {
    position: relative;
    margin: 1.12em 0;
    font-weight: 300;
    line-height: 1.8;
}

.page-template-property-listings span.page-numbers.current {
    background: #a2bdda;
    border-color: #a2bdda;
}

.page-template-property-listings #listings-results .listings-pagination ul li a {
    color: #a2bdda;
}

    .page-template-property-listings #listings-results .listings-pagination ul li.active a,
    .page-template-property-listings #listings-results .listings-pagination ul li a.active,
    .page-template-property-listings #listings-results .listings-pagination ul li a:hover {
        border-color: #a2bdda;
        background: #a2bdda;
    }

.ip-comm-details-description .gallery, .custom-listings-main-desc .gallery {
    font-size: 0;
    line-height: 1;
}
    .ip-comm-details-description .gallery .gallery-item, .custom-listings-main-desc .gallery .gallery-item {
        /* margin: 0!important; */
    }
        .ip-comm-details-description .gallery .gallery-item a, .custom-listings-main-desc .gallery .gallery-item a {
            display: block;
            position: relative;
            padding-top: 100%;
            overflow: hidden;
        }
            .ip-comm-details-description .gallery .gallery-item a img, .custom-listings-main-desc .gallery .gallery-item a img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

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