/* 
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
 */
/* Reset Code */
body {
    padding: 0;
    margin: 0;
    background: #F3F3F3 !important;
    font-family: 'Open Sans', sans-serif;
}
body::before {
	content: "";
    background: url(../images/bg/1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
	opacity: 0.1;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	/*position: absolute;*/
	position: fixed;
	z-index: -1;   
}

body button,
.btn,
body a {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.btn:hover,
body button:hover {
    opacity: .8;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

body a:hover {
    opacity: .8;
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1.9;
    color: #999;
    font-family: 'Open Sans', sans-serif;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

/* //Reset Code */

/* colors code */
.text-bl {
    color: #343a40;
}

.text-wh {
    color: #fff;
}

.text-li {
    /*color: #f8f9fa;*/
}

.bg-li {
    background: #f8f9fa;
}

.bg-wh {
    background: #fff;
}

.let {
    letter-spacing: 1px;
}

/* //colors code */

/* bottom-to-top */
a.move-top {
    position: fixed;
    bottom: 3%;
    right: 2%;
    z-index: 0;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
}

a.move-top span {
    color: #000;
    font-size: 26px;
    line-height: 30px;
}

/* //bottom-to-top */

/* header */
header {
    background: #fff;
    border-bottom: 1px solid #e4e4e4;
    position: fixed;
    width: 100%;
    z-index: 999;
}

/* navigation */
/* CSS Document */
.toggle-2,
.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
}

#logo a {
    float: left;
    display: initial;
	font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    /*font-size: 46px;*/
    font-size: 42px;
    text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
	/* color: #ff6b6b; */ /* pink color */
    color: #00a851; /* green color */
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */
nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    /* float: right; */
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
}

/* Styling the links */
nav a {
    color: #000;
    /* text-transform: capitalize; */
    font-weight: 400;
    font-size: 15px;
    margin: 0 12px;
	padding-top: 10px;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

/* Background color change on Hover */
nav a:hover {
    color: #000;
    opacity: .8;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    top: 34px;
    background: #00a851;
    padding: 1px 1px 10px 20px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    z-index: 9;
    /* has to be the same number as the "line-height" of "nav a" */
}

nav ul ul li a:hover {
    color: #fff;
}

/* Display Dropdowns on Hover */
nav ul li:hover>ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 150px;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul li a {
    color: #fff;
    display: block;
    font-size: 14px;
    margin: 10px 0;
    letter-spacing: 1px;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}

/* Change ' +' in order to change the Dropdown symbol */
li>a:only-child:after {
    content: '';
}

li.cc-nav a {
    border: 1px solid #00a851;
    background: #FFFFFF;
    text-decoration: none;
}
li.cc-nav a {
    display: inline-block;
    padding: .8em;
    line-height: 1;
    /*font-size: 1.6rem;*/
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.free_property {
    background: #00a851;
    padding: 2px 8px;
    color: #FFFFFF;
    margin-left: 5px;
	animation: blinker 1s step-start infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
/* Media Queries
--------------------------------------------- */
@media(max-width: 1280px) {
    #logo {
        display: block;
        padding: 0;
        width: auto;
        text-align: center;
        float: none;
    }
	#logo h1 img { height: 40px !important;}
	#logo a { font-size: 30px !important;}
	.top-opts-left, .top-opts-right {width: 50% !important;	font-size: 15px;}
	.top-opts-username{display:none;}
	nav a {
        font-size: 14px;
    }
	#residential_tab .card, #commercial_tab .card, #commercial_properties .card, #property_dealers .card, #luxury_properties .card, #hot_properties .card {
		transform: translate(-14%) !important;
	}
	#new_properties .bttn_green{
		width:60% !important;
	}
	#new_property_tab .card{
		transform: translate(11%) !important;
	}
	.card.hovercursor.grid-view{width:330px !important;}
	.view-all-btn{width:415px;display:inline-block;}
	.view-all-btn button{ width:60% !important;}
}

@media all and (max-width : 991px) {
    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }
	#logo h1 img { height: 40px !important;}
	#logo a { font-size: 30px !important;}
	.top-opts-left, .top-opts-right {width: 50% !important;	font-size: 15px;}
	.top-opts-username{display:none;}
    nav {
        margin: 0;
    }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle+a,
    .menu {
        display: none;
    }

    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        padding: 7px 12px;
        font-size: 15px;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #eee;
        color: #000;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -o-border-radius: 4px;
        -ms-border-radius: 4px;
        -moz-border-radius: 4px;
        letter-spacing: 1px;
        margin-bottom: 0;
        cursor: pointer;
        transition: 0.5s all;
        -webkit-transition: 0.5s all;
        -moz-transition: 0.5s all;
        -o-transition: 0.5s all;
        -ms-transition: 0.5s all;
    }

    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        max-width: 115px;
        padding: 5px;
        font-weight: normal;
        font-size: 14px;
        letter-spacing: 2px;
        background: transparent;
        color: #000;
    }

    .toggle:hover {
        opacity: .8;
        transition: 0.5s all;
        -webkit-transition: 0.5s all;
        -moz-transition: 0.5s all;
        -o-transition: 0.5s all;
        -ms-transition: 0.5s all;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked+ul {
        display: block;
        padding: 15px 0;
        text-align: center;
        width: 100%;
    }

    nav ul {
        float: right;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: transparent;
    }

    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
    }

    /* Hide menus on hover */
    nav ul ul li:hover>ul,
    nav ul li:hover>ul {
        display: none;
    }

    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
        padding: 0;
    }

    nav ul ul li a {
        letter-spacing: 2px;
    }

    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */
    }

    .menu li.active a,
    .nav ul ul li a:hover {
        color: #fff;
        opacity: .8;
    }

    nav a {
        font-size: 14px;
        display: block;
        margin: 8px 0;
    }

    a.reqe-button {
        padding: 12px 20px;
        font-size: 13px;
        margin: 0 8px;
    }
}

