/*
Theme Name: R | A Home Team
Description: http://rahometeamcom.rs4.aios-staging.com
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.5
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
 *
 *******************************************************/
 #main-wrapper {
    overflow: hidden;
 }

 .aios-mobile-header-wrapper {
 	z-index: 1035 !important;
 }
/* Sub Menu */
#nav li {
    position: relative;
    display: inline-block;
    /* margin-right: 50px; */
    margin-right: 40px;
}

    #nav li:last-child {
        margin-right:  0 !important;
    }

    #nav > li > a {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 19px;
        letter-spacing: .050em;
        color: #464646;
        text-transform: uppercase;
        position: relative;
    }

    #nav .com-nav .sub-menu {
        min-width: 216px;
    }

        #nav > li > a::before, #nav > li > a::before {
            content: "";
            position: absolute;
            z-index: 1;
            left: 51%;
            right: 51%;
            bottom: -11px;
            background: #4f6814;
            height: 3px;
            -webkit-transition-property: left, right;
            transition-property: left, right;
            -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
        }

            #nav > li:hover > a:before, #nav > li:focus > a:before, #nav > li:active > a:before {
                left: 0;
                right: 0;
            }
  
#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
 	width:100%;
 	min-width:149px;
    left: 50%;
    padding-top: 37px;
    transform: translateX(-50%);
    -webkit-transform: translate(-50%, 20px);
   transform: translate(-50%, 20px);
   transition: all .5s ease-in-out;
   -webkit-transition: all .5s ease-in-out;
   -moz-transition: all .5s ease-in-out;
   -webkit-backface-visibility: hidden;
   opacity: 0;
   visibility: hidden;
}
.resources-tab ul {
    min-width: 220px !important;
} 
#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 12px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: .050em;
    text-transform: uppercase;
}
#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 #9cadb5;
    color: #fff;
    text-decoration: none;
}
#nav .sub-menu .sub-menu {
    margin-left: 100%;
 	top:0;
}
#nav li:hover > .sub-menu {
    -webkit-transform: translate(-50%, 0px);
   transform: translate(-50%, 0px);
   opacity: 1;
   visibility: visible;
}
#nav .sub-menu li {
    position: relative;
    background: #4f6814;
    width: 100%;
    text-align: center;
}


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

/* Global */

body{
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	background: #FFF;
	color: #505050;
	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; */
}
/*Header Wrapper*/
header.header {
    font-size: 0;
    position: fixed;
    padding: 37px 20px;
    width: 100%;
    z-index: 1034;
    background: rgba(255, 255, 255, .80);
    margin-top: 47px;    
    -webkit-transition: all .325s ease-in-out;
    -moz-transition: all .325s ease-in-out;
    -ms-transition: all .325s ease-in-out;
    transition: all .325s ease-in-out;
}

.header-logo img {
    -webkit-transition: all .925s ease-in-out;
    -moz-transition: all .925s ease-in-out;
    -ms-transition: all .925s ease-in-out;
    transition: all .925s ease-in-out;
}

header.header.black {
    margin-top: 0;
    padding: 15px 30px;
    box-shadow: 1px black;
    -webkit-box-shadow: 0 0 10px 1px #444444;
    box-shadow: 0 0 10px 1px #444444;    
}

header.header.black .header-logo img {
    max-width: 330px;
}

header.header.black .header-bottom {
    padding-top: 16px;
}

