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


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;700&display=swap');


body{	
	overflow-x: hidden;
	min-height: 100%;
}




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

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

/* ------ UP ARROW ------ */
.ir-arriba {
	padding:10px;
	display:inline-block;
	background-color: rgba(32, 54, 99, 0);
	color:#fff;
	position: fixed;
	font-size:20px;
	bottom:20px;
	right:20px;
	display:none;
	cursor:pointer;
	 border-radius: 50%;
	z-index:99999999;
}


/* ------ MISC ------ */
.img-100{
	width: 100%;
	height: auto;
}


.menu-height{
	margin-top: 100px;
}


@media only screen and (max-width: 990px){
	.hidde-mobile{
		display: none;
	}
}

/* ------ LOADING ------ */
#contenedor_carga{
	background-color: rgba(191, 132, 116, 1);
	height: 100%;
	width: 100%;
	position: fixed;
	transition: all 1s ease ;
	-webkit-transition: all 1s ease ;
	-o-transition: all 1s ease ;
	z-index: 9999999 ;
	transition-delay: 1s;
}

#carga{
	
	width: 100px;
	height: 100px;
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

#carga img{
	width: 230px;
	height: auto;
	animation: myAnim 2s ease 0s infinite normal forwards;
}


@keyframes myAnim {
	0% {
		opacity: 0.8;
		transform: scale(0.2);
	}

	80% {
		opacity: 0;
		transform: scale(1.2);
	}

	100% {
		opacity: 0;
		transform: scale(2.2);
	}
}


/*----- HEADER -----*/
.header{
	background-color: rgba(191, 132, 116, 1);
	padding: 20px 0px;
	border-bottom: solid thin #FFFFFF;
}

.header .logo-header{
	width: 200px;
	height: auto;
	display: block;
	margin: 0 auto;
}