@media all and (max-width : 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }

}

/* dropdown */
#demo {
    margin: 10px 0 0px 0;
}

#demo .wrapper {
    display: inline-block;
    position: relative;
}

#demo .parent {
    height: 100%;
    width: 100%;
    display: block;
    cursor: pointer;
    line-height: 30px;
    height: 30px;
    color: #fff;
    z-index: 2;
    position: relative;
    -webkit-transition: border-radius .1s linear, background .1s linear, z-index 0s linear;
    -webkit-transition-delay: .8s;
    text-align: center;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
}

#demo .parent:hover,
#demo .content:hover~.parent {
    -webkit-transition-delay: 0s, 0s, 0s;
}

#demo .content:hover~.parent {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 0;
}

#demo .content {
    position: absolute;
    top: 0;
    display: block;
    z-index: 1;
    height: 0;
    width: 150px;
    padding-top: 30px;
    -webkit-transition: height .5s ease;
    -webkit-transition-delay: .4s;
}

#demo .wrapper:active .content {
    height: 150px;
    z-index: 3;
    -webkit-transition-delay: 0s;
}

#demo .content:hover {
    height: 150px;
    z-index: 3;
    -webkit-transition-delay: 0s;
}

#demo .content ul {
    background: #fff;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#demo .content ul a {
    text-decoration: none;
    padding: 0;
}

#demo .content li {
    list-style: none;
    text-align: left;
    color: #999;
    font-size: 16px;
    line-height: 30px;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    border-top: 1px solid #eee;
}

#demo .content li:last-of-type {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* //dropdown */
/* //navigation */
/* //header */

/* banner */
.mian-content-wthree {
    background: url(../images/banner.jpg) no-repeat top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 30vw;
    z-index: 1;
    position: relative;
}

/* banner text */
.style-banner {
    padding-top: 14em;
    max-width: 800px;
}

.style-banner h3 {
    font-size: 56px;
    letter-spacing: 1px;
}

.style-banner h3 span {
    color: #00a851;
    background: #fff;
    padding: 0px 17px 5px;
    font-size: 50px;
}

.style-banner p {
    font-size: 18px;
    letter-spacing: 1px;
}

/* //banner text */
/* form */
.home-form-w3ls select.form-control {
    font-size: 15px;
    border: none;
    -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.28);
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.28);
    outline: none;
    letter-spacing: 1px;
    color: #5f5d5d;
    box-sizing: border-box;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    height: 46px !important;
    cursor: pointer;
}

.home-form-w3ls button {
    background: #00a851;
    color: #fff;
    padding: 11px 40px;
    /*padding: 13px 40px;
    margin-top: 2em;*/
    border: none;
    outline: none;
    letter-spacing: 1px;
    font-size: 16px;
    cursor: pointer;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

/* //form */
/* //banner */

/* bannner bottom */
h3.title-w3 {
    font-size: 42px;
}

h3.title-w3 span {
    color: #00a851;
}

h3.title-sub {
    font-size: 27px;
    line-height: 1.5;
    letter-spacing: 1px;
}

h3.title-sub span {
    display: block;
}

/* //bannner bottom */

/* services */
#services {
    background: url(../images/bg1.jpg) center no-repeat fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: relative;
}

.w3pvtits-services-grids h4 {
    font-size: 24px;
    letter-spacing: 1px;
}

.w3pvtits-services-grids .icon-effect-wthree {
    width: 70px;
    height: 70px;
    text-align: center;
    -webkit-box-shadow: 7px 4px 5px rgba(0, 0, 0, 0.37);
    -moz-box-shadow: 7px 4px 5px rgba(0, 0, 0, 0.37);
    box-shadow: 7px 4px 5px rgba(0, 0, 0, 0.37);
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 auto;
}

.w3pvtits-services-grids .icon-effect-wthree span {
    font-size: 2em;
    color: #00a851;
    line-height: 2.2;
}

.w3pvtits-services-grids {
    background: #fff;
    padding: 3em;
}

a.service-btn {
    color: #00a851;
    font-size: 14px;
    display: inline-block;
    letter-spacing: 1px;
    font-weight: 600;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

a.service-btn:hover {
    letter-spacing: 2px;
}

.img-posi-w3pvt {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* //services */


/* places */

.place-w3 {
    padding: 0 .5em;
}

.team-img {
    min-height: 330px;
    background-size: cover;
}

.team-img-1 {
    background: url(../images/p1.jpg) no-repeat center;
    background-size: cover;
}

.team-img-2 {
    background: url(../images/p2.jpg) no-repeat center;
    background-size: cover;
}

.team-img-3 {
    background: url(../images/p3.jpg) no-repeat center;
    background-size: cover;
}

.team-img-4 {
    background: url(../images/p4.jpg) no-repeat center;
    background-size: cover;
}

.team-content {
    padding: 3em 2em 0;
}

.team-meta {
    color: #eee;
    font-size: 13px;
    margin-top: 10px;
}

/* //places */

/* testimonials */
.clients {
    background: url(../images/bg2.jpg) no-repeat center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    position: relative;
}

.feedback-top p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: #e4e4e4;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    background-color: #fff;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #00a851;
}

.carousel-indicators {
    bottom: 0;
}

.img-pois-w3ls-2 {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* //testimonials */

/* blog */
.card-header:first-child {
    background: #00a851;
    padding: 1em;
}

.card {
    background-color: #fff;
    border: none;
}

h5.card-title a {
    color: #fff;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 1px;
}

.blog_w3icon span {
    /*color: #fff;*/
    font-size: 13px;
    word-spacing: 3px;
}

.card-body p {
    color: #333333;
    font-size: 14px;
}

/* //blog */

/* stats */

.middlesection-w3pvt {
    background: linear-gradient(#ffc845, #00a851);
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: relative;
    background: #00a851;
}

p.counter {
    color: #fff;
    font-size: 3em;
    font-weight: 800;
}

h3.title-w3-2 {
    font-size: 34px;
    letter-spacing: 1px;
    color: #212020;
}

.agents-w3 {
    position: absolute;
    left: 7%;
    top: -22%;
}

/* //stats */

/* gallery */
.gal-img img {
    padding: 10px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.gal-img:hover.gal-img img {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

/* popup */
.pop-overlay {
    position: fixed;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.pop-overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    max-width: 520px;
    position: relative;
    margin: 8em auto;
    padding: 3em 2em 2em;
}

.popup img {
    box-shadow: 0px 14px 23px 0 rgba(56, 56, 56, 0.23);
    -webkit-box-shadow: 0px 14px 23px 0 rgba(56, 56, 56, 0.23);
    -moz-box-shadow: 0px 14px 23px 0 rgba(56, 56, 56, 0.23);
}

.popup p {
    color: #333;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 1px;
    text-align: center;
}

.popup .close {
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    opacity: 1;
}

.popup .close:hover {
    color: #f14f5e;
}

/* //popup */
/* //gallery */

/* apps */

.apps_w3w3pvt {
    position: relative;
}

ul.apps-lists li {
    display: inline-block;
}

ul.apps-lists li a {
    background: #fff;
    color: #000;
    padding: 16px 30px;
    -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    margin: 0 6px;
}

ul.apps-lists li a span {
    color: #00a851;
    font-size: 32px;
    vertical-align: middle;
}

ul.apps-lists li a.active {
    background: #00a851;
    color: #fff;
}

ul.apps-lists li a.active span {
    color: #fff;
}

.img-podi-w3ls {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* //apps */

/* contact */

.contact {
    background: url(../images/bg4.jpg) no-repeat 0px 0px;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
}

.contact_grid_right input[type="text"],
.contact_grid_right input[type="email"],
.contact_grid_right textarea {
    outline: none;
    padding: 15px 15px;
    font-size: 14px;
    color: #000;
    background: #fff;
    letter-spacing: 1px;
    border: none;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.contact_grid_right textarea {
    min-height: 110px;
    resize: none;
    width: 100%;
}

.contact_grid_right button {
    outline: none;
    padding: 15px;
    font-size: 14px;
    color: #fff;
    background: #00a851;
    border: none;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    font-weight: 600;
    cursor: pointer;
}

/* //contact */

/* footer */

footer {
    background: #00a851;
}

.footer-grid h3 {
    font-size: 22px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-grid ul li a,
.footer-grid ul li {
    color: #eee;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 10px 0;
}

/* logo */
a.logo {
    /*font-size: 58px;*/
    font-size: 26px;
}

a.logo:hover {
    color: #fff;
}

.copyright-w3ls {
    background: #191919;
}

/* //logo */

/* copyright */
p.copy-right-grids {
    font-size: 14px;
    letter-spacing: 2px;
}

p.copy-right-grids a {
    color: #00a851;
}

/* //copyright */
/* social-icons */
.w3social-icons ul li {
    display: inline-block;
}

.w3social-icons ul li a {
    display: block;
    -webkit-box-shadow: 0px 0px 1px 0px rgba(255, 255, 255, 0.59);
    -moz-box-shadow: 0px 0px 1px 0px rgba(255, 255, 255, 0.59);
    box-shadow: 0px 0px 1px 0px rgba(255, 255, 255, 0.59);
    width: 36px;
    height: 36px;
    text-align: center;
}

.w3social-icons ul li a span {
    color: #fff;
    font-size: 15px;
    line-height: 36px;
}

.w3social-icons ul li a:hover {
    -webkit-box-shadow: 0px 0px 13px 2px #00a851;
    -moz-box-shadow: 0px 0px 13px 2px #00a851;
    box-shadow: 0px 0px 13px 2px #00a851;
}

/* //social-icons */
/* //footer */

/* inner banner */
.inner-banner-w3ls {
    background: url(../images/bg4.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    position: relative;
    z-index: 1;
}

/* login */
.modal-body {
    max-width: 600px;
    margin: 0 auto;
}

label.col-form-label {
    color: #fff;
    letter-spacing: 1px;
    font-size: 15px;
    margin-bottom: 5px;
}

.modal-body .form-control {
    background: #fff;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
    border: none;
    padding: 12px 14px;
    font-size: 15px;
}

button.button-style-w3 {
    outline: none;
    padding: 12px 20px;
    font-size: 14px;
    color: #fff;
    background: #00a851;
    border: none;
    border-radius: 0px;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    font-weight: 600;
    width: 100%;
    margin-top: 1em;
}

.text-style-w3ls {
    letter-spacing: 1px;
    font-size: 15px;
}

p.dont-do a:hover,
.text-style-w3ls:hover {
    color: #fff;
}

/* //login */

/* responsive */
@media(max-width: 1680px) {
    .style-banner {
        padding-top: 14em;
    }
}

@media(max-width: 1600px) {
    .style-banner {
        padding-top: 10em;
    }
}

@media(max-width: 1440px) {
    .img-posi-w3pvt {
        width: 10%;
    }

    .style-banner {
        padding-top: 10em;
    }

    .mian-content-wthree {
        min-height: 52vw;
    }
}

@media(max-width: 1366px) {
    h3.title-w3 {
        font-size: 40px;
    }

    .img-posi-w3pvt {
        width: 8%;
    }

    .style-banner h3 {
        font-size: 52px;
    }

    .style-banner p {
        font-size: 16px;
    }

    .mian-content-wthree {
        min-height: 54vw;
    }

}

@media(max-width: 1280px) {
    .w3pvtits-services-grids {
        padding: 2em;
    }

    .img-posi-w3pvt {
        width: 6%;
    }

    .style-banner {
        padding-top: 10em;
    }
}

@media(max-width: 1080px) {

    .footer-grid ul li a,
    .footer-grid ul li {
        font-size: 13px;
    }

    a.logo {
        font-size: 54px;
    }

    p.copy-right-grids {
        font-size: 13px;
    }

    .demo>li {
        max-width: 295px;
    }

    h3.title-w3 {
        font-size: 38px;
    }

    p {
        font-size: 14px;
    }

    ul.apps-lists li a {
        padding: 14px 25px;
        font-size: 15px;
    }

    ul.apps-lists li a span {
        font-size: 22px;
    }

    .img-podi-w3ls {
        width: 18%;
    }

    .serv-w3mk {
        padding: 0;
    }

    .team-img {
        min-height: 280px;
    }

    .card-body p {
        color: #333333;
        font-size: 13px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    nav.navbar {
        padding: 6px 0;
    }

    .mian-content-wthree {
        min-height: 720px;
    }

    p.counter {
        font-size: 2.6em;
    }
}

@media(max-width: 1024px) {
    #services {
        padding-bottom: 10em !important;
    }

    .img-posi-w3pvt {
        width: 7%;
    }
}

@media(max-width: 991px) {

    .contact_grid_right input[type="text"],
    .contact_grid_right input[type="email"],
    .contact_grid_right textarea {
        padding: 14px 15px;
        font-size: 13px;
    }

    .contact_grid_right textarea {
        min-height: 160px;
    }

    .demo>li {
        max-width: 215px;
    }

    .serv-w3mk {
        padding: 0 1em;
    }

    .w3pvtits-services-grids {
        padding: 3em;
        max-width: 400px;
        margin: 0 auto;
    }

    #services {
        padding-bottom: 4em !important;
    }

    .img-posi-w3pvt {
        width: 12%;
    }

    .team-img {
        min-height: 330px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 15px;
        padding: 0;
    }

    .style-banner h3 {
        font-size: 48px;
    }

    .style-banner p {
        font-size: 15px;
    }

    .mian-content-wthree {
        min-height: 780px;
    }

    .style-banner h3 span {
        font-size: 44px;
    }

    .agents-w3 {
        width: 17%;
    }
}

@media(max-width: 900px) {
    .agents-w3 {
        left: 4%;
    }
}

@media(max-width: 800px) {
    .img-podi-w3ls {
        width: 13%;
    }

    .agents-w3 {
        left: 0;
        width: 19%;
    }
}

@media(max-width: 768px) {
    .img-posi-w3pvt {
        width: 14%;
    }
}

@media(max-width: 736px) {
    .w3social-icons ul li a {
        font-size: 14px;
        width: 35px;
        height: 35px;
    }

    .demo>li {
        max-width: 240px;
    }

    ul.apps-lists li a {
        padding: 14px 17px;
        font-size: 14px;
    }

    h3.title-w3 {
        font-size: 36px;
    }

    .team-img {
        min-height: 290px;
    }

    .style-banner h3 {
        font-size: 42px;
    }

    .style-banner h3 span {
        font-size: 36px;
        padding: 0px 14px 5px;
    }

    .style-banner p {
        font-size: 14px;
    }

    .style-banner {
        padding-top: 10em;
    }

    .mian-content-wthree {
        min-height: 740px;
    }

    .w3layouts_stats_left {
        padding: 0;
    }

    p.counter {
        font-size: 2.2em;
    }

    .agents-w3 {
        width: 17%;
    }
}

@media(max-width: 667px) {
    ul.apps-lists li a {
        padding: 13px 11px;
    }

    ul.apps-lists li a span {
        font-size: 20px;
    }

    .img-podi-w3ls {
        width: 15%;
    }

    .modal-body .form-control {
        padding: 10px 14px;
    }
}

@media(max-width: 640px) {
    .img-podi-w3ls {
        width: 13%;
    }

    h3.title-w3 {
        font-size: 32px;
    }

    .agents-w3 {
        position: static;
        width: 26%;
    }

    .property-paper {
        text-align: center;
        margin-top: 1em;
    }
}

@media(max-width: 600px) {
    ul.apps-lists li a {
        padding: 13px 9px;
        font-size: 13px;
    }

    ul.apps-lists li a span {
        font-size: 18px;
    }

    .popup {
        margin: 5em auto;
    }
}

@media(max-width: 568px) {
    a.logo {
        font-size: 50px;
    }

    p {
        font-size: 13px;
    }

    ul.apps-lists li {
        display: block;
    }

    .img-podi-w3ls {
        width: 24%;
    }

    ul.apps-lists li a {
        padding: 15px 15px;
        margin: 6px 0;
    }

    .place-w3 {
        padding: 0 1em;
    }

    .team-img {
        min-height: 340px;
    }

    nav.navbar {
        padding: 3px 10px;
    }

    a.navbar-brand {
        font-size: 44px;
    }

    nav.navbar.fixed-top.navbar-expand-lg.navbar-light.navbar-fixed-top.top-nav-collapse {
        padding: 0px 10px;
    }

    .home-form-w3ls select.form-control {
        font-size: 14px;
    }

    .home-form-w3ls button {
        font-size: 15px;
    }

    .w3layouts_stats_left {
        padding: 0 1em;
    }

    .agents-w3 {
        width: 30%;
    }

    .popup {
        margin: 5em 1em;
    }
	h3.title-w3 {
        font-size: 32px;
    }
	.mian-content-wthree {
        min-height: 450px;
		margin-bottom: 40px;
    }
}

@media(max-width: 480px) {
    h3.title-w3 {
        font-size: 32px;
    }

    .demo>li {
        max-width: 202px;
    }

    #services {
        padding-bottom: 11em !important;
    }

    .img-posi-w3pvt {
        width: 16%;
    }

    .style-banner h3 {
        font-size: 30px;
    }

    .style-banner h3 span {
        font-size: 28px;
    }

    .style-banner {
        padding-top: 7em;
    }

    .style-banner p {
        font-size: 12px;
    }

    .mian-content-wthree {
        min-height: 450px;
		margin-bottom: 40px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .agents-w3 {
        width: 50%;
    }
	.middleCCPBox{
		padding: 15px 15px !important;
	}
	.bannerBox .middleBox{
		padding: 0px !important;
	}
	.citi_search_dd, .type_search_dd {
		min-height: 40px !important;
	}
	.inputGroupAdd .fa-map-marker, .inputGroupAdd .fa-building {
		top: 12px !important;
	}
	.searchBox .input-group .form-control {
		height: 40px !important;
	}
	.searchBox button {
		padding: 8px !important;
	}
}

@media(max-width: 440px) {
    .contact_grid_right textarea {
        min-height: 140px;
    }

    .demo>li {
        max-width: 100%;
    }
}

@media(max-width: 414px) {
    .img-podi-w3ls {
        width: 26%;
    }

    h3.title-sub {
        font-size: 25px;
    }

    .style-banner h3 {
        font-size: 38px;
    }

    .style-banner {
        padding-top: 8em;
    }

    .mian-content-wthree {
        /*min-height: 680px;*/
		min-height: 450px;
    }
}

@media(max-width: 384px) {
    p.copy-right-grids {
        font-size: 12px;
    }

    a.logo {
        font-size: 44px;
    }

    .contact_grid_right button {
        padding: 14px 0;
        font-size: 13px;
    }

    .img-posi-w3pvt {
        width: 20%;
    }

    .popup p {
        font-size: 13px;
    }
}

@media(max-width: 375px) {
    h3.title-w3 {
        font-size: 30px;
    }

    .w3pvtits-services-grids {
        padding: 2em;
    }

    a.navbar-brand {
        font-size: 40px;
    }

    .style-banner h3 {
        font-size: 34px;
    }

    .style-banner h3 span {
        font-size: 28px;
        padding: 0px 9px 4px;
    }

    .style-banner {
        padding-top: 7em;
    }

    .home-form-w3ls select.form-control {
        font-size: 13px;
    }

    .home-form-w3ls button {
        font-size: 14px;
        padding: 13px 30px;
    }

    .mian-content-wthree {
        min-height: 650px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 13px;
    }

    h3.title-w3 {
        font-size: 26px;
    }
}

@media(max-width: 320px) {
    p.copy-right-grids {
        letter-spacing: 1px;
    }

    .footer-grid ul li a,
    .footer-grid ul li {
        font-size: 12px;
    }

    .contact_grid_right textarea {
        min-height: 120px;
    }

    p {
        font-size: 12px;
    }

    h3.title-w3 {
        font-size: 26px;
    }

    .team-img {
        min-height: 300px;
    }

    .img-posi-w3pvt {
        width: 24%;
    }

    h3.title-sub {
        font-size: 22px;
    }

    .style-banner h3 {
        font-size: 30px;
    }

    .style-banner p {
        font-size: 11px;
    }

    .style-banner {
        padding-top: 6.5em;
    }

    .style-banner h3 span {
        font-size: 26px;
    }

    .mian-content-wthree {
        min-height: 620px;
    }

    .agents-w3 {
        width: 60%;
    }
}


/* Search Bar */
.middleCCPBox .form-group{
	margin-bottom: 0px !important;
}
.middleCCPBox{
    padding: 5px 25px;
    margin: 0px auto;
    /*max-width: 75%;*/
    transition: .3s;
    background: rgba(0,168,81,0.5);
    /*border-radius: 10px;
    height: 200px;*/
    z-index: 1;
}
.searchHomeFormTab ul {
    display: flex;
    justify-content: center;
	margin-bottom: 16px;
}
.searchHomeFormTab ul li {
    margin: 0 8px 0 8px;
    box-sizing: border-box;
    padding: 1px 0;
}
.searchHomeFormTab li {
    float: left;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    line-height: 30px;
    margin-right: 5px;
    position: relative;
}
.searchHomeFormTab li a {
    display: inline-block;
    height: 31px;
    text-decoration: none;
    background-color: rgba(255,255,255,0.5);
    color: #2a2a2a;
    outline: 0;
}
.searchHomeFormTab li a {
    border-radius: 0px;
    height: 31px;
    text-decoration: none;
    background-color: #9cd79e;
    color: #303030;
    font-size: 18px;
    font-weight: normal;
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
    padding: 0 20px;
    border: solid 1px #9cd79e;
}
.searchHomeFormTab li a.active {
    background-color: rgba(255,255,255,0.8);
    color: #000000;
}
.searchHomeFormTab li a.active {
    background-color: #00a851;
    color: #fff;
    border: solid 1px #FFFFFF;
}
.searchHomeFormTab li a.active:after {
    content: "";
    height: 8px;
    width: 8px;
    background-color: #00a851;
    border: solid 1px #FFFFFF;
    transform: rotate(45deg);
    border-top: 0;
    border-left: 0;
    display: inline-block;
    position: absolute;
    top: 26px;
    left: 50%;
    margin-left: -5px;
}
ul.dontCon li a#buyTab, ul.dontCon li a#rentTab {
    cursor: pointer;
}

/* //responsive */

/* */

@media (max-width: 768px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* display 3 */
@media (min-width: 768px) {
    
    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
      transform: translateX(33.333%);
    }
    
    .carousel-inner .carousel-item-left.active, 
    .carousel-inner .carousel-item-prev {
      transform: translateX(-33.333%);
    }
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left{ 
  transform: translateX(0);
}

.red{color:#FF0000;}

.contact_agence_name{ 
    display: initial;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 26px;
    text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
    color: #00a851;}
.contact_agence_name span{
}
.contact_agence_title{    color: #343a40;}
.box_contact {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #E6E6E6;
    border-image: none;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px 1px 3px;
    float: right;
    width: 40%;
    padding: 25px;
    transition: all 0.2s ease 0s;
    margin-right: 10px;
    background: #FFFFFF url(../images/contact-bubble.png) no-repeat scroll bottom 10px right 10px;
}
.mbt {
    margin-bottom: 30px !important;
}
.liner {
    border-bottom: 1px solid #E6E6E6;
    display: block;
    margin: -1px 0 20px;
    width: 100%;
}
/*jssor slider loading skin spin css*/
    .jssorl-009-spin img {
        animation-name: jssorl-009-spin;
        animation-duration: 1.6s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

    @keyframes jssorl-009-spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /*jssor slider bullet skin 057 css*/
    .jssorb057 .i {position:absolute;cursor:pointer;}
    .jssorb057 .i .b {fill:none;stroke:#fff;stroke-width:2000;stroke-miterlimit:10;stroke-opacity:0.4;}
    .jssorb057 .i:hover .b {stroke-opacity:.7;}
    .jssorb057 .iav .b {stroke-opacity: 1;}
    .jssorb057 .i.idn {opacity:.3;}

    /*jssor slider arrow skin 073 css*/
    .jssora073 {display:block;position:absolute;cursor:pointer;}
    .jssora073 .a {fill:#ddd;fill-opacity:.7;stroke:#000;stroke-width:160;stroke-miterlimit:10;stroke-opacity:.7;}
    .jssora073:hover {opacity:.8;}
    .jssora073.jssora073dn {opacity:.4;}
    .jssora073.jssora073ds {opacity:.3;}
#jssor_1 > div:nth-child(2), #jssor_2 > div:nth-child(2), #jssor_3 > div:nth-child(2), #jssor_5 > div:nth-child(2), #jssor_6 > div:nth-child(2), #jssor_7 > div:nth-child(2){left: auto !important;right: 18px !important;top: -44px !important;}
#jssor_1 > div:nth-child(2) svg, #jssor_2 > div:nth-child(2) svg, #jssor_3 > div:nth-child(2) svg, #jssor_5 > div:nth-child(2) svg, #jssor_6 > div:nth-child(2) svg, #jssor_7 > div:nth-child(2) svg, #jssor_1 > div:nth-child(3) svg, #jssor_2 > div:nth-child(3) svg, #jssor_3 > div:nth-child(3) svg, #jssor_5 > div:nth-child(3) svg, #jssor_6 > div:nth-child(3) svg, #jssor_7 > div:nth-child(3) svg{padding: 6px 0px 6px 0px;}
#jssor_1 > div:nth-child(2) .jssora073, #jssor_2 > div:nth-child(2) .jssora073, #jssor_3 > div:nth-child(2) .jssora073, #jssor_5 > div:nth-child(2) .jssora073, #jssor_6 > div:nth-child(2) .jssora073, #jssor_7 > div:nth-child(2) .jssora073{background:#999;width: 31px !important;height: 31px !important;}
#jssor_1 > div:nth-child(2) .a, #jssor_2 > div:nth-child(2) .a, #jssor_3 > div:nth-child(2) .a, #jssor_5 > div:nth-child(2) .a, #jssor_6 > div:nth-child(2) .a, #jssor_7 > div:nth-child(2) .a{fill:#fff;fill-opacity: 1;stroke:#fff;stroke-width: 160;stroke-miterlimit: 10;stroke-opacity: 1;background:#999;}
#jssor_1 > div:nth-child(3), #jssor_2 > div:nth-child(3), #jssor_3 > div:nth-child(3), #jssor_5 > div:nth-child(3), #jssor_6 > div:nth-child(3), #jssor_7 > div:nth-child(3){left: auto !important;right: -17px !important;top: -44px !important;}
#jssor_1 > div:nth-child(3) .jssora073, #jssor_2 > div:nth-child(3) .jssora073, #jssor_3 > div:nth-child(3) .jssora073, #jssor_5 > div:nth-child(3) .jssora073, #jssor_6 > div:nth-child(3) .jssora073, #jssor_7 > div:nth-child(3) .jssora073{background:#999;width: 31px !important;height: 31px !important;}
#jssor_1 > div:nth-child(3) .a, #jssor_2 > div:nth-child(3) .a, #jssor_3 > div:nth-child(3) .a, #jssor_5 > div:nth-child(3) .a, #jssor_6 > div:nth-child(3) .a, #jssor_7 > div:nth-child(3) .a{fill:#fff;fill-opacity: 1;stroke:#fff;stroke-width: 160;stroke-miterlimit: 10;stroke-opacity: 1;background:#999;}

#property_dealers{margin-top: 12px !important;}
.max-box .moreless{height: 40px;}
#commercial_tab .card > .max-box > .smtext, #residential_tab .card > .max-box > .smtext, #new_property_tab .card > .max-box > .smtext {height: 22px;}
    #new_property_tab .card, #residential_tab .card, #commercial_tab .card, #commercial_properties .card, #property_dealers .card, #luxury_properties .card, #hot_properties .card{height:auto !important;border: 1px solid #c1c1c1;transform: translate(-20%);}
    #new_property_tab .card > div:nth-child(1),#residential_tab .card > div:nth-child(1), #commercial_tab .card > div:nth-child(1), #luxury_properties .card > div:nth-child(1), #commercial_properties .card > div:nth-child(1), #property_dealers .card > div:nth-child(1), #hot_properties .card > div:nth-child(1){display:none !important;}
	
	#hot_properties .card > .min-box {
    position: relative;
}
#hot_properties .card > .min-box > img {
    width: 100%;
    height: 190px;
    margin: 0px auto;
    display: block;
    transition: all ease-in 0.4s;
    -webkit-transition: all ease-in 0.4s;
    -moz-transition: all ease-in 0.4s;
    -o-transition: all ease-in 0.4s;
}
#hot_properties .card > .min-box > img:nth-child(2) {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
}
#hot_properties .card > .max-box {
    padding: 0px 10px 7px 10px;
    background: #373737;
}
#hot_properties .card > .max-box > .heading_slider {
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    line-height: 41px;
}
p.heading_slider {
    color: #3b3a3a;
    font-size: 19px;
    font-weight: bold;
    line-height: 41px;
    text-transform: capitalize !important;
    color: #525252;
    text-transform: capitalize;
}
#hot_properties .card > .max-box > .smtext {
    color: #ffffff;
    font-size: 14px;
}
#hot_properties .card > .max-box > .smtext > span {
    float: right;
}
#hot_properties .card > .max-box > .share_mark {
    transition: all ease-in 0.4s;
    -webkit-transition: all ease-in 0.4s;
    -moz-transition: all ease-in 0.4s;
    -o-transition: all ease-in 0.4s;
    background: rgba(255, 255, 255, 0.89);
    margin: 10px auto;
    padding: 8px 0px 0px 0px;
    position: absolute;
    width: 100%;
    margin: 0px;
    left: 0%;
    padding: 15% 35px;
    text-align: center;
    box-shadow: 3px 10px 10px -12px #000;
    top: 0%;
    height: 190px;
}
#hot_properties .card > .max-box > .share_mark > img {
    width: 28px;
}
#hot_properties .card > .max-box > .share_mark > span {
    font-size: 11px;
    position: relative;
    bottom: 9px;
    color: #000;
}
#hot_properties .bttn_red {
    width: 100%;
    border: 1px solid #fff;
}
.bttn_red {
    background: #e32237;
    color: #fff;
    padding: 10px;
    border: none;
    margin: 13px 0px;
    width: 67%;
    box-shadow: 0px 7px 10px -9px #000;
    transition: all ease-in 0.4s;
    -moz-transition: all ease-in 0.4s;
    -o-transition: all ease-in 0.4s;
    -webkit-transition: all ease-in 0.4s;
}
.company-bottom {
	margin-bottom: 10px !important;
    width: 100%;
    display: inline-block;
    font-size: 14px;
}
.home #apps .mb-md-5{
	padding-bottom: 5rem !important;
}
.home #apps{
	padding-top: 5rem !important;
	padding-bottom: 5rem !important;
}
#services .text-li, #testi .text-li, #contact .text-li {
    color: #f8f9fa !important;
}
#new_properties p.title-w3, #places p.title-w3, #apps p.title-w3, #blog p.title-w3 {
    color: #333333 !important;
}
.home #contact .form-control{height: 47px !important;}