header.header.black .header-right-logo img {
    max-width: 91px;
}

    .header-holder {
        max-width: 1440px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
    }

        .header-left {
            display: inline-block;
            vertical-align: top;
            width: 30.20%;
            /* margin-top: 10px; */
        }

            .header-logo {
                position: relative;
                z-index: 4;
            } 

                header.header::after {
                    content: '';
                    width: 51%;
                    height: 100%;
                    position: absolute;
                    top: 0;
                    left: 0;
                    background-image: url(images/header-logo.png);
                    z-index: -1;
                    background-size: 100% 100%;
                    background-repeat: no-repeat;
                }

        .header-right {
            display: inline-block;
            vertical-align: top;
            width: 59.79%;
            text-align: right;
        }

        .header-right-logo {
            display: inline-block;
            vertical-align: top;
            width: 10.00%;
            text-align: right;
            /* padding-top: 17px; */
        }

            .header-right-logo img {
                float: right;
                -webkit-transition: all .825s ease-in-out;
                -moz-transition: all .825s ease-in-out;
                -ms-transition: all .825s ease-in-out;
                transition: all .825s ease-in-out;
            }

            .header-address-item {
                display: inline-block;
                vertical-align: top;
            }

            .header-address-holders:first-child {
                margin-bottom: 14px;
            }

                .header-bottom {
                    padding-top: 38px;
                    -webkit-transition: all .925s ease-in-out;
                    -moz-transition: all .925s ease-in-out;
                    -ms-transition: all .925s ease-in-out;
                    transition: all .925s ease-in-out;
                }

                .header-address-item:first-child {
                    margin-right: 46px;
                } 

                .header-address-item em.ai-mobile-phone {
                    font-family: 'Poppins', sans-serif;
                    font-weight: 300;
                    font-size: 16px;
                    color: #4f6814;
                }

                .header-address-item a.asis-mailto-obfuscated-email {
                    font-family: 'Poppins', sans-serif;
                    font-weight: 300;
                    font-size: 16px;
                    color: #4f6814;
                }

                	.header-address-item a:hover {
                		color: #9cadb5;
                	}

                .header-address-item:first-child span {
                    font-size: 18px;
                }

                .header-address-item span {
                    font-size: 14px;
                    color: #4f6814;
                    padding-right: 6px;    
                }

header.header.black #nav .sub-menu {
    padding-top: 16px;
}                
/*End Of Header Wrapper*/

/*Slideshow Wrapper*/
.hp-slideshow {
    position: relative;
}

    .hp-slideshow::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 59%;
        content: '';
        background-image: linear-gradient(transparent, rgba(0, 0, 0, .9));
    }

    .hp-slideshow::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 59%;
        content: '';
        background-image: linear-gradient(rgba(0, 0, 0, .9), transparent);
    }
/*End of Slideshow Wrapper*/

/*Slideshow Smi*/
.slideshow-smi-inner {
    padding: 39px 0 10px;
}
    .slideshow-smi {
        background: #4f6814;
        width: 62px;
        top: 66%;
        position: absolute;
        z-index: 3;
        transform: translateY(-50%);
        text-align: center;
        border-radius: 17px;
        left: -9px;
    }

    .slideshow-address-item:first-child {
        margin-bottom: 24px;
    }

    .slideshow-address-item:first-child em {
        font-size: 18px;
    }

    .slideshows-smi {
        margin-top: 154px;
        position: relative;
    }
        .slideshow-address {
            position: relative;
        }

        .slideshow-address::after {
            position: absolute;
            top: 81px;
            left: 49%;
            height: 122px;
            width: 1px;
            content: '';
            background: #899a61;
            z-index: 137;
        }

    .slideshow-smi a {
        display: block;
        position: relative;
        margin-bottom: 29px;
    }

    .slideshow-address-item em {
        color: #fff;
    } 

        .slideshow-smi-item em {
            font-size: 17px;
            color: #fff;
        }

        .slideshow-smi a:hover .slideshow-smi-item em {
            color: #9bacb1;
        } 
/*End of Slideshow Smi*/

/*Quick Search Wrapper*/
.quick-search-wrapper {
    position: absolute;
    bottom: 70px;
    width: 100%;
    font-size: 0;
    z-index: 2;
}
    .qs-title {
        text-align: center;
        margin-bottom: 25px;    
    }

    .qs-title span {
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        color: #fff;
        font-size: 45px;
        text-transform: uppercase;
        letter-spacing: .050em;
    }

    .qs-long {
        width: 22%;
        display: inline-block;
        vertical-align: top;
        padding-right: 4px;    
    }

    .qs-short {
        width: 14%;
        display: inline-block;
        vertical-align: top;
        padding-right: 4px;
    }

    .qs-sub {
        /* width: 18.14%; */
        display: inline-block;
        vertical-align: top;
        padding-left: 4px;
    }

        .qs-long select,
        .qs-long input,
        .qs-short select,
        .qs-short input {
            width: 100%;
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
            font-size: 10px;
            letter-spacing: .050em;
            color: #666666;
            height: 59px;
            text-transform: uppercase;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background: #fff;
            border: 0;
            background-image: url(images/bg-arrow.png);
            background-repeat: no-repeat;
            background-position: top 26px right 13px;
            padding-left: 12px;
        }

        .qs-sub input.btnsubmit {
            height: 123px;
            width: 100%;
            background: #4f6814;
            border: 0;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: .050em;
            padding: 0;
            -webkit-transition: all .225s ease-in-out;
            -moz-transition: all .225s ease-in-out;
            -ms-transition: all .225s ease-in-out;
            transition: all .225s ease-in-out;
        }
            .qs-sub input.btnsubmit:hover {
                background: #9cadb5;
        }
        .bootstrap-select>.dropdown-toggle, .bootstrap-select>.dropdown-toggle:hover, .bootstrap-select>.dropdown-toggle:focus, .bootstrap-select>.dropdown-toggle:active
        {

             width: 100%;
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
            font-size: 10px;
            letter-spacing: .050em;
            color: #666666;
            height: 59px;
            text-transform: uppercase;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background: #fff;
            border: 0;
            background-image: url(images/bg-arrow.png);
            background-repeat: no-repeat;
            background-position: top 26px right 13px;
            padding-left: 12px;
            border-radius: unset;
        }
        .bootstrap-select.btn-group .dropdown-toggle .filter-option {
            font-size: 10px !important;
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
            letter-spacing: .050em;
            color: #666666;

        }
