@font-face {
  font-family: 'noto-Regular';    
  src: url('../fonts/NotoSans-Regular.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'noto-semi-bold';    
  src: url('../fonts/NotoSans-SemiBold.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'noto-bold';    
  src: url('../fonts/NotoSans-Bold.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'noto-black';    
  src: url('../fonts/NotoSans-Black.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "noto-extra";
  src: url("../fonts/NotoSans-ExtraCondensed.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "noto-condensed";
  src: url("../fonts/NotoSans-Condensed.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "noto-condLight";
  src: url("../fonts/NotoSans-CondensedLight.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "noto-exconbold";
  src: url("../fonts/NotoSans-ExtraCondensedBold.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root{
  --orange: #ec6726;
  --gray: #edecec;
  --text-regular: 'noto-Regular', sans-serif;
  --text-bold: 'noto-bold', sans-serif;
  --text-black: 'noto-black', sans-serif;
  --text-semi-bold:'noto-semi-bold', sans-serif;
  --text-extra: 'noto-extra', sans-serif;
  --text-condensed: 'noto-condensed', sans-serif;
  --text-ecbold: 'noto-exconbold', sans-serif;
  --text-condLight: 'noto-condLight', sans-serif;
}
*{
  padding: 0;
  margin: 0;
  font-family: var(--text-condensed);
  color: black;
  box-sizing: border-box;
}
b{
  font-family:var(--text-bold);
}
html {
  scroll-behavior: smooth;
}
body{
  background: white;
  font-size: 16px;
}
section{
  overflow: hidden;
}
.text-orange{
  color: var(--orange);
}
.text-white{
  color: white;
}
.text-center{
  text-align: center;
}
.text-bold{
  font-family: var(--text-bold) !important;
}
.text-regular{
  font-family: var(--text-regular) !important;
}
.text-semibold{
  font-family: var(--text-semi-bold) !important;
}
.text-extra-condensed{
  font-family: var(--text-extra) !important;
}
.text-extra-condensed-bold{
  font-family:var(--text-ecbold) !important;
}
.text-extra-condensed-ligth{
  font-family:var(--text-condLight) !important;
}
.text-upercase{
  text-transform: uppercase;
}
.text-18{
  font-size: 18px;
}
.text-20{
  font-size: 20px;
}
.text-22{
  font-size: 22px;
}
.text-32{
  font-size: 32px;
}
.text-48{
  font-size: 48px;
}
.d-flex{
  display: flex;
}
.box-1200{
  max-width: 1200px;
  margin: 0 auto;
}
.item-tablet,
.item-mobile{
  display: none !important;
}
.item-desktop{
  display: block !important;
}
/* $NAV */
.nav-top{
  width: 100%;
  transition: 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: white;
  padding: 10px;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.23);
  -moz-box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.23);
  box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.23);
}
.box-nav-top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-top .solicitud-link{
  margin-left: auto;
  font-size: 18px;
  background: var(--orange);
  border-radius: 30px;
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  font-weight: 300;
  font-family: var(--text-extra);
  transition: 1s;
}
.nav-top .logo-nav{
  width: 190px;
  transition: 1s;
}
.nav-top .nav-redes{
  margin-left:30px;
}
.nav-top .nav-redes a{
  text-decoration: none;
  margin-right: 5px;
  transition: 1s;
}
.nav-top .nav-redes img{
  width: 25px;
  transition: 1s;
}
.nav-top.active{
  padding: 0 10px;
}
.nav-top.active .logo-nav{
  width: 140px;
}
.nav-top.active .solicitud-link{
  padding: 10px 20px;
}
.nav-top.active .nav-redes a{
  margin-right: 4px;
}
.nav-top.active .nav-redes img{
  width: 22px;
}
.nav-top.active .box-nav-top{
  padding: 15px 0;
}
.nav-top .menu-mobile{
  height: 0;
  transition:.5s;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  background: white;
  justify-content: center;
}
.nav-top .btn-menu-mobile{
  display: none;
}
/* $HEADER */
.header-seccion{
  margin-top: 100px;
  position: relative;
  background: var(--gray);
}
.header-seccion .swiper-header img{
  width: 100%;
}
.header-seccion .swiper-header .swiper-button-next{
  right: 10%;
}
.header-seccion .swiper-header .swiper-button-prev{
  left: 10%;
}
.header-seccion .swiper-header .swiper-button-next:after, 
.header-seccion .swiper-header .swiper-button-prev:after{
  color: white;
}
.header-seccion .box-proposito{
  background-color: #125b2e;
  margin-top: -5px;
}
.header-seccion .box-proposito .box-1200{
  flex-wrap:wrap ;
}
.header-seccion .box-proposito p{
  color: white;
}
.header-seccion .box-proposito h4{
  color: #3d8e4e;
  margin-bottom: 20px;
}
.header-seccion .box-proposito .box-proposito-item{
  width: 33.33%;
  text-align: center;
  background: #0d6936;
  padding: 60px 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.header-seccion .box-proposito .box-proposito-item.box-proposito-item-center{
  background: #153b1d;
}
.header-seccion .box-proposito .box-proposito-item.box-proposito-item-center .item-desktop{
  display: flex !important;
}
.header-seccion .box-proposito .box-proposito-item.box-proposito-item-center img{
  width: auto;
  max-width: 100%;
}
.header-seccion .box-descargar{
  text-align: center;
  padding: 40px;
  background: white;
}
.header-seccion .box-descargar .btn-descarga{
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-size: 22px;
  padding: 30px;
  text-transform: uppercase;
  border-radius: 30px;
  width: 100%;
  max-width: 340px;
  display: block;
  margin: 0 auto;
}
/* $desafios-seccion */
.box-desafios{
  background: var(--gray);
  padding: 30px 0;
}
.box-desafios .swiper-desafios{
  padding-bottom: 10px;
}
.box-desafios > div{
  width: 50%;
  display: flex;
  align-items: center;
}
.box-desafios .box-desafios-left{
  background: url("../assets/media/desafios-lateral.png") no-repeat center/cover;
}
.box-desafios .box-desafios-right{
  padding: 0 30px 20px;
}
.box-desafios h3{
  margin-bottom: 40px;
  line-height: 48px;
}
.box-desafios p{
  margin-bottom: 30px;
}
.box-desafios .box-desafios-right img{
  margin-right: 15px;
}
/* $sostenible-seccion */
.sostenible-seccion{
  padding: 50px 20px 20px;
}
.sostenible-seccion .divisor-green{
  width: 100%;
  height: 3px;
  background: #a1c191;
  margin-bottom: 20px;
}
.sostenible-seccion .intro-text-sostenible{
  max-width: 800px;
  margin-bottom: 40px;
}
.sostenible-seccion .box-item-sostenible{
  justify-content: space-between;
  margin-bottom: 80px;
}
.sostenible-seccion .box-item-sostenible .item-sostenible{
  width: 254px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sostenible-seccion .box-item-sostenible .item-sostenible img{
  width: auto;
  max-width: 100%;
}
.sostenible-seccion .box-item-sostenible .item-sostenible p{
  text-align: left;
}
.sostenible-seccion .box-item-sostenible .item-sostenible .item-sostenible-img img:nth-child(2){
  margin: 10px 0 ;
}
.sostenible-seccion .box-form{
  padding: 30px 20px 25px;
  text-align: center;
  margin-bottom: 100px;
}
.sostenible-seccion .box-form h3{
  margin-bottom: 20px;
}
.sostenible-seccion .box-form .content-input-text{
  justify-content: center;
}
.sostenible-seccion .box-form .content-input-text .input-text{
  max-width: 400px;
  margin: 0 20px;
}
.sostenible-seccion .box-form .solicitar-ficha{
  width: 210px;
  margin-bottom: 25px;
}
/* $proteccion-seccion */
.proteccion-seccion{
  background: url("../assets/media/fondo-sostenibilidad.png") no-repeat center /cover;
  padding: 60px 0 30px;
}
.proteccion-seccion p,
.proteccion-seccion h2{
  color: white;
  font-family: var(--text-regular);
}
.proteccion-seccion p span{
  color: white;
}
.proteccion-seccion p{
  font-size: 26px;
}
.proteccion-seccion .text-introproteccion{
  font-size: 28px;
  margin-bottom: 40px;
}
.proteccion-seccion h2{
  font-size: 110px;
  font-family: var(--text-bold);
  color: #cbe776;
}
.proteccion-seccion .box-proteccion{
  justify-content: space-evenly;
  align-items: flex-end;
}
/* $objetivos-seccion */
.objetivos-seccion{
  margin: 50px 0;
}
.objetivos-seccion h3{
  color: #277e00;
  font-size: 28px;
}
.objetivos-seccion p{
  margin-bottom: 40px;
}
.objetivos-seccion .item-objetivos:last-child p{
  margin-bottom:0;
}
.objetivos-seccion .item-objetivos p span{
  color: #51a42c;
  font-size: 22px;
}
.objetivos-seccion .item-objetivos img{
  margin-right: 15px;
}
.objetivos-seccion .objetivos-seccion-right{
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  background: var(--gray);
  padding: 40px;
  width: 55%;

}
.objetivos-seccion .objetivos-seccion-left{
  background: url("../assets/media/lateral-objetivos.png") no-repeat center/cover;
  width: 45%;
}
/* $valor-seccion */
.valor-seccion{
  padding: 20px 0 90px;
}
.valor-seccion h3{
  color:#3b853d;
  font-size: 70px;
  font-family: var(--text-regular);
  line-height: 70px;
  margin-bottom: 40px;
}
.valor-seccion h3 span{
  color:#3b853d;
}
.valor-seccion p,
.valor-seccion li{
  line-height: 30px;
  font-family: var(--text-regular);
  max-width: 550px;
}

.valor-seccion ul li{
  margin-left: 20px;
  font-family: var(--text-bold);
}
.valor-seccion ul li::marker{
  color: #277e00;
}
.valor-seccion .item-valor.item-valor-right img{
  margin-right: 60px;
}
.valor-seccion .item-valor.item-valor-left img{
  margin-left: 60px;
  margin-top: -120px;
}
.valor-seccion .item-valor.item-valor-center{
  align-items: center;
}
/* $hechos-seccion */
.hechos-seccion{
  background: #061B16;
}
.hechos-seccion .hechos-seccion-bottom img,
.hechos-seccion .hechos-seccion-top img{
  width: 100%;
}
.hechos-seccion .hechos-seccion-top{
  position: relative;
}
.hechos-seccion .hechos-seccion-bottom{
  position: relative;
  margin-top: -5%;
}
.hechos-seccion .box-hechos-text{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.hechos-seccion .hechos-seccion-top .box-hechos-text {
  max-width: 630px;
  right: 6%;
}
.hechos-seccion .hechos-seccion-top .box-hechos-text h3 span{
  color: #73d65b;
  font-size: 60px;
}
.hechos-seccion .hechos-seccion-top .box-hechos-text h3{
  color: white;
  font-size: 40px;
  text-align: center;
  line-height: 42px;
  margin-bottom: 20px;
}
.hechos-seccion .hechos-seccion-top .box-hechos-text p{
  line-height: 28px;
}
.hechos-seccion .hechos-seccion-top .box-hechos-text p span.text-green{
  color: #73d65b;
}
.hechos-seccion .hechos-seccion-bottom .box-hechos-text{
  max-width: 560px;
  left: 6%;
  margin-top: 2%;
}
.hechos-seccion .hechos-seccion-bottom .box-hechos-text p{
  font-size: 27px;
}
.hechos-seccion .box-hechos-text p{
  color: white;
  text-align: justify;
  font-family: var(--text-regular);
}
.hechos-seccion .box-hechos-text p span{
  color: white;
}
/* $reinventando-seccion */
.reinventando-seccion{
  margin: 100px 0;
}
.reinventando-seccion p{
  font-size: 20px;
  font-family: var(--text-regular);
  margin: 50px auto 60px;
}
.reinventando-seccion span.text-green{
  color: #5ca633;
}
.reinventando-seccion .box-reinventando-seccion{
  align-items: center;
  justify-content: space-evenly;
}
/* $formulario-seccion */
.formulario-seccion{
  background: url("../assets/media/formulario01.png") no-repeat center /cover;
  min-height: 700px;
  justify-content: center;
  padding: 100px 20px;
}
.formulario-seccion .box-contacto{
  width: 100%;
  max-width: 480px;
  transform: translateX(50%);
}
.formulario-seccion h3{
  color: #3b853d;
}
.formulario-seccion p{
  margin: 10px 0 60px;
}
.formulario-seccion .box-form .box-inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.formulario-seccion .box-form .box-inputs .input-text{
  width: 48%;
  border-radius: 0;
  height: 60px;
}
.formulario-seccion .box-form .box-inputs .text-area{
  width: 100%;
  height: 150px;
  border: none;
}
.formulario-seccion .box-form .enviar-fomr{
  border: none;
  background: #064424;
  width: 100%;
  border-radius: 30px;
  height: 50px;
  margin-top: 30px;
  color: white;
  font-size: 18px;
  font-family: var(--text-ecbold);
  text-transform: uppercase;
}
/* $ */
/* $FOOTER */
footer .footer-top{
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
footer .footer-top > div{
  width: 50%;
  display: flex;
}
footer .footer-top .footer-top-left{
  justify-content: flex-start;
}
footer .footer-top .footer-top-rigth{
  align-items: center;
  justify-content: space-between;
}
footer .footer-top .nav-redes.redes-tablet{
  display: none;
}
footer .footer-top .nav-redes{
  display: flex;
  flex-direction: column;
}
footer .footer-top .nav-redes img{
  width: 25px;
}
footer .footer-top .footer-top-rigth .footer-contacto{
  width: 250px;
}
footer .footer-bottom{
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
footer .footer-bottom > *{
  margin: 0 15px;
}
footer .footer-bottom a,
footer .footer-bottom p{
  text-decoration: none;
  font-size: 13px;
}
/* $FORMULARIO*/
.box-form-gray{
  background: var(--gray);
  border-radius: 30px;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.23);
  -moz-box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.23);
  box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.23);
}
.box-form .input-text{
  padding: 11px 25px 7px;
  border: none;
  border-radius: 10px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.box-form .text-area{
  padding: 10px 25px;
}
.box-form .text-area::placeholder,
.box-form .input-text::placeholder{
  font-size: 20px;
}
.box-form .content-checkbox label{
  font-family: var(--text-extra);
  margin-left: 5px;
}
.box-form .solicitar-ficha{
  background: var(--orange);
  width: 150px;
  height: 50px;
  border: none;
  border-radius: 15px;
  text-align: center;
  color: white;
  font-family: var(--text-ecbold);
  font-size: 20px;
  margin: 35px auto 0;
  display: block;
  cursor: pointer;
}
@media (max-width: 768px) {
  .item-mobile,
  .item-desktop{
    display: none !important;
  }
  .item-tablet{
    display: block !important;
  }
  /* $NAV */
  .nav-top {
    padding: 10px 20px;
  }
  .nav-top .logo-nav{
    width: 120px;
  }
  .nav-top .btn-menu-mobile{
    width: 40px;
    text-align: center;
    display: block;
  }
  .nav-top .btn-menu-mobile img{
    width: 35px;
  }
  .nav-top .menu-mobile.active{
    height: 65px;
    margin-top: 10px;
  }
  .nav-top .nav-redes{
    margin-left: 0;
  }
  /* $HEADER */
  .header-seccion .box-proposito .box-proposito-item {
    width: 50%;
  }
  /* $desafios-seccion */
  .sostenible-seccion{
    padding-left: 40px;
    padding-right: 40px;
  }
  .box-desafios h3{
    font-size: 40px;
  }
  /* $sostenible-seccion */
  .sostenible-seccion .box-item-sostenible{
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .sostenible-seccion .box-item-sostenible .item-sostenible{
    width: 40%;
    margin-bottom: 50px;
  }
  /* $proteccion-seccion */
  .proteccion-seccion{
    padding: 40px 20px;
  }
  .proteccion-seccion .text-introproteccion{
    font-size: 22px;
  }
  .proteccion-seccion h2{
    font-size: 45px;
    margin-bottom: 30px;
  }
  .proteccion-seccion p{
    font-size: 18px;
  }
  /* $objetivos-seccion */
  .objetivos-seccion .objetivos-seccion-left{
    background-position: center left;
  }
  /* $valor-seccion */
  .valor-seccion{
    padding: 20px 40px;
  }
  .valor-seccion .item-valor{
    align-items: flex-start;
    margin-bottom: 60px;
  }
  .valor-seccion .item-valor.item-valor-right img{
    margin-right: 30px;
  }
  .valor-seccion .item-valor.item-valor-left img {
    margin-left: 30px;
  }
  .valor-seccion .item-valor img{
    width: 35%;
  }
  .valor-seccion h3{
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 28px;
  }
  .valor-seccion .item-valor.item-valor-center{
    align-items: flex-start;
  }
  .valor-seccion .item-valor.item-valor-left img{
    margin-top: -10px;
  }
  /* $hechos-seccion */
  .hechos-seccion .hechos-seccion-top{
    background: url("../assets/media/hechos-top.png") no-repeat 40% center/cover;
    min-height: 500px;
  }
  .hechos-seccion .hechos-seccion-bottom{
    background: url("../assets/media/hechos-bottom.png") no-repeat 40% center/cover;
    min-height: 400px;
    margin-top: -13%;
  }
  .hechos-seccion .hechos-seccion-bottom .box-hechos-text p {
    font-size: 20px;
  }
  .hechos-seccion .hechos-seccion-bottom .box-hechos-text {
    max-width: 400px;
    margin-top: 5%;
  }
  .hechos-seccion .hechos-seccion-top .box-hechos-text h3{
    font-size: 30px;
  }
  .hechos-seccion .hechos-seccion-top .box-hechos-text h3 span {
    font-size: 40px;
  }
  /* $reinventando-seccion */
  .reinventando-seccion{
    margin: 0;
    padding: 60px 40px;   
  }
  .reinventando-seccion .box-reinventando-seccion{
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
  }
  .reinventando-seccion .box-reinventando-seccion img{
    width: 20%;
    margin: 10px 5% 20px;
  }
  .reinventando-seccion p {
    font-size: 24px;
  }
  /* formulario-seccion */
  .formulario-seccion .box-contacto{
    transform: none;
  }
  .formulario-seccion{
    background-position: center left;
  }
  /* $FOOTER */
  footer .footer-top{
    flex-wrap: wrap;
    margin: 40px 20px 10px;
  }
  footer .footer-top .footer-top-left {
    flex-direction: column;
    align-items: center;
    padding-right: 20px;
  }
  footer .footer-top .footer-top-left img{
    max-width: 90px;
    margin-bottom: 20px;
  }
  footer .footer-bottom{
    margin-bottom: 40px;
  }
  footer .footer-top .footer-top-rigth{
    padding-left: 20px;
    flex-direction: column;
  }
  footer .footer-top .nav-redes.redes-tablet{
    display: flex;
    flex-wrap: wrap;
  }
  footer .footer-top .nav-redes.redes-desktop{
    display: none;
  }
  footer .footer-top .nav-redes {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
  } 
  footer .footer-top .nav-redes img{
    margin: 0 10px;
  }
  footer .footer-top .footer-top-rigth .footer-contacto{
    width: 90%;
  }
  footer .footer-top .footer-top-rigth > *,
  footer .footer-top .footer-top-left > *{
    margin-bottom: 20px;
  }
  .header-seccion .swiper-header .swiper-button-next,
  .header-seccion .swiper-header .swiper-button-prev{
      display:none;
  }
  /* $FORMULARIO*/
}
@media (max-width: 500px) {
  .item-tablet,
  .item-desktop{
    display: none !important;
  }
  .item-mobile{
    display: block !important;
  }
  /* $NAV */
  .nav-top .logo-nav{
    width: 110px;
  }
  .nav-top .solicitud-link{
    padding: 14px 16px;
    font-size: 16px;
  }
  /* $HEADER */
  .header-seccion .box-proposito .box-proposito-item {
    width: 100%;
  }
  /* $desafios-seccion */
  .box-desafios{
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .box-desafios .box-desafios-left{
    min-height: 500px;
    margin-bottom: 30px;
  }
  .box-desafios .box-desafios-left,
  .box-desafios .box-desafios-right{
    width: 100%;
  }
  .box-desafios h3 {
    font-size: 28px;
    line-height: 38px;
  }
  /* $sostenible-seccion */

  .sostenible-seccion .box-item-sostenible .item-sostenible {
    width: 100%;
  }
  .sostenible-seccion .box-form{
    border-radius: 0;
    margin-left: -40px;
    margin-right: -40px;
    margin-bottom: 20px;
  }
  .sostenible-seccion .box-form h3{
    font-size: 20px;
  }
  .sostenible-seccion .box-form .content-input-text{
    flex-wrap: wrap;
  }
  .sostenible-seccion .box-form .content-input-text .input-text{
    width: 100%;
    max-width: none;
    margin-bottom: 30px;
  }
  .sostenible-seccion .box-form .solicitar-ficha{
    margin-top: 5px;
  }
  /* $proteccion-seccion */
  .proteccion-seccion {
    padding-bottom: 0;
  }
  .proteccion-seccion h2{
    font-size: 38px;
  }
  .proteccion-seccion .box-proteccion{
    flex-wrap: wrap;
  }
  .proteccion-seccion .box-proteccion > div{
    width: 100%;
    margin-bottom: 60px;
  }
  /* $objetivos-seccion */
  .objetivos-seccion{
    margin-top: 0;
  }
  .objetivos-seccion .box-1200{
    flex-wrap: wrap;
  }
  .objetivos-seccion .objetivos-seccion-left{
    background-position: center;
    width: 100%;
    min-height: 500px;
  }
  .objetivos-seccion .objetivos-seccion-right{
    width: 100%;
  }
  /* $valor-seccion */
  .valor-seccion .item-valor{
    flex-wrap: wrap;
  }
  .valor-seccion .item-valor > div,
  .valor-seccion .item-valor img{
    width: 100%;
  }
  .valor-seccion .item-valor.item-valor-right{
    flex-direction: column-reverse;
  }
  .valor-seccion .item-valor.item-valor-right img,
  .valor-seccion .item-valor.item-valor-left img,
  .valor-seccion .item-valor img{
    margin: 30px 0 0;
  }
  .valor-seccion h3 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: normal;
  }
  /* $hechos-seccion */
  .hechos-seccion .box-hechos-text{
    padding: 20px 40px;
  }
  .hechos-seccion .box-hechos-text{
    position: relative;
    transform: none;
    top: auto;
    right: auto !important;
    max-width: none !important;
    left: auto !important;
  }
  .hechos-seccion .hechos-seccion-bottom .box-hechos-text p{
    font-size: 16px;
  }
  .hechos-seccion .hechos-seccion-top{
    min-height: 650px;
    padding-top: 40px;
  }
  .hechos-seccion .hechos-seccion-bottom {
    margin-top: -27%;
    padding-top: 30%;
  }
  /* $reinventando-seccion */
  .reinventando-seccion .box-reinventando-seccion img{
    width: 30%;
  }
  .reinventando-seccion .logo-reinventando{
    max-width: 80%;
    margin: 0 auto;
  }
  .reinventando-seccion p{
    font-size: 18px;
  }
  /* $ */
  /* $ */
  /* $FOOTER */
  footer .footer-top > div{
    width: 100%;
  }
  footer .footer-top .nav-redes,
  footer .footer-top .footer-top-left{
    align-items: center;
    justify-content: center;
  }
  footer .footer-bottom{
    flex-wrap: wrap;
  }
  footer .footer-bottom p {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  /* $FORMULARIO*/
}