@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&display=swap');


/* --- COLORS ---*/
/* Dark #29444D
/* Soft #7B969D


/* ------ SMOOTH SCROLLING ------ */
html {
	scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}


/* ----  GENERAL -----*/
html,body{
	background-color: #ffffff;
	font-family: 'Arimo', sans-serif !important;
	overflow-x: hidden;
}

p{
	text-align: justify;
	color:#54585A;
}

.img-100{
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}




.img-50{
	width: 50%;
	height: auto;
	margin: 10px;
}

.anuncio{
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.no-padding{
   padding: 0 !important;
   margin: 0 !important;
}

.ir-arriba {
	padding:10px;
	display:inline-block;
	background: rgba(136, 147, 148,0.8);
	color:#fff;
	position: fixed;
	font-size:20px;
	bottom:20px;
	right:20px;
	display:none;
	cursor:pointer;
	 border-radius: 50%;
	z-index:9999;
}


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

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


.button{
	color: #ffffff;
    font-size: 16px;
    background: #29444D;
    padding: 10px 20px;
    text-decoration: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #7B969D;
    margin-bottom: 10px;
	cursor: pointer;
	
}

.button:hover{
	color: #29444D;
    background: #7B969D;
}


/*-----  Navbar -----*/

.navbar{
	padding: 10px 0px !important;
}

.navbar a{
	color:#54585A;
	font-weight: 700;
	font-size: 0.9em !important;
}


.navbar a:hover{
	color:#7B969D;
}

.nav-item{
	margin-top: 30px;
}

.navbar-brand img{
	width: 230px;
	height: auto;
}

.navbar-brand-centered {
    position: absolute;
    left: 50%;
    display: block;
    width: 160px;
    text-align: center;
    background-color: transparent;
}
.navbar>.container .navbar-brand-centered, 
.navbar>.container-fluid .navbar-brand-centered {
    margin-left: 0px;
}


/*-----  Banner -----*/
.banner-inicio{
	width: 100%;
	height: 450px;
	background: url("../../imagenes/fondo-inicio.jpg")no-repeat center center;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	
}


.banner{
	width: 100%;
	height: auto;
}

/*-----  Search Bar -----*/
.search {
    background-color: rgba(255,255,255,0.8);
    padding: 10px 8px;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-top: 100px;
}

.search p{
	margin: 0 !important;
	padding-top: 10px;
	
}

.search select{
	border: none !important;
	color: #29444D !important;
	float: left;
    width: 96%;
    border-bottom: 1px solid #E0E0E0;
    padding: 10px 2%;
    margin: 0px;
    transition: all 275ms ease-in-out;
    display: block;
    cursor: pointer;
}

.search select option{
	background-color: #fff;
	color: #29444D !important;
}

.search .btn-search{
	background-color: #29444D;
	padding: 10px 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: #FFFFFF !important;
	text-decoration: none !important;
	position: relative;
	line-height: 40px;
	
}

/*---- Propiedades Destacadas --*/
.propiedades-destacadas {
	padding: 40px 10px;
}


.propiedades-destacadas a{
	text-decoration: none;
}

.propiedades-destacadas h3{
	text-align: center;
	font-weight: 700;
	margin-bottom: 30px;
	color: #29444D;
	
}

.propiedades-destacadas .propiedad-block{
	width: 100%;
	height: auto;
	overflow: hidden;
	margin-bottom: 20px;
	color: #29444D;
}

.propiedades-destacadas .photo-wrap{
	width: 100%;
	height: 200px;
	overflow: hidden;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	position: relative;
	
}

.propiedades-destacadas .info-wrap{
	background-color: rgba(123,150,157,0.2);
	padding: 20px;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	color: #29444D;
	
}

.propiedades-destacadas .info-wrap p{
	margin-bottom: 0px !important;
	text-align: center;
}

.propiedades-destacadas .propiedad-foto{
	width: 100%;
	min-height: 100%;
	object-fit: cover;
}

.propiedades-destacadas .propiedad-foto:hover{
    -webkit-transform: scale(1.1,1.1);
    -moz-transform: scale(1.1,1.1);
    -o-transform: scale(1.1,1.1);
    -ms-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
}


.propiedades-destacadas .propiedad-tipo{
	position: absolute;
	top: 10px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #29444D;
	font-size: 13px;
	color: #FFFFFF;
	padding: 3px 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;

	
}

.propiedades-destacadas .propiedad_nombre-corto{
	font-weight: 700;
}

.propiedades-destacadas .propiedad-ubicacion{
	font-size: 13px;
	
}

.propiedades-destacadas .propiedad-precio{
	font-weight: 700;
	padding: 10px 0px !important;
}


.propiedades-destacadas .propiedad-detalles ul{
	list-style: none;
	padding: 0;
	font-size: 13px;
	margin: 0 auto;
	display: table;
}

.propiedades-destacadas .propiedad-detalles li{
	display: inline-block;
	padding: 0px 10px;
	border-left: thin solid #7B969D;
	text-align: center;
	
}

.propiedades-destacadas .propiedad-detalles li:first-child{
	border-left: none;
}

.btn-todas-propiedades a{
	color: #ffffff;
    font-size: 16px;
    background: #29444D;
    padding: 10px 20px;
    text-decoration: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #7B969D;
    margin-bottom: 10px;
	margin: 0 auto;
	display: table;
	
}

.btn-todas-propiedades a:hover{
	color: #29444D;
    background: #7B969D;
}



/* ----- Welcome -----*/
.welcome{
	padding: 40px 10px;
	color: #29444D;
}


/* ----- Beneficios -----*/
.beneficios{
	padding: 40px 10px;		
}

.beneficios h3{
	margin-bottom: 20px;
}

.beneficios h4{
	margin-bottom: 20px;
}

/* ----- Guias -----*/
.guias{
	padding: 40px 10px;
	color: #29444D;
}

.guias h4{
	font-weight: 700;
	color: #29444D;
}





/* ----- Lista Propiedades -----*/



.propiedades-filtro{
	padding: 30px 10px;
}

.filtro-tittle{
	font-weight: 700;
	color: #29444D;
	font-size: 1.5em;
}

.propiedades-search-group{
	margin-bottom: 10px !important;

}

.btn-search{
    padding: 10px 0px;
  
}

.btn-search a{
	color: #ffffff;
    font-size: 16px;
    background: #29444D;
    padding: 10px 20px;
    text-decoration: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #7B969D;

}

.propiedad-block-left{
	padding-right: 0px !important;
}

.propiedad-block-right{
	padding-left: 0px !important;
}

.propiedades-lista{
	padding: 30px 10px;
}

.propiedades-lista .propiedad-block{
	width: 100%;
	height: auto;
	overflow: hidden;
	margin-bottom: 10px;
	margin-top: 10px;
	color: #29444D;
}



.propiedades-lista .photo-wrap{
	width: 100%;
	height: 250px;
	overflow: hidden;
	position: relative;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	
}

.propiedades-lista .propiedad-foto{
	width: 100%;
	min-height: 100%;
	object-fit: cover;
}

.propiedades-lista .propiedad-tipo{
	position: absolute;
	top: 10px;
	left: 10px;
	background-color: #29444D;
	font-size: 13px;
	color: #FFFFFF;
	padding: 3px 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.propiedades-lista .info-wrap{
	background-color: rgba(123,150,157,0.2);
	padding: 20px;
	color: #29444D;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-radius-topright: 10px;
	-moz-border-radius-bottomright: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	max-height: 250px;
	min-height: 250px;
}

.propiedades-lista p{
	margin-bottom: 0px !important;

}

.propiedades-lista  .propiedad_nombre-corto{
	font-weight: 700;
	font-size: 18px;
	line-height: 17px !important;
}

.propiedades-lista  .propiedad-ubicacion{
	font-size: 13px;
	
}

.propiedades-lista  .propiedad-precio{
	font-weight: 700;
	font-size: 28px;
	padding: 0px !important;
}


.propiedades-lista  .propiedad-detalles ul{
	list-style: none;
	padding: 0;
	font-size: 13px;
}

.propiedades-lista .propiedad-detalles li{
	display: inline-block;
	padding: 0px 10px;
	border-left: thin solid #7B969D;
	text-align: center;
	
}

.propiedades-lista .propiedad-detalles li:first-child{
	border-left: none;
}



/* ----- Carousel ----*/
.carousel{
	height: 450px !important;
	overflow: hidden;
	display: flex;
  	justify-content: center;
  	align-items: center;
	margin-bottom: 30px;
}

.carousel .carousel-item img{
	object-fit: cover;
	margin: auto;

}

.carousel .btn-fotos{
	position: absolute;
	bottom: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color:rgba(255,255,255,0.4);
	font-size: 16px;
	color: #ffffff;
	padding: 5px 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	z-index: 9999999;
	text-decoration: none!important;
}

/* ----- Detalle ------ */
.detalle{
	padding: 40px 10px;
	color: #29444D;
}

.detalle h1{
	font-weight: 700;
	font-size: 2em;
}

.detalle h3{
	color: #7B969D;
	font-size: 1.1em;
	font-style: italic;
	margin-bottom: 30px;
}

.detalle .ficha-tecnica{
	margin-top: 40px !important;
	margin-bottom: 20px;
	
}



.detalle .ficha-tecnica a{	
	background-color: #29444D;
	padding: 20px 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	color: white;
	text-decoration: none;
}

.detalle .ficha-tecnica img{
	height: 30px;
	width: auto;
	margin-left: 5px;
}

.detalle .detalle-descripcion{
	color: #29444D;
}


.detalle .detalle-listado ul{
	margin: 0;
	padding: 20px 0px;
	list-style: none;
	column-count: 2;
}

.detalle .detalle-listado li{
	display: block;
}

.detalle .mapa-size iframe{
	width: 100% ;
	height: 400px;
	margin-bottom: 20px;
}

.detalle .id{
	text-align: left;
	color: #7B969D !important;
	font-size: 1em !important;
}

.detalle .detalle-tipo{
	color: #29444D;
	font-size: 1em !important;
	font-weight: bold;
	text-transform: uppercase;
}

.contactar{
	background-color: #29444D;
	padding: 20px;
	
}

.contactar .asesor{
	color: #7B969D !important;
	font-size: 1.3em;
	font-weight: 700;
	
}

.contactar a{
	color: #ffffff !important;
	font-size: 1.1em;
	display: block;
	text-decoration: none!important;
	margin-bottom: 10px;

	
}

.contactar hr{
	border-bottom: solid thin #7B969D;
}


.detalle-form-tittle{
	width: 100%;
	height: auto;
	padding: 10px;
	background-color: #7B969D;
	font-size: 1.3em;
	font-weight: 700;
	
}

.detalle-form-tittle p{
	text-align: center;
	color: #FFFFFF !important;
}

.detalle-form{
	width: 100%;
	height: auto;
	background-color: #D8D9DB;
	margin-bottom: 10px;
	overflow: hidden;
	border: 15px solid #D8D9DB;
}

.detalle-form .input-group{
	width: 100%;
	margin-bottom: 5px;
}


.detalle-form input{
	width: 100% ;
	font-size:14px;
	background-color:#FFFFFF;
	
  	display: inline-block;
  	-webkit-box-sizing: content-box;
  	-moz-box-sizing: content-box;
  	box-sizing: content-box;
  
  	margin:0;
	margin-bottom: 10px;
  	padding: 8px 0px 8px 8px;
  
  	border: 1px solid #b7b7b7;
  	-webkit-border-radius: 3px;
  	border-radius: 3px;
  
  	color:#4B4B4D;
  	-o-text-overflow: clip;
  	text-overflow: clip;

  	-webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
  	box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
  	text-shadow: 1px 1px 0 rgba(255,255,255,0.66) ;
  	-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  	-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  	-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  	transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
	resize: none;
}

.detalle-form .input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.detalle-form textarea{
	width: 100%;
	font-size:14px;
	background-color:#FFFFFF;
	
  	display: inline-block;
  	-webkit-box-sizing: content-box;
  	-moz-box-sizing: content-box;
  	box-sizing: content-box;
  
  	margin:0;
	margin-bottom: 10px;
  	padding: 8px 0px 8px 8px;
  
  	border: 1px solid #b7b7b7;
  	-webkit-border-radius: 3px;
  	border-radius: 3px;
  
  	color:#4B4B4D;
  	-o-text-overflow: clip;
  	text-overflow: clip;

  	-webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
  	box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
  	text-shadow: 1px 1px 0 rgba(255,255,255,0.66) ;
  	-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  	-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  	-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  	transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
	resize: none;
}


.detalle-form .button{
	font-size:16px;
	font-weight:normal;
	padding:9px 50px;
	text-decoration:none;
	background-color:#44B9C2;
	color:#FFFFFF;
	margin-top:20px;
	float:right;
}


.detalle-form .button:hover{
	text-decoration:none;
	background-color:#767676;
}



/* ----  Nosotros -----*/
.nosotros{
	padding: 50px 10px;
}








/* ------ Development Thumbnail -----*/
.desarrollos{
	padding: 50px 0px;
}

.desarrollos h1{
	text-align: center;
	font-size: 24px;
	margin-bottom: 30px;

}


.development-block{
	width:100%;
	height:auto;
	background-color:#FFFFFF;
	overflow:hidden;
	margin-bottom:30px;
	border:#DCDCDC thin solid;
	padding:2px;
	text-decoration:none;
}

.development-block .development-thumbnail{
	width:100%;
	height:240px;
	overflow:hidden;
	display: flex;
	position: relative;
}

.development-block .development-thumbnail img{
	width:100%;
	min-height:100%;
	align-self: center;
	-webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
   -o-transition: all 0.2s linear;
   -ms-transition: all 0.2s linear;
   transition: all 0.2s linear;
}


.development-block .development-thumbnail img:hover{
	-webkit-transform: scale(1.1,1.1);
   -moz-transform: scale(1.1,1.1);
   -o-transform: scale(1.1,1.1);
   -ms-transform: scale(1.1,1.1);
   transform: scale(1.1,1.1);
}


.development-block .development-details .development-info-zone{ 
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	color: #093040;
	font-weight: 700;
	text-align: center;
	display: block;
  width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
	margin: 0 auto;
}

.development-block .development-details .development-info-price{
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	color: #093040;
	font-weight: 700;
	text-align: center;
}

.development-block .development-details .development-info-price span{
	font-weight: 200;
}


.propiedades_name{
	padding: 30px 10px;
	text-align: center;
	background-color: #093040;
	color: #FFFFFF;
}

.propiedades_name p{
	text-align: center;
	color: #FFFFFF;
}

.description{
	padding: 30px 10px;
}


/* ------ Galeria Servicios ------ */

.galeria ul {
  padding: 0; }

.galeria li {
  list-style-type: none; }

.galeria ul {
  -webkit-columns: 300px;
     -moz-columns: 300px;
          columns: 300px;
  -webkit-column-break-inside: avoid;
     page-break-inside: avoid;
          break-inside: avoid;
}

.galeria img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 0px;
  margin-bottom: 10px;
}



/* ------ Obras ------*/
.obras{
	padding: 40px 10px;
}

.obras h1{
	color: #093040;
	font-weight: 700;
	text-align: center !important;
}

.obras span{
	font-weight: normal !important;
}


/* ------ Servicios ------ */
.servicios{
	padding: 40px 10px;
}

.servicios h1{
	font-size: 20px;
	color: #093040;
	font-weight: 700;
	text-align: center !important;
	display: table;
}




/* ----- Footer ----*/
.footer{
	background-color: #29444D;
	padding: 30px 10px;
}


.footer .copyright{
	font-size: 10px;
	color: #FFFFFF !important;
}

.footer .logo-footer{
	width: 200px;
	margin-bottom: 20px;
}

.footer .tel{
	font-size: 22px;
	font-weight: 700;
}


.address{
	color: #FFFFFF !important;
}

.footer .social ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer .social li{
	display: inline-block;
	float: right;
}


.footer .social li a{
	color: #FFFFFF !important;
}

.footer .login{
	font-size: 10px;
	color: #FFFFFF !important;
	text-decoration: none;
}


/* ===== CONTACTO ===== */



.contacto{
	padding: 40px 10px;
}

.contacto p{
	font-size: 14px;
}

.contacto iframe{
	width: 100%;
	height: 350px;
	margin-bottom: 20px;
}

.contacto form ul{
	list-style:none;
	margin:0;
	padding:0;
}

.contacto form li{
	display:list-item;	
	margin-bottom:8px;
	font-size:12px;
}

.contacto form .formGroup{
	margin-bottom:10px;
}

.contacto form input, select, textarea{
	width:100%;	
	font-size:12px;
	background-color:#D8D9DB;
	
  	display: inline-block;
  	-webkit-box-sizing: content-box;
  	-moz-box-sizing: content-box;
  	box-sizing: content-box;
  
  	margin:0;
  	padding: 8px 0px 8px 8px;
  
  	border: 1px solid #b7b7b7;
  	-webkit-border-radius: 3px;
  	border-radius: 3px;
  
  	color: rgba(0,142,198,1);
  	-o-text-overflow: clip;
  	text-overflow: clip;

  	-webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
  	box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
  	text-shadow: 1px 1px 0 rgba(255,255,255,0.66) ;
  	-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  	-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  	-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  	transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
	resize: none;
}

.contacto form .button{
	font-size:16px;
	font-weight:normal;
	padding:9px 50px;
	text-decoration:none;
	background-color:#093040;
	color:#FFFFFF;
	margin-top:20px;
	float:right;
}


.contacto form .button:hover{
	text-decoration:none;
	background-color:#767676;
	color:#FFFFFF;
}

.contacto form  .txtobligatorios{
	font-size:10px;
	font-weight:normal;
}


.form-select{
	padding: 10px 0px 10px 10px !important;
}