/*----- INDEX IMAGE -----*/
.index-image{
	background: url(../../imagenes/banner-casa_mexico.jpg)center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	height: 1100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.index-image-content{

}

.index-image-content h1{
	text-align: center;
	color: #FFFFFF;	
	text-shadow: 4px 4px 2px #292929;

}

.index-image-content .price{
	text-align: center;
	color: #FFFFFF;
	font-size: 2em;
	text-shadow: 4px 4px 2px #292929;
	
}

.index-image-content ul{
	margin-top: 30px;
}

.index-image-content li{
	display: inline-block;
}

.index-image-content .index-buttons a{
	border-radius: 50px;
    border: 2px solid #ffffff;
    display: inline-block;
    cursor: pointer;
    color: #292929;
    font-size: 17px;
    padding: 5px;
    text-decoration: none;
    width: 180px;
    text-align: center;
    background: rgba(255,255,255,0.80);
    font-weight: 400;
}

.index-image-content .index-buttons a:hover{
	background: rgba(255,255,255,1);
	color: rgba(191, 132, 116, 1);
	border: 2px solid rgba(191, 132, 116, 1);
}






.opacity{
	width: 100%;
	height: 100%;
    background: rgba(0,0,0,0.50);
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1 !important;
}

/* ------ PROYECTO ------ */

.proyecto .left-image{
	background: url(../../imagenes/casa-mexico-exterior-1.jpg)center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
 

.proyecto .right-image{
	background: url(../../imagenes/casa-mexico-exterior-2.jpg)center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
  
  .proyecto .proyecto_text_block{
	padding: 40px;
	background-color: rgba(191, 132, 116, 1);;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #FFFFFF;
  }

  .proyecto_text_block h3{
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
  }
  
  .proyecto .proyecto_text_block p{
	text-align: center !important;
  }

  
  
  /* ------ PREVENTA ------ */
  .preventa{
	padding: 20px 10px
  }
  
  .preventa .fistline{
	font-size: 36px;
	font-weight: 800;
	text-align: center;
	color: #fb9700;
  }
  
  .preventa .price{
	font-size: 48px;
	font-weight: 800;
	text-align: center;
	color: rgba(26, 30, 37, 1);
	font-family: 'Merriweather', serif;
  }
  
  .preventa .asesor-btn{
	font-size: 16px;
	font-weight: normal;
	padding: 15px 25px;
	text-decoration: none;
	background-color: #fb9700;
	color: #FFFFFF;
	margin-top: 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	 border-radius: 5px;
	  display: table;
	  margin: 0 auto !important;
  }
  
  .preventa .asesor-btn:hover{
	background-color: rgba(26, 30, 37, 1);
	text-decoration: none !important;
	color: #FFFFFF !important;
  }
  

    /* ------ CAROUSEL ------ */
  .carousel-indicators li {
    height: 30px;
    width: 30px;
    border-radius: 15px;
  }


 
/* ----- Floor Plants -----*/

.floor-plan-info{
	padding: 40px;
	font-family: 'Plus Jakarta Sans', sans-serif;

	background: url(../../imagenes/plans/plants-background.jpg)center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;	
	overflow: hidden;
}

.floor-plan-info h3{	
	margin-bottom: 10px;
	font-size:42px;
	color: rgba(191, 132, 116, 1);
}

.floor-plan-info h6{
	font-size:32px;
	font-weight: bold;
	color:#292929;
}

.floor-plan-info .note{
	font-size: 9px;
	color:#292929;
}

.floor-plan-info .depto{
	width: 250px;
	height: auto;
	margin-bottom: 20px;

}


/* ----- Galeria -----*/
#GalleryCarorusel .carousel-indicators button {
    width: 10px;
   height: 10px;
   border-radius: 100% !important; 
 }


 #GalleryCarorusel .carousel-caption {
    right: 20px !important;
	text-align: right;

}

/* ----- Ubicacion ----- */


.ubicacion .header-ubicacion{
	background-color: rgba(191, 132, 116, 1);
	padding: 20px 0px;
	color: #FFFFFF;
	text-align: center;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 48px;
}

.ubicacion .walkscore{
	background-color: rgba(191, 132, 116, 1);
	padding: 10px 0px;
}

.ubicacion .min{
	font-weight: bold;
	border: solid thin #FFFFFF;
	text-align: center !important;
	color: #FFFFFF;
}

.ubicacion .place{
	text-align: center;
	color: #FFFFFF;

}



.ubicacion .mapa-size{
	width: 100%;
	height: auto;
}




.mapa-image{
	background: url(../../imagenes/casa-mexico-exterior-2.jpg)center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
/* ----- Brochure ----- */
.brochure{
	padding: 30px 0px;
}

.brochure-btn{
	font-size: 16px;
	font-weight: normal;
	padding: 15px 25px;
	text-decoration: none;
	background-color: rgba(191, 132, 116, 1);
	color: #FFFFFF;
	margin-top: 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	 border-radius: 5px;
	  display: table;
	  margin: 0 auto !important;
  }
  
  .brochure-btn:hover{
	  background-color: rgba(26, 30, 37, 1);
	text-decoration: none !important;
	color: #FFFFFF !important;
  }
/* ----- Reserva  ----- */
.spa-reserva{
	padding: 20px 0px 40px 0px;
}

.spa-reserva{
	text-align: center;
}



.reserva-btn{
	font-family: 'Playfair Display', serif;
	text-align: center;
	margin: 0 auto;
	border: solid thin #000000;
	border-radius: 50px;
    display: block;
    cursor: pointer;
    color: #000000;
    font-size: 20px;
    padding: 5px;
    text-decoration: none;
    width: 200px;
    background-color: rgba(0,0,0,0);
}

.reserva-btn:hover{
	background-color:#000000;
	transition: 2s background-color;
	color: white;
}






/* ------ CONTACT ------ */
.contact{
	width: 100%;
	height: auto;
	padding: 100px 30px 20px !important;
	background-color: rgba(26, 30, 37, 1);
	font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact .text{
	font-size:22px;
	font-weight: 800;
	text-align: center;
	color: #FFFFFF;
}

.contact form{
	padding-bottom: 30px;
}
.contact form ul{
	list-style:none;
	margin:0;
	padding:0;
}

.contact form li{
	display:list-item;	
	margin-bottom:8px;
	font-size:14px;
	font-weight: 200;
	text-align: center;
	padding: 10px 20px;
	color: #FFFFFF;
}

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



.contact form input, select, textarea{
	width:100%;	
	font-size:14px;
	background-color: rgba(26, 30, 37, 1);
    
  	margin:0;
	padding: 10px;
    border-width:0px;
    border:none;
  	border-bottom: 1px solid #b7b7b7;
  
  	text-align: center;
	color: #FFFFFF;
  	-o-text-overflow: clip;
  	text-overflow: clip;

	resize: none;
	outline: none !important;
}

.contact form input, select, textarea:active{
	background-color: rgba(26, 30, 37, 1);
	padding: 10px;
}




.contact form .txtobligatorios{
	text-align: center;
	color: #FFFFFF;
	font-size:11px;
}

.contact form .button{
	font-size:16px;
	font-weight:normal;
	min-width: 100%;
	padding: 9px 40px;
	text-align: center;
	text-decoration:none;
	color: #FFFFFF;
	margin-top:20px;
	border: 1px solid #FFFFFF;
	display: block;
	margin: 0 auto;
	background-color: rgba(191, 132, 116, 1);
}

.contact form .button:hover{
	background-color: #333333;
}


/* ----- Footer ----- */
.footer{
	background-color: rgba(191, 132, 116, 1);
	padding: 60px 0px;
	color: #292929 !important;
	border-top: 3px solid #54595F;
}

.footer .small{
	font-size: 10px;
}

.footer a{
	color: #292929 !important;
	text-decoration: none;
}

.logo-footer{
	width: 150px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.footer-icons .footer-icon{
	font-size: 14px;
}

.footer-icons ul{
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: 20px;
}

.footer-icons li{
	display: inline-block;
}

.footer-icons li a{
	font-weight: 100 !important;
	color: #292929;
	text-decoration: none;
	padding: 0px 10px;
}

.footer .address{
	color: #292929;
	font-size: 13px;
}

.footer .schedule{
	color: #292929;
	text-align: right;
	font-size: 13px;
}

.footer .developments-logo{
	width: 40px;
	height: auto;
}

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

.footer .pay-forms li{
	display: inline-block;
	padding: 3px;
}