/*End of Quick Search Wrapper*/

/*CTA Wrapper*/
section.cta-wrapper{
    background-image: url(images/cta-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 75px 0;    
    z-index: 1;
    position: relative;
}
.cta-inner a {
    display: block;
    position: relative;
    padding: 10px;
    z-index: 3;
}

    .cta-inner a:hover .cta-item{
        background: #9cadb5;
    }

    .cta-inner a:hover span {
        color: #fff;
    }

    .cta-inner a:hover::after {
        background: #e8e8e8;
    }

    .cta-inner a::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(#6c8252, #9bacb1);
        content: '';
        z-index: -1;
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -ms-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .cta-item {
        text-align: center;
        padding: 53px 0;
        background: #f8f8f8;
        -webkit-transition: all .325s ease-in-out;
        -moz-transition: all .325s ease-in-out;
        -ms-transition: all .325s ease-in-out;
        transition: all .325s ease-in-out;
    }
    .cta-inner a span {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 16px;
        letter-spacing: .050em;
        text-transform: uppercase;
        color: #383838; 
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -ms-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;   
    }
        .cta-inner a span span {
            display: block;
            font-weight: 200;
            font-size: 32px;
        }
/*End of CTA Wrapper*/

/*Welcome Wrapper*/
section.welcome-wrapper {
    background-image: url(images/welcome-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.welcome-inner{
    padding-top: 55px;    
    position: relative;
    z-index: 2;
}
    .welcome-inner .container{
        position: relative;
    }
    .welcome-wrapper::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: '';
        background-color: rgba(116, 116, 116, .21);
        z-index: 1;
    }

.welcome-holder .row {
    display: flex;
    align-items: flex-end;
}

.welcome-holder::before {
    position: absolute;
    top: 160px;
    left: 50px;
    color: #9cadb5;
    z-index: 3;
    height: 6px;
    content: '01';
    font-size: 20px;
    width: 274px;
    font-family: 'Poppins', sans-serif;
}

.welcome-title h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 65px;
    color: #3a3a3a;
    text-transform: uppercase;
}

    .welcome-title h1 span {
        color: #4f6814;
    }
        .welcome-title p {
            font-family: 'Poppins', sans-serif;
            font-weight: 200;
            font-size: 18px;
            color: #797979;
            text-transform: uppercase;
            letter-spacing: .150em;
            margin-top: 6px;    
        }

        .welcome-desc {
            max-width: 465px;
            width: 100%;
            margin-top: 51px;
        }

            .welcome-desc p {
                font-family: 'Poppins', sans-serif;
                font-weight: 300;
                font-size: 12px;
                color: #000;
                letter-spacing: .040em;
                line-height: 22px;
                margin-bottom: 12px;
            }

                .welcome-inners {
                    background: #fff;
                    width: 100%;
                    padding-left: 90px;
                    padding-bottom: 47px;
                    padding-top: 60px;  
                    overflow: hidden;
                }

                .welcome-right {
                    margin-left: -156px;
                    margin-right: -81px;
                }

                .welcome-left {
                    max-width: 706px;
                    width: 100%;
                    padding-top: 75px;    
                    position: relative;
                }

                    .welcome-inner::after {
                        position: absolute;
                        top: 235px;
                        left: 0;
                        height: 6px;
                        background: rgba(255, 255, 255, .64);
                        content: '';
                        width: 274px;
                    }

                    

        .welcome-btn a {
            font-family: 'Poppins', sans-serif;
            font-weight: 200;
            font-size: 15px;
            color: #3a3a3a;
            display: block;
            border: 1px solid #4f6814;
            letter-spacing: .100em;
            width: 253px;
            text-align: center;
            text-transform: uppercase;
            padding: 20px 0;
            -webkit-transition: all .925s ease-in-out;
            -moz-transition: all .925s ease-in-out;
            -ms-transition: all .925s ease-in-out;
            transition: all .925s ease-in-out;
        }      

            .welcome-btn a:hover {
                background: #4f6814;
                color: #fff;
            }  
/*End of Welcome Wrapper*/
/*Communities wrapper*/
section.Communities-wrapper {
    background-image: url(images/com-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-bottom: 102px;
}

.Communities-wrapper::after {
    position: absolute;
    top: 9.6%;
    left: 0;
    height: 6px;
    background: rgba(255, 255, 255, .64);
    content: '';
    width: 454px;
}

.Communities-wrapper::before {
    position: absolute;
    top: 7.6%;
    left: 27%;
    color: #fff;
    z-index: 3;
    height: 6px;
    content: '02';
    font-size: 20px;
    width: 274px;
    font-family: 'Poppins', sans-serif;
}

.com-item canvas {
    height: 100%;
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.comu-title {
    text-align: center;
    color: #ffffff;
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 50px;
    letter-spacing: .050em;
    padding: 90px 0;    
}

    .com-item{
        position: relative;
        box-shadow: 25px black;
        -webkit-box-shadow: 0 0 40px -11px rgba(68, 68, 68, .5);
        box-shadow: 0 0 45px -11px rgba(68, 68, 68, .7);
        overflow: hidden;
        text-align: center;
    }

    .communities-inner a {
        display: block;
        position: relative;
        margin-bottom: 16px;    
    }
        .communities-inner a:hover .com-desc {
            opacity: 0;
        }

        .communities-inner a:hover .com-item::after {
            background-image: none !important;
            height: 100%;
            background-color: rgba(26, 26, 26, .60) !important;
        }

        .communities-inner a:hover .com-desc-para {
            opacity: 1;
            top: 50%;
        }

        .com-bg::after {
            background-image: linear-gradient(transparent, rgba(0, 0, 0, .7)) !important;
        }
        
        .com-item::after {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 38%;
            content: '';
            background-image: linear-gradient(transparent, #000);
            -webkit-transition: all .325s ease-in-out;
            -moz-transition: all .325s ease-in-out;
            -ms-transition: all .325s ease-in-out;
            transition: all .325s ease-in-out;
        }

        .com-item:nth-child(2)::after {
            background-image: linear-gradient(transparent, #000);
        }

        .com-item::before {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background: rgba(158, 159, 153, .20);
            content: '';
        }
            .com-desc {
                position: absolute;
                z-index: 5;
                color: #fff;
                bottom: 8%;
                font-family: 'Poppins', sans-serif;
                font-weight: 200;
                font-size: 25px;
                text-transform: uppercase;
                letter-spacing: .070em;
                width: 100%;
                text-align: center;
                -webkit-transition: all .925s ease-in-out;
                -moz-transition: all .925s ease-in-out;
                -ms-transition: all .925s ease-in-out;
                transition: all .925s ease-in-out;
            }
                .com-desc-para {
                    position: absolute;
                    z-index: 5;
                    width: 100%;
                    top: -200%;
                    left: 50%;
                    opacity: 0;
                    transform: translate(-50%, -50%);
                    text-align: center;
                    font-family: 'Poppins', sans-serif;
                    font-weight: 200;
                    font-size: 13px;
                    color: #fff;
                    max-width: 325px;
                    margin: 0 auto;
                    width: 100%;
                    line-height: 26px;
                    -webkit-transition: all .925s ease-in-out;
                    -moz-transition: all .925s ease-in-out;
                    -ms-transition: all .925s ease-in-out;
                    transition: all .925s ease-in-out;
                }   
                    .com-desc-para h2 {
                        font-family: 'Poppins', sans-serif;
                        font-size: 25px;
                        text-transform: uppercase;
                        letter-spacing: .070em;
                        margin-bottom: 21px;
                    }

.com-right {
    margin-left: -7px;
}

.com-left {
    margin-right: -7px;
}

.comu-btn {
    margin-top: 47px;
}

    .comu-btn a {
        display: block;
        margin: 0;
        font-family: 'Poppins', sans-serif;
        font-weight: 200;
        font-size: 15px;
        color: #fff;
        text-transform: uppercase;
        border: 1px solid #fff;
        width: 272px;
        text-align: center;
        padding: 20px 0;
        margin: 0 auto;
        -webkit-transition: all .325s ease-in-out;
        -moz-transition: all .325s ease-in-out;
        -ms-transition: all .325s ease-in-out;
        transition: all .325s ease-in-out;
    }    

        .comu-btn a:hover {
            background: #4f6814;
           border: 1px solid #4f6814; 
        }                
/*End of Communities*/

/*Testimonials wrapper*/
section.testimonials-wrapper {
    background-image: url(images/testi-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 105px;
    background-position: center;
    position: relative;
}

.testi-inner {
    position: relative;
}

.testi-inner::after {
    position: absolute;
    width: 370px;
    height: 293px;
    bottom: -21%;
    right: 3%;
    content: '';
    background-image: url(images/quotes-img.png);
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.testimonials-wrapper::after {
    position: absolute;
    top: 23.6%;
    right: 0;
    height: 6px;
    background: #e0e0e0;
    content: '';
    width: 566px;
}

.testimonials-wrapper::before {
    position: absolute;
    top: 18.6%;
    right: 18.6%;
    color: #9cadb5;
    z-index: 3;
    height: 6px;
    content: '03';
    font-size: 20px;
    width: 274px;
    font-family: 'Poppins', sans-serif;
}
    .testi-title {
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 50px;
        text-transform: uppercase;
        letter-spacing: .050em;
        text-align: center;
    }

.testi-global {
    max-width: 948px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
}

.testi-desc {
    margin-top: 100px;
}

    .testi-desc p {
        font-family: 'Poppins', sans-serif;
        font-weight: 200;
        font-size: 15px;
        color: #505050;
        line-height: 30px;
    }

.testi-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #557888;
    margin-top: 35px;    
}

.testimonials-wrapper .slick-dots li {
    display: inline-block;
    margin-right: 12px;
}

.testimonials-wrapper .slick-dots li.slick-active button {
    background: #9cb3bd;
}

    .testimonials-wrapper .slick-dots li button {
        font-size: 0;
        padding: 0;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 0;
        background: #8e8e8e;
        -webkit-transition: all .325s ease-in-out;
        -moz-transition: all .325s ease-in-out;
        -ms-transition: all .325s ease-in-out;
        transition: all .325s ease-in-out;
    }

    .testimonials-wrapper ul.slick-dots {
        text-align: right;
        margin-top: 49px;
        position: relative;
        z-index: 2;    
    }
/*End of testimonials wrapper*/

/*blog wrapper*/
section.blog-wrapper {
    background-image: url(images/blog-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 141px;    
    position: relative;
}

section.blog-wrapper::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(181, 182, 178, .10);
    content: '';
    z-index: 1;
}

.blog-inner::after {
    position: absolute;
    top: 14.6%;
    left: 0;
    height: 6px;
    background: #dedede;
    content: '';
    width: 295px;
}

.blog-inner::before {
    position: absolute;
    top: 11.3%;
    left: 17.1%;
    color: #9cadb5;
    z-index: 3;
    height: 6px;
    content: '04';
    font-size: 20px;
    width: 274px;
    font-family: 'Poppins', sans-serif;
}

.blog-inner {
    z-index: 2;
    position: relative;
}

.blog-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 50px;
    color: #2c2c2c;
    padding-left: 68px;    
    letter-spacing: .050em;
    margin-bottom: 50px;    
    text-transform: uppercase;
}

.blog-date-inner span {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 16px;
    display: block;
    color: #fff;
}

    .blog-date-inner span span {
        font-weight: 500;
        font-size: 50px;
        display: block;
    }

.blog-item {
    width: 108px;
    height: 108px;
    background: #b9b9b5;
    border-radius: 50%;
    text-align: center;
    border: 3px solid #fff;
    position: relative;
    display: inline-block;
    vertical-align: top;
    -webkit-box-shadow: 0 0 40px -11px rgba(68, 68, 68, .5);
    box-shadow: 1px 1.7px rgba(68, 68, 68, .7);    
}

    .blog-date {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
    } 

    .blog-date-title {
        display: inline-block;
        vertical-align: top;
        max-width: 424px;   
        margin-left: 21px;   
        padding-top: 10px;      
    }

        .blog-date-title h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: 200;
            font-size: 20px;
            color: #2c2c2c;
            letter-spacing: .040em;
            margin-bottom: 16px;    
        }   

        .blog-date-title span {
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
            color: #858585;
            font-size: 13px;
            letter-spacing: .040em;
            line-height: 24px;
        }

.blog-global {
    background: #fff;
    max-width: 670px;
    width: 100%;
} 

    .blog-global-holder{
        padding-left: 46px;
        padding-top: 74px;
        padding-bottom: 7px;
    }

.blog-green {
    background: #4f6814;
}  

.blog-date-title a {
    color: #7b929d;
}

    .blog-item-holder {
        margin-bottom: 68px;
    }     
/*end of blog wrapper*/

/*Footer contact wrapper*/
footer.footer {
    position: relative;
    z-index: 0;
}

.footer-contact {
    position: relative ;
}
    .footer-contact::before {
        filter: grayscale(1);
        background-image: url(images/contact-bg.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .footer-contact::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(82, 82, 82, .67);
        z-index: 1;
    }

        .footer-holder {
            position: relative;
            z-index: 2;
        }

.footer-address {
    margin-top: 37px;
}

    .footer-address-item:first-child {
        margin-bottom: 21px;
    }

    .footer-address-item span {
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        font-size: 14px;
        color: #abbac1;
        font-style: italic;
        padding-right: 12px;
    }

        .footer-address-item em {
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
            font-size: 14px;
            color: #fff;
        }    

        .footer-address-item a.asis-mailto-obfuscated-email {
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
            font-size: 14px;
            color: #fff;
        }
                .footer-address-item a:hover {
                    color: #9cadb5;
                }

    .footer-smi {
        margin-top: 20px;
    }    

             .footer-smi a {
                display: inline-block;
                vertical-align: top;
                position: relative;
                font-size: 20px;
                color: #fff;
                padding-right: 33px;
            } 
                    .footer-smi a:hover {
                        color: #4f6814;
                    }

.footer-form {
    max-width: 606px;
    width: 100%;
    font-size: 0;
    padding-left: 47px;
}  

    .footer-form form {
        position: relative;
    }                  

.footer-form-inner {
    margin-top: 30px;
}

    .footer-form-title {
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 40px;
        color: #fff;
        letter-spacing: .050em;
        text-transform: uppercase;
    }

.git-short {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 8px;
}

.git-long {
    width: 100%;
    margin-bottom: 8px;
}

    .git-short input,
    .git-long input {
        width: 100%;
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        font-size: 14px;
        color: #fff;
        border: 0;
        background: transparent;
        border: 1px solid #fff;
        height: 52px;
        padding-left: 16px;
    }

.git-left { padding-right: 4px; }
.git-right { padding-left: 4px; } 

.git-btn {
    margin-top: 33px;
}

        .git-btn .wpcf7-submit {
            border: 0;
            width: 252px;
            margin: 0 auto;
            display: block;
            font-family: 'Poppins', sans-serif;
            font-weight: 200;
            font-size: 15px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: .100em;
            background: #5a7617;
            border: 1px solid #fff;
            padding: 20px 0;
            -webkit-transition: all .325s ease-in-out;
            -moz-transition: all .325s ease-in-out;
            -ms-transition: all .325s ease-in-out;
            transition: all .325s ease-in-out;
        }

            .git-btn .wpcf7-submit:hover {
                    background: #b9b9b5;
            }

.footer-contact {
    position: relative;
    padding: 134px 0 102px;
}

        .footer-form .wpcf7-response-output {
            font-size: 12px;
            color: #fff !important;
            text-align: center;
            position: absolute;
            width: 100%;
            margin: 0;
        }

        .footer-form span.wpcf7-not-valid-tip {
            font-size: 12px;
            position: absolute;
            width: 174px;
        }


.footer-bottom {
    background: #1f1f1f;
    padding: 53px 0 20px;
}

.footer-nav {
    margin-bottom: 19px;
}

    .footernav > li {
        display: inline-block;
        padding-right: 42px;
    }

        .footernav > li > a {
            font-family: 'Poppins', sans-serif;
            font-weight: 200;
            font-size: 14px;
            color: #fff;
            text-transform: uppercase;
        }

        .footernav > li > a:hover {
           color: #5a7617; 
       }

.copyright {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #afafaf;
}

    .copyright a{
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #afafaf;
    }
        .copyright a:hover {
            color: #5a7617;
        }

.footer-bottom-right {
    display: inline-block;
    vertical-align: top;
    float: right;
}

.footer-bottom-left {
    display: inline-block;
    vertical-align: top;
}  

    .mls-logo {
        padding-top: 12px;
    } 

        .mls-item {
            display: inline-block;
            color: #afafaf;
            font-size: 27px;
        } 

/*End of footer background wraper*/

/*For sidebar purpose*/
.sidebar-qs{
    position: relative;
    z-index: 10;
}
.sidebar-qs .quick-search-wrapper {
    position: relative;
    bottom: 0 !important;
    background: #5a7617;    
    padding: 20px 10px;
	overflow: hidden;
}

.sidebar-qs .qs-form-wrapper {
    max-width: 550px;
    margin: 0 auto;
}

.sidebar-qs .qs-long {
    width: 100%;
    padding: 0;
    padding-bottom: 4px;
}

.sidebar-qs .qs-short {
    width: 50%;
    padding: 0;
    padding-bottom: 4px;    
}

.sidebar-qs .qs-sub {
    padding: 0;
    width: 100%;
}

.sidebar-qs .qs-left { padding-right: 2px; }
.sidebar-qs .qs-right { padding-left: 2px; }

.sidebar-qs .qs-title span {
    font-size: 27px;
}

.sidebar-cta .cta-item {
    padding: 23px 0;
}

.sidebar-cta .cta-inner a span span {
    font-size: 24px;
}

.sidebar-cta .cta-inner a {
    margin-top: 20px;
}
/*End of sidebar*/

/*IP Communities*/
.ip-com-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;    
}
    .ip-communties-page a {
        display: block;
        width: 100%;
        height: auto;
    }
    .ip-communities-holder canvas {
        display: block;
        width: calc(100% + 30px);
        height: 100%;
        background-size: cover;
        background-position: center;
        webkit-transition: all .225s ease-in-out;
        -moz-transition: all .225s ease-in-out;
        -ms-transition: all .225s ease-in-out;
        transition: all .225s ease-in-out;
        background-repeat: no-repeat;
        transform: translateX(-30px);
    }
    .ip-communties-page a:hover .ip-communities-holder::before {
        opacity: 1;
    }
    .ip-communties-page a:hover .ip-communities-holder::after {
        opacity: 0;
    }
    .ip-communties-page a:hover .ip-communities-holder canvas {
        transform: translateX(0);
    }
    .ip-communities-holder{
        position: relative;
    }
    .ip-communities-holder::before {
        content: '';
        position: absolute;
        top: 0;
        opacity: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        background: rgba(79, 104, 0, .6);
        -webkit-transition: all .225s ease-in-out;
        -moz-transition: all .225s ease-in-out;
        -ms-transition: all .225s ease-in-out;
        transition: all .225s ease-in-out;
    }
    .ip-communities-holder::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .3);
        -webkit-transition: all .225s ease-in-out;
        -moz-transition: all .225s ease-in-out;
        -ms-transition: all .225s ease-in-out;
        transition: all .225s ease-in-out;
    }
        .ip-desc {
            position: relative;
            /* top: 50%;
            left: 50%; */
            width: 100%;
            /* height: 100%; */
            text-align: center;
            /* transform: translate(-50%, -50%); */
            color: #fff;
            text-transform: uppercase;
            font-size: 21px;
            z-index: 2;
            -webkit-transition: all .325s ease-in-out;
            -moz-transition: all .325s ease-in-out;
            -ms-transition: all .325s ease-in-out;
            transition: all .325s ease-in-out;
        }
        .ip-border {
            width: calc(100% - 40px);
            height: calc(100% - 40px);
            position: absolute;
            top: 20px;
            left: 20px;
            border: 1px solid #fff;
            z-index: 2;
            -webkit-transition: all .225s ease-in-out;
            -moz-transition: all .225s ease-in-out;
            -ms-transition: all .225s ease-in-out;
            transition: all .225s ease-in-out;
            opacity: 0;
            transform: translateX(-20px);
        }
            .ip-communties-page a:hover .ip-border {
                opacity: 1;
                transform: translateX(0);
            }

.ip-com-main-img canvas {
    display: block;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}            


/*End of IP Communities*/
 
/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
.ip-banner{
    position: relative;
    width: 100%;
}
    .ip-banner::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        background: rgba(0,0,0,.6);
    }
    .ip-banner canvas{
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        min-height: 250px;
        background-color: #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;
            }

/*Communities page*/

.ip-desc-hover {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
	width: 100%;
	height: 100%;
    font-size: 12px;
	display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    text-align: center;
    padding: 0 25px;
    color: #fff;
    opacity: 1;
    -webkit-transition: all .925s ease-in-out;
    -moz-transition: all .925s ease-in-out;
    -ms-transition: all .925s ease-in-out;
    transition: all .925s ease-in-out;
    line-height: 1.5;
}
.ip-desc-hover p{
	display: none;
}
.page-id-31 #ihf-main-container .panel:first-child {
    display: none;
}

.ip-communties-page a:hover .ip-desc-hover {
    opacity: 1;
}
.ip-communties-page  a:hover .ip-desc {
    top: 0;
}

.page-id-31 #inner-page-wrapper .ai-contact-wrap span.content-title {
    font-size: 20px;
}

