@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: "Abril Fatface", serif; */
:root {
	--verde: rgb(24,61,54);
	--marron:  rgb(181,141,102);
}
body {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
}
.pdt-30 { padding-top: 30px; }

.mgt-20 { margin-top: 20px; }
.mgt-30 { margin-top: 30px; }
.mgt-40 { margin-top: 40px; }
.mgt-50 { margin-top: 50px; }
.mgt-60 { margin-top: 60px; }
.mgt-70 { margin-top: 70px; }
.mgt-80 { margin-top: 80px; }
.mgt-100 { margin-top: 100px; }
.mgt-120 { margin-top: 120px; }
.mgt-150 { margin-top: 150px; }
.mgt-200 { margin-top: 200px; }
.mgt-250 { margin-top: 250px; }

.mgb-100 { margin-bottom: 100px; }
.mgb-150 { margin-bottom: 150px; }

header {
	width: 100%;
	height: 110px;
	background-color: var(--marron);
	border-radius: 0 0 40px 40px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
.slider {
	width: 100%;
	position: relative;
	background: url("../imagenes/bg-bubbles.jpg") center center no-repeat #2769ce;
	background-size: auto;
	background-size: cover;	
}
.slide img {
	width: 100%;
	height: auto;
}
.innerHeader {
	width: 85%;
	margin: 0 auto;
	padding: 20px 0;
}
.logo img {
	width: auto;
	height: 70px;
}
nav.menuMain {
	padding:  18px 0 0 0;
}
nav.menuMain ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
nav.menuMain ul li {
	float: right;
	margin-right: 30px;
}
nav.menuMain ul li a {
	font-size: 14px;
	color: var(--verde);
	text-decoration: none;
	padding: 12px 10px;
	font-weight: 600;
}
nav.menuMain ul li.activa a {
	border-bottom: 2px solid var(--verde);
}
.fono {
	position: fixed;
	right: 0px;
	top: 190px;
	width: 120px;
	height: 102px;
	background-color: transparent;
	z-index: 10;
}

/********************* HOME ******************/
section.home_1 {
	padding: 30px 0;
	background: url('../imagenes/bg-patron.jpg');
	background-position: 75% 0px;
	background-repeat: repeat-y;
}
.tituloSection {
	font-size: 3rem;
	color: var(--verde);
	font-family: "Montserrat", sans-serif;
}
.tituloSection span {
	font-size: 3.5rem;
	color: var(--verde);
	font-family: "Abril Fatface", serif;
	font-weight: 400;
	line-height: 3.7rem;
}
.proyectoHome {
	width: 100%;
	position: relative;
}
.overlayProyecto {
	position: absolute;
	width: 100%;
	height: 80%;
	left: 0;
	bottom: 10%;
	/*background-color: rgba(0, 0, 0, 0.4);*/
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 91%);
	z-index: 10;
	display: none;
	transition: all 1.6s ease;
}
.cartelProyecto {
	color: #fff;
	font-size: 22px;
	padding: 5px 10px;
	position: absolute;
	top: 40%;
	left: calc(50% - 110px);
	width: 220px;
	text-align: center;
}
.cartelProyecto a {
	display: block;
	border: 2px solid #fff;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}
.cartelProyecto a:hover {
	background-color: rgba(255, 255, 255, 0.8);
	color: var(--verde);
}
.proyectoHome:hover .overlayProyecto {
	display: block;
}
.picProyectoHome {

}
.picProyectoHome img {
	width: 100%;
	height: auto;
}
.linkProyectos {
	padding: 30px 0;
}
.linkProyectos a {
	font-size: 20px;
	color: var(--verde);
	padding: 0 0 5px 0;
	font-weight: 500;
	text-decoration: none;
	border-bottom: 1px solid var(--verde);
}
section.home_2 {
	background-image: url('../imagenes/bg-verde-2.jpg');
	background-repeat: repeat-x;
	padding: 30px 0 100px 0;
	background-color: #fff;
}
.tituloZonaVerde {
	color: var(--marron);
	font-size: 40px;
	font-family: "Montserrat", sans-serif;
	line-height: 50px;
	padding-top: 30px;
}
.tituloZonaVerde span {
	font-size: 100px;
	color: var(--marron);
	font-family: "Abril Fatface", serif;
	font-weight: 400;
}
.imagenInferior {
	padding: 40px 0 0 0;
}
.imagenInferior img {
	width: 100%;
	height: auto;
}
.datoVerde {
	display: flex;
	flex-direction: row;
}
.numeroVerde {
	width: 25%;
	height: 80px;
	font-size: 50px;
	line-height: 70px;
	color: var(--verde);
	font-family: "Abril Fatface", serif;	
	font-weight: 400;
}
.textoVerde {
	width: 70%;
	height: 80px;
	font-size: 20px;
	line-height: 30px;
	color: var(--verde);
	font-weight: 500;
	font-family: "Montserrat", sans-serif;
	line-height: 34px;
}
.btnVerde {
	width: 100%;
	text-align: center;
	padding: 20px 0 0 0;
}
.btnVerde a {
	background-color: var(--marron);
	padding: 10px 20px;
	color: var(--verde);
	font-size: 20px;
	font-weight: 500;
	text-decoration: none;
}
footer {
	width:100%;
	background-color: var(--marron);
	border-radius: 40px 40px 0 0;
}
.innerFooter {
	width: 85%;
	margin: 0 auto;
	padding: 40px 0 0 0;
}
.colFooter {

}
.colFooter h4 {
	color: var(--verde);
	font-size: 24px;
	font-weight: 400;
	font-family: "Abril Fatface", serif;
	margin-bottom: 20px;
}
.txtFooter {
	width: 100%;
	min-height: 135px;
}
#footer_1, #footer_2, #footer_3 {
	border-right: 1px solid var(--verde);
}
.txtFooter ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	width: 100%;
}
.txtFooter ul li {
	margin-top: 5px;
	color: var(--verde);
	font-size: 17px;	
}
.txtFooter ul li a {
	color: var(--verde);
	font-size: 17px;
	text-decoration: none;
}
.iconosFooter {
	width: 100%;
	min-height: 50px;
}
.iconosFooter ul {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	display: block;	
}
.iconosFooter ul li {
	float: left;
	margin-right: 15px;
}
.iconosFooter ul li img {
	width:40px;
	height: auto;
}
#footer_2a::before {
	width: 2px;
	height: 100px;
	background-color: var(--verde);
	content: '';
	display: inline-block;
}
.slick-dots {
	bottom: -30px;
}
.slick-dots li button::before {
	content: '';
	background-color:transparent;
	border: 1px solid var(--verde);
	border-radius: 50%;
}
.slick-prev:before {
  content: "\f104";
  font-family: 'Font Awesome 5 Free';
  color: #fff;
  font-size: 30px;
}
.previo {
	position: absolute;
	top: calc(50% - 50px);
	left: -20px;
	font-size: 50px;
	color: var(--verde);
	z-index: 7;
	cursor: pointer;
}
.siguiente {
	position: absolute;
	top: calc(50% - 50px);
	right: -20px;
	font-size: 50px;
	color: var(--verde);
	z-index: 7;
	cursor: pointer;
}
/******************** PROYECTOS *******************/
section.proyectos_1 {
	padding: 130px 0 200px 0;	
}
section.proyectos_2 {
	padding: 30px 0 10px 0;
	background-color: #013a33;
	position: fixed;
	width: 100%;
	top: 70px;
	left: 0;
	z-index: 9;
}
section.proyectos_3 {
	margin-top: 180px;
}
.menuProyectos {
	display:flex;
	flex-direction: row;
	padding: 20px 0 0 0;
}
.menuProy {
	width: 20%;
}
.menuProy a {
	font-size:14px;
	color: var(--marron);
	text-decoration: none;
	font-weight: 500;
}
#menuProy_1 {
	text-align: left;
}
#menuProy_2, #menuProy_3, #menuProy_4 {
	text-align: center;
}
#menuProy_5 {
	text-align: right;
}
.bannerProyecto img {
	width: 100%;
	height: auto;
}
.linkBrochure {
	padding: 30px 0 50px 0;
	text-align: center;
}
.linkBrochure a {
	background-color: var(--verde);
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	padding: 15px 40px;
	border-radius:15px;
	font-weight: 600;
}
section.proyectos_4 {
	padding: 30px 0;
	background: url('../imagenes/bg-caracteristicas.jpg');
	background-repeat: repeat-y;
	background-position: center top;
	background-color: #FFF;
}
.caract_izq {
	background-color: var(--marron);
	border-radius: 0 20px 20px 0;
	padding: 10px 20px 10px 25px;
	margin-left: -15px;
	font-size: 18px;
}
.lista-caract {
	background-color: #fff;
	display:flex;
	justify-content: space-between; 
	flex-wrap: wrap;
}
.caract {
	display:flex;
	width: 50%;
	margin-bottom:20px;
}
.icono-caract {
	width: 30%;
	flex-grow: 0; /* No crece más allá de su tamaño base */
  flex-shrink: 0;
}
.icono-caract img {
	width:100%;
	height: auto;
}
.texto-caract {
	width: 65%;
	flex-grow: 0; /* No crece más allá de su tamaño base */
  flex-shrink: 0;
	font-size: 15px;
	color: var(--verde);
	font-weight: 400;
	margin-left: 5%;
}
.texto-caract span {
	font-size: 16px;
	color: var(--verde);
	font-weight: 700;
}
section.proyectos_5 {
	padding: 50px 0 20px 0;
	background-color: #fff;
}
.subtituloProyecto {
	font-size: 50px;
	font-weight:400;
	color: var(--verde);
	font-family: "Montserrat", sans-serif;
}
.subtituloProyecto span {
	font-size: 50px;
	font-weight:400;
	color: var(--verde);
	font-family: "Abril Fatface", serif;
}
section.proyectos_6 {
	padding: 20px 0 50px 0;
	background-color: #fff;
}
.pl_1 {
	width: 100%;
	display: block;
}
.pl_1 ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
  justify-content: flex-start;
}
.pl_1 ul li {
	display: inline-block;
	margin-right: 20px;
}
.pl_1 ul li a {
	display: block;
	padding: 5px 14px;
	border: 1px solid var(--verde);
	background-color: #fff;
	color: var(--verde);
	font-size: 16px;
	text-decoration: none;
	border-radius: 7px;
}
.pl_1 ul li.selected a, .pl_1 ul li a:hover {
	background-color: var(--verde);
	color: #fff;
}
.plantas img {
	width: 100%;
	height: auto;
}
.tit_form {
	font-size: 26px;
	color: var(--verde);
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	margin-bottom: 20px;
}
.form_plant label {
	font-size: 20px;
	color: var(--verde);
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
.form_plant input, .form_plant textarea, .form_plant select {
	border: 1px solid var(--marron);
	border-radius: 10px;
	padding: 10px 7px;
}
.form_plant .form-check-input {
	padding: 20px;
	border: 1px solid var(--marron);
	width: 30px;
  height: 30px;
}
label.form-check-label {
	padding: 0 0 0 25px;
	font-size: 16.5px;
}
.btn-submit {
	text-align: center;
}
.btn-cotizar {
	background-color: var(--marron);
	color: var(--verde);
	font-size: 28px;
	font-weight: 600;
	padding: 10px 50px;
	border-radius: 15px;
}

/***************** EXPERIENCIAS **********************/
section.experiencia_1 {
	background-image: url('../imagenes/bg-verde.jpg');
	background-repeat: repeat-x;
	padding: 0px 0 200px 0;
	background-color: #fff;	
	margin-top:70px;
}
.lista_proyectos {
	width: 100%;
	min-height: 500px;
	position: relative;
}
.titulo_proyectos {
	display:flex;
	flex-direction: row;
	width: 100%;
}
.titulo_proyectos_1 {
	width:180px;
	font-size:190px;
	line-height: 200px;
	color: var(--marron);
	font-family: "Abril Fatface", serif;
	font-weight: 400;
}
.titulo_proyectos_2 {
	width:calc(100% - 220px);
	font-size:40px;
	line-height: 50px;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	padding:10px 0 40px 0;
	text-align: left;
}
.titulo_proyectos_2 span {
	font-size:70px;
	color: var(--marron);
	line-height: 80px;
	font-family: "Abril Fatface", serif;
	font-weight: 400;
}
.div_proyecto {
	float: left;
	width: 48%;
	margin: 20px 0;
}
.card {
	margin:60px 20px;
	text-align: center;
	border: none;
	background: none;
}
.card img {
	width: 90%;
	height: auto;
	filter: grayscale(100%);
	transition: all 0.6s ease;
}
.card img:hover {
	filter: grayscale(0);
}
.card-columns {
  column-count: 2;
}

/************************* NOSOTROS *************************/
section.nosotros_1 {
	padding: 50px 0 150px 0;
	margin-top: 110px;
}
.titulo-nosotros h1 {
	color: var(--verde);
	font-size: 80px;
	line-height:80px;
	font-weight:400;
	font-family: "Abril Fatface", serif;	
}
.titulo-nosotros h1 span {
	color: var(--verde);
	font-size: 130px;
	line-height:120px;
	font-weight:400;	
}
.texto-nosotros {
	font-size:22px;
	line-height:30px;
	padding: 20px 0 0 0;
}

/********************* ENTORNO ********************/
section.proyectos_7 {
	background-image: url('../imagenes/bg-verde-3.jpg');
	background-repeat: repeat-x;
	padding: 20px 0 200px 0;
	background-color: #fff;	
	margin-top:20px;	
}
.subtituloEntorno {
	color: #fff;
	font-size: 45px;
	font-weight: 500;
	font-family: "Montserrat", sans-serif;
}
.subtituloEntorno span {
	color: #fff;
	font-size: 45px;
	font-weight: 400;
	font-family: "Abril Fatface", serif;
}
.direccionEntorno {
	color: var(--verde);
	font-size: 25px;
	font-weight: 500;
	font-family: "Montserrat", sans-serif;
	margin-top: 50px;	
}

/************************* CONTACTO *************************/
section.contacto_1 {
	padding: 0px 0 0px 0;
	margin-top: 200px;
	margin-bottom: 200px;
	background-image: url('../imagenes/bg-contacto.jpg');
	background-position: center top;
	background-repeat: repeat-y;
}
.titulo-contacto {
	padding: 40px 0 0 0;
}
.titulo-contacto h2 {
	color: var(--marron);
	font-size: 40px;
	line-height:50px;
	font-weight:500;	
}
.titulo-contacto h1 {
	color: var(--marron);
	font-size: 70px;
	line-height:80px;
	font-weight:400;
	font-family: "Abril Fatface", serif;	
}
.texto-nosotros {
	font-size:22px;
	line-height:30px;
	padding: 20px 0 0 0;
}
.listaContactos {
	padding: 50px 0 100px 0;
}
.contacto {
	margin-bottom: 35px;
}
.iconContacto {
	float: left;
	width: 12%;
}
.iconContacto img {
	width: 100%;
	height: auto;
	border-radius: 50%;
	background-color: var(--marron);
	padding: 10px;
}
.datosContacto {
	float: left;
	margin-left: 25px;
}
.datosContacto h3 {
	font-size: 26px;
	color: #fff;
}
.datosContacto p {
	padding: 0;
	margin: 0;
	font-size: 22px;
	color: #fff;
	line-height: 24px;
}
.marcoFormContacto {
	padding: 20px 30px;
}
.marcoFormContacto h2 {
	font-size: 3.4rem;
	color: var(--verde);
	font-weight: 400;
	font-family: "Abril Fatface", serif;
	margin: 0;
	padding: 0 0 30px 0;
}
.marcoFormContacto h2 span {
	font-size: 3.4rem;
	color: var(--verde);
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
	margin: 0;
	padding: 0 0 30px 0;
}
.marcoFormContacto label {
	font-size: 18px;
	color: #000;
}
.marcoFormContacto input, .marcoFormContacto textarea {
	border-radius: 10px;
	border: 1px solid var(--marron);
	padding: 15px 10px !important;
}

/************************* VENDE TU PROPIEDAD *************************/
section.vende_1 {
	padding: 0px 0 0px 0;
	margin-top: 200px;
	margin-bottom: 200px;
}
.marcoFormVende {
	padding: 20px 30px;
}
.marcoFormVende h2 {
	font-size: 4rem;
	color: var(--verde);
	font-weight: 400;
	font-family: "Abril Fatface", serif;
	margin: 0;
	padding: 0 0 30px 0;
}
.marcoFormVende h2 span {
	font-size: 3.2rem;
	color: var(--verde);
	font-weight: 500;
	font-family: "Montserrat", sans-serif;
	margin: 0;
	padding: 0 0 30px 0;
}
.marcoFormVende label {
	font-size: 18px;
	color: #000;
}
.marcoFormVende input, .marcoFormVende textarea {
	border-radius: 10px;
	border: 1px solid var(--marron);
	padding: 15px 10px !important;
}
.mapa iframe {
	width: 100% !important;
}


/************************** SLIDER OWL CAROUSEL ************************/
/************************** SLIDER OWL CAROUSEL ************************/
/************************** SLIDER OWL CAROUSEL ************************/
section.b1 {
  position: relative;
  z-index: 3;
  color: #fff !important;
}
.b1-item-sl {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-position: center;
	position: relative;
}
.wancho {
	height: 100vh;
	display: flex;
	align-items: center;
  position: relative;
  z-index: 5;
  width: 94%;
  max-width: 1200px;
  margin: auto;  
}
.b1-texto {
  max-width: 700px;
}
.b1-title {
  font-size: 16px;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  color: #fff;
  margin-bottom: 17px;
  margin-top: 20px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.4s;
}
.b1-subtitle {
  font-size: 65px;
  color: #fff;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  line-height: 78px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.4s;
}
.b1-texto .g0-cnt-btn {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.4s;
}
.b1-texto .g0-btn {
  width: 200px;
  margin: 0;
  border-bottom: none;
}
.g0-btn {
  width: 180px;
  height: 55px;
  font-family: "Montserrat", sans-serif;
  background-color: #ff4600;
  color: #fff;
  font-size: 14px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid transparent;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
  border-bottom: 2px solid #fff;
  transition: all 0.3s;
}
.b1-item-sl .wancho {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}
.wancho {
  width: 94%;
  max-width: 1200px;
  margin: auto;
}
.b1-texto {
  max-width: 800px;
}
.b1-item-sl.animate .b1-title {
  opacity: 1;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  color: #fff;
  font-size: 6rem;
  transform: translateX(0);
}
.b1-item-sl.animate .b1-subtitle {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  color: #fff;
  font-size: 3rem;
  line-height: 3.3rem;
  opacity: 1;
  transform: translateX(0);
}
.b1-subtitle {
  font-size: 65px;
  color: #fff;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  line-height: 78px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.4s;
  transition-delay: 0s;
}
.b1-item-sl.animate .g0-cnt-btn {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  transform: translateX(0);
  transition-delay: .75s;
}
.b1-texto .g0-cnt-btn {
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translateX(-50px);
  transition: all 0.4s;
  transition-delay: 0s;
}
.g0-cnt-btn a {
  background-color: var(--marron);
  border-radius: 10px;
  color: #000;
  padding: 10px 30px;
  text-decoration: none;
}
.b1 .owl-nav {
  display: flex;
  top: 50%;
  left: 0;
  right: 0;
  width: 94%;
  position: absolute;
  max-width: 1450px;
  margin: 0 auto;
}
.b1 .owl-prev {
  left: 0;
}
.b1 .owl-prev, .b1 .owl-next {
  width: 55px;
  height: 55px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.3);
  border-radius: 50%;
  top: 0;
  position: absolute;
  font-size: 26px;
  transition: all 0.3s;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.6) !important;
}
.b1 .owl-prev i, .b1 .owl-next i {
	font-size: 26px;
	color: #000;
}
.b1 .owl-next {
  right: 0;
}


