/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Roboto", sans-serif;
  color: #444444;
  font-size: 1em;
}

a {
  color: #E78F02;
  text-decoration: none;
}

a:hover {
  color: #e3920f;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}


@media (max-width: 768px) {
    body{
      font-size: 1em;
    }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #E78F02;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #E78F02;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#cabecera {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background-color: #2B7E52;
}

#cabecera .logo {
  font-family: "Chewy";
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

#cabecera .logo img {
  max-height: 60px;
}

#cabecera.cabecera-scrolled,
#cabecera.cabecera-inner-pages {
  /*background: rgba(0, 0, 0, 0.9); */
  padding: 12px 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 15px;
  padding: 0 4px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #E78F02;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #493c3e;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #E78F02;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(45, 37, 38, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #493c3e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #E78F02;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #E78F02;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#compromiso {
  width: 100%;
  /*height: 80vh; */
 padding-top: 3em;
 padding-bottom: 3em;
}

#compromiso .logo_header{
  height: auto;
  width: 80%;
  margin-top: 6em;
  margin-left: -3em;
}

#compromiso:before {
  content: "";
/*background: rgba(0, 0, 0, 0.6);*/
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.compromiso_border_bottom{
  border-bottom-color: #2b7e52;
  border-bottom-style: dotted;
  border-bottom-width: 0.5em !important;
}

#compromiso .compromiso-container {
  position: inherit; /*absolute*/
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;
  /*display: inline-flex; */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
  background: url("../img/encabezado.jpg") top center;
  background-size: cover;
  position: relative;
}

#compromiso .contenedor {
  position: inherit; /*absolute*/
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  /*display: inline-flex; */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;

}

#compromiso .contenedor .huella{
  max-height: 220px;
  position: absolute;
  margin-top: 15em;
  margin-left: 25em;
  opacity: 0.5;
  z-index: -1;
}

#compromiso h3 {
  background: rgba(255, 255, 255, 0.1);
  color: #2B543E;
  font-size: 26px;
  padding: 10px 30px;
  margin-bottom: 30px;
  border-radius: 50px;
}

#compromiso h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
 /* text-transform: uppercase;*/
  color: #2B543E;
}

#compromiso h2 {
  color: #2B543E;
  margin-bottom: 40px;
  font-size: 24px;
}

#compromiso .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#compromiso .btn-get-started:hover {
  background: #E78F02;
  border: 2px solid #E78F02;
}

#compromiso .ver_movil{
  display: none;
}


#compromiso  .ver_desktop{
  display: flex;
}

@media (min-width: 1024px) {
  #compromiso {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {

  #compromiso .ver_movil{
    display: initial;
  }


  #compromiso  .ver_desktop{
    display: none;
  }
  
  #compromiso .compromiso-container{
    height: 40vh;
  }
  #compromiso .contenedor .huella{
    margin-top: 15em;
    margin-left: 8em;
    max-height: 150px;
  }
  
  #compromiso h3 {
    font-size: 22px;
  }

  #compromiso h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #compromiso h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }


  #compromiso .logo_header{
    margin-top: 3em;
    margin-left: -10px;
   /* height: 380px;*/
   width: 90%;
   height: auto;
  }
}

@media (max-height: 500px) {
  #compromiso {
    height: 150vh;
  }
}



/*--------------------------------------------------------------
# Entorno Saludable
--------------------------------------------------------------*/
.entorno{
  background-color: #E7EFCD;
}
.entorno .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.entorno .content ul {
  list-style: none;
  padding: 0;
}

.entorno .content ul li {
  padding-left: 28px;
  position: relative;
}

.entorno .content ul li+li {
  margin-top: 10px;
}

.entorno .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #E78F02;
  line-height: 1;
}

.entorno .content p:last-child {
  margin-bottom: 0;
}


#entorno .contenedor {
  position: inherit; /*absolute*/
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  /*display: inline-flex; */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
  display: block ruby; 
  padding-top: 2em;
  padding-bottom: 3em;
}

#entorno .contenedor .huella{
  max-height: 220px;
  position: absolute;
  margin-top: 2em;
  margin-left: 25em;
  opacity: 0.5;
}


#entorno .contenedor .d1m2{
  order:1;
}

#entorno .contenedor .d2m1{
  order:2;
}


#entorno  .ver_desktop{
  display: flex;
}




@media (max-width: 768px) {

  #entorno .contenedor .d1m2{
    order:2;
  }
  
  #entorno .contenedor .d2m1{
    order:1;
  }
  

  #entorno .contenedor .huella{
    margin-top: 5em;
    margin-left: 8em;
    max-height: 150px;
  }
  #entorno .contenedor .texto_bajoimagen{
    padding-left: 5%;
  }

  #entorno .ver_movil{
    padding-top: 3em;
  }


  #entorno  .ver_desktop{
    display: none;
  }

}


/*--------------------------------------------------------------
# Servicios Sustentables
--------------------------------------------------------------*/
.servicios{
  background-color: #FFF;
}
.servicios .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.servicios .content ul {
  list-style: none;
  padding: 0;
}

.servicios .content ul li {
  padding-left: 28px;
  position: relative;
}

.servicios .content ul li+li {
  margin-top: 10px;
}

.servicios .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #E78F02;
  line-height: 1;
}

.servicios .content p:last-child {
  margin-bottom: 0;
}


#servicios .contenedor {
  position: inherit; /*absolute*/
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#servicios .contenedor .huella{
  max-height: 220px;
  position: absolute;
  margin-top: 2em;
  margin-left: 25em;
  opacity: 0.5;
}



@media (max-width: 768px) {

  #servicios .contenedor .huella{
    margin-top: 5em;
    margin-left: 8em;
    max-height: 150px;
  }

}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 0.8em;
  background: #f6f4f4;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
  position: inherit; /*absolute*/
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  text-align: right;
  padding: 0 15px;
  background: url("../img/pie.png") top center;
  background-size: cover;
  position: relative;
}


#footer .footer-top .footer-links {
  margin-bottom: 30px;
  color: #2B543E;
  text-decoration: none;
  text-align: left;padding-left: 10em;
}

#footer .footer-top .footer-links ul {
  list-style: none;padding: 0;margin: 0;
}



#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  padding-bottom: 1.5em;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #2B543E;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #2B543E;
}

#footer .footer-top .container{
  padding-top: 10em;
  padding-bottom: 6em;
}

#footer .footer-top .container .row .logopie{
  padding-top: 8em;
}

.estilo_wap{
	width: 3%;float: right;z-index: 100;position: fixed;right: 60px; bottom: 15px;
}


@media (max-width: 768px) {

  #footer .footer-top {
    background: url("../img/pie_small2.png") left center;
    /*padding-right: 30%; */
  }
  
  #footer .footer-top .container{
    padding-top: 0.2em;
    padding-bottom: 0.2em;
  }
  #footer .footer-top .container .row .logopie{
    padding-top: 2em;
    padding-bottom: 3em;
    margin-left: -1em;
  }


  #footer .footer-top .footer-links {
    padding-left: 5em;
    padding-top: 2em;
  }

  .estilo_wap{
    width: 13%;float: right;z-index: 100;position: fixed;right: 60px; bottom: 10px;
  }

}


/*SECCION GALERIA*/
.gallery {
  /*margin-top: 40px; */
  background-color: #E7EFCD;
}

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  /*border-radius: 10px;*/
}



.texto_bajoimagen{
  color: #2B543E;
  text-align: left;
  font-size: 0.8em;
  font-style: italic;
  padding-top: 1em;
  padding-left: 18%; /*30%*/
}

.texto_bajoimagen_proy{
  bottom: 5px;
  position: absolute;
  padding-left: 0;
}

.texto_bajoimagen_div{
  color: #FFF;
  font-size: 1.2em;
  position: absolute;
  padding-top: 5px;
  padding-left: 20%;
  font-style: normal;
}


/*DEGRADE VIDEO*/
.box{
  /* Use  your own styles here */
  transform: translate3d(30px, 30px, 0) scale(0.95);
}

.box:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right , #9DB447  0%, #85A042 100% );
  transform: translate3d(30px, 30px, 0) scale(0.95);
  filter: blur(0px);
  opacity: var(0.7);
  transition: opacity 0.3s;
  border-radius: inherit;
}


.box::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  border-radius: inherit;
}
/*FIN DEGRADE VIDEO*/

/*DEGRADE VIDEO*/
.boxdos{
  /* Use  your own styles here */
  transform: translate3d(-30px, -30px, 0) scale(0.95);
}

.boxdos:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to left , #9DB447  0%, #85A042 100% );
  transform: translate3d(-30px, -30px, 0) scale(0.95);
  filter: blur(0px);
  opacity: var(0.7);
  transition: opacity 0.3s;
  border-radius: inherit;
}


.boxdos::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  border-radius: inherit;
}
/*FIN DEGRADE VIDEO*/



.over-img{
  position: absolute;
  top: 30px;
  left: 30px;
}

.img-fluid{
  max-width: 95%;
  height: auto;
}

.img-fluid-video{
  position: relative;
  top: 50px;
  width: 100%;
  height: 100%;
  left: -0.8em;
}

.video-youtube{
  width: 100%;
  height: 100%;
  margin-left: -30px;
  position: absolute;
  left: -30px;
  z-index: 1;
}

.terraza-viva{
  position: absolute;
  left: 5px;
  font-family: 'Montserrat', sans-serif;
  color: #FFF;
  font-size: 1.2em;
  font-style: normal;
  padding-top: 98%;
}

.paisajismo{
  position: absolute;
  left: 5px;
  font-family: 'Montserrat', sans-serif;
  color: #FFF;
  font-size: 1.2em;
  font-style: normal;
  padding-top: 87%;
}

.riego{
  position: absolute;
  right: 1.5em;
  font-family: 'Montserrat', sans-serif;
  color: #FFF;
  font-size: 1.2em;
  font-style: normal;
  padding-top: 87%;
}

.container-fluid-movil{
  width: 80%;
}

.img-fluid-instalaciones{
  height: 90%;
}

.margintop9, .margintop91 {
  margin-top: -9em;
}

.margintop8 {
  margin-top: -9em;
}
.margintop5{
  margin-top: -5.2em;
}

.img-fluid-ocultar{
  opacity: 0; 
  height: 70%;
}

.img-circular{
  max-width: 300px;
}

@media (max-width: 768px) {
  .video-youtube{
    margin-left: 0;
    left: 50px;
    width: 90%;
    height: 90%;
  }
  .img-fluid-video{
    top: 20px;
  }

  .terraza-viva{
    padding-top:88%;
    left: 1.5em;
  }

  .maspadding{
    padding-top: 2em;
  }

  .paisajismo{
    padding-top:82%;
    left: 0.5em;
  }
  .riego{
    padding-top: 82%;
    right: 1em;
  }

  .h-75{
    height: 100% !important;
  }

  .container-fluid-movil{
    width: 95%;
  }

  .img-fluid-instalaciones{
    height: 60%;width: 80%;
  }
  .margintop9{
    margin-top: 0;
    padding-top:3em;
  }
/*    .margintop5{
    margin-top: 0;
    padding-top: 5em;
  } */

  .margintop2{
    margin-top: -30px;
  }
  .margintop8{
    margin-top:-7em;
  }
  .margintop91{
    margin-top: 0;
    padding-top:9em;
  }

  .img-fluid-ocultar{
    display: none;
  }

  .img-circular{
    max-width: 250px;
  }

}