/*End of communities page*/            
/* Adjust minimum height of page area */ 
#content-sidebar, #content-full{ min-height: 500px; margin-top: 20px;}

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

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

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

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

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title { 
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 45px;
    color: #3a3a3a;
    text-transform: uppercase;
}

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

}



/* IHF Fixes */
ul#ihf-search-location-tabs, ul#ihf-detail-extrainfotabs,
ul.chosen-results {
    margin-left: 0px !important;
    padding-left: 0px !important;
}
#ihf-main-container .ihf-mapsearch-refine-overlay{
    height: 100%;
}
#ihf-main-container #ihf-map-canvas{
    min-height: 450px;
}

.category-blog #content .archive-subtitle{
    margin: 0;
    line-height: 1.2;
    margin-top: -5px;
}

.qs-form-wrapper .bootstrap-select.btn-group .dropdown-menu{
    top: 59px;
    bottom: auto;
    min-width: 250px;
}

.qs-form-wrapper .bootstrap-select.btn-group .dropdown-menu.inner{
    max-height: 200px !important;
}
.qs-form-wrapper .bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: inline-block;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
} 

.ihf-grid-result-address{
    display: block;
}

#ihf-main-container > div:not(.ihf-advanced-property-search) #ihf-advsearch-features, 
#ihf-main-container > div:not(.ihf-advanced-property-search) #ihf-advsearch-features + .row, 
#ihf-main-container > div:not(.ihf-advanced-property-search) #ihf-advsearch-features + .row + .row,
#ihf-main-container > div:not(.ihf-advanced-property-search) #ihf-advsearch-features + .row + .row + .row,
#ihf-main-container > div:not(.ihf-advanced-property-search) #ihf-advsearch-features + .row + .row + .row + .row,
#ihf-main-container > div:not(.ihf-advanced-property-search) #ihf-advsearch-features + .row + .row + .row + #hideOnMobileDevices + .row,
#ihf-main-container > div:not(.ihf-advanced-property-search) #ihf-advsearch-features + .row + .row + .row + .row + .row,
#ihf-main-container > div:not(.ihf-advanced-property-search) #ihf-advsearch-features + .row + .row + .row + .row + .row + .row,
#ihf-main-container > div:not(.ihf-advanced-property-search) #ihf-advsearch-features + .row + .row + .row + .row + .row + .row + .row,
#ihf-main-container > div:not(.ihf-advanced-property-search) #ihf-advsearch-features + .row + .row + .row + .row + .row + .row + .row + .row{
	margin-left: 0;
	margin-right: 0;
}

.footer-long-logo{
	background: #1f1f1f;
    padding: 0 0 40px;
}
.footer-long-logo img{
	margin: 0 auto;
    filter: invert(1);
    -webkit-filter: invert(1);
	max-width: 150px;
}

.row.qs-add-search .col-md-4 {
	padding: 4px 4px 0 0px;
}

.qs-add-search input {
	width: 100%;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: 10px;
	letter-spacing: .050em;
	color:
	#666666;
	height: 59px;
	text-transform: uppercase;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background:#fff;    
	border: 0;
	background-image: url(images/bg-arrow.png);
	background-repeat: no-repeat;
	background-position: top 26px right 13px;
	padding-left: 12px;
	border-radius: 0;
}

.sidebar-qs .row.qs-add-search .col-md-12 {
	padding: 0;
	margin-bottom: 4px;
}

.sidebar-qs .qs-sub input.btnsubmit {
	height: 49px;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */

