/* GLOBAL STYLES */
@-webkit-keyframes spinAround {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes spinAround {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.g-recaptcha >div{
	margin: 0 auto;
}

.is-loading {
    position: relative;
    color: transparent!important;
    pointer-events: none;
    opacity: .75
}

.is-loading:after {
    -webkit-animation: spinAround .5s infinite linear;
    animation: spinAround .5s infinite linear;
    border: 2px solid #fff;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 1.5rem;
    position: relative;
    width: 1.5rem;
    left: 50%;
    margin-left: -11px;
    margin-top: -11px;
    position: absolute;
    top: 50%;
    position: absolute!important
}

.is-loading>i {
    visibility: hidden
}

@media (min-width: 1200px){
	.container {
	    max-width: 1200px;
	}
}

.m-b-5{
	margin-bottom:5px;
}

.m-b-10{
	margin-bottom:10px;
}

.m-t-10{
	margin-top:10px;
}

.mr-10{
	margin-right:10px;
}

.m-t-15{
	margin-top:15px;
}

.m-t-30{
	margin-top:30px;
}

.sec-ptb-100{
	padding: 100px 0;
}

.sec-ptb-75{
	padding: 75px 0;
}

.pt-30{
	padding-top:30px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-25{
	margin-bottom: 25px !important;
}

.mb-20{
	margin-bottom: 20px !important;
}

.mb-45{
	margin-bottom: 45px !important;
}

.mb-10{
	margin-bottom: 10px !important;
}

.m-r-20{
	margin-right: 20px !important;
}

.m-r-15{
	margin-right: 20px !important;
}

.divider{
	background-color: #f8fbff;
}

.divider hr{
	margin: 0;
	border-color: #e0deff;
}

.m-r-5{
	margin-right:5px;
}

.m-r-10{
	margin-right:10px;
}

.m-r-25{
	margin-right:25px;
}

.flex-1{
	flex-grow: 1;
}

.fill-gray-100 {
    fill: #f8fbff!important;
}

.fill-white-100 {
    fill: #fff!important;
}

.pb-120{
	padding-bottom: 120px;
}

.white-line{
	margin-bottom: 70px;
}

.white-line-padding{
	padding-bottom: 70px;
	background-color: #fff;
	margin:0;
}

.full-container{
	max-width:100%;
	width:100%;
	padding:0 35px;
}

.property-section .owl-carousel .owl-stage {
	left:-100px;
}

.owl-theme .owl-dots, .owl-theme .owl-nav{
	margin-top:15px;
}

/* MAIN HEADER */
.main-header{
	width: 100%;
	background-color: #fff;
	z-index: 9;
	padding: 25px 0;
	border-bottom: 1px solid #e0deff;
}
.main-header.no-border{
	border-bottom: none !important;
}
.main-header.is-hidden{
	border-bottom: none !important;
}

.fixed-nav {
    position: fixed!important;
    top: 0!important;
    padding: 15px 0!important;
    background-color: #fff!important;
    border-bottom: 1px solid #efefef;
    -webkit-animation: animation .5s ease 1;
    animation: animation .5s ease 1
}
@-webkit-keyframes animation {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
}

@keyframes animation {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
}
.fixed-nav .compay-logo img {
    width: 100px;
    position: relative;
    top: 6px
}

.company-logo {
    display: inline-block;
}

.company-logo img{
    width: 232px;
    height: auto;
}


.main-menu ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-menu ul li{
	display: inline-block;
}

.main-menu ul li a {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #7c8a97;
	padding: 9px 10px;
	font-weight:500;
}
.main-menu li:hover >a,
.main-menu li a.active {
    color: #ec3323
}

.header-cta{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header-contact{
	width:180px;
}

.contact-btn{
	font-size: 18px;
	padding: 0 5px;
	color: #7c8a97;
	font-weight: 500;
	text-decoration:none;
	cursor: pointer;
}
.contact-btn i{
	margin-right:10px;
}
.contact-btn:hover{
	color:#ec3323;
}

.active-btn{
	z-index: 1;
	font-size: 15px;
	overflow: hidden;
	padding: 15px 35px;
	color: #fff;
	cursor: pointer;
	position: relative;
	border-radius: 45px;
	font-weight: 500;
	text-transform: uppercase;
	background-color: #ec3323;
	border:none;
}
.active-btn:hover{
	color:#fff;
}
.active-btn:before{
    top: 0;
    left: 0;
    bottom: 0;
    right: -50px;
    content: '';
    z-index: -1;
    position: absolute;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #062a4d;
}
.active-btn:hover:before{
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.hero .grey-btn{
	z-index: 1;
	overflow: hidden;
	position: relative;
	font-size: 15px;
	padding: 15px 35px;
	color: #fff;
	cursor: pointer;
	outline:0;
	border-radius: 45px;
	font-weight: 500;
	text-transform: uppercase;
	background-color: #7c8a97;
}
.hero .grey-btn:hover{
	color:#fff;
}
.hero .grey-btn:before{
    top: 0;
    left: 0;
    bottom: 0;
    right: -50px;
    content: '';
    z-index: -1;
    position: absolute;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #7c8a97;
}
.grey-btn:hover:before{
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}


/* HERO SECTION */
.hero{
	position: relative;
	background: url('../img/15.jpg') no-repeat center;
	background-size: cover;
	padding: 130px 0 80px;
}
.hero .hero-content{
	padding: 75px 0;
}
.hero .hero-content h1{
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 35px;
	margin: 0 0 20px;
}
.hero .hero-content p{
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 40px;
}
.hero .hero-slider{
	display: block;
	width: 100%;
	border-radius: 4px 4px 4px 64px;
	overflow:hidden;
}

.hero .hero-item{
	position: relative;
	width: 100%;
	height: 585px;
}

.hero .hero-item:before {
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    content: '';
    position: absolute;
    background: -webkit-linear-gradient(top,rgba(0,18,56,0) 0%,rgba(0,18,56,0.35) 55%,#001238 100%);
    background: -o-linear-gradient(top,rgba(0,18,56,0) 0%,rgba(0,18,56,0.35) 55%,#001238 100%);
    background: linear-gradient(to bottom,rgba(0,18,56,0) 0%,rgba(0,18,56,0.35) 55%,#001238 100%)
}

.hero .hero-slider .hero-content{
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 40px 40px 70px;
	position: absolute;
	z-index:1;
	-webkit-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.hero .hero-item .hero-title{
	text-transform: capitalize;
    font-size: 36px;
    line-height: 1;
	color: #fff;
    margin-bottom:0px;
}
.hero .hero-item .hero-link{
	display:inline-block;
	color: #fff;
    font-weight: 600;
    font-family: poppins,sans-serif;
}
.hero .hero-item .hero-location{
	font-size:16px;
	color: rgba(255,255,255,.8);
	margin-top:-10px;
}

.item-badge{
	right: 30px;
	top: 30px;
	left: auto;
	font-size: 12px;
	padding: 0 17px;
	line-height: 22px;
	height:22px;
}

.hero .hero-img{
	display: block;
	width: 100%;
} 
.hero .single-img img{
	border-radius: 4px 4px 4px 64px;
	width: 100%;
}

.hero .hero-slider .owl-dots{
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    padding: 0 40px;
}
.hero .hero-slider .owl-dots button{
	display: inline-block;
	margin-right: 15px;
}
.hero .hero-slider .owl-dots button:last-child{
	margin-right: 0px;
}
.hero .hero-slider .owl-dots button.active span{
	background: rgba(255,255,255,1);
}
.hero .hero-slider .owl-dots span{
	height: 3px;
	width: 45px;
	background: rgba(255,255,255,.75);
	display: inline-block;
}

/* RESUMEN */
.b-radius-8{
	border-radius: 8px;
}

.instagram-info .instagram-profile{
	display: flex;
	align-items: center;
}

.instagram-info .instagram-profile .item-image{
	margin-right: 20px;
}

.instagram-info .instagram-profile .item-image img{
	height: 75px;
    width: 75px;
    border-radius: 50%;
}

.instagram-info .instagram-profile .item-content .instagram-title{
	display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.instagram-info .instagram-profile .item-content .instagram-h2{
	font-size: 24px;
	color: #fff;
	font-weight: 600;
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 0;
}

.instagram-info .instagram-profile .item-content .instagram-h2 .title-link{
	font-family: poppins,sans-serif;
	color: #fff;
}
.instagram-info .instagram-profile .item-content .instagram-h2 .title-link:hover{
	color: #fff !important;
}

.instagram-button{
	padding: 0 24px;
    cursor: pointer;
    background: #0095f6;
    border-color: #0095f6;
    color: #fff;
    -webkit-appearance: none;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    outline: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: poppins,sans-serif;
}

.instagram-button:active{
	background: #63b4f8;
	border-color: #63b4f8;
}

.instagram-button:hover{
	color: #fff !important;
}

.instagram-meta{
	color: #fff;
	font-size: 16px;
}

.instagram-feed{
    margin-top: 10px;
}

.instagram-publication {
	position:relative;
    margin-top: 20px;
}

.instagram-publication >a{
	position:relative;
}

.instagram-publication:hover .instagram-publication-info{
	display: flex;
}

.instagram-feed .instagram-publication img{
	/*border-radius: 4px;*/
}

.instagram-publication-info{
	display:none;
	position: absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
	align-items:center;
	justify-content: center;
	background: rgba(0,0,0,0.3);
}

.instagram-publication-info span{
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.footer-contact-item{
    display: flex;
    color: #fff;
    align-items: center;
    margin-bottom: 25px;
}

.footer-contact-item i{
	font-size: 18px;
	margin-right: 20px;
}

.footer-contact-item .footer-contact-info{
	font-size: 15px;
}

.footer-contact-item .footer-contact-info a{
	color:#fff;
}

.about-content .brand-logo img{
	height:45px;
}

.footer-social li{
	display: inline-block;
	margin-right: 15px;
}

.footer-social li a{
	height: 35px;
	width: 35px;
	background: rgba(255,255,255,.25);
	font-size: 16px;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	line-height: 35px;
}
.footer-social li a:hover{
	    background: #ec3323;
}
/*
.owl-filter-bar{
	padding-right: 150px;
	margin-bottom:20px;
}
*/
.owl-filter-bar a{
	height: 25px;
	padding: 0 12px;
	border: 1px solid #007bff;
	border-radius: 50px;
	line-height: 23px;
	margin: 0 5px 12px 0;
}
.owl-filter-bar a.active{
	background: #007bff;
	color: #fff;
}

.owl-filter-bar a:hover{
	opacity:.75;
}
.owl-filter-bar a.active:hover{
	opacity:1;
}


.owl-filter-bar2{
	/*padding-right: 150px;*/
}
.owl-filter-bar2 a{
	height: 25px;
	padding: 0 12px;
	border: 1px solid #ec3323;
	color:#ec3323;
	border-radius: 50px;
	line-height: 23px;
	margin: 0 5px 12px 0;
}
.owl-filter-bar2 a.active{
	background: #ec3323;
	color: #fff;
}

.owl-filter-bar2 a:hover{
	opacity:.75;
}
.owl-filter-bar2 a.active:hover{
	opacity:1;
}



.featurd-property-carousel-2{
	margin-top:-12px;
}

.details-image-carousel{
	background-color: #f8fbff;
}

.details-image-carousel .item{
	height: 460px;
	overflow: hidden;
}

.details-image-carousel .item img{
	height: 100%;
	width: auto;
	max-width: fit-content;
	margin: 0 auto;
}

.property-general-data{
	text-align: right;
}

.property-general-data h1{
	font-family: poppins,sans-serif;
	font-weight:600;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.property-general-price span{
	font-size: 18px;
}

.property-general-price small{
	margin-right:10px;
}

.property-general-data .property-delivery{
	font-size:16px;
	text-transform: capitalize;
}

#propiedades .property-section:nth-of-type(2){
	padding-top:80px;
}

.team-carousel .owl-stage-outer{
	margin-bottom: 35px;
}

.team-carousel .owl-dots{
    text-align: center;
    margin-bottom: 15px;
}

.team-carousel .owl-dots .owl-dot{
	height: 15px;
    width: 15px;
    display: inline-block;
    margin-right: 15px;
    border-radius: 50%;
    border: 2px solid #001238;
}

.team-carousel .owl-dots .owl-dot.active{
	background: #001238;
}

.error-page{
	min-height: 100vh;
	width: 100%;
	display: flex;
	position: relative;
	background: url('../img/15.jpg') no-repeat center;
	background-size: cover;
}

.error-page .error-logo{
	margin-bottom: 65px;
}

.error-page .error-logo img{
	width: 275px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.error-page .section-title p{
	font-size: 18px;
	margin-bottom: 45px;
}

.legal-section{
	padding: 180px 0 120px;
}

.legal-container{
	background: #fff;
	padding: 40px;
}

.mobile-menu-btn{
    margin-left: auto;
    color: #001238;
    font-size: 28px;
    padding: 0 20px;
}

.details-image-carousel .owl-dots{
	position: absolute;
	bottom: 10px;
	width: 100%;
	display: none;
}

.nav-tabs{
	border: none;
	justify-content: center;
	margin-bottom: 45px;
}

.nav-tabs .nav-link{
	color: #ec3323;
	border: 1px solid #ec3323;
	padding: 10px 25px;
	border-radius:0;
	font-weight: 600;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
}
.nav-tabs .nav-item{
	margin:0;
}
.nav-tabs .nav-item:first-child .nav-link{
	border-radius: 4px 0 0 4px;
}
.nav-tabs .nav-item:last-child .nav-link{
	border-radius: 0 4px 4px 0;
}
.nav-tabs .nav-link:hover{
	color: #ec3323;
	background-color:rgba(255,255,255,1);
	border-color: #ec3323;
}
.nav-tabs .nav-link.active{
	color: #fff;
	background-color: #ec3323;
	border-color: #ec3323;
}

.map-btn {
    z-index: 1;
    height: 40px;
    font-size: 14px;
    overflow: hidden;
    line-height: 38px;
    padding: 0 20px;
    color: #fff;
    position: relative;
    border-radius: 25px;
    font-weight: 500;
    background-color: #ec3323
}

.map-btn:before {
    top: 0;
    left: 0;
    bottom: 0;
    right: -50px;
    content: '';
    z-index: -1;
    position: absolute;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #062a4d
}

.map-btn i {
    margin-right: 10px
}

.map-btn:hover {
    color: #fff
}

.map-btn:hover:before {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.search-filters{
	margin-bottom:30px;
}

.search-filters:last-child{
	margin-bottom:0;
}

.search-filters h3{
	font-size: 20px;
	margin-bottom: 15px;
	font-family: poppins,sans-serif;
}

.search-filters ul{
	margin:0;
}

.search-filters ul li{
	margin-bottom:7px;
}

.search-filters ul li a{
	color:#6c757d;
	font-size:14px;
	transition: all .1s ease;
}
.search-filters ul li a:hover{
	color:#007bff;
}
.search-filters ul li  small{
	color:#7c8a97;
}
.search-filters ul li span{
	color: #007bff;
    opacity: .75;
    pointer-events: none;
}

.shorten-columns > .col-xl-4,
.shorten-columns > .col-md-12{
	padding-right:12px;
	padding-left:12px;
}

.filter-menu-mobile{
	font-size: 18px;
	padding: 0;
	width: 30px;
	color: #001238;
	height: 40px;
	line-height: 30px;
}
.filter-menu-mobile:hover{
	color:#ec3323;
}

.filter-tags .filter-tag{
	height: 30px;
	padding: 0 12px;
	border: 1px solid #e0deff;
	border-radius: 50px;
	background: #fff;
	display: inline-block;
	line-height: 28px;
	margin: 0 10px 0 0;
	color: #001238;
	transition: none;
}
.filter-tags .filter-tag:last-child{
	margin:0;
}

.filter-tags .filter-tag:hover{
	border-color:#ec3323;
	color:#ec3323;
}

.pagination{
	margin-top:45px;
}
.pagination ul{
	display:flex;
	width:100%;
	justify-content: center;
}

.pagination ul li{
	margin: 0 7px;
}

.pagination ul li a{
	width: 37px;
    height: 37px;
    border-radius:50%;
    text-align:center;
    display: block;
    font-size: 16px;
    line-height: 37px;
    color: #7c8a97;
    font-weight: 600;
    background-color: #fff;
}
.pagination ul li span{
	width: 37px;
    height: 37px;
    border-radius:50%;
    text-align:center;
    pointer-events: none;
    display: block;
    font-size: 16px;
    line-height: 37px;
    color: #fff;
    font-weight: 600;
    background-color: #ec3323;
}
.pagination ul li a:hover{
	color: #fff;
	background-color: #ec3323;
}

.quick-actions{
	display:none;
	position:fixed;
	bottom:0;
	left:0;
	right:0;
	height: 55px;
	z-index: 999;
	background: white;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
}

.quick-actions ul{
    display: flex;
    flex-direction: row;
}

.quick-actions ul li{
	text-align:center;
    flex-grow: 1;
	border-right: 1px solid #e0deff;
}
.quick-actions ul li:last-child{
	border:none;
}

.quick-actions ul li a{
	display:block;
	line-height:55px;
	font-size:26px;
	color: #001238;
}
.quick-actions ul li a:hover, .quick-actions ul li a:active{
	color: #ec3323;
}

.property-attributes{
	text-align: center;
}

.property-attributes .attribute-icon{
	width: 45px;
	height: 45px;
	font-size: 14px;
	margin:0 0 15px;
	text-align: center;
	border-radius:50%;
	display: inline-block;
	border: 2px solid #e0deff;
}

.property-attributes .attribute-icon i{
	font-size:20px;
	line-height:43px;
	display:block;
	color:#062a4d;
}

.property-attributes .attribute-info h3{
    font-family: poppins,sans-serif;
    font-weight: 600;
    font-size:24px;
    margin-bottom: .25rem;
}

.property-attributes .attribute-info p{
	margin:0;
}

.land-hero{
	padding:135px 0 85px;
	background: url(../img/15.jpg) no-repeat center 0px;
	background-size: cover;
}

.land-hero .hero-content{
	margin-bottom:35px;
}

.land-hero .hero-content .comming-next{
	font-size: 14px;
	color: #fff;
	margin-bottom: 10px;
	background-color: #ec3323;
	border-radius:30px;
	padding:5px 25px;
	display: inline-block;
	font-weight: 500;
	text-transform: capitalize;
}

.land-hero .hero-content .hero-title{
	color: #001238;
	font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
}

.land-hero .hero-content .hero-subtitle{
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 30px;
	color: #ec3323;
}

.land-hero .hero-content .hero-text{
	font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
}

.land-hero .hero-content .hero-text span{
	color: #ec3323;
}

.land-hero .grid-container{
	position: relative;
	height: 572.812px;
}

.land-hero .grid-container img{
	display:block;
	height: auto;
    max-width: 100%;
	border-radius: 4px;
}

.land-hero .grid-container .grid-1{
	position: absolute;
    left: 0px;
    top: 0px;
	margin-top: -60px;
	width: 50%;
	padding: 15px;
	display: inline-block;
}

.land-hero .grid-container .grid-2{
	position: absolute;
    left: 277.25px;
    top: 0px;
	margin-top: -30px;
	width: 50%;
	padding: 15px;
	display: inline-block;
}

.land-hero .grid-container .grid-3{
    position: absolute;
    left: 0px;
    top: 256.406px;
	margin-top: -30px;
	width: 50%;
	padding: 15px;
	display: inline-block;
}

.land-hero .grid-container .grid-4{
	position: absolute;
    left: 277.25px;
    top: 286.406px;
	margin-top: -30px;
	width: 50%;
	padding: 15px;
	display: inline-block;
}

/************************/
/*
RESPONSIVE CODE
*/
/************************/

@media screen and (max-width: 1199px) {

	.property-section .owl-carousel .owl-stage {
		left:-60px;
	}

    .hero .hero-content h1 {
	    font-size: 42px;
	}

	.hero .hero-item {
		height: 465px;
	}

	.about-section .about-content .section-title .big-title {
    	font-size: 45px;
    }

}

@media screen and (max-width: 991px) {

    .sec-ptb-120-30 {
	    padding: 60px 0 30px 0;
	}

	.property-section .owl-carousel .owl-stage {
		left:-40px;
	}

	.header-nav{
		display: none !important;
	}

	.hero .hero-content{
	    text-align: center;
	    padding: 36px 30px 165px;
	}

	.section-title .big-title {
	    font-size: 42px;
	}

	.about-section .sec-ptb-120{
		padding-top:60px;
	}

	.admin-info{
	    display: inline-block;
	    text-align:left;
	}

	.about-section .about-content .section-title .big-title {
	    font-size: 42px;
	}

	.sec-ptb-100 {
	    padding: 75px 0;
	}

	.owl-filter-bar {
        padding: 0;
    	text-align: center;
	}

	.owl-filter-bar2 {
        padding: 0;
    	text-align: center;
	}

	.featurd-property-carousel-2 .item .property-grid-item{
		min-height: 541px;
	}

	.feature-section .col-md-6{
		margin-bottom:30px;
	}

	.instagram-col{
		order:3;
	}

	.instagram-info .instagram-profile{
		justify-content: center;
	}

	.footer-newsletter{
		text-align:center;
	}

	.footer-contact-item{
		padding-left: 45px;
	}

	.footer-contact-item .footer-contact-info{
		text-align:left;
	}

	.footer-section .default-footer .copyright-text >.d-flex{
		flex-direction:column;
	}

	.property-general-data{
		margin-top:30px;
		text-align:center;
	}

	.property-title{
		text-align:center;
	}

	.property-details-section .nearby-property>ul>li .item-image{
		display: none;
	}

}

@media screen and (max-width: 768px) {
    
	.full-container{
		padding:0 15px;
	}

	.property-section .owl-carousel .owl-stage {
		left:-10px;
	}

    .hero {
		padding: 125px 0 80px;
	}

	.hero .hero-content {
	    padding: 36px 15px 95px;
	}

	.hero .hero-content h1 {
	    font-size: 35px;
	}

	.section-title .big-title {
	    font-size: 35px;
	}

	.about-section .about-content .section-title .big-title {
	    font-size: 35px;
	}

	.approach-section .approach-content .our-goal .item-title{
		margin-bottom: 15px;
	}

	.counter-section{
		display:none;
	}

	.property-section .owl-theme .owl-nav {
	    margin-top: 30px;
	}

	.instagram-col{
		order:2;
	}

	.contact-col{
		order:3;
	}

	.instagram-col .instagram-info{
		margin-bottom: 60px;
	}

	.footer-section .default-footer .footer-content .about-content{
		text-align:center;
	}

	.footer-contact-item .footer-contact-info{
		text-align:center;
	}

	.footer-contact-item{
		display: block;
		padding-left: 0;
	}

	.footer-contact-item i{
		display: block;
		margin-bottom: 10px;
		font-size: 24px;
		margin-right: 0;
	}

	.footer-section .default-footer .footer-content {
	    padding: 75px 0 40px;
	}

	.details-image-carousel .owl-dots{
		display:block;
	}

	.quick-actions{
		display:block;
	}

}

@media screen and (max-width: 576px) {
    
	.full-container{
		padding:0;
	}

	.main-header {
		padding: 15px 0;
	}

	.company-logo {
	    margin-left:5px;
	}

	.mobile-menu-btn {
		margin-right: 20px;
	}

	.hero {
	    padding: 115px 0 80px;
	}

	.approach-section{
		padding: 40px 0 30px 0;
	}

	.instagram-publication:nth-of-type(7),
	.instagram-publication:nth-of-type(8){
		display: none;
	}

	.details-image-carousel .item {
	    height: 345px;
	}

	.property-details-section .property-documents>ul>li .download-btn i {
	    display:none;
	}

	.land-hero {
	    background: url(../img/15.jpg) no-repeat center 115px;
	}

}

@media screen and (max-width: 392px) {
    
    .company-logo img {
	    width: 205px;
	}

	.hero .hero-content .active-btn{
		width: 80%;
		margin: 0 auto 20px !important;
	}

	.hero .grey-btn{
		width: 80%;
		margin: 0 auto !important;
	}

	.instagram-info .instagram-profile{
		flex-direction: column;
	}

	.instagram-info .instagram-profile .item-image{
		margin: 0 0 20px;
	}

	.hero .hero-content h1 {
	    font-size: 32px;
	}

	.section-title .big-title {
	    font-size: 32px;
	}

	.about-section .about-content .section-title .big-title {
	    font-size: 32px;
	}

	.details-image-carousel .item {
	    height: 305px;
	}
	

}






















