@import "../css/bootstrap.min.css";
@font-face {
  font-family: 'Foco';
  src: url('../fonts/Foco-Light.woff2') format('woff2'), url('../fonts/Foco-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Foco';
  src: url('../fonts/Foco-Regular.woff2') format('woff2'), url('../fonts/Foco-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Foco';
  src: url('../fonts/Foco-Bold.woff2') format('woff2'), url('../fonts/Foco-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Foco';
  src: url('../fonts/Foco-Black.woff2') format('woff2'), url('../fonts/Foco-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------
# Varibles
	- Media Queries
	- Tipografías
	- Colores

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
/* Media Queries
--------------------------------------------- */
/* Tipografías
--------------------------------------------- */
/* Colores
--------------------------------------------- */
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Documento
# Botones
# Títulos
# Banner

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Documento
--------------------------------------------------------------*/
html {
  -webkit-font-smoothing: antialiased;
  font-family: 'Foco', sans-serif;
  font-size: 16px;
}
body {
  color: #344662;
  font-family: 'Foco', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  transition: all 0.2s ease;
}
* {
  box-sizing: border-box;
  outline: none;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
pre {
  border: 1px solid #f4f4f4;
  background-color: #f0f0f0;
  margin: 50px;
  padding: 50px;
}
/*--------------------------------------------------------------
# Botones
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Títulos
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #344662;
  font-family: 'Foco', sans-serif;
  font-weight: 900;
  margin: 0;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #344662;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
h1 a:visited,
h2 a:visited,
h3 a:visited,
h4 a:visited,
h5 a:visited,
h6 a:visited,
h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus,
h5 a:focus,
h6 a:focus {
  color: #344662;
  text-decoration: underline;
}
h2 {
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  h2 {
    margin-bottom: 3.5rem;
  }
}
h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
h4 {
  font-size: 1.125rem;
}
@media screen and (min-width: 992px) {
  h4 {
    font-size: 1.5rem;
  }
}
ul,
ol {
  margin-left: 0;
}
/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.inner-banner {
  align-items: flex-end;
  display: flex;
  margin-bottom: 1rem;
  min-height: 260px;
  padding-bottom: 50px;
  padding-top: 50px;
  position: relative;
}
@media screen and (orientation: landscape) {
  .inner-banner {
    min-height: 360px;
  }
}
@media screen and (min-width: 540px) {
  .inner-banner {
    min-height: 340px;
  }
}
@media screen and (min-width: 576px) {
  .inner-banner {
    min-height: 480px;
  }
}
@media screen and (min-width: 992px) {
  .inner-banner {
    margin-bottom: 2rem;
    min-height: 320px;
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 1140px) {
  .inner-banner {
    min-height: 460px;
  }
}
@media screen and (min-width: 1600px) {
  .inner-banner {
    min-height: 600px;
  }
}
.inner-banner:after {
  background-image: url(../img/certificado-decoracion-bottom.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  width: 100%;
}
.inner-banner .inner-banner__background {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.inner-banner .inner-banner__background img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  width: 100%;
}
.inner-banner .inner-banner__background img:first-child {
  display: none;
}
@media screen and (min-width: 992px) {
  .inner-banner .inner-banner__background img:first-child {
    display: block !important;
  }
}
.inner-banner .inner-banner__background img:last-child {
  display: block;
}
@media screen and (min-width: 992px) {
  .inner-banner .inner-banner__background img:last-child {
    display: none;
  }
}
.inner-banner .inner-banner__title {
  color: #FFFFFF;
  flex: 0 0 100%;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.inner-banner .inner-banner__title .inner-banner__title--box {
  display: flex;
  justify-content: center;
}
.inner-banner .inner-banner__title .inner-banner__title--box h1 {
  border-bottom: 2px solid #D7A023;
  border-top: 2px solid #D7A023;
  color: #FFFFFF;
  flex: 0 0 auto;
  font-size: 1.25rem;
  margin: 0;
  max-width: 100%;
  padding: 0.5rem 0;
  text-align: center;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .inner-banner .inner-banner__title .inner-banner__title--box h1 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .inner-banner .inner-banner__title .inner-banner__title--box h1 {
    font-size: 2.8rem;
  }
}
.inner-banner .inner-banner__title .inner-banner__title--box h1.primary-color {
  color: #344662;
}
.inner-banner-02 {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  min-height: 230px;
  padding-bottom: 50px;
  padding-top: 20px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .inner-banner-02 {
    min-height: 800px;
    padding-bottom: 150px;
    padding-top: 70px;
  }
}
.inner-banner-02:after {
  background-image: url('../img/certificado-decoracion-bottom.svg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .inner-banner-02:after {
    height: 90px;
  }
}
.inner-banner-02 .inner-banner__background {
  flex: 0 0 100%;
  padding: 0 1.5rem;
  pointer-events: none;
  z-index: 0;
}
.inner-banner-02 .inner-banner__background img {
  display: block;
  height: auto;
  margin: 0 auto 40px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .inner-banner-02 .inner-banner__background img {
    max-width: 70%;
  }
}
@media screen and (min-width: 992px) {
  .inner-banner-02 .inner-banner__background img {
    height: 520px;
    max-width: none;
    width: 640px;
  }
}
.inner-banner-02 .inner-banner__title {
  color: #FFFFFF;
  flex: 0 0 100%;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.inner-banner-02 .inner-banner__title .inner-banner__title--box {
  display: flex;
  justify-content: center;
}
.inner-banner-02 .inner-banner__title .inner-banner__title--box h1 {
  border-bottom: 2px solid #D7A023;
  border-top: 2px solid #D7A023;
  color: #FFFFFF;
  flex: 0 0 auto;
  font-size: 1.5rem;
  margin: 0;
  max-width: 100%;
  padding: 0.5rem 0;
  text-align: center;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .inner-banner-02 .inner-banner__title .inner-banner__title--box h1 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .inner-banner-02 .inner-banner__title .inner-banner__title--box h1 {
    font-size: 2.8rem;
  }
}
.inner-banner-02 .inner-banner__title .inner-banner__title--box h1.primary-color {
  color: #344662;
}
/*--------------------------------------------------------------
# Proyectos Grid
--------------------------------------------------------------*/
.featured-projects__filter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 2rem 0;
}
@media screen and (min-width: 1140px) {
  .featured-projects__filter {
    margin: 6rem 0;
  }
}
@media screen and (min-width: 1600px) {
  .featured-projects__filter {
    justify-content: center;
  }
}
.featured-projects__filter .featured-projects__filter--text {
  color: #486680;
  flex: 0 0 100%;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@media screen and (min-width: 992px) {
  .featured-projects__filter .featured-projects__filter--text {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media screen and (min-width: 1600px) {
  .featured-projects__filter .featured-projects__filter--text {
    flex: 0 0 auto;
    margin-left: 0;
    margin-right: 2rem;
  }
}
.featured-projects__filter .featured-projects__filter--button {
  align-items: flex-start;
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  color: #486680;
  display: flex;
  flex: 0 0 100%;
  font-size: 1rem;
  margin: 0 0 0.5rem;
  justify-content: flex-start;
  padding: 0.75rem;
}
@media screen and (min-width: 768px) {
  .featured-projects__filter .featured-projects__filter--button {
    flex: 0 0 auto;
    margin: 0 0.5rem 0.5rem;
  }
}
@media screen and (min-width: 992px) {
  .featured-projects__filter .featured-projects__filter--button {
    margin: 0 1rem 1rem;
  }
}
@media screen and (min-width: 1600px) {
  .featured-projects__filter .featured-projects__filter--button {
    font-size: 1.5rem;
    padding: 0.75rem 1.5rem;
  }
}
.featured-projects__filter .featured-projects__filter--button img {
  display: none;
  margin-right: 0.5rem;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .featured-projects__filter .featured-projects__filter--button img {
    display: block;
  }
}
.featured-projects__filter .featured-projects__filter--button.active {
  background-color: #D7A023;
  color: #FFFFFF;
}
.featured-projects__filter .featured-projects__filter--button .button--icon {
  height: 26px;
  margin-left: 0.5rem;
  object-fit: contain;
  object-position: center;
  width: 26px;
}
.featured-projects__filter .featured-projects__filter--button .button--icon path {
  fill: #4B977B;
  stroke: #4B977B;
}
.featured-projects__filter .featured-projects__filter--terms {
  display: none;
  flex: 0 0 100%;
  justify-content: center;
  margin-top: 2rem;
}
.featured-projects__filter .featured-projects__filter--terms.active {
  display: flex;
}
.featured-projects__filter .featured-projects__filter--terms .featured-projects__filter--term {
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  color: #486680;
  cursor: pointer;
  font-size: 1rem;
  margin: 0 1rem;
  padding: 0.75rem 1.5rem;
  position: relative;
}
.featured-projects__filter .featured-projects__filter--terms .featured-projects__filter--term.active {
  background-color: #D7A023;
  color: #FFFFFF;
}
.featured-projects__filter .featured-projects__filter--terms .featured-projects__filter--term input {
  pointer-events: none;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
}
.featured-projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .featured-projects__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1140px) {
  .featured-projects__grid {
    grid-gap: 4rem;
  }
}
.featured-projects__grid .featured-projects__grid--element {
  background-color: #344662;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  height: 270px;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  overflow: hidden;
  position: relative;
}
@media screen and (orientation: landscape) {
  .featured-projects__grid .featured-projects__grid--element {
    height: 450px;
  }
}
@media screen and (min-width: 540px) {
  .featured-projects__grid .featured-projects__grid--element {
    height: 430px;
  }
}
@media screen and (min-width: 768px) {
  .featured-projects__grid .featured-projects__grid--element {
    height: 310px;
    padding: 2rem 1.5rem;
  }
}
@media screen and (min-width: 768px) and (orientation: landscape) {
  .featured-projects__grid .featured-projects__grid--element {
    height: 310px;
  }
}
@media screen and (min-width: 992px) {
  .featured-projects__grid .featured-projects__grid--element {
    height: 420px;
  }
}
@media screen and (min-width: 1140px) {
  .featured-projects__grid .featured-projects__grid--element {
    height: 480px;
    padding: 4rem 3rem;
  }
}
@media screen and (min-width: 1600px) {
  .featured-projects__grid .featured-projects__grid--element {
    height: 570px;
  }
}
.featured-projects__grid .featured-projects__grid--element.project--element {
  justify-content: center;
}
.featured-projects__grid .featured-projects__grid--element.project--element .featured-projects__grid--element--title h2 {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .featured-projects__grid .featured-projects__grid--element.project--element .featured-projects__grid--element--title h2 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1140px) {
  .featured-projects__grid .featured-projects__grid--element.project--element .featured-projects__grid--element--title h2 {
    font-size: 2rem;
  }
}
.featured-projects__grid .featured-projects__grid--element.project--element .featured-projects__grid--element--icon {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .featured-projects__grid .featured-projects__grid--element.project--element .featured-projects__grid--element--icon {
    margin-top: 3rem;
  }
}
.featured-projects__grid .featured-projects__grid--element.project--element .featured-projects__grid--element--icon svg {
  display: block;
  height: 40px;
  margin: 0 auto 1rem;
  object-fit: contain;
  object-position: center;
  width: 40px;
}
@media screen and (min-width: 768px) {
  .featured-projects__grid .featured-projects__grid--element.project--element .featured-projects__grid--element--icon svg {
    height: 65px;
    width: 65px;
  }
}
@media screen and (min-width: 1140px) {
  .featured-projects__grid .featured-projects__grid--element.project--element .featured-projects__grid--element--icon svg {
    height: 85px;
    width: 85px;
  }
}
.featured-projects__grid .featured-projects__grid--element.project--element .featured-projects__grid--element--icon svg path {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--background {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--background img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--background img:first-child {
  display: none;
}
@media screen and (min-width: 768px) {
  .featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--background img:first-child {
    display: block;
  }
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--background img:last-child {
  display: block;
}
@media screen and (min-width: 768px) {
  .featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--background img:last-child {
    display: none;
  }
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--title {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--title {
    margin-bottom: 1.5rem;
  }
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--title h2 {
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: normal;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--title h2 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1140px) {
  .featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--title h2 {
    font-size: 2.5rem;
  }
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--description {
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.2;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--description {
    font-size: 1rem;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1140px) {
  .featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--description {
    font-size: 1.25rem;
  }
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--icon {
  position: relative;
  z-index: 1;
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--icon img {
  display: block;
  height: auto;
  margin: 1rem auto 1rem;
  width: 40px;
}
@media screen and (min-width: 768px) {
  .featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--icon img {
    margin-top: 1.5rem;
    width: 50px;
  }
}
@media screen and (min-width: 1140px) {
  .featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--icon img {
    width: 75px;
  }
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--category {
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 900;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}
@media screen and (min-width: 1140px) {
  .featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--category {
    font-size: 1.25rem;
  }
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--button {
  bottom: 1rem;
  position: absolute;
  right: 1rem;
  z-index: 1;
}
@media screen and (min-width: 1140px) {
  .featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--button {
    bottom: 1rem;
    right: 2rem;
    width: 58px;
  }
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--button svg {
  height: auto;
  width: 30px;
}
@media screen and (min-width: 1140px) {
  .featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--button svg {
    width: 58px;
  }
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--button svg .st0 {
  fill: #D7A023;
  transition: all 0.4s ease;
}
.featured-projects__grid .featured-projects__grid--element .featured-projects__grid--element--button svg .st1 {
  fill: #FFFFFF;
}
.featured-projects__grid .featured-projects__grid--element:hover .featured-projects__grid--element--description {
  max-height: 100px;
  opacity: 1;
}
.featured-projects__grid .featured-projects__grid--element:hover .featured-projects__grid--element--button svg .st0 {
  fill: #4B977B;
}
/*--------------------------------------------------------------
# Spinner
--------------------------------------------------------------*/
.lds-ripple-box {
  align-items: center;
  height: 300px;
  display: flex;
  justify-content: center;
}
.lds-ripple-box .lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple-box .lds-ripple div {
  position: absolute;
  border: 4px solid #D7A023;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple-box .lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Design > Buttons
--------------------------------------------------------------*/
.design--contact-buttons {
  text-align: center;
}
.design--contact-buttons a {
  background-color: #D7A023;
  border-radius: 1rem;
  color: #FFFFFF;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0 1rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.4s ease;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .design--contact-buttons a {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .design--contact-buttons a {
    min-width: 200px;
  }
}
.design--contact-buttons a:hover {
  background-color: #4B977B;
}
#header {
  background-color: #344662;
  padding: 1rem 0;
}
@media screen and (min-width: 992px) {
  #header {
    padding: 2rem 0 0;
  }
}
#header > .container-fluid > .row {
  align-items: center;
}
@media screen and (min-width: 992px) {
  #header > .container-fluid > .row {
    align-items: flex-end;
  }
}
#header .logo {
  max-width: 130px;
}
@media screen and (min-width: 768px) {
  #header .logo {
    max-width: 190px;
  }
}
@media screen and (min-width: 992px) {
  #header .logo {
    margin: 0 auto;
    padding-bottom: 1rem;
  }
}
#header .logo img {
  display: block;
  height: auto;
  width: 100%;
}
#header .main-nav #menu-toggle {
  background-color: #D7A023;
  border: none;
  border-radius: 0.5rem;
  display: block;
  height: 48px;
  margin-left: auto;
  text-align: center;
  padding: 0;
  width: 48px;
}
@media screen and (min-width: 992px) {
  #header .main-nav #menu-toggle {
    display: none;
  }
}
#header .main-nav #menu-toggle span {
  background-color: #344662;
  border-radius: 1rem;
  display: block;
  height: 3px;
  margin: 0 auto 3px;
  width: 24px;
}
#header .main-nav #menu-toggle span:last-child {
  margin-bottom: 0;
}
#header .main-nav .menu-container {
  background-color: rgba(24, 32, 45, 0.98);
  bottom: 0px;
  display: none;
  left: 0;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 2rem;
  position: fixed;
  top: 0;
  z-index: 1001;
}
@media screen and (min-width: 992px) {
  #header .main-nav .menu-container {
    background-color: transparent;
    left: auto;
    height: auto;
    overflow: visible;
    padding: 0;
    position: relative;
    top: auto;
  }
}
#header .main-nav .menu-container #close-menu {
  align-items: center;
  display: flex;
  height: 48px;
  justify-content: center;
  margin-left: auto;
  width: 48px;
}
@media screen and (min-width: 992px) {
  #header .main-nav .menu-container #close-menu {
    display: none;
  }
}
#header .main-nav .menu-container #close-menu img {
  display: block;
  height: auto;
  width: 1.5rem;
}
@media screen and (min-width: 992px) {
  #header .main-nav .menu-container {
    display: block !important;
  }
}
#header .main-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 992px) {
  #header .main-nav ul {
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    padding: 0 2rem 0 0;
  }
}
#header .main-nav ul > li {
  flex: 0 0 100%;
  order: 3;
  position: relative;
}
@media screen and (min-width: 992px) {
  #header .main-nav ul > li {
    flex: 0 0 auto;
    order: unset;
  }
}
#header .main-nav ul > li > a {
  color: #FFFFFF;
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  padding: 0.75rem 1rem;
}
@media screen and (min-width: 992px) {
  #header .main-nav ul > li > a {
    border-radius: 0.5rem 0.5rem 0 0;
    font-size: 1rem;
    padding: 0.75rem;
  }
}
@media screen and (min-width: 1140px) {
  #header .main-nav ul > li > a {
    font-size: 1.5rem;
    padding: 0.75rem 1rem;
  }
}
@media screen and (min-width: 1600px) {
  #header .main-nav ul > li > a {
    font-size: 1.9rem;
  }
}
#header .main-nav ul > li.current-menu-item > a {
  background-color: #FFFFFF;
  color: #D7A023;
}
#header .main-nav ul > li.take-action {
  order: 1;
}
@media screen and (min-width: 992px) {
  #header .main-nav ul > li.take-action {
    order: unset;
  }
}
#header .main-nav ul > li.take-action > a {
  color: #D7A023;
}
#header .main-nav ul > li.take-action > a:before {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNC43NSIgaGVpZ2h0PSIzNC43NiIgdmlld0JveD0iMCAwIDM0Ljc1IDM0Ljc2Ij48cGF0aCBkPSJNMTguMTcsMS41OWMtLjI5LDAtLjU4LjAzLS44Ny4wNEEyLjAwNiwyLjAwNiwwLDAsMCwxNS4zNCwwQzguMzksMCwwLDQuOTksMCwxMS4xOWE1Ljc1Miw1Ljc1MiwwLDAsMCwxLjI3LDMuNTdBMjQuMzM4LDI0LjMzOCwwLDAsMCwuMDQsMTcuOTVhLjc4Ny43ODcsMCwwLDAsLjUyLjk5LDEuMDExLDEuMDExLDAsMCwwLC4yMy4wNC43OC43OCwwLDAsMCwuNzUtLjU2Ljg4Ljg4LDAsMCwwLC4wNS0uMTVBMTYuNTgsMTYuNTgsMCwxLDAsMTguMTcsMS41OVptMCwzMS41OGMtMS44MywwLTMuODEtMy4wMy00LjgzLTcuODlIMjNDMjEuOTgsMzAuMTQsMjAuMDEsMzMuMTcsMTguMTcsMzMuMTdaTTEzLjA2LDIzLjdhMzYuMTU5LDM2LjE1OSwwLDAsMS0uNDItNS41MywzNy42NDgsMzcuNjQ4LDAsMCwxLC4yNS00LjMsMTUuMSwxNS4xLDAsMCwwLC45OC0xLjIzaDkuNDJhMzYuMTU5LDM2LjE1OSwwLDAsMSwuNDIsNS41MywzNC45MzUsMzQuOTM1LDAsMCwxLS40Miw1LjUzWk0xNy4zMiwzLjQyYTEuOSwxLjksMCwwLDEsLjg2LS4yNGMxLjgzLDAsMy44MSwzLjAzLDQuODMsNy44OUgxNC45QTE5LjczOSwxOS43MzksMCwwLDAsMTcuMzIsMy40MlptNy41Niw5LjIySDMyLjFhMTQuODI1LDE0LjgyNSwwLDAsMSwwLDExLjA2SDI0Ljg4YTM4LjY1NywzOC42NTcsMCwwLDAsLjQtNS41M0EzNy4yNiwzNy4yNiwwLDAsMCwyNC44OCwxMi42NFptNi41LTEuNThIMjQuNjJhMTguMTA1LDE4LjEwNSwwLDAsMC0zLjAxLTcuNDhBMTUuMTExLDE1LjExMSwwLDAsMSwzMS4zOCwxMS4wNlptLTI5LjguMTNjMC01LjE3LDcuNTctOS42MSwxMy43Ni05LjYxYS40NjUuNDY1LDAsMCwxLC40Ni40NmMwLDYuMi00LjQzLDEzLjc2LTkuNjEsMTMuNzZhNC4zNDUsNC4zNDUsMCwwLDEtMy4wNi0xLjMzQzUuMDEsMTAuODgsNy43OSw4LjQsMTIuMiw2LjIzYS43OTIuNzkyLDAsMCwwLS43LTEuNDJDNy4wNyw3LDQuMTMsOS41OCwyLjEsMTMuMTRBNC4xMjMsNC4xMjMsMCwwLDEsMS41OCwxMS4xOVptMS42OSw1LjM1YTUuNjIzLDUuNjIzLDAsMCwwLDIuOTIuODQsOC4wODMsOC4wODMsMCwwLDAsNC45Ni0xLjg3Yy0uMDYuODgtLjEsMS43Ny0uMSwyLjY2YTM3LjE2LDM3LjE2LDAsMCwwLC40LDUuNTNINC4yNGExNC40NjYsMTQuNDY2LDAsMCwxLS45Ny03LjE2Wm0xLjcsOC43NGg2Ljc2YTE4LjEwNSwxOC4xMDUsMCwwLDAsMy4wMSw3LjQ4QTE1LjAzMiwxNS4wMzIsMCwwLDEsNC45NywyNS4yOFpNMjEuNiwzMi43NmExNy45ODksMTcuOTg5LDAsMCwwLDMuMDEtNy40OGg2Ljc2QTE1LjAzMiwxNS4wMzIsMCwwLDEsMjEuNiwzMi43NloiIGZpbGw9IiNkN2EwMjMiLz48L3N2Zz4=');
  background-size: contain;
  content: '';
  display: inline-block;
  height: 24px;
  margin-bottom: -3px;
  margin-right: 5px;
  width: 24px;
}
#header .main-nav ul > li.lang-item {
  flex: 0 0 auto;
  order: 2;
}
@media screen and (min-width: 992px) {
  #header .main-nav ul > li.lang-item {
    margin-left: 1rem;
    order: unset;
  }
}
@media screen and (min-width: 1140px) {
  #header .main-nav ul > li.lang-item {
    margin-left: 1.5rem;
  }
}
#header .main-nav ul > li.lang-item a {
  border-bottom: 2px solid transparent;
  font-size: 1rem;
  font-weight: normal;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  #header .main-nav ul > li.lang-item a {
    font-size: 0.875rem;
    padding: 0.5rem 0.25rem;
  }
}
@media screen and (min-width: 1140px) {
  #header .main-nav ul > li.lang-item a {
    font-size: 1rem;
  }
}
#header .main-nav ul > li.lang-item.current-lang a,
#header .main-nav ul > li.lang-item:hover a {
  background-color: transparent;
  border-color: #D7A023;
  color: #FFFFFF;
}
#header .main-nav ul > li.lang-item.current-lang a {
  font-weight: bold;
}
#header .main-nav ul > li:hover > a {
  color: #D7A023;
}
@media screen and (min-width: 992px) {
  #header .main-nav ul > li:hover > a {
    background-color: #FFFFFF;
  }
}
#header .main-nav ul > li:hover ul {
  display: flex;
}
#header .main-nav ul > li ul {
  list-style: none;
  margin: 0;
  padding: 0rem 1.5rem;
}
@media screen and (min-width: 992px) {
  #header .main-nav ul > li ul {
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 0px 0px 0.5rem 0.5rem;
    display: none;
    left: 0;
    padding: 0rem 1.5rem;
    position: absolute;
    top: 100%;
    z-index: 5;
  }
}
#header .main-nav ul > li ul li a {
  color: #FFFFFF;
  display: block;
  font-size: 1.125rem;
  font-weight: normal;
  padding: 0.75rem 1rem;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  #header .main-nav ul > li ul li a {
    color: #344662;
  }
}
#header .main-nav ul > li ul li:hover a,
#header .main-nav ul > li ul li.current-menu-item a {
  font-weight: 900;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------
# Footer

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #344662;
  color: #FFFFFF;
  margin-top: calc(2rem + 100px);
  padding: 0 0 3rem;
}
@media screen and (min-width: 768px) {
  #footer {
    margin-top: calc(4rem + 100px);
  }
}
#footer .decoration {
  background-image: url(../img/bg-footer.svg);
  background-position: center top;
  background-size: cover;
  height: 100px;
  margin-bottom: -100px;
  transform: translateY(-100%);
}
#footer .widget .textwidget {
  font-size: 1.125rem;
}
#footer .widget .textwidget h4 {
  color: #FFFFFF;
  font-weight: bold;
  margin-bottom: 1rem;
}
#footer .copyright {
  color: #B1C2BE;
  font-size: 1.125rem;
}
#footer .copyright a {
  color: #FFFFFF;
}
#footer .contact-form__title {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  width: 230px;
}
@media screen and (min-width: 992px) {
  #footer .contact-form__title {
    margin-bottom: 3rem;
    margin-left: auto;
  }
}
#footer .contact-form__title a {
  color: #FFFFFF;
}
#footer .contact-form__title a span {
  color: #D7A023;
  margin-left: 0.5rem;
}
#footer .contact-form__title a:hover {
  border-bottom: 2px solid #D7A023;
}
#footer #nf-form-2-cont,
#footer #nf-form-10-cont,
#footer #nf-form-11-cont {
  margin-left: auto;
  width: 230px;
}
#footer #nf-form-2-cont .nf-form-title h3,
#footer #nf-form-10-cont .nf-form-title h3,
#footer #nf-form-11-cont .nf-form-title h3 {
  margin-bottom: 0.5rem;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-before-form-content,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-before-form-content,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-before-form-content {
  display: none;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content {
  margin: 0;
  padding: 0;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field {
  display: block;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:first-child,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:first-child,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:first-child,
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2),
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2),
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2) {
  flex: 0 0 110px;
  margin-bottom: 10px;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:first-child,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:first-child,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:first-child {
  margin-right: 10px;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3),
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3),
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3) {
  width: 130px;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(4),
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(4),
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(4) {
  width: 100px;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container {
  margin-bottom: 0;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .firstname-wrap .nf-field-label,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .firstname-wrap .nf-field-label,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .firstname-wrap .nf-field-label,
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .lastname-wrap .nf-field-label,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .lastname-wrap .nf-field-label,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .lastname-wrap .nf-field-label,
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-label,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-label,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-label {
  margin: 0;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .firstname-wrap .nf-field-element input,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .firstname-wrap .nf-field-element input,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .firstname-wrap .nf-field-element input,
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .lastname-wrap .nf-field-element input,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .lastname-wrap .nf-field-element input,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .lastname-wrap .nf-field-element input,
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-element input,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-element input,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-element input {
  background-color: #E6E6E6;
  border: none;
  border-radius: 8px;
  display: block;
  font-size: 1rem;
  height: 2rem;
  padding: 0 0.5rem;
  width: 100%;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .firstname-wrap .nf-field-element:after,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .firstname-wrap .nf-field-element:after,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .firstname-wrap .nf-field-element:after,
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .lastname-wrap .nf-field-element:after,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .lastname-wrap .nf-field-element:after,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .lastname-wrap .nf-field-element:after,
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-element:after,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-element:after,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-element:after {
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  width: 30px;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .firstname-wrap.nf-pass.field-wrap .nf-field-element:after,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .firstname-wrap.nf-pass.field-wrap .nf-field-element:after,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .firstname-wrap.nf-pass.field-wrap .nf-field-element:after,
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .lastname-wrap.nf-pass.field-wrap .nf-field-element:after,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .lastname-wrap.nf-pass.field-wrap .nf-field-element:after,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .lastname-wrap.nf-pass.field-wrap .nf-field-element:after,
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap.nf-pass.field-wrap .nf-field-element:after,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap.nf-pass.field-wrap .nf-field-element:after,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap.nf-pass.field-wrap .nf-field-element:after {
  display: none;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-element input,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-element input,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-element input {
  border-radius: 8px 0 0 8px;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .submit-wrap .nf-field-label,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .submit-wrap .nf-field-label,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .submit-wrap .nf-field-label {
  display: none;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .submit-wrap .nf-field-element input,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .submit-wrap .nf-field-element input,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .submit-wrap .nf-field-element input {
  background-color: #D49329;
  border: none;
  border-radius: 0 8px 8px 0;
  color: #FFF;
  display: block;
  font-size: 1rem;
  height: 2rem;
  padding: 0 0.5rem;
  text-align: center;
  width: 100%;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .submit-wrap .nf-field-element input:hover,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .submit-wrap .nf-field-element input:hover,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .submit-wrap .nf-field-element input:hover {
  background-color: #4B977B;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-error-wrap,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-error-wrap,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-error-wrap {
  display: none;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-after-form-content,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-after-form-content,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-after-form-content {
  color: #FFFFFF;
  font-size: 12px;
  margin-top: 1rem;
}
#footer #nf-form-2-cont .nf-form-wrap .nf-form-layout .nf-after-form-content .nf-error-msg,
#footer #nf-form-10-cont .nf-form-wrap .nf-form-layout .nf-after-form-content .nf-error-msg,
#footer #nf-form-11-cont .nf-form-wrap .nf-form-layout .nf-after-form-content .nf-error-msg {
  color: #FFFFFF;
}
#footer #nf-form-2-cont,
#footer #nf-form-10-cont,
#footer #nf-form-11-cont {
  margin-left: 0;
}
@media screen and (min-width: 992px) {
  #footer #nf-form-2-cont,
  #footer #nf-form-10-cont,
  #footer #nf-form-11-cont {
    margin-left: auto;
  }
}
#footer #nf-form-2-cont .nf-field-label,
#footer #nf-form-10-cont .nf-field-label,
#footer #nf-form-11-cont .nf-field-label {
  display: none;
}
#footer .rrss {
  align-items: center;
  display: flex;
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  #footer .rrss {
    justify-content: flex-end;
    margin-top: 0;
  }
}
#footer .rrss a {
  display: block;
  height: 32px;
  margin-left: 20px;
  width: 32px;
}
#footer .rrss a:first-child {
  margin-left: 0;
}
#footer .rrss a img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}
#top-arrow {
  bottom: 0.5rem;
  display: block;
  padding: 0.5rem;
  opacity: 0.8;
  position: fixed;
  right: 0.5rem;
  z-index: 1000;
}
#top-arrow img {
  display: block;
  height: auto;
  width: 48px;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------
# Banner
# Indicadores
# Nuestro Enfoque
# Proyectos destacados
# Toma acción
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.frontpage-banner .frontpage-owl {
  position: relative;
}
.frontpage-banner .frontpage-owl:after {
  background-image: url(../img/certificado-decoracion-bottom.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  width: 100%;
}
.frontpage-banner .frontpage-owl .item {
  position: relative;
}
.frontpage-banner .frontpage-owl .item .item__background {
  height: 260px;
}
@media screen and (orientation: landscape) {
  .frontpage-banner .frontpage-owl .item .item__background {
    height: 360px;
  }
}
@media screen and (min-width: 540px) {
  .frontpage-banner .frontpage-owl .item .item__background {
    min-height: 340px;
  }
}
@media screen and (min-width: 576px) {
  .frontpage-banner .frontpage-owl .item .item__background {
    height: 480px;
  }
}
@media screen and (min-width: 992px) {
  .frontpage-banner .frontpage-owl .item .item__background {
    height: 320px;
  }
}
@media screen and (min-width: 1140px) {
  .frontpage-banner .frontpage-owl .item .item__background {
    height: 460px;
  }
}
@media screen and (min-width: 1600px) {
  .frontpage-banner .frontpage-owl .item .item__background {
    height: 600px;
  }
}
.frontpage-banner .frontpage-owl .item .item__background img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  width: 100%;
}
.frontpage-banner .frontpage-owl .item .item__background img:first-child {
  display: none;
}
@media screen and (min-width: 768px) {
  .frontpage-banner .frontpage-owl .item .item__background img:first-child {
    display: block;
  }
}
.frontpage-banner .frontpage-owl .item .item__background img:last-child {
  display: block;
}
@media screen and (min-width: 768px) {
  .frontpage-banner .frontpage-owl .item .item__background img:last-child {
    display: none;
  }
}
.frontpage-banner .frontpage-owl .item .item__content {
  bottom: 35px;
  left: 0;
  position: absolute;
  right: 0;
}
@media screen and (min-width: 768px) {
  .frontpage-banner .frontpage-owl .item .item__content {
    bottom: 70px;
  }
}
.frontpage-banner .frontpage-owl .item .item__content .item__content--title {
  display: flex;
  justify-content: center;
}
.frontpage-banner .frontpage-owl .item .item__content .item__content--title h1 {
  border-bottom: 2px solid #D7A023;
  border-top: 2px solid #D7A023;
  color: #FFFFFF;
  flex: 0 0 auto;
  font-size: 1.125rem;
  margin: 0;
  max-width: 100%;
  padding: 0.5rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .frontpage-banner .frontpage-owl .item .item__content .item__content--title h1 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .frontpage-banner .frontpage-owl .item .item__content .item__content--title h1 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1140px) {
  .frontpage-banner .frontpage-owl .item .item__content .item__content--title h1 {
    font-size: 2.8rem;
  }
}
.frontpage-banner .frontpage-owl .owl-nav {
  display: none;
}
@media screen and (min-width: 992px) {
  .frontpage-banner .frontpage-owl .owl-nav {
    display: block;
  }
}
.frontpage-banner .frontpage-owl .owl-nav .owl-prev,
.frontpage-banner .frontpage-owl .owl-nav .owl-next {
  align-items: center;
  background-color: rgba(60, 60, 59, 0.6);
  display: flex;
  height: 70px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
}
.frontpage-banner .frontpage-owl .owl-nav .owl-prev img,
.frontpage-banner .frontpage-owl .owl-nav .owl-next img {
  display: block;
  flex: 0 0 auto;
  height: auto;
  width: 10px;
}
.frontpage-banner .frontpage-owl .owl-nav .owl-prev {
  border-radius: 0 4px 4px 0;
  left: 0;
}
.frontpage-banner .frontpage-owl .owl-nav .owl-next {
  border-radius: 4px 0 0 4px;
  right: 0;
}
/*--------------------------------------------------------------
# Indicadores
--------------------------------------------------------------*/
.frontpage-indicators {
  padding: 1.5rem 0;
}
@media screen and (min-width: 992px) {
  .frontpage-indicators {
    padding: 3rem 0;
  }
}
.frontpage-indicators .indicator {
  margin: 0 auto 3rem;
  max-width: 360px;
}
@media screen and (min-width: 768px) {
  .frontpage-indicators .indicator {
    margin: 0 auto;
  }
}
.frontpage-indicators .indicator .indicator__icon {
  height: 85px;
  margin: 0 auto 0.5rem;
  width: 91px;
}
@media screen and (min-width: 768px) {
  .frontpage-indicators .indicator .indicator__icon {
    margin: 0 auto 1.5rem;
  }
}
.frontpage-indicators .indicator .indicator__icon img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}
.frontpage-indicators .indicator .indicator__number {
  align-items: center;
  background-image: url('../img/bg-indicador.svg');
  background-size: 100% 100%;
  display: flex;
  color: #D7A023;
  font-size: 2.25rem;
  font-weight: 900;
  height: 100px;
  justify-content: center;
  line-height: 0.9;
  margin: 0 auto 0.5rem;
  max-width: 300px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .frontpage-indicators .indicator .indicator__number {
    font-size: 3.25rem;
    height: 145px;
    margin: 0 auto 1.5rem;
    max-width: 340px;
  }
}
.frontpage-indicators .indicator .indicator__description {
  color: #989898;
  font-size: 1.125rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .frontpage-indicators .indicator .indicator__description {
    font-size: 1.5rem;
  }
}
/*--------------------------------------------------------------
# Nuestro Enfoque
--------------------------------------------------------------*/
.frontpage-our-approach {
  padding: 3rem 0;
  position: relative;
}
@media screen and (min-width: 992px) {
  .frontpage-our-approach {
    padding: 6rem 0;
  }
}
.frontpage-our-approach:before {
  background-image: url(../img/certificado-decoracion-top.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .frontpage-our-approach:before {
    height: 60px;
  }
}
.frontpage-our-approach:after {
  background-image: url(../img/certificado-decoracion-bottom.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .frontpage-our-approach:after {
    height: 60px;
  }
}
.frontpage-our-approach .frontpage-our-approach__background {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.frontpage-our-approach .frontpage-our-approach__background img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.frontpage-our-approach > .container {
  position: relative;
  z-index: 1;
}
.frontpage-our-approach .our-approach__title {
  text-align: center;
}
.frontpage-our-approach .our-approach__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .frontpage-our-approach .our-approach__description {
    font-size: 1.5rem;
  }
}
.frontpage-our-approach .our-approach__steps {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .frontpage-our-approach .our-approach__steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .frontpage-our-approach .our-approach__steps {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 4rem;
  }
}
.frontpage-our-approach .our-approach__steps:before {
  background-image: url('../img/flecha-enfoque.svg');
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  content: '';
  display: none;
  height: 35px;
  position: absolute;
  top: 45px;
  width: 100%;
  z-index: 0;
}
@media screen and (min-width: 992px) {
  .frontpage-our-approach .our-approach__steps:before {
    display: block;
  }
}
.frontpage-our-approach .our-approach__steps .our-approach__steps--element {
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .frontpage-our-approach .our-approach__steps .our-approach__steps--element {
    margin-bottom: 0;
  }
}
.frontpage-our-approach .our-approach__steps .our-approach__steps--element .our-approach__steps--element--icon {
  align-items: center;
  background-color: #344662;
  border-radius: 100%;
  display: flex;
  height: 120px;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all 0.4s ease;
  width: 120px;
}
@media screen and (min-width: 992px) {
  .frontpage-our-approach .our-approach__steps .our-approach__steps--element .our-approach__steps--element--icon {
    margin: 0 auto 3rem;
  }
}
.frontpage-our-approach .our-approach__steps .our-approach__steps--element .our-approach__steps--element--icon:before {
  border: 3px solid #344662;
  border-radius: 100%;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.4s ease;
  width: 100%;
}
.frontpage-our-approach .our-approach__steps .our-approach__steps--element .our-approach__steps--element--icon img {
  display: block;
  height: 70px;
  object-fit: contain;
  object-position: center;
  width: 70px;
}
.frontpage-our-approach .our-approach__steps .our-approach__steps--element:hover .our-approach__steps--element--icon {
  background-color: #D7A023;
}
.frontpage-our-approach .our-approach__steps .our-approach__steps--element:hover .our-approach__steps--element--icon:before {
  border-color: #D7A023;
  transform: scale(1.2, 1.2);
}
.frontpage-our-approach .our-approach__steps .our-approach__steps--element .our-approach__steps--element--description {
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 992px) {
  .frontpage-our-approach .our-approach__steps .our-approach__steps--element .our-approach__steps--element--description {
    font-size: 1.25rem;
  }
}
/*--------------------------------------------------------------
# Proyectos destacados
--------------------------------------------------------------*/
.frontpage-featured-projects {
  padding: 2rem 0;
  position: relative;
}
@media screen and (min-width: 992px) {
  .frontpage-featured-projects {
    padding: 4rem 0;
  }
}
.frontpage-featured-projects:before {
  background-image: url('../img/tierra-der.png');
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  height: 740px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 200px;
  z-index: -1;
}
.frontpage-featured-projects .featured-projects__title {
  text-align: center;
}
.frontpage-featured-projects .featured-projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .frontpage-featured-projects .featured-projects__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1140px) {
  .frontpage-featured-projects .featured-projects__grid {
    grid-gap: 4rem;
  }
}
/*--------------------------------------------------------------
# Toma acción
--------------------------------------------------------------*/
.frontpage-take-action {
  padding: 4rem 0 2rem;
  position: relative;
}
.frontpage-take-action:before {
  background-image: url('../img/tierra-izq.png');
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  height: 740px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  z-index: -1;
}
.frontpage-take-action .take-action__title {
  text-align: center;
}
.frontpage-take-action .take-action__description {
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .frontpage-take-action .take-action__description {
    font-size: 1.25rem;
  }
}
.take-action__grid {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  margin: 3rem 0 0;
}
@media screen and (min-width: 768px) {
  .take-action__grid {
    grid-template-columns: 1fr 1fr 1fr;
    margin: 3rem 0;
  }
}
.take-action__grid .take-action__grid--element {
  align-items: stretch;
  align-content: stretch;
  background-color: #FFFFFF;
  border: 2px solid #344662;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.take-action__grid .take-action__grid--element .take-action__grid--element--image {
  height: 200px;
  flex: 0 0 auto;
}
@media screen and (min-width: 992px) {
  .take-action__grid .take-action__grid--element .take-action__grid--element--image {
    height: 350px;
  }
}
.take-action__grid .take-action__grid--element .take-action__grid--element--image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.take-action__grid .take-action__grid--element .take-action__grid--element--info {
  align-items: center;
  align-content: stretch;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  padding: 1rem 1rem 1.5rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .take-action__grid .take-action__grid--element .take-action__grid--element--info {
    padding: 2rem 2rem 3rem;
  }
}
.take-action__grid .take-action__grid--element .take-action__grid--element--info .take-action__grid--element--info--description {
  color: #344662;
  flex: 1 1 auto;
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .take-action__grid .take-action__grid--element .take-action__grid--element--info .take-action__grid--element--info--description {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .take-action__grid .take-action__grid--element .take-action__grid--element--info .take-action__grid--element--info--description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    min-height: 75px;
  }
}
.take-action__grid .take-action__grid--element .take-action__grid--element--info .take-action__grid--element--info--button {
  background-color: #D7A023;
  border-radius: 1.5rem;
  color: #FFFFFF;
  display: inline-block;
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 900;
  padding: 1rem 1.5rem;
  transition: all 0.4s ease;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .take-action__grid .take-action__grid--element .take-action__grid--element--info .take-action__grid--element--info--button {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 992px) {
  .take-action__grid .take-action__grid--element .take-action__grid--element--info .take-action__grid--element--info--button {
    font-size: 1.5rem;
  }
}
.take-action__grid .take-action__grid--element .take-action__grid--element--info .take-action__grid--element--info--button:hover {
  background-color: #4B977B;
}
/*--------------------------------------------------------------
# Nuestros Socios
--------------------------------------------------------------*/
.frontpage-our-partners {
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .frontpage-our-partners {
    padding: 2rem 0 4rem;
  }
}
.frontpage-our-partners .our-partners__title {
  text-align: center;
}
.frontpage-our-partners .our-partners__grid {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
@media screen and (min-width: 768px) {
  .frontpage-our-partners .our-partners__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .frontpage-our-partners .our-partners__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.frontpage-our-partners .our-partners__grid .our-partners__grid--element img {
  display: block;
  height: auto;
  width: 100%;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Propósito
# Misión & Visión
# Nuestra historia
# Timeline
# Nuestro equipo
# Contacto

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Propósito
--------------------------------------------------------------*/
.aboutus-purpose {
  background-color: #EFEFEF;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 1rem 6rem;
  position: relative;
}
.aboutus-purpose:before {
  background-image: url(../img/certificado-decoracion-top.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .aboutus-purpose:before {
    height: 60px;
  }
}
.aboutus-purpose:after {
  background-image: url(../img/certificado-decoracion-bottom.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .aboutus-purpose:after {
    height: 60px;
  }
}
.aboutus-purpose .aboutus-purpose__title {
  color: #344662;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .aboutus-purpose .aboutus-purpose__title {
    margin-bottom: 5rem;
  }
}
.aboutus-purpose .aboutus-purpose__columns {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .aboutus-purpose .aboutus-purpose__columns {
    flex-wrap: nowrap;
  }
}
.aboutus-purpose .aboutus-purpose__columns .aboutus-purpose__columns--item {
  flex: 0 0 100%;
}
@media screen and (min-width: 992px) {
  .aboutus-purpose .aboutus-purpose__columns .aboutus-purpose__columns--item {
    flex: 0 0 auto;
  }
}
.aboutus-purpose .aboutus-purpose__columns .aboutus-purpose__columns--item:nth-child(2) {
  flex: 0 0 100%;
}
@media screen and (min-width: 768px) {
  .aboutus-purpose .aboutus-purpose__columns .aboutus-purpose__columns--item:nth-child(2) {
    margin: 0 1rem;
  }
}
@media screen and (min-width: 992px) {
  .aboutus-purpose .aboutus-purpose__columns .aboutus-purpose__columns--item:nth-child(2) {
    flex: 1 1 0;
  }
}
.aboutus-purpose .aboutus-purpose__columns .aboutus-purpose__columns--item .aboutus-purpose__columns--item--image {
  height: 220px;
  margin: 0 auto;
  width: 250px;
}
.aboutus-purpose .aboutus-purpose__columns .aboutus-purpose__columns--item .aboutus-purpose__columns--item--image img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  width: 100%;
}
.aboutus-purpose .aboutus-purpose__columns .aboutus-purpose__columns--item .aboutus-purpose__columns--item--description {
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  color: #344662;
  font-size: 1.125rem;
  margin: 0 auto;
  max-width: 380px;
  padding: 1rem;
  text-align: justify;
}
.aboutus-purpose .aboutus-purpose__columns .aboutus-purpose__columns--item .aboutus-purpose__columns--item--onlyimage {
  margin-top: 1.5rem;
}
@media screen and (min-width: 992px) {
  .aboutus-purpose .aboutus-purpose__columns .aboutus-purpose__columns--item .aboutus-purpose__columns--item--onlyimage {
    margin-top: 0;
  }
}
.aboutus-purpose .aboutus-purpose__columns .aboutus-purpose__columns--item .aboutus-purpose__columns--item--onlyimage img {
  display: block;
  height: auto;
  margin: 0 auto;
  width: 420px;
}
/*--------------------------------------------------------------
# Misión & Visión
--------------------------------------------------------------*/
.aboutus-mision-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 4rem 0;
  padding: 0 1rem;
}
@media screen and (min-width: 992px) {
  .aboutus-mision-vision {
    flex-wrap: nowrap;
    padding: 0;
  }
}
.aboutus-mision-vision .aboutus-mision-vision__item {
  background-color: #FFFFFF;
  border: 2px solid #D7A023;
  border-radius: 1rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  flex: 0 0 100%;
  margin-bottom: 2rem;
  max-width: 600px;
  padding: 1.5rem;
}
@media screen and (min-width: 992px) {
  .aboutus-mision-vision .aboutus-mision-vision__item {
    flex: 0 0 auto;
    margin-bottom: 0;
    margin-left: 6rem;
    padding: 1.5rem 3rem;
  }
}
.aboutus-mision-vision .aboutus-mision-vision__item:first-child {
  margin-left: 0;
}
.aboutus-mision-vision .aboutus-mision-vision__item .aboutus-mision-vision__item--title {
  color: #344662;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
.aboutus-mision-vision .aboutus-mision-vision__item .aboutus-mision-vision__item--title:after {
  background-color: #D7A023;
  border-radius: 2rem;
  content: '';
  display: block;
  height: 3px;
  margin: 0.5rem auto 1.5rem;
  width: 100px;
}
.aboutus-mision-vision .aboutus-mision-vision__item .aboutus-mision-vision__item--description {
  color: #344662;
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 992px) {
  .aboutus-mision-vision .aboutus-mision-vision__item .aboutus-mision-vision__item--description {
    font-size: 1.5rem;
  }
}
/*--------------------------------------------------------------
# Nuestra historia
--------------------------------------------------------------*/
.aboutus-our-story {
  margin: 3rem 0;
}
@media screen and (min-width: 992px) {
  .aboutus-our-story {
    margin: 8rem 0;
  }
}
.aboutus-our-story .aboutus-our-story__title {
  text-align: center;
}
.aboutus-our-story .aboutus-our-story__description {
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 992px) {
  .aboutus-our-story .aboutus-our-story__description {
    font-size: 1.5rem;
  }
}
.aboutus-our-story .aboutus-our-story__description iframe {
  display: block;
  height: 360px;
  margin: 3rem auto 0;
  max-width: 640px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .aboutus-our-story .aboutus-our-story__description iframe {
    height: 551px;
    max-width: 980px;
  }
}
/*--------------------------------------------------------------
# Timeline
--------------------------------------------------------------*/
.aboutus-timeline {
  margin: 3rem 0 2rem;
}
@media screen and (min-width: 992px) {
  .aboutus-timeline {
    margin: 6rem 0 4rem;
  }
}
.aboutus-timeline .aboutus-timeline__title {
  text-align: center;
}
.aboutus-timeline .aboutus-timeline__ages {
  position: relative;
}
.aboutus-timeline .aboutus-timeline__ages:before {
  background-image: url(../img/timeline.png);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: contain;
  content: '';
  display: block;
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 45px;
  z-index: -1;
}
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item {
  align-items: stretch;
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item {
    flex-wrap: nowrap;
    margin: 0 0 3rem;
  }
}
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--image {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  order: 1;
}
@media screen and (min-width: 768px) {
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--image {
    flex: 0 0 auto;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 992px) {
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--image {
    flex: 1 1 0;
  }
}
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--image img {
  display: block;
  height: 230px;
  object-fit: contain;
  object-position: center;
  width: 230px;
}
@media screen and (min-width: 768px) {
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--image img {
    height: 200px;
    width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--image img {
    height: 230px;
    width: 230px;
  }
}
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--age {
  align-items: center;
  display: flex;
  flex: 0 0 100%;
  justify-content: center;
  margin-bottom: 1.5rem;
  order: 2;
}
@media screen and (min-width: 768px) {
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--age {
    flex: 0 0 auto;
    margin-bottom: 0;
    width: 240px;
  }
}
@media screen and (min-width: 992px) {
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--age {
    width: 280px;
  }
}
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--age .aboutus-timeline__ages--item--age--box {
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  color: #344662;
  display: flex;
  flex: 0 0 auto;
  font-size: 2rem;
  font-weight: 900;
  justify-content: center;
  min-width: 155px;
  text-align: center;
  padding: 0.5rem 1rem;
}
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--description {
  align-items: center;
  display: flex;
  flex: 0 0 100%;
  order: 3;
}
@media screen and (min-width: 768px) {
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--description {
    flex: 1 1 0;
  }
}
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--description .aboutus-timeline__ages--item--description--box {
  background-color: #E6E6E6;
  border-radius: 0.5rem;
  flex: 0 0 100%;
  font-size: 1.125rem;
  padding: 1.5rem;
  position: relative;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--description .aboutus-timeline__ages--item--description--box {
    font-size: 1.125rem;
    margin-left: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--description .aboutus-timeline__ages--item--description--box {
    flex: 0 0 auto;
    font-size: 1.5rem;
    max-width: 420px;
  }
}
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--description .aboutus-timeline__ages--item--description--box:before {
  border-bottom: 10px solid transparent;
  border-right: 10px solid #E6E6E6;
  border-top: 10px solid transparent;
  content: '';
  display: none;
  position: absolute;
  right: 100%;
  top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--description .aboutus-timeline__ages--item--description--box:before {
    display: block;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 992px) {
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item .aboutus-timeline__ages--item--description .aboutus-timeline__ages--item--description--box:before {
    top: 1.5rem;
    transform: translateY(0);
  }
}
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item:first-child .aboutus-timeline__ages--item--age {
  position: relative;
}
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item:first-child .aboutus-timeline__ages--item--age:before {
  background-color: #FFFFFF;
  content: '';
  display: block;
  height: 50%;
  position: absolute;
  top: 0;
  width: 70px;
  z-index: -1;
}
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item:last-child .aboutus-timeline__ages--item--age {
  position: relative;
}
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item:last-child .aboutus-timeline__ages--item--age:before {
  background-color: #FFFFFF;
  content: '';
  display: block;
  height: 50%;
  position: absolute;
  top: 50%;
  width: 45px;
  z-index: -1;
}
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item:first-child .aboutus-timeline__ages--item--age .aboutus-timeline__ages--item--age--box:before,
.aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item:last-child .aboutus-timeline__ages--item--age .aboutus-timeline__ages--item--age--box:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MC4yNzIiIGhlaWdodD0iNDMuODcxIiB2aWV3Qm94PSIwIDAgNTAuMjcyIDQzLjg3MSI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyMC4yNjkgLTM5LjMyNykiPjxwYXRoIGQ9Ik0xNTcuNDA2LDQ2LjI3NGMtMS43NDgtMi4yNjItNS03LjEtMTQuMzI0LTYuOTQzLTYsLjEtMTIuMzY3LDIuNzg2LTE3LjYsOC43NjUtMy4zMjMsMy44LTYuMTg5LDkuNDY3LTQuOSwxOS4wODMuNjI5LDQuNjg5LDEuNCw4LjY0OSw0LjY4NywxMS44NjguNDk0LjQ4NS43NDYtLjIxMi41NjMtLjg4OWE0My44LDQzLjgsMCwwLDEtLjI1OC0xOS4xLDE5Ljc0NSwxOS43NDUsMCwwLDEsNy40NjMtMTEuODVjMy4yOTMtMi4zNzksNy4xNTYtMy43OTMsMTAuNjI4LTMuMzY0QTE0LjYyMywxNC42MjMsMCwwLDEsMTU2LjI0Miw1NC45Yy44Myw0LjQ0Ny0yLjksMTAuNjU5LTcuNjU4LDExLjMtMi4xMzcuMjg4LTMuNTg3LTEuMzg4LTUuMDItMy43NDgtMS4yNjQtMi4wODEtMTEuMTQ2LS44NjQtMy40NjksNy4xNzUsMi45LDMuMDc3LDYuODQxLDQuODc0LDEyLjAxOSwyLjg5LDUuNS0yLjEwOSw4LjA5LTUuNDExLDkuNTkzLTkuNjI1QzE2My4yLDU4LjcsMTY0LjEsNTQuOTM1LDE1Ny40MDYsNDYuMjc0WiIgZmlsbD0iI2Q3YTAyMyIvPjxwYXRoIGQ9Ik0xNjkuMSw1NC41MTRjLTEuMTYxLTMuMTgxLTYuNTkzLTguNzM2LTguMzE1LTkuNzczLS42MTktLjM3Mi0uNjQuMzI0LS4yNjkuOTUxLDEuODMzLDMuMSw2LjA2MiwxMS41NjIsNC4xODQsMjAuMTIzLS45ODcsNC41LTYuMDMxLDEyLjkyOC0xOC42ODYsMTEuOTE3YTEzLjc3MiwxMy43NzIsMCwwLDEtMTIuMi0xMC4yODRjLTEuMTI2LTMuOTU0LjI3LTguOTYyLDQuMDc0LTEwLjk1NywzLjY1Ny0xLjkyLDguMjM4Ljc4Nyw5LjM2NCwzLjM3MS4zNTEuOCwyLjc3OS0uMDU4LDMuNTcxLTEuOTM0YTUuMzMsNS4zMywwLDAsMC0yLjAyNi02LjI4M2MtMi42NTgtMS44ODYtNy4wODItMi4xNDctMTEuOTU3LjM5Mi0zLjk2MSwyLjA2My01Ljg1NCw0LjM1NC03LjExNyw4Ljg3OS0yLjQzOCw4LjczNSwzLjI1NywxNy4zMjcsOC44NzgsMjAuMDYsMTQuMDU5LDYuODM2LDI0Ljc3OC00LjA3NiwyNi44MTQtNi4zMDlDMTcwLjgyNyw2OC43MzYsMTcxLjc3Myw2MS44MzYsMTY5LjEsNTQuNTE0WiIgZmlsbD0iI2Q3YTAyMyIvPjwvZz48L3N2Zz4=");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  height: 24px;
  margin-right: 0.5rem;
  width: 28px;
}
@media screen and (min-width: 768px) {
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item:nth-child(2n) .aboutus-timeline__ages--item--image {
    justify-content: flex-start;
    order: 3;
  }
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item:nth-child(2n) .aboutus-timeline__ages--item--description {
    justify-content: flex-end;
    order: 1;
  }
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item:nth-child(2n) .aboutus-timeline__ages--item--description .aboutus-timeline__ages--item--description--box {
    margin-left: 0;
    margin-right: 1rem;
  }
  .aboutus-timeline .aboutus-timeline__ages .aboutus-timeline__ages--item:nth-child(2n) .aboutus-timeline__ages--item--description .aboutus-timeline__ages--item--description--box:before {
    border-right: none;
    border-left: 10px solid #E6E6E6;
    left: 100%;
    right: auto;
  }
}
/*--------------------------------------------------------------
# Nuestro equipo
--------------------------------------------------------------*/
.aboutus-team {
  margin: 4rem 0 2rem;
}
@media screen and (min-width: 992px) {
  .aboutus-team {
    margin: 4rem 0;
  }
}
.aboutus-team .aboutus-team__title {
  text-align: center;
}
.aboutus-team .aboutus-team__members {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  column-gap: 1rem;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .aboutus-team .aboutus-team__members {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .aboutus-team .aboutus-team__members {
    column-gap: 6rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 4rem;
  }
}
.aboutus-team .aboutus-team__members .aboutus-team__members--item .aboutus-team__members--item--photo img {
  display: block;
  height: auto;
  margin: 0 auto 1.5rem;
  width: 245px;
}
.aboutus-team .aboutus-team__members .aboutus-team__members--item .aboutus-team__members--item--name {
  color: #486680;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .aboutus-team .aboutus-team__members .aboutus-team__members--item .aboutus-team__members--item--name {
    font-size: 1.5rem;
  }
}
.aboutus-team .aboutus-team__members .aboutus-team__members--item .aboutus-team__members--item--occupation {
  color: #486680;
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .aboutus-team .aboutus-team__members .aboutus-team__members--item .aboutus-team__members--item--occupation {
    font-size: 1.125rem;
  }
}
/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/
#nf-form-1-cont .nf-form-title h3 {
  margin-bottom: 0.5rem;
}
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-before-form-content {
  display: none;
}
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-form-content {
  margin: 0;
  padding: 0;
}
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap {
  align-items: flex-start;
  align-content: flex-start;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-row: auto;
  max-width: 800px;
}
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field {
  display: block;
}
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container {
  margin-bottom: 0;
}
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .textbox-wrap .nf-field-element input,
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-element input {
  background-color: #E6E6E6;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.5rem;
  height: 3.5rem;
  padding: 0 1rem;
}
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .textbox-wrap .nf-field-element:after,
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .email-wrap .nf-field-element:after {
  border-radius: 0 0.5rem 0.5rem 0;
  height: 54px;
  line-height: 54px;
}
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .submit-wrap .nf-field-label {
  display: none;
}
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .submit-wrap .nf-field-element input {
  background-color: #D7A023;
  color: #FFF;
}
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .submit-wrap .nf-field-element input:hover {
  background-color: #4B977B;
}
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-error-wrap {
  padding-left: 1rem;
}
#nf-form-1-cont .nf-form-wrap .nf-form-layout .nf-after-form-content {
  margin-top: 1rem;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Nuestro enfoque
# Nos diferencia
# Llamada a la acción

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Nuestro enfoque
--------------------------------------------------------------*/
.our-approach {
  margin-bottom: 3rem;
  position: relative;
}
@media screen and (min-width: 992px) {
  .our-approach {
    margin-bottom: 6rem;
  }
}
.our-approach .our-approach__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .our-approach .our-approach__description {
    font-size: 1.5rem;
    margin-bottom: 6rem;
  }
}
.our-approach .our-approach__steps {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .our-approach .our-approach__steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .our-approach .our-approach__steps {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 4rem;
  }
}
.our-approach .our-approach__steps:before {
  background-image: url('../img/flecha-enfoque.svg');
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  content: '';
  display: none;
  height: 35px;
  position: absolute;
  top: 45px;
  width: 100%;
  z-index: 0;
}
@media screen and (min-width: 992px) {
  .our-approach .our-approach__steps:before {
    display: block;
  }
}
.our-approach .our-approach__steps .our-approach__steps--element {
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .our-approach .our-approach__steps .our-approach__steps--element {
    margin-bottom: 0;
  }
}
.our-approach .our-approach__steps .our-approach__steps--element .our-approach__steps--element--icon {
  align-items: center;
  background-color: #344662;
  border-radius: 100%;
  display: flex;
  height: 120px;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all 0.4s ease;
  width: 120px;
}
@media screen and (min-width: 992px) {
  .our-approach .our-approach__steps .our-approach__steps--element .our-approach__steps--element--icon {
    margin: 0 auto 3rem;
  }
}
.our-approach .our-approach__steps .our-approach__steps--element .our-approach__steps--element--icon:before {
  border: 3px solid #344662;
  border-radius: 100%;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.4s ease;
  width: 100%;
}
.our-approach .our-approach__steps .our-approach__steps--element .our-approach__steps--element--icon img {
  display: block;
  height: 70px;
  object-fit: contain;
  object-position: center;
  width: 70px;
}
.our-approach .our-approach__steps .our-approach__steps--element:hover .our-approach__steps--element--icon {
  background-color: #D7A023;
}
.our-approach .our-approach__steps .our-approach__steps--element:hover .our-approach__steps--element--icon:before {
  border-color: #D7A023;
  transform: scale(1.2, 1.2);
}
.our-approach .our-approach__steps .our-approach__steps--element .our-approach__steps--element--description {
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 992px) {
  .our-approach .our-approach__steps .our-approach__steps--element .our-approach__steps--element--description {
    font-size: 1.25rem;
  }
}
/*--------------------------------------------------------------
# Nos diferencia
--------------------------------------------------------------*/
.sets-us-apart .sets-us-apart__title {
  text-align: center;
}
.sets-us-apart .sets-us-apart__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .sets-us-apart .sets-us-apart__description {
    font-size: 1.25rem;
  }
}
.sets-us-apart .sets-us-apart__description strong {
  font-weight: 900;
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element {
    margin-bottom: 6rem;
  }
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--image {
  flex: 0 0 100%;
  margin-bottom: 1.5rem;
  order: 1;
}
@media screen and (min-width: 992px) {
  .sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--image {
    flex: 0 0 auto;
    margin-bottom: 0;
    padding-right: 1.5rem;
    width: 50%;
  }
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--image img {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  display: block;
  height: auto;
  width: 100%;
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info {
  flex: 0 0 100%;
  order: 2;
}
@media screen and (min-width: 992px) {
  .sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info {
    flex: 1 1 0;
    padding-left: 1.5rem;
  }
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__title {
  color: #AD5C31;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: justify;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__title {
    font-size: 2rem;
  }
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__description {
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__description {
    font-size: 1.5rem;
  }
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__description strong {
  font-weight: 900;
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__percentage {
  display: block;
  margin-bottom: 0.5rem;
  padding-right: 60px;
}
@media screen and (min-width: 992px) {
  .sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__percentage {
    display: none;
  }
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__percentage .info__percentage--bar {
  border-radius: 0.5rem;
  height: 30px;
  position: relative;
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__percentage .info__percentage--bar .info__percentage--bar--number {
  font-size: 1.125rem;
  font-weight: 700;
  left: 100%;
  padding-left: 0.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__percentage.info__percentage-1 .info__percentage--bar {
  background-color: #AD5C31;
  color: #AD5C31;
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__percentage.info__percentage-2 .info__percentage--bar {
  background-color: #344662;
  color: #344662;
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__percentage.info__percentage-3 .info__percentage--bar {
  background-color: #4B977B;
  color: #4B977B;
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__percentage.info__percentage-4 .info__percentage--bar {
  background-color: #D7A023;
  color: #D7A023;
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__percentage--description {
  color: #808080;
  display: block;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  text-align: justify;
}
@media screen and (min-width: 992px) {
  .sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__percentage--description {
    display: none;
  }
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__percentage--title {
  display: block;
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .sets-us-apart__steps--element--info .info__percentage--title {
    display: none;
  }
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .info__percentage--image {
  display: none;
  flex: 0 0 100%;
  margin-top: 4rem;
  order: 3;
}
@media screen and (min-width: 992px) {
  .sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .info__percentage--image {
    display: block;
  }
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .info__percentage--image:last-child {
  margin-top: 2rem;
  order: 4;
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .info__percentage--image .info__percentage--image--title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-align: center;
}
.sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element .info__percentage--image img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element:nth-child(2) .sets-us-apart__steps--element--image {
    order: 2;
    padding-left: 1.5rem;
    padding-right: 0;
  }
  .sets-us-apart .sets-us-apart__steps .sets-us-apart__steps--element:nth-child(2) .sets-us-apart__steps--element--info {
    order: 1;
    padding-left: 0;
    padding-right: 1.5rem;
  }
}
/*--------------------------------------------------------------
# Llamada a la acción
--------------------------------------------------------------*/
.call-to-action {
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .call-to-action {
    margin-bottom: 4rem;
  }
}
.call-to-action .call-to-action__element {
  margin-bottom: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .call-to-action .call-to-action__element {
    margin-bottom: 5rem;
  }
}
.call-to-action .call-to-action__element .call-to-action__element--text {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .call-to-action .call-to-action__element .call-to-action__element--text {
    font-size: 1.5rem;
  }
}
.call-to-action .call-to-action__element .call-to-action__element--button {
  background-color: #D7A023;
  border-radius: 1rem;
  color: #FFFFFF;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 0.5rem 1.5rem;
  transition: all 0.4s ease;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .call-to-action .call-to-action__element .call-to-action__element--button {
    font-size: 1.5rem;
  }
}
.call-to-action .call-to-action__element .call-to-action__element--button:hover {
  background-color: #4B977B;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Nuestros socios
# Socios destacados
# Otros socios
# Conviértete en socio

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Nuestros socios
--------------------------------------------------------------*/
.our-partners .our-partners__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .our-partners .our-partners__description {
    font-size: 1.5rem;
  }
}
/*--------------------------------------------------------------
# Socios destacados
--------------------------------------------------------------*/
.featured-partnerships {
  background-image: url(../img/fondo-featured-testimonials.png);
  background-position: center;
  background-size: cover;
  padding: 4rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .featured-partnerships {
    padding: 5rem 0;
  }
}
.featured-partnerships:before {
  background-image: url(../img/certificado-decoracion-top.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .featured-partnerships:before {
    height: 60px;
  }
}
.featured-partnerships:after {
  background-image: url(../img/certificado-decoracion-bottom.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .featured-partnerships:after {
    height: 60px;
  }
}
.featured-partnerships .featured-partnerships__title {
  padding: 0 2rem;
  text-align: center;
}
.featured-partnerships .featured-partnerships__carousel {
  position: relative;
}
.featured-partnerships .featured-partnerships__carousel .featured-partnerships__carousel--element {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  .featured-partnerships .featured-partnerships__carousel .featured-partnerships__carousel--element {
    flex-wrap: nowrap;
  }
}
.featured-partnerships .featured-partnerships__carousel .featured-partnerships__carousel--element .featured-partnerships__carousel--element--logo {
  flex: 0 0 100%;
}
@media screen and (min-width: 992px) {
  .featured-partnerships .featured-partnerships__carousel .featured-partnerships__carousel--element .featured-partnerships__carousel--element--logo {
    flex: 0 0 auto;
    margin-right: 4rem;
  }
}
.featured-partnerships .featured-partnerships__carousel .featured-partnerships__carousel--element .featured-partnerships__carousel--element--logo img {
  display: block;
  max-width: 340px;
}
@media screen and (min-width: 992px) {
  .featured-partnerships .featured-partnerships__carousel .featured-partnerships__carousel--element .featured-partnerships__carousel--element--logo img {
    height: 220px;
    object-fit: contain;
    object-position: center;
    width: 340px;
  }
}
.featured-partnerships .featured-partnerships__carousel .featured-partnerships__carousel--element .featured-partnerships__carousel--element--info {
  flex: 0 0 100%;
}
@media screen and (min-width: 768px) {
  .featured-partnerships .featured-partnerships__carousel .featured-partnerships__carousel--element .featured-partnerships__carousel--element--info {
    flex: 1 1 0;
  }
}
.featured-partnerships .featured-partnerships__carousel .featured-partnerships__carousel--element .featured-partnerships__carousel--element--info .info__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .featured-partnerships .featured-partnerships__carousel .featured-partnerships__carousel--element .featured-partnerships__carousel--element--info .info__description {
    font-size: 1.5rem;
  }
}
.featured-partnerships .featured-partnerships__carousel .featured-partnerships__carousel--element .featured-partnerships__carousel--element--info .info__link {
  color: #D7A023;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .featured-partnerships .featured-partnerships__carousel .featured-partnerships__carousel--element .featured-partnerships__carousel--element--info .info__link {
    font-size: 1.5rem;
  }
}
.featured-partnerships .featured-partnerships__carousel .featured-partnerships__carousel--element .featured-partnerships__carousel--element--info .info__link:hover {
  color: #4B977B;
}
.featured-partnerships .featured-partnerships__carousel .owl-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .featured-partnerships .featured-partnerships__carousel .owl-nav {
    display: block;
  }
}
.featured-partnerships .featured-partnerships__carousel .owl-nav .owl-prev,
.featured-partnerships .featured-partnerships__carousel .owl-nav .owl-next {
  align-items: center;
  background-color: rgba(60, 60, 59, 0.3);
  display: flex;
  height: 70px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
}
.featured-partnerships .featured-partnerships__carousel .owl-nav .owl-prev img,
.featured-partnerships .featured-partnerships__carousel .owl-nav .owl-next img {
  display: block;
  flex: 0 0 auto;
  height: auto;
  width: 10px;
}
.featured-partnerships .featured-partnerships__carousel .owl-nav .owl-prev {
  border-radius: 0 4px 4px 0;
  left: 0;
}
.featured-partnerships .featured-partnerships__carousel .owl-nav .owl-next {
  border-radius: 4px 0 0 4px;
  right: 0;
}
/*--------------------------------------------------------------
# Otros socios
--------------------------------------------------------------*/
.other-partners {
  margin: 3rem 0;
}
@media screen and (min-width: 768px) {
  .other-partners {
    margin: 6rem 0;
  }
}
.other-partners .other-partners__title {
  margin-bottom: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .other-partners .other-partners__title {
    margin-bottom: 5rem;
  }
}
.other-partners .other-partners__grid {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
@media screen and (min-width: 768px) {
  .other-partners .other-partners__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .other-partners .other-partners__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.other-partners .other-partners__grid .other-partners__grid--element img {
  display: block;
  height: auto;
  width: 100%;
}
/*--------------------------------------------------------------
# Conviértete en socio
--------------------------------------------------------------*/
.become-partner {
  margin: 4rem 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .become-partner {
    margin: 6rem 0;
  }
}
.become-partner .become-partner__title {
  text-align: center;
}
.become-partner .become-partner__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .become-partner .become-partner__description {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Map
# Projects
# Support

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
#our-projects__map {
  height: 350px;
}
@media screen and (min-width: 768px) {
  #our-projects__map {
    height: 680px;
  }
}
/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/
.featured-projects__filter .featured-projects__filter--text {
  font-size: 1rem;
}
.featured-projects__filter .featured-projects__filter--button {
  font-size: 1rem;
}
/*--------------------------------------------------------------
# Support
--------------------------------------------------------------*/
.our-projects-support {
  margin: 3rem 0 6rem;
}
@media screen and (min-width: 768px) {
  .our-projects-support {
    margin: 3rem 0 15rem;
  }
}
.our-projects-support .our-projects-support__title {
  text-align: center;
}
.our-projects-support .our-projects-support__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .our-projects-support .our-projects-support__description {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
.our-projects-support .our-projects-support__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .our-projects-support .our-projects-support__buttons {
    flex-wrap: nowrap;
  }
}
.our-projects-support .our-projects-support__buttons .our-projects-support__buttons--element {
  flex: 0 0 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .our-projects-support .our-projects-support__buttons .our-projects-support__buttons--element {
    flex: 0 0 auto;
    margin-bottom: 0;
    margin-left: 90px;
  }
}
@media screen and (min-width: 992px) {
  .our-projects-support .our-projects-support__buttons .our-projects-support__buttons--element {
    margin-left: 180px;
  }
}
.our-projects-support .our-projects-support__buttons .our-projects-support__buttons--element:first-child {
  margin-left: 0;
}
.our-projects-support .our-projects-support__buttons .our-projects-support__buttons--element .our-projects-support__buttons--element--button {
  background-color: #D7A023;
  border-radius: 1.5rem;
  color: #FFFFFF;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.4s ease;
}
@media screen and (min-width: 768px) {
  .our-projects-support .our-projects-support__buttons .our-projects-support__buttons--element .our-projects-support__buttons--element--button {
    width: 280px;
  }
}
.our-projects-support .our-projects-support__buttons .our-projects-support__buttons--element .our-projects-support__buttons--element--button:hover {
  background-color: #4B977B;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Diseño
# Proyectos
# Contacto

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Diseño
--------------------------------------------------------------*/
.design .design__description {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .design .design__description {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1140px) {
  .design .design__description {
    margin-bottom: 6rem;
  }
}
/*--------------------------------------------------------------
# Proyectos
--------------------------------------------------------------*/
@media screen and (min-width: 992px) {
  .design-projects {
    background: url(../img/tierra-izq.png) center left / 200px no-repeat, url(../img/tierra-der.png) top right / 200px no-repeat;
  }
}
.design-projects .design-projects__element {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  .design-projects .design-projects__element {
    flex-wrap: nowrap;
    margin-bottom: 6rem;
  }
}
.design-projects .design-projects__element .design-projects__element--info {
  flex: 0 0 100%;
  order: 2;
}
@media screen and (min-width: 992px) {
  .design-projects .design-projects__element .design-projects__element--info {
    flex: 0 0 50%;
    order: 1;
    padding-right: 3rem;
  }
}
.design-projects .design-projects__element .design-projects__element--info .info__title {
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .design-projects .design-projects__element .design-projects__element--info .info__title {
    margin-bottom: 2rem;
  }
}
.design-projects .design-projects__element .design-projects__element--info .info__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 1rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .design-projects .design-projects__element .design-projects__element--info .info__description {
    font-size: 1.5rem;
  }
}
.design-projects .design-projects__element .design-projects__element--info .info__logos {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  margin-bottom: 1rem;
}
.design-projects .design-projects__element .design-projects__element--info .info__logos .info__logos--element img {
  display: block;
  height: auto;
  width: 100%;
}
.design-projects .design-projects__element .design-projects__element--info .info__link {
  color: #D7A023;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .design-projects .design-projects__element .design-projects__element--info .info__link {
    font-size: 1.5rem;
  }
}
.design-projects .design-projects__element .design-projects__element--info .info__link:hover {
  color: #4B977B;
}
.design-projects .design-projects__element .design-projects__element--image {
  flex: 0 0 100%;
  margin-bottom: 2rem;
  order: 1;
}
@media screen and (min-width: 992px) {
  .design-projects .design-projects__element .design-projects__element--image {
    flex: 0 0 50%;
    margin-bottom: 0;
    order: 2;
    padding-left: 3rem;
  }
}
.design-projects .design-projects__element .design-projects__element--image img {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .design-projects .design-projects__element:nth-child(2n) .design-projects__element--info {
    order: 2;
    padding-right: 0;
    padding-left: 3rem;
  }
  .design-projects .design-projects__element:nth-child(2n) .design-projects__element--image {
    order: 1;
    padding-left: 0;
    padding-right: 3rem;
  }
}
.design-projects .design-projects__element:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/
.design-contact {
  margin: 4rem 0;
  overflow: hidden;
}
.design-contact .design-contact__title {
  text-align: center;
}
.design-contact .design-contact__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .design-contact .design-contact__description {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Implemento
# Áreas de atención
# Proyectos
# Donación

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Diseño
--------------------------------------------------------------*/
.implement .implement__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .implement .implement__description {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .implement .implement__description {
    margin-bottom: 4rem;
  }
}
/*--------------------------------------------------------------
# Áreas de atención
--------------------------------------------------------------*/
.areas_attention .areas_attention__element {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .areas_attention .areas_attention__element {
    flex-wrap: nowrap;
    margin-bottom: 6rem;
  }
}
.areas_attention .areas_attention__element:last-child {
  margin-bottom: 0;
}
.areas_attention .areas_attention__element .areas_attention__element--info {
  flex: 0 0 100%;
  order: 2;
}
@media screen and (min-width: 992px) {
  .areas_attention .areas_attention__element .areas_attention__element--info {
    flex: 0 0 50%;
    order: 1;
    padding-right: 1.5rem;
  }
}
.areas_attention .areas_attention__element .areas_attention__element--info .info__title {
  align-items: center;
  display: flex;
  margin-bottom: 2rem;
}
.areas_attention .areas_attention__element .areas_attention__element--info .info__title span {
  display: block;
  margin-right: 1.5rem;
}
.areas_attention .areas_attention__element .areas_attention__element--info .info__title img {
  display: block;
  height: auto;
  width: 72px;
}
@media screen and (min-width: 768px) {
  .areas_attention .areas_attention__element .areas_attention__element--info .info__title img {
    width: 48px;
  }
}
.areas_attention .areas_attention__element .areas_attention__element--info .info__description {
  color: #AD5C31;
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 1rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .areas_attention .areas_attention__element .areas_attention__element--info .info__description {
    font-size: 1.5rem;
  }
}
.areas_attention .areas_attention__element .areas_attention__element--info .info__description ul {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}
.areas_attention .areas_attention__element .areas_attention__element--info .info__description ul li {
  color: #344662;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
}
.areas_attention .areas_attention__element .areas_attention__element--info .info__description ul li:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MC4yNzIiIGhlaWdodD0iNDMuODcxIiB2aWV3Qm94PSIwIDAgNTAuMjcyIDQzLjg3MSI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyMC4yNjkgLTM5LjMyNykiPjxwYXRoIGQ9Ik0xNTcuNDA2LDQ2LjI3NGMtMS43NDgtMi4yNjItNS03LjEtMTQuMzI0LTYuOTQzLTYsLjEtMTIuMzY3LDIuNzg2LTE3LjYsOC43NjUtMy4zMjMsMy44LTYuMTg5LDkuNDY3LTQuOSwxOS4wODMuNjI5LDQuNjg5LDEuNCw4LjY0OSw0LjY4NywxMS44NjguNDk0LjQ4NS43NDYtLjIxMi41NjMtLjg4OWE0My44LDQzLjgsMCwwLDEtLjI1OC0xOS4xLDE5Ljc0NSwxOS43NDUsMCwwLDEsNy40NjMtMTEuODVjMy4yOTMtMi4zNzksNy4xNTYtMy43OTMsMTAuNjI4LTMuMzY0QTE0LjYyMywxNC42MjMsMCwwLDEsMTU2LjI0Miw1NC45Yy44Myw0LjQ0Ny0yLjksMTAuNjU5LTcuNjU4LDExLjMtMi4xMzcuMjg4LTMuNTg3LTEuMzg4LTUuMDItMy43NDgtMS4yNjQtMi4wODEtMTEuMTQ2LS44NjQtMy40NjksNy4xNzUsMi45LDMuMDc3LDYuODQxLDQuODc0LDEyLjAxOSwyLjg5LDUuNS0yLjEwOSw4LjA5LTUuNDExLDkuNTkzLTkuNjI1QzE2My4yLDU4LjcsMTY0LjEsNTQuOTM1LDE1Ny40MDYsNDYuMjc0WiIgZmlsbD0iI2Q3YTAyMyIvPjxwYXRoIGQ9Ik0xNjkuMSw1NC41MTRjLTEuMTYxLTMuMTgxLTYuNTkzLTguNzM2LTguMzE1LTkuNzczLS42MTktLjM3Mi0uNjQuMzI0LS4yNjkuOTUxLDEuODMzLDMuMSw2LjA2MiwxMS41NjIsNC4xODQsMjAuMTIzLS45ODcsNC41LTYuMDMxLDEyLjkyOC0xOC42ODYsMTEuOTE3YTEzLjc3MiwxMy43NzIsMCwwLDEtMTIuMi0xMC4yODRjLTEuMTI2LTMuOTU0LjI3LTguOTYyLDQuMDc0LTEwLjk1NywzLjY1Ny0xLjkyLDguMjM4Ljc4Nyw5LjM2NCwzLjM3MS4zNTEuOCwyLjc3OS0uMDU4LDMuNTcxLTEuOTM0YTUuMzMsNS4zMywwLDAsMC0yLjAyNi02LjI4M2MtMi42NTgtMS44ODYtNy4wODItMi4xNDctMTEuOTU3LjM5Mi0zLjk2MSwyLjA2My01Ljg1NCw0LjM1NC03LjExNyw4Ljg3OS0yLjQzOCw4LjczNSwzLjI1NywxNy4zMjcsOC44NzgsMjAuMDYsMTQuMDU5LDYuODM2LDI0Ljc3OC00LjA3NiwyNi44MTQtNi4zMDlDMTcwLjgyNyw2OC43MzYsMTcxLjc3Myw2MS44MzYsMTY5LjEsNTQuNTE0WiIgZmlsbD0iI2Q3YTAyMyIvPjwvZz48L3N2Zz4=");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  height: 11px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 12px;
}
.areas_attention .areas_attention__element .areas_attention__element--info .info__logos {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  margin-bottom: 1rem;
}
.areas_attention .areas_attention__element .areas_attention__element--info .info__logos .info__logos--element img {
  display: block;
  height: auto;
  width: 100%;
}
.areas_attention .areas_attention__element .areas_attention__element--info .info__link {
  color: #D7A023;
  font-size: 1.5rem;
  font-weight: 700;
}
.areas_attention .areas_attention__element .areas_attention__element--image {
  flex: 0 0 100%;
  margin-bottom: 2rem;
  order: 1;
}
@media screen and (min-width: 992px) {
  .areas_attention .areas_attention__element .areas_attention__element--image {
    flex: 0 0 50%;
    margin-bottom: 0;
    order: 2;
    padding-left: 1.5rem;
  }
}
.areas_attention .areas_attention__element .areas_attention__element--image img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .areas_attention .areas_attention__element:nth-child(2n) .areas_attention__element--info {
    order: 2;
    padding-right: 0;
    padding-left: 1.5rem;
  }
  .areas_attention .areas_attention__element:nth-child(2n) .areas_attention__element--image {
    order: 1;
    padding-left: 0;
    padding-right: 1.5rem;
  }
}
/*--------------------------------------------------------------
# Proyectos
--------------------------------------------------------------*/
.implement-projects {
  margin-bottom: 4rem;
}
@media screen and (min-width: 992px) {
  .implement-projects {
    margin-bottom: 8rem;
  }
}
/*--------------------------------------------------------------
# Donación
--------------------------------------------------------------*/
.implement-donation {
  margin: 4rem 0;
}
@media screen and (min-width: 992px) {
  .implement-donation {
    margin: 6rem 0;
  }
}
.implement-donation .implement-donation__title {
  text-align: center;
}
.implement-donation .implement-donation__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .implement-donation .implement-donation__description {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
.implement-donation .implement-donation__button {
  text-align: center;
}
.implement-donation .implement-donation__button a {
  background-color: #D7A023;
  border-radius: 1rem;
  color: #FFFFFF;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 400;
  min-width: 200px;
  padding: 0.5rem 1.5rem;
  transition: all 0.4s ease;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .implement-donation .implement-donation__button a {
    font-size: 1.5rem;
  }
}
.implement-donation .implement-donation__button a:hover {
  background-color: #4B977B;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Desafío
# Solución
# Programas
# Impacto
# Soporte

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Desafío
--------------------------------------------------------------*/
.replicate-challenge {
  margin: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .replicate-challenge {
    background: url(../img/tierra-izq.png) bottom left / 100px no-repeat, url(../img/tierra-der.png) bottom right / 100px no-repeat;
  }
}
@media screen and (min-width: 992px) {
  .replicate-challenge {
    background-size: 150px;
    margin: 3rem 0;
  }
}
@media screen and (min-width: 1600px) {
  .replicate-challenge {
    background-size: 200px;
  }
}
.replicate-challenge .replicate-challenge__title {
  text-align: center;
}
.replicate-challenge .replicate-challenge__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 3rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .replicate-challenge .replicate-challenge__description {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .replicate-challenge .replicate-challenge__description {
    margin-bottom: 6rem;
  }
}
.replicate-challenge .replicate-challenge__indicators {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .replicate-challenge .replicate-challenge__indicators {
    margin-bottom: 3rem;
  }
}
.replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element {
  flex: 0 0 100%;
}
@media screen and (min-width: 768px) {
  .replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element {
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 992px) {
  .replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element {
    flex: 0 0 auto;
  }
}
.replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element:nth-child(4n + 1) {
  background-image: url(../img/indicador-1.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  max-width: 100%;
  padding: 3rem 2.5rem 3.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element:nth-child(4n + 1) {
    margin: 1rem auto;
    max-width: 430px;
  }
}
@media screen and (min-width: 1600px) {
  .replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element:nth-child(4n + 1) {
    margin-left: 0;
    margin-right: 170px;
  }
}
.replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element:nth-child(4n + 2) {
  background-image: url(../img/indicador-2.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  max-width: 100%;
  padding: 3rem 2.5rem 3.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element:nth-child(4n + 2) {
    margin: 1rem auto;
    max-width: 430px;
  }
}
@media screen and (min-width: 1600px) {
  .replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element:nth-child(4n + 2) {
    margin: 0;
  }
}
.replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element:nth-child(4n + 3) {
  background-image: url(../img/indicador-3.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #D7A023;
  max-width: 100%;
  padding: 3rem 2.5rem 3.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element:nth-child(4n + 3) {
    margin: 1rem auto;
    max-width: 400px;
  }
}
@media screen and (min-width: 1600px) {
  .replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element:nth-child(4n + 3) {
    margin-left: 320px;
    margin-right: 170px;
    margin-top: -30px;
  }
}
.replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element:nth-child(4n + 4) {
  background-image: url(../img/indicador-4.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #D7A023;
  max-width: 100%;
  padding: 3rem 2.5rem 3.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element:nth-child(4n + 4) {
    margin: 1rem auto;
    max-width: 400px;
  }
}
@media screen and (min-width: 1600px) {
  .replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element:nth-child(4n + 4) {
    margin: -30px 0 0;
  }
}
.replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element:nth-child(4n + 4) .element__info {
  align-items: flex-start;
}
.replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element .element__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 5px;
}
.replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element .element__info {
  align-items: center;
  display: flex;
}
.replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element .element__info .element__info--number {
  align-items: center;
  display: flex;
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.8;
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element .element__info .element__info--number {
    font-size: 6rem;
  }
}
.replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element .element__info .element__info--number .element__info--number--symbol {
  font-size: 2rem;
}
.replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element .element__info .element__info--description {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .replicate-challenge .replicate-challenge__indicators .replicate-challenge__indicators--element .element__info .element__info--description {
    font-size: 1.25rem;
  }
}
/*--------------------------------------------------------------
# Solución
--------------------------------------------------------------*/
.replicate-solution {
  background-position: center;
  background-size: cover;
  padding: 4rem 0;
  position: relative;
}
.replicate-solution:before {
  background-image: url(../img/certificado-decoracion-top.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .replicate-solution:before {
    height: 60px;
  }
}
.replicate-solution:after {
  background-image: url(../img/certificado-decoracion-bottom.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .replicate-solution:after {
    height: 60px;
  }
}
.replicate-solution .replicate-solution__title {
  text-align: center;
}
.replicate-solution .replicate-solution__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 4rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .replicate-solution .replicate-solution__description {
    font-size: 1.5rem;
  }
}
.replicate-solution .replicate-solution__benefits-title {
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .replicate-solution .replicate-solution__benefits-title {
    margin-bottom: 4rem;
  }
}
.replicate-solution .replicate-solution__benefits {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .replicate-solution .replicate-solution__benefits {
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .replicate-solution .replicate-solution__benefits {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.replicate-solution .replicate-solution__benefits .replicate-solution__benefits--element {
  position: relative;
}
.replicate-solution .replicate-solution__benefits .replicate-solution__benefits--element:after {
  background-color: #CBCBCB;
  bottom: 0px;
  content: '';
  display: none;
  position: absolute;
  right: -32px;
  top: 130px;
  width: 3px;
}
@media screen and (min-width: 768px) {
  .replicate-solution .replicate-solution__benefits .replicate-solution__benefits--element:after {
    display: block;
  }
}
.replicate-solution .replicate-solution__benefits .replicate-solution__benefits--element .element__icon {
  margin-bottom: 1.5rem;
}
.replicate-solution .replicate-solution__benefits .replicate-solution__benefits--element .element__icon img {
  display: block;
  height: 70px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  width: 70px;
}
.replicate-solution .replicate-solution__benefits .replicate-solution__benefits--element .element__title {
  color: #AD5C31;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .replicate-solution .replicate-solution__benefits .replicate-solution__benefits--element .element__title {
    min-height: 56px;
  }
}
.replicate-solution .replicate-solution__benefits .replicate-solution__benefits--element .element__description {
  font-size: 1.125rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .replicate-solution .replicate-solution__benefits .replicate-solution__benefits--element .element__description {
    font-size: 1.25rem;
  }
}
/*--------------------------------------------------------------
# Programas
--------------------------------------------------------------*/
.replicate-programs {
  overflow: hidden;
  padding: 6rem 1rem 3rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1140px) {
  .replicate-programs {
    overflow: visible;
    padding: 6rem 1rem 9rem;
  }
}
.replicate-programs .replicate-programs__title {
  text-align: center;
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element {
  margin: 0 auto 3rem;
  max-width: 600px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element {
    margin: 0 auto 6rem;
    max-width: none;
  }
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element:first-child .replicate-programs__grid--element--gallery:before {
  background-image: url('../img/hoja-de-coca.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 320px;
  left: -190px;
  position: absolute;
  top: -170px;
  transform: rotate(-15deg) scale(0.3, 0.3);
  width: 400px;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element:first-child .replicate-programs__grid--element--gallery:before {
    left: -140px;
    top: -200px;
    transform: rotate(-15deg) scale(1, 1);
  }
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element:last-child {
  margin-bottom: 0;
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element:last-child .replicate-programs__grid--element--gallery:before {
  background-image: url('../img/hoja2.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: none;
  height: 306px;
  left: -190px;
  position: absolute;
  bottom: -150px;
  transform: rotate(200deg) scale(0.3, 0.3);
  width: 350px;
  z-index: -1;
}
@media screen and (min-width: 1140px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element:last-child .replicate-programs__grid--element--gallery:before {
    bottom: -150px;
    display: block;
    left: -90px;
    transform: rotate(200deg) scale(1, 1);
  }
}
@media screen and (min-width: 992px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element:nth-child(2n + 2) .replicate-programs__grid--element--gallery {
    left: auto;
    padding-left: 2rem;
    padding-right: 0;
    right: 0;
  }
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element:nth-child(2n + 2) .replicate-programs__grid--element--info .offset-xl-6 {
    margin-left: 0;
  }
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element:nth-child(2n + 2) .replicate-programs__grid--element--info .col-xl-6 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--gallery {
  border-radius: 1rem;
  height: 250px;
  margin-bottom: 1rem;
  position: relative;
}
@media screen and (orientation: landscape) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--gallery {
    height: 360px;
  }
}
@media screen and (min-width: 576px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--gallery {
    height: 400px;
  }
}
@media screen and (min-width: 768px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--gallery {
    height: 400px;
  }
}
@media screen and (min-width: 992px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--gallery {
    height: 600px;
  }
}
@media screen and (min-width: 1140px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--gallery {
    height: 670px;
    left: 0;
    margin-bottom: 0;
    padding-right: 2rem;
    position: absolute;
    width: 50%;
  }
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--gallery .replicate-programs__grid--element--gallery--element {
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--gallery .replicate-programs__grid--element--gallery--element img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .col-xl-6 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--title {
    font-size: 2rem;
  }
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--subtitle {
  color: #AD5C31;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--subtitle {
    font-size: 1.5rem;
  }
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--description {
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--description {
    font-size: 1.5rem;
  }
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--description strong {
  font-weight: 700;
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--description ul {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--description ul li {
  color: #344662;
  padding-left: 20px;
  position: relative;
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--description ul li:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MC4yNzIiIGhlaWdodD0iNDMuODcxIiB2aWV3Qm94PSIwIDAgNTAuMjcyIDQzLjg3MSI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyMC4yNjkgLTM5LjMyNykiPjxwYXRoIGQ9Ik0xNTcuNDA2LDQ2LjI3NGMtMS43NDgtMi4yNjItNS03LjEtMTQuMzI0LTYuOTQzLTYsLjEtMTIuMzY3LDIuNzg2LTE3LjYsOC43NjUtMy4zMjMsMy44LTYuMTg5LDkuNDY3LTQuOSwxOS4wODMuNjI5LDQuNjg5LDEuNCw4LjY0OSw0LjY4NywxMS44NjguNDk0LjQ4NS43NDYtLjIxMi41NjMtLjg4OWE0My44LDQzLjgsMCwwLDEtLjI1OC0xOS4xLDE5Ljc0NSwxOS43NDUsMCwwLDEsNy40NjMtMTEuODVjMy4yOTMtMi4zNzksNy4xNTYtMy43OTMsMTAuNjI4LTMuMzY0QTE0LjYyMywxNC42MjMsMCwwLDEsMTU2LjI0Miw1NC45Yy44Myw0LjQ0Ny0yLjksMTAuNjU5LTcuNjU4LDExLjMtMi4xMzcuMjg4LTMuNTg3LTEuMzg4LTUuMDItMy43NDgtMS4yNjQtMi4wODEtMTEuMTQ2LS44NjQtMy40NjksNy4xNzUsMi45LDMuMDc3LDYuODQxLDQuODc0LDEyLjAxOSwyLjg5LDUuNS0yLjEwOSw4LjA5LTUuNDExLDkuNTkzLTkuNjI1QzE2My4yLDU4LjcsMTY0LjEsNTQuOTM1LDE1Ny40MDYsNDYuMjc0WiIgZmlsbD0iI2Q3YTAyMyIvPjxwYXRoIGQ9Ik0xNjkuMSw1NC41MTRjLTEuMTYxLTMuMTgxLTYuNTkzLTguNzM2LTguMzE1LTkuNzczLS42MTktLjM3Mi0uNjQuMzI0LS4yNjkuOTUxLDEuODMzLDMuMSw2LjA2MiwxMS41NjIsNC4xODQsMjAuMTIzLS45ODcsNC41LTYuMDMxLDEyLjkyOC0xOC42ODYsMTEuOTE3YTEzLjc3MiwxMy43NzIsMCwwLDEtMTIuMi0xMC4yODRjLTEuMTI2LTMuOTU0LjI3LTguOTYyLDQuMDc0LTEwLjk1NywzLjY1Ny0xLjkyLDguMjM4Ljc4Nyw5LjM2NCwzLjM3MS4zNTEuOCwyLjc3OS0uMDU4LDMuNTcxLTEuOTM0YTUuMzMsNS4zMywwLDAsMC0yLjAyNi02LjI4M2MtMi42NTgtMS44ODYtNy4wODItMi4xNDctMTEuOTU3LjM5Mi0zLjk2MSwyLjA2My01Ljg1NCw0LjM1NC03LjExNyw4Ljg3OS0yLjQzOCw4LjczNSwzLjI1NywxNy4zMjcsOC44NzgsMjAuMDYsMTQuMDU5LDYuODM2LDI0Ljc3OC00LjA3NiwyNi44MTQtNi4zMDlDMTcwLjgyNyw2OC43MzYsMTcxLjc3Myw2MS44MzYsMTY5LjEsNTQuNTE0WiIgZmlsbD0iI2Q3YTAyMyIvPjwvZz48L3N2Zz4=");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  height: 11px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 12px;
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--posts {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--posts {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--posts .replicate-programs__grid--element--info--post {
  display: block;
  color: #D7A023;
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--posts .replicate-programs__grid--element--info--post .replicate-programs__grid--element--info--post--flag {
  display: block;
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--posts .replicate-programs__grid--element--info--post .replicate-programs__grid--element--info--post--name {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--posts .replicate-programs__grid--element--info--post .replicate-programs__grid--element--info--post--name {
    font-size: 1.5rem;
  }
}
.replicate-programs .replicate-programs__grid .replicate-programs__grid--element .replicate-programs__grid--element--info .replicate-programs__grid--element--info--posts .replicate-programs__grid--element--info--post:hover .replicate-programs__grid--element--info--post--name {
  color: #4B977B;
}
/*--------------------------------------------------------------
# Impacto
--------------------------------------------------------------*/
.replicate-impact {
  background: #EFEFEF;
  padding: 3rem 0 5rem;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 992px) {
  .replicate-impact {
    padding: 6rem 0 10rem;
  }
}
.replicate-impact:before {
  background-image: url(../img/certificado-decoracion-top.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .replicate-impact:before {
    height: 60px;
  }
}
.replicate-impact:after {
  background-image: url(../img/certificado-decoracion-bottom.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .replicate-impact:after {
    height: 60px;
  }
}
.replicate-impact .replicate-impact__certification {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  .replicate-impact .replicate-impact__certification {
    flex-wrap: nowrap;
    margin-bottom: 6rem;
  }
}
.replicate-impact .replicate-impact__certification .replicate-impact__certification-logo {
  flex: 0 0 100%;
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .replicate-impact .replicate-impact__certification .replicate-impact__certification-logo {
    flex: 0 0 auto;
    margin-bottom: 0;
    margin-right: 3rem;
  }
}
.replicate-impact .replicate-impact__certification .replicate-impact__certification-logo img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 280px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .replicate-impact .replicate-impact__certification .replicate-impact__certification-logo img {
    max-width: 380px;
  }
}
.replicate-impact .replicate-impact__certification .replicate-impact__certification-description {
  flex: 0 0 100%;
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .replicate-impact .replicate-impact__certification .replicate-impact__certification-description {
    flex: 1 1 0;
    font-size: 1.5rem;
  }
}
.replicate-impact .replicate-impact__title {
  text-align: center;
}
.replicate-impact .replicate-impact__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .replicate-impact .replicate-impact__description {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
.replicate-impact .replicate-impact__goals {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 60px 60px 60px 60px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .replicate-impact .replicate-impact__goals {
    gap: 1rem;
    grid-template-columns: 120px 120px 120px 120px;
  }
}
@media screen and (min-width: 992px) {
  .replicate-impact .replicate-impact__goals {
    grid-template-columns: 162px 162px 162px 162px;
  }
}
.replicate-impact .replicate-impact__goals .replicate-impact__goals--element {
  height: 60px;
  width: 60px;
}
@media screen and (min-width: 768px) {
  .replicate-impact .replicate-impact__goals .replicate-impact__goals--element {
    height: 120px;
    width: 120px;
  }
}
@media screen and (min-width: 992px) {
  .replicate-impact .replicate-impact__goals .replicate-impact__goals--element {
    height: 162px;
    width: 162px;
  }
}
.replicate-impact .replicate-impact__goals .replicate-impact__goals--element img {
  display: block;
  height: auto;
  width: 100%;
}
/*--------------------------------------------------------------
# Soporte
--------------------------------------------------------------*/
.replicate-support {
  margin: 3rem 0 6rem;
}
.replicate-support .replicate-support__title {
  text-align: center;
}
.replicate-support .replicate-support__description {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .replicate-support .replicate-support__description {
    font-size: 1.5rem;
  }
}
.replicate-support .replicate-support__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .replicate-support .replicate-support__buttons {
    flex-wrap: nowrap;
  }
}
.replicate-support .replicate-support__buttons .replicate-support__buttons--element {
  flex: 0 0 auto;
  margin-bottom: 2rem;
  max-width: 290px;
}
@media screen and (min-width: 768px) {
  .replicate-support .replicate-support__buttons .replicate-support__buttons--element {
    margin-left: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .replicate-support .replicate-support__buttons .replicate-support__buttons--element {
    margin-bottom: 2rem;
    margin-left: 180px;
  }
}
.replicate-support .replicate-support__buttons .replicate-support__buttons--element:first-child {
  margin-left: 0;
}
.replicate-support .replicate-support__buttons .replicate-support__buttons--element .replicate-support__buttons--element--button {
  background-color: #D7A023;
  border-radius: 1.5rem;
  color: #FFFFFF;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding: 1rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
}
@media screen and (min-width: 768px) {
  .replicate-support .replicate-support__buttons .replicate-support__buttons--element .replicate-support__buttons--element--button {
    font-size: 1.5rem;
  }
}
.replicate-support .replicate-support__buttons .replicate-support__buttons--element .replicate-support__buttons--element--button:hover {
  background-color: #4B977B;
}
.replicate-support .replicate-support__buttons .replicate-support__buttons--element .replicate-support__buttons--element--text {
  font-weight: 300;
  text-align: center;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Contexto
# Descripción del Proyecto
# Indicadores
# Certificado
# Beneficiados
# Soporte

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Contexto
--------------------------------------------------------------*/
.context-section {
  margin: 1rem 0;
  overflow: hidden;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .context-section {
    background: url(../img/tierra-izq.png) center left / 100px no-repeat;
    margin: 3rem 0 1rem;
  }
}
@media screen and (min-width: 992px) {
  .context-section {
    background-size: 150px;
    margin: 3rem 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1600px) {
  .context-section {
    background-size: 200px;
  }
}
.context-section .context-section__title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .context-section .context-section__title {
    font-size: 2rem;
    margin-bottom: 4rem;
    margin-top: 2rem;
  }
}
.context-section .context-section__subtitle {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .context-section .context-section__subtitle {
    margin-bottom: 2rem;
  }
}
.context-section .context-section__content {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  .context-section .context-section__content {
    flex-wrap: nowrap;
  }
}
.context-section .context-section__content .context-section__content--description {
  flex: 0 0 100%;
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .context-section .context-section__content .context-section__content--description {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .context-section .context-section__content .context-section__content--description {
    flex: 1 1 0;
    margin-bottom: 0;
    padding-right: 4rem;
  }
}
.context-section .context-section__content .context-section__content--description .context-section__content--description--map #program-map {
  height: 400px;
}
.context-section .context-section__content .context-section__content--project-detail {
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  flex: 0 0 100%;
  padding: 1rem 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .context-section .context-section__content .context-section__content--project-detail {
    flex: 0 0 100%;
    padding: 2rem 3rem;
  }
}
@media screen and (min-width: 992px) {
  .context-section .context-section__content .context-section__content--project-detail {
    flex: 0 0 auto;
    max-width: 570px;
  }
}
.context-section .context-section__content .context-section__content--project-detail:before {
  background-image: url('../img/hoja-de-coca.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 320px;
  right: -200px;
  position: absolute;
  top: -160px;
  transform: rotate(25deg) scale(0.5, 0.5);
  width: 400px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .context-section .context-section__content .context-section__content--project-detail:before {
    transform: rotate(25deg) scale(1, 1);
  }
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .context-section .context-section__content .context-section__content--project-detail .project-detail__title {
    font-size: 2rem;
  }
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__list {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .context-section .context-section__content .context-section__content--project-detail .project-detail__list {
    margin: 0;
  }
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__list li {
  align-items: center;
  border-bottom: 2px solid #DFE6E5;
  color: #486680;
  display: flex;
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .context-section .context-section__content .context-section__content--project-detail .project-detail__list li {
    margin-bottom: 3rem;
  }
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__list li small {
  display: block;
  flex: 0 0 50%;
  font-size: 1rem;
  font-weight: 400;
  padding-right: 0.5rem;
  text-transform: uppercase;
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__list li img {
  display: block;
  flex: 0 0 50%;
  height: auto;
  max-width: 50%;
}
@media screen and (min-width: 768px) {
  .context-section .context-section__content .context-section__content--project-detail .project-detail__list li img {
    max-width: 170px;
    width: 100%;
  }
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__goals {
  margin-bottom: 3rem;
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__goals .project-detail__goals--title {
  border-bottom: 2px solid #DFE6E5;
  color: #486680;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__goals .project-detail__goals--grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-row: auto;
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__goals .project-detail__goals--grid .project-detail__goals--grid--element img {
  display: block;
  height: 100%;
  width: 100%;
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__goals .project-detail__goals--description {
  color: #486680;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1rem;
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__awards {
  margin-bottom: 3rem;
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__awards .project-detail__awards--title {
  border-bottom: 2px solid #DFE6E5;
  color: #486680;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__awards .project-detail__awards--grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-row: auto;
}
@media screen and (min-width: 768px) {
  .context-section .context-section__content .context-section__content--project-detail .project-detail__awards .project-detail__awards--grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .context-section .context-section__content .context-section__content--project-detail .project-detail__awards .project-detail__awards--grid {
    grid-template-columns: 1fr 1fr;
  }
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__download .project-detail__download--title {
  border-bottom: 2px solid #DFE6E5;
  color: #486680;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__download .project-detail__download--button a {
  align-items: center;
  color: #D7A023;
  display: flex;
  font-size: 1.125rem;
  font-weight: 900;
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__download .project-detail__download--button a svg {
  display: block;
  fill: #D7A023;
  margin-left: 1rem;
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__download .project-detail__download--button a:hover {
  color: #4B977B;
}
.context-section .context-section__content .context-section__content--project-detail .project-detail__download .project-detail__download--button a:hover svg {
  fill: #4B977B;
}
/*--------------------------------------------------------------
# Descripción del Proyecto
--------------------------------------------------------------*/
.project-description {
  background-image: url(../img/bg-program-project.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 1rem 0;
  padding: 4rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .project-description {
    margin: 1rem 0 1rem;
    padding: 8rem 0;
  }
}
.project-description:before {
  background-image: url(../img/certificado-decoracion-top.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .project-description:before {
    height: 60px;
  }
}
.project-description:after {
  background-image: url(../img/certificado-decoracion-bottom.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .project-description:after {
    height: 60px;
  }
}
.project-description .project-description__title {
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .project-description .project-description__title {
    margin-bottom: 4rem;
  }
}
.project-description .project-description__content {
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .project-description .project-description__content {
    font-size: 1.5rem;
  }
}
/*--------------------------------------------------------------
# Indicadores
--------------------------------------------------------------*/
.single-programs .frontpage-indicators {
  background: url(../img/tierra-der.png) center right / 80px no-repeat;
  padding: 1rem 0px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .single-programs .frontpage-indicators {
    background: url(../img/tierra-der.png) center right / 160px no-repeat;
    padding: 3rem 0px;
  }
}
/*--------------------------------------------------------------
# Certificado
--------------------------------------------------------------*/
.project-certificated {
  margin: 1rem 0;
}
@media screen and (min-width: 768px) {
  .project-certificated {
    margin: 6rem 0;
  }
}
.project-certificated .project-certificated__logo {
  flex: 0 0 auto;
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .project-certificated .project-certificated__logo {
    margin-bottom: 0;
  }
}
.project-certificated .project-certificated__logo img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 380px;
  width: 100%;
}
.project-certificated .project-certificated__description {
  flex: 1 1 0;
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .project-certificated .project-certificated__description {
    font-size: 1.5rem;
  }
}
/*--------------------------------------------------------------
# Beneficiados
--------------------------------------------------------------*/
.project-beneficiaries {
  background-color: #EFEFEF;
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .project-beneficiaries {
    padding: 4rem 0;
  }
}
.project-beneficiaries .project-beneficiaries__title {
  margin-bottom: 0rem;
  text-align: center;
}
.project-beneficiaries .project-beneficiaries__carousel {
  position: relative;
}
.project-beneficiaries .project-beneficiaries__carousel .owl-beneficiaries-carousel {
  position: static;
}
.project-beneficiaries .project-beneficiaries__carousel .project-beneficiaries__carousel--element {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .project-beneficiaries .project-beneficiaries__carousel .project-beneficiaries__carousel--element {
    padding: 6rem 6rem 2rem 6rem;
  }
}
@media screen and (min-width: 992px) {
  .project-beneficiaries .project-beneficiaries__carousel .project-beneficiaries__carousel--element {
    flex-wrap: nowrap;
  }
}
.project-beneficiaries .project-beneficiaries__carousel .project-beneficiaries__carousel--element .project-beneficiaries__carousel--element--image {
  flex: 0 0 100%;
  margin-bottom: 1rem;
  position: relative;
}
@media screen and (min-width: 992px) {
  .project-beneficiaries .project-beneficiaries__carousel .project-beneficiaries__carousel--element .project-beneficiaries__carousel--element--image {
    flex: 0 0 auto;
    margin-bottom: 0;
    margin-right: 2rem;
  }
}
.project-beneficiaries .project-beneficiaries__carousel .project-beneficiaries__carousel--element .project-beneficiaries__carousel--element--image:before {
  background-image: url('../img/hoja-de-coca.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: none;
  height: 160px;
  left: -100px;
  position: absolute;
  top: -100px;
  transform: rotate(-30deg);
  width: 200px;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .project-beneficiaries .project-beneficiaries__carousel .project-beneficiaries__carousel--element .project-beneficiaries__carousel--element--image:before {
    display: block;
  }
}
.project-beneficiaries .project-beneficiaries__carousel .project-beneficiaries__carousel--element .project-beneficiaries__carousel--element--image img {
  border-radius: 1rem;
  display: block;
  height: 250px;
  object-fit: cover;
  object-position: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .project-beneficiaries .project-beneficiaries__carousel .project-beneficiaries__carousel--element .project-beneficiaries__carousel--element--image img {
    height: 450px;
    width: 600px;
  }
}
.project-beneficiaries .project-beneficiaries__carousel .project-beneficiaries__carousel--element .project-beneficiaries__carousel--element--description {
  color: #1D1D1B;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .project-beneficiaries .project-beneficiaries__carousel .project-beneficiaries__carousel--element .project-beneficiaries__carousel--element--description {
    font-size: 1.5rem;
  }
}
.project-beneficiaries .project-beneficiaries__carousel .project-beneficiaries__carousel--element .project-beneficiaries__carousel--element--description .italic {
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0;
}
.project-beneficiaries .project-beneficiaries__carousel .owl-nav .owl-prev,
.project-beneficiaries .project-beneficiaries__carousel .owl-nav .owl-next {
  align-items: center;
  background-color: rgba(60, 60, 59, 0.6);
  display: flex;
  height: 70px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
}
.project-beneficiaries .project-beneficiaries__carousel .owl-nav .owl-prev img,
.project-beneficiaries .project-beneficiaries__carousel .owl-nav .owl-next img {
  display: block;
  flex: 0 0 auto;
  height: auto;
  width: 10px;
}
.project-beneficiaries .project-beneficiaries__carousel .owl-nav .owl-prev {
  border-radius: 0 4px 4px 0;
  left: 0;
}
.project-beneficiaries .project-beneficiaries__carousel .owl-nav .owl-next {
  border-radius: 4px 0 0 4px;
  right: 0;
}
.project-beneficiaries .project-beneficiaries__carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin: 0 0 1rem;
}
@media screen and (min-width: 768px) {
  .project-beneficiaries .project-beneficiaries__carousel .owl-dots {
    margin: 3rem 0 1rem;
  }
}
.project-beneficiaries .project-beneficiaries__carousel .owl-dots .owl-dot {
  background-color: #CBCBCB;
  border: 2px solid #CBCBCB;
  border-radius: 100%;
  height: 1.125rem;
  margin-left: 10px;
  width: 1.125rem;
}
.project-beneficiaries .project-beneficiaries__carousel .owl-dots .owl-dot:first-child {
  margin-left: 0;
}
.project-beneficiaries .project-beneficiaries__carousel .owl-dots .owl-dot.active {
  background-color: transparent;
}
/*--------------------------------------------------------------
# Soporte
--------------------------------------------------------------*/
.project-support {
  margin: 2rem 0;
}
@media screen and (min-width: 768px) {
  .project-support {
    margin: 5rem 0 6rem;
  }
}
.project-support .project-support__description {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  text-align: center;
}
.project-support .project-support__button {
  text-align: center;
}
.project-support .project-support__button a {
  background-color: #D7A023;
  border-radius: 1rem;
  color: #FFFFFF;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0 1rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.4s ease;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .project-support .project-support__button a {
    font-size: 1.5rem;
  }
}
.project-support .project-support__button a:hover {
  background-color: #4B977B;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Tipo de Proyecto
# Contexto
# Resumen del Proyecto
# Objetivos del Proyecto
# Galería
# Soporte

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Tipo de Proyecto
--------------------------------------------------------------*/
.project-type {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .project-type {
    margin-bottom: 2rem;
  }
}
.project-type .project-type__icon svg {
  display: block;
  height: 60px;
  margin: 0 auto 1rem;
  width: 60px;
}
@media screen and (min-width: 768px) {
  .project-type .project-type__icon svg {
    height: 90px;
    margin: 0 auto 2rem;
    width: 90px;
  }
}
.project-type .project-type__icon svg path {
  fill: #344662;
  stroke: #344662;
}
.project-type .project-type__name {
  margin-bottom: 1.5rem;
  text-align: center;
}
/*--------------------------------------------------------------
# Contexto
--------------------------------------------------------------*/
.projects-context-section .context-section__title {
  color: #AD5C31;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .projects-context-section .context-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.projects-context-section .context-section__subtitle {
  color: #D7A023;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .projects-context-section .context-section__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.projects-context-section .context-section__content {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  .projects-context-section .context-section__content {
    flex-wrap: nowrap;
  }
}
.projects-context-section .context-section__content .context-section__content--description {
  flex: 0 0 100%;
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .projects-context-section .context-section__content .context-section__content--description {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .projects-context-section .context-section__content .context-section__content--description {
    flex: 1 1 0;
    padding-right: 3rem;
  }
}
.projects-context-section .context-section__content .context-section__content--map {
  flex: 0 0 100%;
}
@media screen and (min-width: 992px) {
  .projects-context-section .context-section__content .context-section__content--map {
    flex: 0 0 auto;
    width: 500px;
  }
}
.projects-context-section .context-section__content .context-section__content--map #program-map {
  height: 250px;
}
@media screen and (min-width: 768px) {
  .projects-context-section .context-section__content .context-section__content--map #program-map {
    height: 400px;
  }
}
/*--------------------------------------------------------------
# Resumen del Proyecto
--------------------------------------------------------------*/
.project-summary {
  background-image: url(../img/project-summary-fondo.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 4rem 0 1rem;
  padding: 3rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .project-summary {
    padding: 6rem 0;
  }
}
.project-summary:before {
  background-image: url(../img/project-summary-top.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 60px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateY(-70%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .project-summary:before {
    background-size: contain;
    height: 80px;
  }
}
@media screen and (min-width: 992px) {
  .project-summary:before {
    height: 150px;
    top: -10px;
  }
}
.project-summary:after {
  background-image: url(../img/project-summary-bottom.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 60px;
  left: 0;
  pointer-events: none;
  position: absolute;
  transform: translateY(70%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .project-summary:after {
    background-size: contain;
    height: 80px;
  }
}
@media screen and (min-width: 992px) {
  .project-summary:after {
    height: 150px;
    bottom: -10px;
  }
}
.project-summary .leaf-top {
  background-image: url('../img/hoja-de-coca.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 160px;
  left: 50px;
  position: absolute;
  top: -40px;
  transform: rotate(0deg) scale(0.7, 0.7);
  width: 200px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .project-summary .leaf-top {
    left: 50px;
    transform: rotate(0deg) scale(0.85, 0.85);
    top: -70px;
  }
}
@media screen and (min-width: 992px) {
  .project-summary .leaf-top {
    transform: rotate(0deg) scale(1, 1);
    top: -80px;
  }
}
.project-summary .leaf-bottom {
  background-image: url('../img/hoja-de-coca.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -70px;
  content: '';
  display: block;
  height: 160px;
  position: absolute;
  right: 50px;
  transform: rotate(180deg) scale(0.7, 0.7);
  width: 200px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .project-summary .leaf-bottom {
    bottom: -80px;
    right: 50px;
    transform: rotate(180deg) scale(0.85, 0.85);
  }
}
@media screen and (min-width: 992px) {
  .project-summary .leaf-bottom {
    bottom: -100px;
    transform: rotate(180deg) scale(1, 1);
  }
}
.project-summary .project-summary__title {
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .project-summary .project-summary__title {
    margin-bottom: 4rem;
  }
}
.project-summary .project-summary__content {
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .project-summary .project-summary__content {
    font-size: 1.5rem;
    padding-right: 2rem;
  }
}
.project-summary .project-summary__content strong {
  font-weight: bold;
}
/*--------------------------------------------------------------
# Objetivos del Proyecto
--------------------------------------------------------------*/
.project-goal {
  margin: 6rem 0;
}
.project-goal .project-goal__title {
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .project-goal .project-goal__title {
    margin-bottom: 6rem;
  }
}
.project-goal .project-goal__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .project-goal .project-goal__description {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}
.project-goal .project-goal__grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  margin: 0 auto 2rem;
  max-width: 920px;
}
@media screen and (min-width: 768px) {
  .project-goal .project-goal__grid {
    gap: 3rem;
    margin: 0 auto 3rem;
  }
}
.project-goal .project-goal__indicator {
  align-items: center;
  display: flex;
  justify-content: center;
}
.project-goal .project-goal__indicator .project-goal__indicator--min,
.project-goal .project-goal__indicator .project-goal__indicator--max {
  color: #000;
  flex: 1 1 0;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .project-goal .project-goal__indicator .project-goal__indicator--min,
  .project-goal .project-goal__indicator .project-goal__indicator--max {
    font-size: 1.5rem;
  }
}
.project-goal .project-goal__indicator .project-goal__indicator--min {
  padding-right: 1rem;
  text-align: right;
}
.project-goal .project-goal__indicator .project-goal__indicator--max {
  padding-left: 1rem;
  text-align: left;
}
.project-goal .project-goal__indicator .project-goal__indicator--bar {
  background-color: #E5BE7F;
  border-radius: 0.5rem;
  display: flex;
  height: 40px;
  flex: 0 1 920px;
}
.project-goal .project-goal__indicator .project-goal__indicator--bar .project-goal__indicator--bar--fill {
  background-color: #D7A023;
  border-radius: 1rem;
  flex: 0 0 auto;
  min-width: 10px;
}
/*--------------------------------------------------------------
# Galería
--------------------------------------------------------------*/
.gallery-images {
  background-color: #F1F1F1;
  padding: 2rem 0;
  position: relative;
}
.gallery-images .gallery-images__title {
  text-align: center;
}
.gallery-images .owl-gallery-images .owl-stage-outer {
  position: static;
}
.gallery-images .owl-gallery-images .gallery-image {
  height: 250px;
}
@media screen and (min-width: 768px) {
  .gallery-images .owl-gallery-images .gallery-image {
    height: 350px;
  }
}
@media screen and (min-width: 992px) {
  .gallery-images .owl-gallery-images .gallery-image {
    height: 520px;
  }
}
.gallery-images .owl-gallery-images .gallery-image img {
  border-radius: 1rem;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.gallery-images .owl-gallery-images .owl-nav .owl-prev,
.gallery-images .owl-gallery-images .owl-nav .owl-next {
  align-items: center;
  background-color: rgba(60, 60, 59, 0.3);
  display: flex;
  height: 70px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
}
.gallery-images .owl-gallery-images .owl-nav .owl-prev img,
.gallery-images .owl-gallery-images .owl-nav .owl-next img {
  display: block;
  flex: 0 0 auto;
  height: auto;
  width: 10px;
}
.gallery-images .owl-gallery-images .owl-nav .owl-prev {
  border-radius: 0 4px 4px 0;
  left: 0;
}
.gallery-images .owl-gallery-images .owl-nav .owl-next {
  border-radius: 4px 0 0 4px;
  right: 0;
}
.gallery-images .owl-gallery-images .owl-dots {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .gallery-images .owl-gallery-images .owl-dots {
    margin: 3rem 0 1rem;
  }
}
.gallery-images .owl-gallery-images .owl-dots .owl-dot {
  background-color: #CBCBCB;
  border: 2px solid #CBCBCB;
  border-radius: 100%;
  height: 1.125rem;
  margin-left: 10px;
  width: 1.125rem;
}
.gallery-images .owl-gallery-images .owl-dots .owl-dot:first-child {
  margin-left: 0;
}
.gallery-images .owl-gallery-images .owl-dots .owl-dot.active {
  background-color: transparent;
}
/*--------------------------------------------------------------
# Beneficiados
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Soporte
--------------------------------------------------------------*/
.project-support .project-support__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .project-support .project-support__description {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}
.project-support .project-support__button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .project-support .project-support__button {
    flex-wrap: nowrap;
  }
}
.project-support .project-support__button a {
  background-color: #D7A023;
  border-radius: 1rem;
  color: #FFFFFF;
  display: block;
  flex: 0 0 100%;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1rem;
  min-width: 200px;
  padding: 0.5rem 1.5rem;
  transition: all 0.4s ease;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .project-support .project-support__button a {
    flex: 0 0 auto;
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}
.project-support .project-support__button a:hover {
  background-color: #4B977B;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Descripción
# Proyectos

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Descripción
--------------------------------------------------------------*/
.sustainable .sustainable__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sustainable .sustainable__description {
    font-size: 1.5rem;
    margin-bottom: 6rem;
  }
}
/*--------------------------------------------------------------
# Proyectos
--------------------------------------------------------------*/
@media screen and (min-width: 992px) {
  .sustainable-projects {
    background: url(../img/tierra-izq.png) bottom left / 150px no-repeat, url(../img/tierra-der.png) top right / 150px no-repeat;
  }
}
.sustainable-projects .sustainable-projects__title {
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sustainable-projects .sustainable-projects__title {
    margin-bottom: 6rem;
  }
}
.sustainable-projects .sustainable-projects__element {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  .sustainable-projects .sustainable-projects__element {
    flex-wrap: nowrap;
    margin-bottom: 6rem;
  }
}
.sustainable-projects .sustainable-projects__element.sustainable-projects__element--inverse .sustainable-projects__element--info {
  order: 2;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .sustainable-projects .sustainable-projects__element.sustainable-projects__element--inverse .sustainable-projects__element--info {
    order: 1;
    padding-left: 0;
    padding-right: 1rem;
  }
}
.sustainable-projects .sustainable-projects__element.sustainable-projects__element--inverse .sustainable-projects__element--image {
  order: 1;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .sustainable-projects .sustainable-projects__element.sustainable-projects__element--inverse .sustainable-projects__element--image {
    order: 2;
    padding-left: 1rem;
    padding-right: 0;
  }
}
.sustainable-projects .sustainable-projects__element.sustainable-projects__element--inverse:nth-child(2n) .sustainable-projects__element--info {
  order: 2;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .sustainable-projects .sustainable-projects__element.sustainable-projects__element--inverse:nth-child(2n) .sustainable-projects__element--info {
    padding-left: 1rem;
    padding-right: 0;
  }
}
.sustainable-projects .sustainable-projects__element.sustainable-projects__element--inverse:nth-child(2n) .sustainable-projects__element--image {
  order: 1;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .sustainable-projects .sustainable-projects__element.sustainable-projects__element--inverse:nth-child(2n) .sustainable-projects__element--image {
    padding-left: 0;
    padding-right: 1rem;
  }
}
.sustainable-projects .sustainable-projects__element .sustainable-projects__element--info {
  flex: 0 0 100%;
  order: 2;
}
@media screen and (min-width: 992px) {
  .sustainable-projects .sustainable-projects__element .sustainable-projects__element--info {
    flex: 0 0 60%;
    padding-left: 1rem;
  }
}
.sustainable-projects .sustainable-projects__element .sustainable-projects__element--info .info__title {
  color: #AD5C31;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .sustainable-projects .sustainable-projects__element .sustainable-projects__element--info .info__title {
    font-size: 2rem;
  }
}
.sustainable-projects .sustainable-projects__element .sustainable-projects__element--info .info__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 1rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .sustainable-projects .sustainable-projects__element .sustainable-projects__element--info .info__description {
    font-size: 1.5rem;
  }
}
.sustainable-projects .sustainable-projects__element .sustainable-projects__element--info .info__description strong {
  font-weight: bold;
}
.sustainable-projects .sustainable-projects__element .sustainable-projects__element--image {
  flex: 0 0 100%;
  margin-bottom: 2rem;
  order: 1;
}
@media screen and (min-width: 992px) {
  .sustainable-projects .sustainable-projects__element .sustainable-projects__element--image {
    flex: 0 0 40%;
    margin-bottom: 0;
    padding-right: 1rem;
  }
}
.sustainable-projects .sustainable-projects__element .sustainable-projects__element--image img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sustainable-projects .sustainable-projects__element .sustainable-projects__element--image img {
    margin: 0 auto;
    width: 60%;
  }
}
@media screen and (min-width: 992px) {
  .sustainable-projects .sustainable-projects__element .sustainable-projects__element--image img {
    margin: 0;
    width: 100%;
  }
}
.sustainable-projects .sustainable-projects__element:nth-child(2n) .sustainable-projects__element--info {
  order: 2;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .sustainable-projects .sustainable-projects__element:nth-child(2n) .sustainable-projects__element--info {
    order: 1;
    padding-right: 1rem;
    padding-left: 0;
  }
}
.sustainable-projects .sustainable-projects__element:nth-child(2n) .sustainable-projects__element--image {
  order: 1;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .sustainable-projects .sustainable-projects__element:nth-child(2n) .sustainable-projects__element--image {
    order: 2;
    padding-left: 1rem;
    padding-right: 0;
  }
}
.sustainable-projects .sustainable-projects__element:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/
.sustainable-contact {
  margin: 3rem 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .sustainable-contact {
    margin: 6rem 0;
  }
}
.sustainable-contact .sustainable-contact__title {
  text-align: center;
}
.sustainable-contact .sustainable-contact__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sustainable-contact .sustainable-contact__description {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Filtro
# Post

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Filtro
--------------------------------------------------------------*/
.news-filters .featured-projects__filter {
  margin: 0rem 0 3rem;
}
/*--------------------------------------------------------------
# Post
--------------------------------------------------------------*/
.news-grid {
  margin-bottom: 8rem;
}
.news-grid .container {
  display: flex;
  flex-wrap: wrap;
}
.news-grid .container .row {
  flex: 0 0 100%;
}
.news-grid .container .row:first-child {
  order: 2;
}
@media screen and (min-width: 992px) {
  .news-grid .container .row:first-child {
    order: 1;
  }
}
.news-grid .container .row:last-child {
  margin-bottom: 3rem;
  order: 1;
}
@media screen and (min-width: 992px) {
  .news-grid .container .row:last-child {
    margin-bottom: 0;
    order: 2;
  }
}
.featured-post__box {
  background-color: #F1F1F1;
  border-radius: 1rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 3rem;
}
@media screen and (min-width: 1140px) {
  .featured-post__box {
    margin-bottom: 0;
  }
}
.featured-post {
  display: block;
  margin-bottom: 3rem;
  padding: 3rem 2rem 1.5rem;
}
@media screen and (min-width: 992px) {
  .featured-post {
    margin-bottom: 0;
  }
}
.featured-post .featured-post__user {
  display: flex;
  margin-bottom: 1rem;
}
.featured-post .featured-post__user .featured-post__avatar {
  align-items: center;
  background-color: #D7A023;
  border-radius: 0.5rem;
  display: flex;
  height: 30px;
  justify-content: center;
  margin-right: 10px;
  width: 30px;
}
.featured-post .featured-post__user .featured-post__avatar img {
  display: block;
  height: 20px;
  object-fit: contain;
  object-position: center;
  width: 20px;
}
.featured-post .featured-post__user .featured-post__profile-info {
  color: #344662;
}
.featured-post .featured-post__user .featured-post__profile-info .featured-post__name {
  font-size: 1.25rem;
}
.featured-post .featured-post__user .featured-post__profile-info .featured-post__time {
  font-size: 0.875rem;
}
.featured-post .featured-post__extract {
  color: #344662;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .featured-post .featured-post__extract {
    font-size: 1.25rem;
  }
}
.featured-post .featured-post__featured-image img {
  border-radius: 1rem;
  display: block;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .featured-post .featured-post__featured-image img {
    height: 300px;
  }
}
.featured-post .post-not-found {
  font-size: 1.25rem;
  padding-bottom: 3rem;
}
.featured-post__view-all {
  border-top: 1px solid #CBCBCB;
  color: #CBCBCB;
  display: block;
  font-size: 1.25rem;
  font-weight: 300;
  padding: 1.5rem 2rem;
  text-align: center;
}
.featured-post__view-all:hover {
  color: #4B977B;
}
.subscribe-box {
  align-items: center;
  align-content: center;
  background-color: #344662;
  border-radius: 1rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  color: #FFF;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  padding: 3rem 2rem;
}
.subscribe-box .subscribe-box__title {
  flex: 0 0 100%;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1rem;
}
.subscribe-box .subscribe-box__subtitle {
  flex: 0 0 100%;
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.subscribe-box .subscribe-box__form {
  flex: 0 0 100%;
}
.subscribe-box .subscribe-box__form .nf-form-cont .nf-form-wrap .nf-form-layout .nf-before-form-content {
  display: none;
}
.subscribe-box .subscribe-box__form .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .firstname-container .nf-field .field-wrap .nf-field-element input,
.subscribe-box .subscribe-box__form .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .lastname-container .nf-field .field-wrap .nf-field-element input,
.subscribe-box .subscribe-box__form .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .email-container .nf-field .field-wrap .nf-field-element input {
  border-radius: 0.5rem;
  height: 40px;
}
.subscribe-box .subscribe-box__form .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .firstname-container .nf-field .field-wrap.nf-error .nf-field-element:after,
.subscribe-box .subscribe-box__form .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .lastname-container .nf-field .field-wrap.nf-error .nf-field-element:after,
.subscribe-box .subscribe-box__form .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .email-container .nf-field .field-wrap.nf-error .nf-field-element:after {
  border-radius: 0 0.5rem 0.5rem 0;
  height: 38px;
  line-height: 40px;
}
.subscribe-box .subscribe-box__form .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .checkbox-container .nf-field .field-wrap .nf-field-label label {
  font-size: 1rem;
  font-weight: normal;
}
.subscribe-box .subscribe-box__form .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .checkbox-container .nf-field .field-wrap .nf-field-label label span {
  display: none;
}
.subscribe-box .subscribe-box__form .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .checkbox-container .nf-field .field-wrap .nf-field-label label:before,
.subscribe-box .subscribe-box__form .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .checkbox-container .nf-field .field-wrap .nf-field-label label:after {
  border-radius: 100%;
}
.subscribe-box .subscribe-box__form .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .submit-container .nf-field .field-wrap .nf-field-element input {
  background-color: #D7A023;
  border-radius: 0.5rem;
  color: #FFFFFF;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  height: 40px;
  padding: 0 1rem;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease;
  width: 100%;
}
.subscribe-box .subscribe-box__form .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .submit-container .nf-field .field-wrap .nf-field-element input:hover {
  background-color: #4B977B;
}
.simple-post {
  background-color: #F1F1F1;
  border-radius: 1rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  display: block;
}
.simple-post .simple-post__featured-image {
  border-radius: 1rem 1rem 0 0;
  height: 300px;
  overflow: hidden;
}
.simple-post .simple-post__featured-image img {
  border-radius: 1rem 1rem 0 0;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.simple-post .simple-post__info {
  color: #344662;
  border-radius: 0 0 1rem 1rem;
  padding: 2rem 1rem 1rem;
}
.simple-post .simple-post__info .simple-post__title {
  color: #344662;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .simple-post .simple-post__info .simple-post__title {
    font-size: 2rem;
  }
}
.simple-post .simple-post__info .simple-post__title a {
  color: #344662;
}
.simple-post .simple-post__info .simple-post__meta {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .simple-post .simple-post__info .simple-post__meta {
    font-size: 1.5rem;
  }
}
.simple-post .simple-post__info .simple-post__meta .simple-post__category {
  color: #344662;
  font-weight: bold;
}
.simple-post .simple-post__info .simple-post__extract {
  font-size: 1.125rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .simple-post .simple-post__info .simple-post__extract {
    font-size: 1.25rem;
  }
}
.simple-post .simple-post__info .simple-post__button {
  display: flex;
  justify-content: flex-end;
}
.simple-post .simple-post__info .simple-post__button svg {
  height: 37px;
  width: 39px;
}
.simple-post .simple-post__info .simple-post__button svg .st0 {
  fill: #D7A023;
}
.simple-post .simple-post__info .simple-post__button svg .st1 {
  fill: #FFFFFF;
}
.simple-post:hover .simple-post__info .simple-post__button svg .st0 {
  fill: #4B977B;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Banner
# Contenido
# Te puede interesar

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.post__header {
  align-items: flex-end;
  align-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  min-height: 250px;
  padding: 2rem 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .post__header {
    min-height: 500px;
    padding: 4rem 2rem;
  }
}
@media screen and (min-width: 992px) {
  .post__header {
    min-height: 800px;
    padding: 10rem 7rem;
  }
}
.post__header .post__featured-image {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.post__header .post__featured-image .post-thumbnail {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.post__header .post__featured-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.post__header .post__category {
  color: #FFFFFF;
  flex: 0 0 100%;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .post__header .post__category {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 992px) {
  .post__header .post__category {
    font-size: 2.5rem;
  }
}
.post__header .post__category span {
  border-bottom: 2px solid #D7A023;
  border-top: 2px solid #D7A023;
}
.post__header .post__title h1 {
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .post__header .post__title h1 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .post__header .post__title h1 {
    font-size: 5rem;
  }
}
.post__header .post__posted-on {
  color: #FFFFFF;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .post__header .post__posted-on {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 992px) {
  .post__header .post__posted-on {
    font-size: 2.5rem;
  }
}
/*--------------------------------------------------------------
# Compartir
--------------------------------------------------------------*/
.rrss-sharing {
  background-color: #F1F1F1;
  border-radius: 1rem;
  margin: 1.5rem auto 0;
  padding: 10px;
}
@media screen and (min-width: 992px) {
  .rrss-sharing {
    margin: 3rem auto 0;
    max-width: 70px;
  }
}
.rrss-sharing .rrss-sharing__title {
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
.rrss-sharing .addtoany_shortcode .addtoany_list {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .rrss-sharing .addtoany_shortcode .addtoany_list {
    display: block;
  }
}
.rrss-sharing .addtoany_shortcode .addtoany_list a {
  display: block;
  margin: 0 0 0 10px;
  padding: 0;
  width: 32px;
}
.rrss-sharing .addtoany_shortcode .addtoany_list a:first-child {
  margin-left: 0;
}
@media screen and (min-width: 992px) {
  .rrss-sharing .addtoany_shortcode .addtoany_list a {
    margin: 0 auto 10px;
  }
  .rrss-sharing .addtoany_shortcode .addtoany_list a:first-child {
    margin-left: auto;
  }
}
.rrss-sharing .addtoany_shortcode .addtoany_list a span {
  align-items: center;
  border-radius: 100%;
  display: flex;
  justify-content: center;
}
.rrss-sharing .addtoany_shortcode .addtoany_list a span svg {
  width: 24px;
}
.rrss-sharing .addtoany_shortcode .addtoany_list a.addtoany_share {
  display: none !important;
}
/*--------------------------------------------------------------
# Contenido
--------------------------------------------------------------*/
.post__content {
  color: #344662;
  font-size: 1.125rem;
  font-weight: 300;
  padding: 1.5rem 0;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .post__content {
    padding: 3rem 0;
    font-size: 1.5rem;
  }
}
.post__content strong {
  font-weight: bold;
}
.post__content h4 {
  margin-bottom: 1rem;
}
.post__content p a {
  color: #D7A023;
}
.post__tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0rem 0 2rem;
}
.post__tags .post__label {
  color: #486680;
  flex: 0 0 100%;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .post__tags .post__label {
    flex: 0 0 auto;
    margin-bottom: 0;
    margin-right: 2rem;
  }
}
.post__tags .post__tag {
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  color: #486680;
  flex: 0 0 auto;
  font-size: 1.125rem;
  margin: 0 0.5rem 1rem 0;
  padding: 0.25rem 1rem;
}
@media screen and (min-width: 768px) {
  .post__tags .post__tag {
    flex: 0 0 auto;
    font-size: 1.5rem;
    margin: 0 1rem 0.5rem;
  }
}
/*--------------------------------------------------------------
# Te puede interesar
--------------------------------------------------------------*/
.also-like {
  background-color: #EFEFEF;
  margin-bottom: -6rem;
  margin-top: 2rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .also-like {
    margin-top: 8rem;
    padding-bottom: 6rem;
  }
}
.also-like .decoration {
  background-image: url(../img/bg-also-like.svg);
  background-position: center top;
  background-size: cover;
  height: 60px;
  margin-bottom: -60px;
  transform: translateY(-100%);
}
@media screen and (min-width: 768px) {
  .also-like .decoration {
    height: 100px;
    margin-bottom: -100px;
  }
}
.also-like .also-like__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Carbon
# Process
# Results
# Impact
# Programmes
# CTA
# Contact

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Carbon
--------------------------------------------------------------*/
.carbon-description .carbon-description__text {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .carbon-description .carbon-description__text {
    font-size: 1.25rem;
  }
}
/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/
.carbon-process {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .carbon-process {
    margin-bottom: 4rem;
  }
}
.carbon-process .carbon-process__title {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .carbon-process .carbon-process__steps {
    padding: 150px 0;
    position: relative;
  }
}
.carbon-process .carbon-process__steps .carbon-process__step-image {
  display: none;
}
@media screen and (min-width: 992px) {
  .carbon-process .carbon-process__steps .carbon-process__step-image {
    display: block;
  }
}
.carbon-process .carbon-process__steps .carbon-process__step-image img {
  display: block;
  height: auto;
  margin: 0 auto;
  width: 1100px;
}
.carbon-process .carbon-process__steps .step {
  margin-bottom: 0.5rem;
  padding-bottom: 5rem;
  position: relative;
}
@media screen and (min-width: 992px) {
  .carbon-process .carbon-process__steps .step {
    display: none;
    margin-bottom: 0;
    padding-bottom: 0;
    position: absolute;
    text-align: center;
    width: 300px;
  }
}
.carbon-process .carbon-process__steps .step:after {
  background: repeating-linear-gradient(to bottom, transparent 0 6px, #D7A023 6px 12px) 40% 100% no-repeat;
  bottom: 0;
  content: '';
  display: block;
  height: 4.5rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 2px;
}
@media screen and (min-width: 992px) {
  .carbon-process .carbon-process__steps .step:after {
    display: none;
  }
}
.carbon-process .carbon-process__steps .step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.carbon-process .carbon-process__steps .step:last-child::after {
  content: none;
}
.carbon-process .carbon-process__steps .step .step__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .carbon-process .carbon-process__steps .step .step__title {
    text-align: left;
  }
}
.carbon-process .carbon-process__steps .step .step__description {
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .carbon-process .carbon-process__steps .step .step__description {
    text-align: left;
  }
}
.carbon-process .carbon-process__steps .step .step__icon {
  margin-top: 1rem;
}
@media screen and (min-width: 992px) {
  .carbon-process .carbon-process__steps .step .step__icon {
    margin-top: 0;
  }
}
.carbon-process .carbon-process__steps .step .step__icon img {
  display: block;
  height: auto;
  margin: 0 auto;
  width: 60px;
}
@media screen and (min-width: 992px) {
  .carbon-process .carbon-process__steps .step.step-1,
  .carbon-process .carbon-process__steps .step.step-3,
  .carbon-process .carbon-process__steps .step.step-5,
  .carbon-process .carbon-process__steps .step.step-7 {
    bottom: 270px;
  }
  .carbon-process .carbon-process__steps .step.step-2,
  .carbon-process .carbon-process__steps .step.step-4,
  .carbon-process .carbon-process__steps .step.step-6,
  .carbon-process .carbon-process__steps .step.step-8 {
    top: 270px;
  }
  .carbon-process .carbon-process__steps .step.step-1 {
    display: block;
    left: -45px;
  }
  .carbon-process .carbon-process__steps .step.step-1 .step__icon {
    left: 0;
    position: absolute;
    top: calc(100% + 45px);
    width: 100%;
  }
  .carbon-process .carbon-process__steps .step.step-2 {
    display: block;
    left: 120px;
  }
  .carbon-process .carbon-process__steps .step.step-3 {
    display: block;
    left: 300px;
    width: 230px;
  }
  .carbon-process .carbon-process__steps .step.step-4 {
    display: block;
    left: 445px;
    width: 260px;
  }
  .carbon-process .carbon-process__steps .step.step-5 {
    display: block;
    left: 575px;
  }
  .carbon-process .carbon-process__steps .step.step-6 {
    display: block;
    left: 730px;
  }
  .carbon-process .carbon-process__steps .step.step-7 {
    display: block;
    left: 900px;
    width: 260px;
  }
  .carbon-process .carbon-process__steps .step.step-8 {
    display: block;
    left: 1040px;
  }
  .carbon-process .carbon-process__steps .step.step-8 .step__icon {
    left: 0;
    position: absolute;
    bottom: calc(100% + 45px);
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Results
--------------------------------------------------------------*/
.carbon-results {
  background-image: url(../img/results-and-impact-fondo.png);
  background-size: cover;
  background-position: center;
  padding: 8rem 0 8rem;
}
@media screen and (min-width: 768px) {
  .carbon-results {
    padding: 8rem 0 4rem;
  }
}
.carbon-results .carbon-results__title {
  text-align: center;
}
.carbon-results .carbon-results__steps {
  position: relative;
}
@media screen and (min-width: 768px) {
  .carbon-results .carbon-results__steps {
    margin: 0 auto;
    padding: 90px 0;
    width: 546px;
  }
}
.carbon-results .carbon-results__steps .steps__background {
  background-image: url(../img/results-steps-after.png);
  background-position: center top;
  background-size: contain;
  background-repeat: repeat-y;
  bottom: 30px;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  top: 30px;
  transform: translateX(-50%);
  width: 119px;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .carbon-results .carbon-results__steps .steps__background {
    background-image: none;
    display: block;
    left: auto;
    position: relative;
    top: auto;
    transform: none;
    width: auto;
  }
}
.carbon-results .carbon-results__steps .steps__background img {
  display: none;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .carbon-results .carbon-results__steps .steps__background img {
    display: block;
  }
}
.carbon-results .carbon-results__steps .steps__grid {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .carbon-results .carbon-results__steps .steps__grid {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
  }
}
.carbon-results .carbon-results__steps .steps__grid .step {
  background-size: 100% 100%;
  margin-bottom: 3rem;
}
.carbon-results .carbon-results__steps .steps__grid .step:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .carbon-results .carbon-results__steps .steps__grid .step {
    margin-bottom: 0;
  }
}
.carbon-results .carbon-results__steps .steps__grid .step .step__icon {
  height: 65px;
  margin: 0 auto 0.5rem;
  width: 85px;
}
.carbon-results .carbon-results__steps .steps__grid .step .step__icon img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}
.carbon-results .carbon-results__steps .steps__grid .step .step__description {
  color: #486680;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.carbon-results .carbon-results__steps .steps__grid .step.step-1 {
  background-image: url(../img/results-step-1.png);
  padding: 1.5rem 2.5rem 3.5rem 2rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .carbon-results .carbon-results__steps .steps__grid .step.step-1 {
    width: 330px;
  }
}
.carbon-results .carbon-results__steps .steps__grid .step.step-2 {
  background-image: url(../img/results-step-2.png);
  margin-left: auto;
  padding: 1.5rem 2.5rem 3.5rem 2rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .carbon-results .carbon-results__steps .steps__grid .step.step-2 {
    transform: translateX(110px);
    width: 330px;
  }
}
@media screen and (min-width: 992px) {
  .carbon-results .carbon-results__steps .steps__grid .step.step-2 {
    transform: translateX(120px);
  }
}
.carbon-results .carbon-results__steps .steps__grid .step.step-3 {
  background-image: url(../img/results-step-3.png);
  padding: 1.5rem 2.5rem 3.5rem 2rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .carbon-results .carbon-results__steps .steps__grid .step.step-3 {
    transform: translate(-100px, -125px);
    width: 330px;
  }
}
@media screen and (min-width: 992px) {
  .carbon-results .carbon-results__steps .steps__grid .step.step-3 {
    transform: translate(-145px, -120px);
  }
}
.carbon-results .carbon-results__steps .steps__grid .step.step-4 {
  background-image: url(../img/results-step-4.png);
  margin-left: auto;
  padding: 1.5rem 2.5rem 3.5rem 2rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .carbon-results .carbon-results__steps .steps__grid .step.step-4 {
    transform: translate(110px, -145px);
    width: 330px;
  }
}
@media screen and (min-width: 992px) {
  .carbon-results .carbon-results__steps .steps__grid .step.step-4 {
    transform: translate(230px, -130px);
  }
}
.carbon-results .carbon-results__steps .steps__grid .step.step-5 {
  background-image: url(../img/results-step-5.png);
  padding: 1.5rem 2.5rem 3.5rem 2rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .carbon-results .carbon-results__steps .steps__grid .step.step-5 {
    transform: translate(-45px, -185px);
    width: 330px;
  }
}
/*--------------------------------------------------------------
# Impact
--------------------------------------------------------------*/
.carbon-impact {
  margin: 1rem 0 2rem;
}
@media screen and (min-width: 768px) {
  .carbon-impact {
    margin: 5rem 0;
  }
}
.carbon-impact .carbon-impact__title {
  text-align: center;
}
.carbon-impact .carbon-impact__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .carbon-impact .carbon-impact__description {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
.carbon-impact .carbon-impact__goals {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 60px 60px 60px 60px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .carbon-impact .carbon-impact__goals {
    gap: 1rem;
    grid-template-columns: 120px 120px 120px 120px;
  }
}
@media screen and (min-width: 992px) {
  .carbon-impact .carbon-impact__goals {
    grid-template-columns: 162px 162px 162px 162px;
  }
}
.carbon-impact .carbon-impact__goals .carbon-impact__goals--element {
  height: 60px;
  width: 60px;
}
@media screen and (min-width: 768px) {
  .carbon-impact .carbon-impact__goals .carbon-impact__goals--element {
    height: 120px;
    width: 120px;
  }
}
@media screen and (min-width: 992px) {
  .carbon-impact .carbon-impact__goals .carbon-impact__goals--element {
    height: 162px;
    width: 162px;
  }
}
.carbon-impact .carbon-impact__goals .carbon-impact__goals--element img {
  display: block;
  height: auto;
  width: 100%;
}
/*--------------------------------------------------------------
# Programmes
--------------------------------------------------------------*/
.carbon-programmes {
  margin: 4rem 0;
}
.carbon-programmes .carbon-programmes__title {
  text-align: center;
}
.carbon-programmes .carbon-programmes__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .carbon-programmes .carbon-programmes__description {
    font-size: 1.5rem;
  }
}
.carbon-programmes .carbon-programmes__description strong {
  font-weight: bold;
}
.carbon-programmes .carbon-programmes__button {
  margin-bottom: 2rem;
  text-align: center;
}
.carbon-programmes .carbon-programmes__button a {
  background-color: #D7A023;
  border-radius: 1rem;
  color: #FFFFFF;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 0.5rem 1.5rem;
  transition: all 0.4s ease;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .carbon-programmes .carbon-programmes__button a {
    font-size: 1.5rem;
  }
}
.carbon-programmes .carbon-programmes__button a:hover {
  background-color: #4B977B;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.carbon-contact {
  overflow: hidden;
}
.carbon-contact .carbon-contact__title {
  text-align: center;
}
.carbon-contact .carbon-contact__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .carbon-contact .carbon-contact__description {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
.carbon-contact .carbon-contact__form {
  margin-bottom: 8rem;
  text-align: center;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# What are
# Benefits
# Projects
# Contact

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# What are
--------------------------------------------------------------*/
.itmos-what-are {
  margin: 1rem 0 4rem;
}
.itmos-what-are .itmos-what-are__title {
  text-align: center;
}
.itmos-what-are .itmos-what-are__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .itmos-what-are .itmos-what-are__description {
    font-size: 1.5rem;
  }
}
.itmos-what-are .itmos-what-are__image img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .itmos-what-are .itmos-what-are__image img {
    margin: 0 auto;
    max-width: 70%;
  }
}
@media screen and (min-width: 992px) {
  .itmos-what-are .itmos-what-are__image img {
    margin: 0;
    max-width: 100%;
  }
}
/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/
.itmos-benefits {
  background: url(../img/certificado-decoracion-top.svg) center top / 100% no-repeat, url(../img/certificado-decoracion-bottom.svg) center bottom / 100% no-repeat #EFEFEF;
  padding: 4rem 0;
  position: relative;
}
@media screen and (min-width: 992px) {
  .itmos-benefits {
    padding: 8rem 0 10rem;
  }
}
.itmos-benefits:before {
  background-image: url(../img/madera-izquierda.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: none;
  height: 600px;
  left: 0;
  position: absolute;
  top: 70%;
  width: 150px;
}
@media screen and (min-width: 992px) {
  .itmos-benefits:before {
    display: block;
  }
}
.itmos-benefits:after {
  background-image: url(../img/madera-derecha.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 70%;
  content: '';
  display: none;
  height: 600px;
  position: absolute;
  right: 0;
  width: 150px;
}
@media screen and (min-width: 992px) {
  .itmos-benefits:after {
    display: block;
  }
}
.itmos-benefits .itmos-benefits__title {
  text-align: center;
}
.itmos-benefits .itmos-benefits__description {
  color: #486680;
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .itmos-benefits .itmos-benefits__description {
    font-size: 1.5rem;
  }
}
.itmos-benefits .itmos-benefits__description strong {
  font-weight: 900;
}
.itmos-benefits .itmos-benefits__description ul {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.itmos-benefits .itmos-benefits__description ul li {
  color: #344662;
  padding-left: 20px;
  position: relative;
}
.itmos-benefits .itmos-benefits__description ul li:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MC4yNzIiIGhlaWdodD0iNDMuODcxIiB2aWV3Qm94PSIwIDAgNTAuMjcyIDQzLjg3MSI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyMC4yNjkgLTM5LjMyNykiPjxwYXRoIGQ9Ik0xNTcuNDA2LDQ2LjI3NGMtMS43NDgtMi4yNjItNS03LjEtMTQuMzI0LTYuOTQzLTYsLjEtMTIuMzY3LDIuNzg2LTE3LjYsOC43NjUtMy4zMjMsMy44LTYuMTg5LDkuNDY3LTQuOSwxOS4wODMuNjI5LDQuNjg5LDEuNCw4LjY0OSw0LjY4NywxMS44NjguNDk0LjQ4NS43NDYtLjIxMi41NjMtLjg4OWE0My44LDQzLjgsMCwwLDEtLjI1OC0xOS4xLDE5Ljc0NSwxOS43NDUsMCwwLDEsNy40NjMtMTEuODVjMy4yOTMtMi4zNzksNy4xNTYtMy43OTMsMTAuNjI4LTMuMzY0QTE0LjYyMywxNC42MjMsMCwwLDEsMTU2LjI0Miw1NC45Yy44Myw0LjQ0Ny0yLjksMTAuNjU5LTcuNjU4LDExLjMtMi4xMzcuMjg4LTMuNTg3LTEuMzg4LTUuMDItMy43NDgtMS4yNjQtMi4wODEtMTEuMTQ2LS44NjQtMy40NjksNy4xNzUsMi45LDMuMDc3LDYuODQxLDQuODc0LDEyLjAxOSwyLjg5LDUuNS0yLjEwOSw4LjA5LTUuNDExLDkuNTkzLTkuNjI1QzE2My4yLDU4LjcsMTY0LjEsNTQuOTM1LDE1Ny40MDYsNDYuMjc0WiIgZmlsbD0iI2Q3YTAyMyIvPjxwYXRoIGQ9Ik0xNjkuMSw1NC41MTRjLTEuMTYxLTMuMTgxLTYuNTkzLTguNzM2LTguMzE1LTkuNzczLS42MTktLjM3Mi0uNjQuMzI0LS4yNjkuOTUxLDEuODMzLDMuMSw2LjA2MiwxMS41NjIsNC4xODQsMjAuMTIzLS45ODcsNC41LTYuMDMxLDEyLjkyOC0xOC42ODYsMTEuOTE3YTEzLjc3MiwxMy43NzIsMCwwLDEtMTIuMi0xMC4yODRjLTEuMTI2LTMuOTU0LjI3LTguOTYyLDQuMDc0LTEwLjk1NywzLjY1Ny0xLjkyLDguMjM4Ljc4Nyw5LjM2NCwzLjM3MS4zNTEuOCwyLjc3OS0uMDU4LDMuNTcxLTEuOTM0YTUuMzMsNS4zMywwLDAsMC0yLjAyNi02LjI4M2MtMi42NTgtMS44ODYtNy4wODItMi4xNDctMTEuOTU3LjM5Mi0zLjk2MSwyLjA2My01Ljg1NCw0LjM1NC03LjExNyw4Ljg3OS0yLjQzOCw4LjczNSwzLjI1NywxNy4zMjcsOC44NzgsMjAuMDYsMTQuMDU5LDYuODM2LDI0Ljc3OC00LjA3NiwyNi44MTQtNi4zMDlDMTcwLjgyNyw2OC43MzYsMTcxLjc3Myw2MS44MzYsMTY5LjEsNTQuNTE0WiIgZmlsbD0iI2Q3YTAyMyIvPjwvZz48L3N2Zz4=");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  height: 11px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 12px;
}
/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/
.itmos-projects {
  margin: 2rem 0;
}
.itmos-projects .itmos-projects__grid .itmos-projects__element {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.itmos-projects .itmos-projects__grid .itmos-projects__element:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .itmos-projects .itmos-projects__grid .itmos-projects__element {
    flex-wrap: nowrap;
  }
}
.itmos-projects .itmos-projects__grid .itmos-projects__element .element__info {
  flex: 0 0 100%;
  order: 2;
}
@media screen and (min-width: 992px) {
  .itmos-projects .itmos-projects__grid .itmos-projects__element .element__info {
    flex: 0 0 60%;
    order: 1;
  }
}
.itmos-projects .itmos-projects__grid .itmos-projects__element .element__info .element__title {
  color: #AD5C31;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.itmos-projects .itmos-projects__grid .itmos-projects__element .element__info .element__description {
  font-size: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .itmos-projects .itmos-projects__grid .itmos-projects__element .element__info .element__description {
    font-size: 1.5rem;
  }
}
.itmos-projects .itmos-projects__grid .itmos-projects__element .element__info .element__description strong {
  font-weight: bold;
}
.itmos-projects .itmos-projects__grid .itmos-projects__element .element__info .element__description a {
  text-decoration: underline;
}
.itmos-projects .itmos-projects__grid .itmos-projects__element .element__info .element__description a:hover {
  color: #4B977B !important;
}
.itmos-projects .itmos-projects__grid .itmos-projects__element .element__image {
  flex: 0 0 100%;
  margin-bottom: 2rem;
  order: 1;
}
@media screen and (min-width: 992px) {
  .itmos-projects .itmos-projects__grid .itmos-projects__element .element__image {
    flex: 1 1 0;
    margin-bottom: 0;
    padding: 0 2rem;
    order: 2;
  }
}
.itmos-projects .itmos-projects__grid .itmos-projects__element .element__image img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 60%;
}
@media screen and (min-width: 992px) {
  .itmos-projects .itmos-projects__grid .itmos-projects__element .element__image img {
    margin: 0 0 0 auto;
    max-width: 100%;
  }
}
.itmos-projects .itmos-projects__grid .itmos-projects__element:nth-child(2n) .element__info {
  order: 2;
}
.itmos-projects .itmos-projects__grid .itmos-projects__element:nth-child(2n) .element__image {
  order: 1;
}
.itmos-projects .itmos-projects__grid .itmos-projects__element:nth-child(2n) .element__image img {
  margin-right: auto;
  margin-left: 0;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.itmos-contact {
  margin: 4rem 0;
  overflow: hidden;
}
.itmos-contact .itmos-contact__title {
  text-align: center;
}
.itmos-contact .itmos-contact__description {
  margin-bottom: 4rem;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
}
.itmos-contact .itmos-contact__form {
  margin-bottom: 8rem;
  text-align: center;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Crisis
# Impact
# CO2
# What can you do
# Reduce impact
# Get involved

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Crisis
--------------------------------------------------------------*/
.take-action-crisis {
  margin-bottom: 4rem;
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .take-action-crisis {
    margin-top: 0;
  }
}
.take-action-crisis .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 992px) {
  .take-action-crisis .container-fluid {
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
  }
}
.take-action-crisis .container-fluid > .row {
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .take-action-crisis .container-fluid > .row {
    margin-left: calc(var(--bs-gutter-x)/-2);
    margin-right: calc(var(--bs-gutter-x)/-2);
  }
}
.take-action-crisis .container-fluid > .row > .col-12 {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 992px) {
  .take-action-crisis .container-fluid > .row > .col-12 {
    padding-left: calc(var(--bs-gutter-x)/2);
    padding-right: calc(var(--bs-gutter-x)/2);
  }
}
.take-action-crisis .take-action-crisis__title {
  text-align: center;
}
.take-action-crisis .take-action-crisis__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .take-action-crisis .take-action-crisis__description {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
.take-action-crisis .take-action-crisis__image {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .take-action-crisis .take-action-crisis__image {
    margin-bottom: 4rem;
  }
}
.take-action-crisis .take-action-crisis__image img {
  display: block;
  height: auto;
  width: 100%;
}
.take-action-crisis .take-action-crisis__image img.desktop {
  display: none;
}
@media screen and (min-width: 992px) {
  .take-action-crisis .take-action-crisis__image img.desktop {
    display: block;
  }
}
.take-action-crisis .take-action-crisis__image img.mobile {
  display: block;
}
@media screen and (min-width: 992px) {
  .take-action-crisis .take-action-crisis__image img.mobile {
    display: none;
  }
}
.take-action-crisis .take-action-crisis__image-description {
  font-size: 1.125rem;
  font-weight: 300;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .take-action-crisis .take-action-crisis__image-description {
    font-size: 1.5rem;
  }
}
/*--------------------------------------------------------------
# Impact
--------------------------------------------------------------*/
.take-action-impact {
  margin: 4rem 0 6rem;
}
.take-action-impact .take-action-impact__title {
  text-align: center;
}
.take-action-impact .take-action-impact__title .take-action-impact__title--icon img {
  display: block;
  height: 90px;
  margin: 2rem auto 0;
  object-fit: contain;
  object-position: center;
  width: 90px;
}
.take-action-impact .take-action-impact__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 4rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .take-action-impact .take-action-impact__description {
    font-size: 1.5rem;
  }
}
.take-action-impact .take-action-co2__title {
  color: #AD5C31;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: none;
}
.take-action-impact .take-action-co2__description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 4rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .take-action-impact .take-action-co2__description {
    font-size: 1.5rem;
  }
}
.take-action-impact .take-action-co2__iframe-description {
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .take-action-impact .take-action-co2__iframe-description {
    font-size: 1.5rem;
  }
}
/*--------------------------------------------------------------
# What can you do
--------------------------------------------------------------*/
.take-action-what {
  background-image: url(../img/what-can-you-do.svg);
  background-size: cover;
  background-position: center;
  margin: 4rem 0;
}
@media screen and (min-width: 768px) {
  .take-action-what {
    margin: 6rem 0;
  }
}
.take-action-what .row {
  align-items: center;
  min-height: 252px;
}
.take-action-what .take-action-what__title {
  margin-bottom: 2rem;
  text-align: center;
}
.take-action-what .take-action-what__description {
  color: #D7A023;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 0 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .take-action-what .take-action-what__description {
    font-size: 2rem;
    padding: 0;
  }
}
/*--------------------------------------------------------------
# Reduce impact
--------------------------------------------------------------*/
.take-action-reduce-impact {
  background: url(../img/tierra-der.png) top right / 75px no-repeat;
}
@media screen and (min-width: 768px) {
  .take-action-reduce-impact {
    background: url(../img/tierra-der.png) top right / 150px no-repeat;
  }
}
.take-action-reduce-impact .take-action-reduce-impact__title {
  text-align: center;
}
.take-action-reduce-impact .take-action-reduce-impact__item {
  cursor: default;
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .take-action-reduce-impact .take-action-reduce-impact__item {
    margin-bottom: 0;
  }
}
.take-action-reduce-impact .take-action-reduce-impact__item .item__icon {
  align-items: center;
  background-color: #344662;
  border-radius: 100%;
  display: flex;
  height: 122px;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all 0.4s ease;
  width: 122px;
}
.take-action-reduce-impact .take-action-reduce-impact__item .item__icon:before {
  border: 2px dashed #344662;
  border-radius: 100%;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.4s ease;
  width: 100%;
}
.take-action-reduce-impact .take-action-reduce-impact__item .item__icon img {
  display: block;
  flex: 0 0 auto;
  height: 69px;
  object-fit: contain;
  object-position: center;
  width: 75px;
}
.take-action-reduce-impact .take-action-reduce-impact__item .item__title {
  color: #486680;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}
.take-action-reduce-impact .take-action-reduce-impact__item .item__info {
  background-color: #FFF;
  border-radius: 1rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
}
.take-action-reduce-impact .take-action-reduce-impact__item .item__info .item__description {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  min-height: 82px;
  max-height: 82px;
  overflow: hidden;
  text-align: justify;
  text-overflow: ellipsis;
  transition: all 1s ease;
}
@media screen and (min-width: 768px) {
  .take-action-reduce-impact .take-action-reduce-impact__item .item__info .item__description {
    font-size: 1.25rem;
    min-height: 93px;
    max-height: 93px;
  }
}
.take-action-reduce-impact .take-action-reduce-impact__item .item__info .item__expand {
  display: block;
  padding-top: 0.5rem;
}
.take-action-reduce-impact .take-action-reduce-impact__item .item__info .item__expand span {
  color: #D7A023;
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
}
.take-action-reduce-impact .take-action-reduce-impact__item .item__info .item__expand span svg path {
  fill: #D7A023;
  transition: all 0.4s ease;
}
.take-action-reduce-impact .take-action-reduce-impact__item .item__info .item__expand .item__expand-text {
  max-height: 50px;
}
.take-action-reduce-impact .take-action-reduce-impact__item .item__info .item__expand:hover span {
  color: #4B977B;
}
.take-action-reduce-impact .take-action-reduce-impact__item .item__info .item__expand:hover span svg path {
  fill: #4B977B;
}
.take-action-reduce-impact .take-action-reduce-impact__item.expand .item__icon {
  background-color: #4B977B;
}
.take-action-reduce-impact .take-action-reduce-impact__item.expand .item__icon:before {
  border-color: #4B977B;
  transform: scale(1.2, 1.2);
}
.take-action-reduce-impact .take-action-reduce-impact__item.expand .item__info .item__description {
  -webkit-line-clamp: unset;
  max-height: 800px;
}
.take-action-reduce-impact .take-action-reduce-impact__item.expand .item__info .item__expand .item__expand-text {
  max-height: 0;
}
.take-action-reduce-impact .take-action-reduce-impact__item.expand .item__info .item__expand .item__expand-icon {
  transform: rotate(180deg);
}
.take-action-reduce-impact .take-action-reduce-impact__item.expand .item__info .item__expand .item__expand-icon svg path {
  fill: #4B977B;
}
/*--------------------------------------------------------------
# Get involved
--------------------------------------------------------------*/
.take-action-get-involved {
  background: url(../img/tierra-izq.png) bottom left / 75px no-repeat;
  margin: 4rem 0;
}
@media screen and (min-width: 768px) {
  .take-action-get-involved {
    background: url(../img/tierra-izq.png) bottom left / 150px no-repeat;
    margin: 6rem 0;
  }
}
.take-action-get-involved .take-action-get-involved__title {
  text-align: center;
}
.take-action-get-involved .take-action-get-involved__description {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .take-action-get-involved .take-action-get-involved__description {
    font-size: 1.5rem;
  }
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Background
# Form
# Thanks

--------------------------------------------------------------*/
.contact-us {
  margin-bottom: -6rem;
  min-height: 100vh;
  overflow: hidden;
  padding: 2rem 2rem 4rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact-us {
    padding: 8rem 2rem 14rem;
  }
}
/*--------------------------------------------------------------
# Background
--------------------------------------------------------------*/
.contact-us__background {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.contact-us__background img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.contact-us__form {
  margin: 0 auto 3rem;
  max-width: 1100px;
  position: relative;
}
.contact-us__form:before {
  background-image: url('../img/hoja2.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -30px;
  content: '';
  display: block;
  height: 175px;
  left: -110px;
  position: absolute;
  transform: rotate(270deg);
  width: 200px;
  z-index: -1;
}
.contact-us__form:after {
  background-image: url('../img/hoja2.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 175px;
  position: absolute;
  right: -120px;
  top: -30px;
  transform: rotate(90deg);
  width: 200px;
  z-index: -1;
}
.contact-us__form.contact-us__form--border-radius .form__content {
  border-radius: 1.5rem;
}
.contact-us__form .form__title {
  background-color: #486680;
  border-radius: 1.25rem 1.25rem 0 0;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .contact-us__form .form__title {
    font-size: 2rem;
    padding: 2rem 4rem;
  }
}
.contact-us__form .form__content {
  background-color: #E3E9E8;
  border-radius: 0 0 1.5rem 1.5rem;
  font-size: 1rem;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .contact-us__form .form__content {
    padding: 3rem 4rem;
  }
}
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-before-form-content,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-before-form-content,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-before-form-content {
  display: none;
}
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content {
  padding: 0;
}
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap {
  display: flex;
  flex-wrap: wrap;
}
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field {
  display: block;
  flex: 0 0 100%;
}
@media screen and (min-width: 768px) {
  .contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2),
  .contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2),
  .contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2),
  .contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3),
  .contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3),
  .contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3),
  .contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(4),
  .contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(4),
  .contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(4),
  .contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(5),
  .contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(5),
  .contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(5) {
    flex: 0 0 auto;
    width: calc(100% / 2 - 8px);
  }
  .contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2) input,
  .contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2) input,
  .contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2) input {
    border-radius: 8px 0 0 0;
  }
  .contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3) input,
  .contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3) input,
  .contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3) input {
    border-radius: 0 8px 0 0;
  }
  .contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3),
  .contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3),
  .contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3),
  .contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(5),
  .contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(5),
  .contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(5) {
    margin-left: 16px;
  }
}
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container {
  margin-bottom: 16px;
}
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-label,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-label,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-label {
  margin: 0 !important;
}
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element:after,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element:after,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element:after {
  font-size: 20px;
  height: 30px;
  line-height: 30px;
}
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element input,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element input,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element input,
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element select,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element select,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element select,
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element textarea,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element textarea,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element textarea {
  background-color: transparent;
  border-color: #344662;
  height: 30px;
  padding-bottom: 0;
  padding-top: 0;
}
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element input[type="button"],
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element input[type="button"],
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element input[type="button"],
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element select[type="button"],
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element select[type="button"],
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element select[type="button"],
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element textarea[type="button"],
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element textarea[type="button"],
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element textarea[type="button"] {
  background-color: #D7A023;
  border-radius: 0.5rem;
  color: #FFFFFF;
  display: block;
  font-size: 1.125rem;
  font-weight: bold;
  height: 2.5rem;
  line-height: 1;
  margin: 0 auto;
  max-width: 330px;
  text-transform: uppercase;
  width: 100%;
}
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element textarea,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element textarea,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element textarea {
  border-radius: 0 0 8px 8px;
  height: 150px;
  padding-top: 10px;
  resize: none;
}
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element div,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element div,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element div {
  background-color: transparent;
  border-color: #344662;
  height: 30px;
  padding-bottom: 0;
  padding-top: 0;
}
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element div:after,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element div:after,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap .nf-field-element div:after {
  height: 30px;
  line-height: 30px;
}
.contact-us__form .form__content #nf-form-3-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap.nf-error .nf-field-element:after,
.contact-us__form .form__content #nf-form-5-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap.nf-error .nf-field-element:after,
.contact-us__form .form__content #nf-form-6-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .field-wrap.nf-error .nf-field-element:after {
  height: 28px;
  line-height: 30px;
}
/*--------------------------------------------------------------
# Thanks
--------------------------------------------------------------*/
.contact-us__thanks {
  margin: 0 auto 2rem;
  max-width: 890px;
  position: relative;
}
.contact-us__thanks .contact-us__thanks--image img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 520px;
  width: 100%;
}
.contact-us__thanks .contact-us__thanks--content {
  background-color: #E6F2FF;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-us__thanks .contact-us__thanks--content {
    padding: 4rem;
  }
}
.contact-us__thanks .contact-us__thanks--content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .contact-us__thanks .contact-us__thanks--content h3 {
    font-size: 3rem;
  }
}
.contact-us__thanks .contact-us__thanks--content p {
  font-size: 1.125rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .contact-us__thanks .contact-us__thanks--content p {
    font-size: 1.5rem;
  }
}
.contact-us__thanks .contact-us__thanks--content .content__buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .contact-us__thanks .contact-us__thanks--content .content__buttons {
    flex-wrap: nowrap;
  }
}
.contact-us__thanks .contact-us__thanks--content .content__buttons a {
  background-color: #D7A023;
  border-radius: 1rem;
  color: #FFFFFF;
  display: block;
  flex: 0 0 100%;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0 0 1rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.4s ease;
}
@media screen and (min-width: 768px) {
  .contact-us__thanks .contact-us__thanks--content .content__buttons a {
    flex: 0 0 auto;
    font-size: 1.5rem;
    margin: 0 1rem;
  }
}
.contact-us__thanks .contact-us__thanks--content .content__buttons a:hover {
  background-color: #4B977B;
}
/*--------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
----------------------------------------------------------------

# Beyond carbon
# How does it wordk
# And what does 1 tonne of CO2 equal?
# Beyond lowering co2 emissions
# Consider this…
# Where does the money go?
# Ready to contribute?
# Let's contribute

--------------------------------------------------------------*/
.inner-banner-contribute {
  align-items: flex-start;
  min-height: 330px;
  padding-bottom: 48px;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .inner-banner-contribute {
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .inner-banner-contribute {
    min-height: 600px;
  }
}
@media screen and (min-width: 1600px) {
  .inner-banner-contribute {
    min-height: 800px;
  }
}
.inner-banner-contribute .inner-banner__background {
  background-color: #d9ecf9;
}
.inner-banner-contribute .inner-banner__background img {
  object-position: 80% 15px;
}
@media screen and (min-width: 768px) {
  .inner-banner-contribute .inner-banner__background img {
    object-position: center bottom;
  }
}
.inner-banner-contribute .container {
  max-width: none;
}
@media screen and (min-width: 1600px) {
  .inner-banner-contribute .container {
    max-width: 1470px;
  }
}
@media screen and (min-width: 1864px) {
  .inner-banner-contribute .container {
    max-width: 1700px;
  }
}
.inner-banner-contribute .inner-banner__title {
  padding: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .inner-banner-contribute .inner-banner__title {
    padding: 0 1.5rem;
  }
}
.inner-banner-contribute .inner-banner__title .inner-banner__title--box {
  justify-content: flex-start;
}
.inner-banner-contribute .inner-banner__title .inner-banner__title--box h1 {
  color: #344662;
  font-size: 1.1rem;
  text-align: left;
  text-transform: uppercase;
}
@media screen and (min-width: 540px) {
  .inner-banner-contribute .inner-banner__title .inner-banner__title--box h1 {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 576px) {
  .inner-banner-contribute .inner-banner__title .inner-banner__title--box h1 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .inner-banner-contribute .inner-banner__title .inner-banner__title--box h1 {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1140px) {
  .inner-banner-contribute .inner-banner__title .inner-banner__title--box h1 {
    font-size: 2.8rem;
  }
}
/*--------------------------------------------------------------
# Beyond carbon
--------------------------------------------------------------*/
.beyond-carbon {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .beyond-carbon {
    margin-bottom: 2rem;
  }
}
.beyond-carbon .beyond-carbon--title {
  margin-bottom: 1.5rem;
  text-align: center;
}
.beyond-carbon .beyond-carbon--subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .beyond-carbon .beyond-carbon--subtitle {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
.beyond-carbon .beyond-carbon--image {
  margin-bottom: 2rem;
  margin-left: auto;
  max-width: 1200px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .beyond-carbon .beyond-carbon--image {
    padding: 0 2rem;
  }
}
.beyond-carbon .beyond-carbon--image img {
  display: block;
  height: auto;
  width: 100%;
}
.beyond-carbon .beyond-carbon--image img.desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .beyond-carbon .beyond-carbon--image img.desktop {
    display: block;
  }
}
.beyond-carbon .beyond-carbon--image img.mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .beyond-carbon .beyond-carbon--image img.mobile {
    display: none;
  }
}
.beyond-carbon .beyond-carbon--sidebar {
  background-color: #344662;
  border-radius: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 365px;
  padding: 1rem 1rem 1rem;
}
@media screen and (min-width: 768px) {
  .beyond-carbon .beyond-carbon--sidebar {
    padding: 3rem 1rem 1rem;
  }
}
.beyond-carbon .beyond-carbon--sidebar .sidebar--title {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .beyond-carbon .beyond-carbon--sidebar .sidebar--title {
    font-size: 2rem;
    text-align: left;
  }
}
.beyond-carbon .beyond-carbon--sidebar .sidebar--title small {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .beyond-carbon .beyond-carbon--sidebar .sidebar--title small {
    font-size: 1.125rem;
  }
}
.beyond-carbon .beyond-carbon--sidebar .sidebar--button {
  margin-bottom: 1.5rem;
}
.beyond-carbon .beyond-carbon--sidebar .sidebar--button a {
  background-color: #D7A023;
  border-radius: 0.5rem;
  color: #FFFFFF;
  display: block;
  font-size: 1rem;
  line-height: 3rem;
  margin: 0 auto;
  max-width: 220px;
  text-align: center;
}
.beyond-carbon .beyond-carbon--sidebar .sidebar--button a:hover {
  background-color: #4B977B;
}
.beyond-carbon .beyond-carbon--sidebar .sidebar--image {
  border-radius: 1.5rem;
  overflow: hidden;
}
.beyond-carbon .beyond-carbon--sidebar .sidebar--image img {
  display: block;
  height: 500px;
  object-fit: cover;
  object-position: center bottom;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .beyond-carbon .beyond-carbon--sidebar .sidebar--image img {
    height: 600px;
  }
}
/*--------------------------------------------------------------
# How does it wordk
--------------------------------------------------------------*/
.how-does {
  background-color: #FFF;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 1rem 0 2rem;
  padding: 3rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .how-does {
    padding: 4rem 0 5rem;
  }
}
@media screen and (min-width: 992px) {
  .how-does {
    padding: 8rem 0 10rem;
  }
}
.how-does:before {
  background-image: url(../img/certificado-decoracion-top.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .how-does:before {
    height: 60px;
  }
}
.how-does:after {
  background-image: url(../img/certificado-decoracion-bottom.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .how-does:after {
    height: 60px;
  }
}
.how-does .how-does--title {
  text-align: center;
}
.how-does .how-does--graphic {
  align-items: center;
  display: none;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 1140px) {
  .how-does .how-does--graphic {
    display: flex;
  }
}
.how-does .how-does--graphic .graphic--icons {
  flex: 0 0 auto;
  margin-right: 4rem;
  position: relative;
}
.how-does .how-does--graphic .graphic--icons .graphic--box {
  height: 537px;
  margin: 0 auto;
  position: relative;
  transition: all 1s ease;
  width: 502px;
  z-index: 1;
}
.how-does .how-does--graphic .graphic--icons .graphic--box img,
.how-does .how-does--graphic .graphic--icons .graphic--box svg {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}
.how-does .how-does--graphic .graphic--icons .graphic--box svg path {
  fill: #CBCBCB;
  transition: all 1s ease;
}
.how-does .how-does--graphic .graphic--icons .graphic--box .graphic-icon {
  transition: all 1s ease;
}
.how-does .how-does--graphic .graphic--icons .graphic--box .graphic-icon.active svg path {
  fill: #D7A023;
}
.how-does .how-does--graphic .graphic--icons .graphic--box .icons--arrows {
  height: 325px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 305px;
}
.how-does .how-does--graphic .graphic--icons .graphic--box .icons--microsol {
  height: 76px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 87px;
}
.how-does .how-does--graphic .graphic--icons .graphic--box .icons--industry {
  height: 207px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 129px;
}
.how-does .how-does--graphic .graphic--icons .graphic--box .icons--money {
  height: 94px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 102px;
}
.how-does .how-does--graphic .graphic--icons .graphic--box .icons--mills {
  height: 225px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 115px;
}
.how-does .how-does--graphic .graphic--icons .graphic--box .icons--clouds {
  bottom: 0;
  height: 85px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 106px;
}
.how-does .how-does--graphic .graphic--message {
  margin-bottom: 1.5rem;
}
.how-does .how-does--graphic .graphic--message .message {
  background-image: url(../img/nube-how-does-it-work.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
  height: 300px;
  margin: 0 auto;
  padding: 2.5rem 2.75rem 2rem 2.5rem;
  width: 570px;
}
.how-does .how-does--graphic .graphic--message .message.active {
  display: flex;
}
.how-does .how-does--graphic .graphic--message .message .message--number {
  color: #D7A023;
  flex: 0 0 auto;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-right: 0.5rem;
}
.how-does .how-does--graphic .graphic--message .message .message--description {
  color: #344662;
  flex: 1 1 0;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
  padding-top: 0.2rem;
  text-align: justify;
}
.how-does .how-does--graphic .graphic--arrows {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 0;
}
.how-does .how-does--graphic .graphic--arrows a {
  align-items: center;
  display: flex;
  height: 80px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
}
.how-does .how-does--graphic .graphic--arrows a img {
  display: block;
  height: auto;
  width: 32px;
}
.how-does .how-does--graphic .graphic--arrows .arrow-prev {
  left: 32px;
}
.how-does .how-does--graphic .graphic--arrows .arrow-next {
  right: 32px;
}
@media screen and (min-width: 1140px) {
  .how-does .owl-how-does {
    display: none !important;
  }
}
.how-does .owl-how-does .owl-item {
  filter: drop-shadow(7px 7px 7px rgba(0, 0, 0, 0.15));
  padding: 1rem;
}
.how-does .owl-how-does .owl-item .item {
  background-color: #FFFFFF;
  -webkit-clip-path: polygon(0 5%, 50% 0, 100% 5%, 100% 95%, 50% 100%, 0 95%);
          clip-path: polygon(0 5%, 50% 0, 100% 5%, 100% 95%, 50% 100%, 0 95%);
  padding: 2rem 1rem;
}
.how-does .owl-how-does .owl-item .item .icon {
  margin-bottom: 1rem;
}
.how-does .owl-how-does .owl-item .item .icon svg {
  display: block;
  height: 90px;
  margin: 0 auto;
  width: 180px;
  object-fit: contain;
  object-position: center;
}
.how-does .owl-how-does .owl-item .item .icon svg path {
  fill: #D7A023;
}
.how-does .owl-how-does .owl-item .item .message .message--number {
  color: #D7A023;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}
.how-does .owl-how-does .owl-item .item .message .message--description {
  color: #344662;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
  padding-top: 0.2rem;
  text-align: justify;
}
.how-does .owl-how-does .owl-dots {
  display: flex;
  justify-content: center;
  margin: 0 0 1rem;
}
@media screen and (min-width: 768px) {
  .how-does .owl-how-does .owl-dots {
    margin: 1rem 0;
  }
}
.how-does .owl-how-does .owl-dots .owl-dot {
  background-color: #CBCBCB;
  border: 2px solid #CBCBCB;
  border-radius: 100%;
  height: 1.125rem;
  margin-left: 10px;
  width: 1.125rem;
}
.how-does .owl-how-does .owl-dots .owl-dot:first-child {
  margin-left: 0;
}
.how-does .owl-how-does .owl-dots .owl-dot.active {
  background-color: transparent;
}
/*--------------------------------------------------------------
# And what does 1 tonne of CO2 equal?
--------------------------------------------------------------*/
.what-does {
  margin: 2rem 0 3rem;
  overflow: hidden;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .what-does {
    margin: 4rem 0 6rem;
  }
}
.what-does .what-does--title {
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .what-does .what-does--title {
    margin-bottom: 6rem;
  }
}
.what-does .what-does--image-container {
  display: flex;
  flex-direction: column;
}
.what-does .what-does--image {
  align-items: center;
  align-self: center;
  display: flex;
  max-width: 370px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .what-does .what-does--image {
    max-width: 610px;
  }
}
@media screen and (min-width: 992px) {
  .what-does .what-does--image {
    align-self: unset;
    max-width: none;
  }
}
.what-does .what-does--image .image--cloud {
  position: absolute;
  z-index: 0;
}
.what-does .what-does--image .image--vehicle,
.what-does .what-does--image .image--description {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}
.what-does .what-does--image .image--vehicle {
  flex: 0 0 130px;
}
@media screen and (min-width: 768px) {
  .what-does .what-does--image .image--vehicle {
    flex: 0 0 auto;
  }
}
.what-does .what-does--image .image--description {
  flex: 1 1 0;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .what-does .what-does--image .image--description {
    flex: 0 0 auto;
    font-size: 2rem;
    margin-left: 1.5rem;
    padding-left: 0;
  }
}
@media screen and (min-width: 992px) {
  .what-does .what-does--image .image--description {
    flex: 0 0 100%;
  }
}
.what-does .what-does--image .image--description small {
  display: block;
  font-size: 1.125rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .what-does .what-does--image .image--description small {
    font-size: 1.5rem;
  }
}
.what-does .what-does--image.auto {
  margin-bottom: 5rem;
}
.what-does .what-does--image.auto .image--cloud {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .what-does .what-does--image.auto .image--cloud {
    left: 2.5rem;
    top: 0rem;
    width: 495px;
  }
}
.what-does .what-does--image.tren {
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .what-does .what-does--image.tren {
    margin-bottom: 6rem;
  }
}
@media screen and (min-width: 992px) {
  .what-does .what-does--image.tren {
    align-self: center;
    margin-bottom: 5rem;
    margin-left: -15rem;
  }
}
.what-does .what-does--image.tren .image--cloud {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .what-does .what-does--image.tren .image--cloud {
    left: 2rem;
    top: -2rem;
    width: 600px;
  }
}
@media screen and (min-width: 992px) {
  .what-does .what-does--image.tren .image--cloud {
    left: 9rem;
  }
}
@media screen and (min-width: 992px) {
  .what-does .what-does--image.avion {
    align-self: flex-end;
    margin-right: 7rem;
  }
}
.what-does .what-does--image.avion .image--cloud {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .what-does .what-does--image.avion .image--cloud {
    top: -2rem;
    width: 600px;
  }
}
@media screen and (min-width: 992px) {
  .what-does .what-does--image.avion .image--cloud {
    left: 3rem;
  }
}
/*--------------------------------------------------------------
# Beyond lowering co2 emissions
--------------------------------------------------------------*/
.beyond-lowering {
  margin: 2rem 0 0rem;
  overflow: hidden;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .beyond-lowering {
    margin: 2rem 0;
  }
}
.beyond-lowering .beyond-lowering--title {
  margin-bottom: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .beyond-lowering .beyond-lowering--title {
    margin-bottom: 1.5rem;
  }
}
.beyond-lowering .beyond-lowering--grid {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  .beyond-lowering .beyond-lowering--grid {
    flex-wrap: nowrap;
  }
}
.beyond-lowering .beyond-lowering--grid .square--element {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  position: relative;
}
@media screen and (min-width: 992px) {
  .beyond-lowering .beyond-lowering--grid .square--element {
    flex: 1 1 0;
  }
}
.beyond-lowering .beyond-lowering--grid .square--element .square--image {
  flex: 0 0 auto;
  padding-bottom: 70%;
  height: 0px;
  overflow: hidden;
  position: relative;
}
.beyond-lowering .beyond-lowering--grid .square--element .square--image img {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}
.beyond-lowering .beyond-lowering--grid .square--element .square--description {
  background-color: #F1F1F1;
  flex: 1 1 100%;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.2;
  padding: 1rem 2rem 2rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .beyond-lowering .beyond-lowering--grid .square--element .square--description {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .beyond-lowering .beyond-lowering--grid .square--element .square--description {
    min-height: 220px;
  }
}
.beyond-lowering .beyond-lowering--grid .square--element.square--left .square--image {
  border-radius: 25px 25px 0 0;
}
@media screen and (min-width: 992px) {
  .beyond-lowering .beyond-lowering--grid .square--element.square--left .square--image {
    border-radius: 110px 25px 0 0;
  }
}
.beyond-lowering .beyond-lowering--grid .square--element.square--left .square--description {
  border-radius: 0 0 25px 25px;
}
@media screen and (min-width: 992px) {
  .beyond-lowering .beyond-lowering--grid .square--element.square--left .square--description {
    border-radius: 0 0 25px 110px;
  }
}
.beyond-lowering .beyond-lowering--grid .square--element.square--left:after {
  background-image: url(../img/hoja.png);
  background-size: contain;
  content: '';
  display: block;
  height: 120px;
  left: -80px;
  position: absolute;
  top: -40px;
  transform: rotate(-45deg);
  width: 170px;
  z-index: -1;
}
.beyond-lowering .beyond-lowering--grid .square--element.square--center .square--image {
  border-radius: 25px 25px 0 0;
}
.beyond-lowering .beyond-lowering--grid .square--element.square--center .square--description {
  border-radius: 0 0 25px 25px;
}
@media screen and (min-width: 992px) {
  .beyond-lowering .beyond-lowering--grid .square--element.square--center .square--description {
    padding: 1rem 1rem 2rem;
  }
}
.beyond-lowering .beyond-lowering--grid .square--element.square--right .square--image {
  border-radius: 25px 25px 0 0;
}
@media screen and (min-width: 992px) {
  .beyond-lowering .beyond-lowering--grid .square--element.square--right .square--image {
    border-radius: 25px 110px 0 0;
  }
}
.beyond-lowering .beyond-lowering--grid .square--element.square--right .square--description {
  border-radius: 0 0 25px 25px;
}
@media screen and (min-width: 992px) {
  .beyond-lowering .beyond-lowering--grid .square--element.square--right .square--description {
    border-radius: 0 0 110px 25px;
  }
}
.beyond-lowering .beyond-lowering--grid .square--element.square--right:after {
  background-image: url(../img/hoja.png);
  background-size: contain;
  content: '';
  display: block;
  height: 120px;
  right: -80px;
  position: absolute;
  bottom: -40px;
  transform: rotate(135deg);
  width: 170px;
  z-index: -1;
}
.beyond-lowering .beyond-lowering--grid .arrow--element {
  align-items: center;
  display: flex;
  flex: 0 0 100%;
  justify-content: center;
  margin: 2rem 0;
  transform: rotate(90deg);
  width: 100px;
}
@media screen and (min-width: 992px) {
  .beyond-lowering .beyond-lowering--grid .arrow--element {
    flex: 0 0 auto;
    margin: 0;
    transform: rotate(0deg);
  }
}
.beyond-lowering .beyond-lowering--grid .arrow--element img {
  display: block;
  height: auto;
  width: 50px;
}
.beyond-lowering .beyond-lowering--description {
  align-items: center;
  display: flex;
}
.beyond-lowering .beyond-lowering--description .description--content {
  flex: 1 1 0;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: justify;
}
.beyond-lowering .beyond-lowering--description .description--image {
  margin-left: 3rem;
  width: 346px;
}
.beyond-lowering .beyond-lowering--description .description--image img {
  display: block;
  height: auto;
  width: 100%;
}
/*--------------------------------------------------------------
# Consider this…
--------------------------------------------------------------*/
.consider-this {
  background-color: #EFEFEF;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0rem 0 2rem;
  padding: 3rem 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .consider-this {
    padding: 4rem 1rem;
  }
}
@media screen and (min-width: 992px) {
  .consider-this {
    padding: 8rem 1rem 6rem;
  }
}
.consider-this:before {
  background-image: url(../img/certificado-decoracion-top.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .consider-this:before {
    height: 60px;
  }
}
.consider-this:after {
  background-image: url(../img/certificado-decoracion-bottom.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .consider-this:after {
    height: 60px;
  }
}
.consider-this .consider-this--title {
  text-align: center;
}
.consider-this .consider-this--subtitle {
  margin-bottom: 1rem;
  text-align: center;
}
.consider-this .consider-this--grid {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.consider-this .consider-this--grid .grid--element {
  flex: 0 0 100%;
  padding: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .consider-this .consider-this--grid .grid--element {
    flex: 0 0 50%;
    padding: 1rem 2rem;
  }
}
.consider-this .consider-this--grid .grid--element .element--image img {
  display: block;
  height: 180px;
  margin: 0 auto 0.5rem;
  object-fit: contain;
  object-position: center bottom;
  width: 200px;
}
.consider-this .consider-this--grid .grid--element .element--description {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .consider-this .consider-this--grid .grid--element .element--description {
    font-size: 1.5rem;
  }
}
.consider-this .consider-this--grid .grid--element .element--description strong {
  border-bottom: 3px solid #D7A023;
  font-weight: 900;
}
.consider-this .consider-this--description {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 1.5rem auto 0;
  max-width: 1200px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .consider-this .consider-this--description {
    font-size: 1.5rem;
    margin: 3rem auto 0;
  }
}
.consider-this .consider-this--description strong {
  border-bottom: 3px solid #D7A023;
  font-weight: 900;
}
.consider-this .consider-this--small {
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .consider-this .consider-this--small {
    font-size: 1.125rem;
  }
}
.consider-this .consider-this--small p {
  margin-bottom: 8px;
}
/*--------------------------------------------------------------
# Where does the money go?
--------------------------------------------------------------*/
.where-does {
  margin: 2rem 0;
}
.where-does .where-does--title {
  text-align: center;
}
.where-does .where-does--description {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .where-does .where-does--description {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
.where-does .where-does--description p {
  margin-bottom: 0;
}
.where-does .where-does--percentages--title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  text-align: center;
}
.where-does .where-does--percentages {
  display: none;
}
@media screen and (min-width: 992px) {
  .where-does .where-does--percentages {
    display: block;
  }
}
.where-does .where-does--percentages img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 1369px;
  width: 100%;
}
.where-does .where-does--percentages-mobile {
  display: block;
}
@media screen and (min-width: 992px) {
  .where-does .where-does--percentages-mobile {
    display: none;
  }
}
.where-does .where-does--percentages-mobile .info__percentage {
  display: block;
  margin-bottom: 0.5rem;
  padding-right: 60px;
}
.where-does .where-does--percentages-mobile .info__percentage .info__percentage--bar {
  border-radius: 0.5rem;
  height: 30px;
  position: relative;
}
.where-does .where-does--percentages-mobile .info__percentage .info__percentage--bar .info__percentage--bar--number {
  font-size: 1.125rem;
  font-weight: 700;
  left: 100%;
  padding-left: 0.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.where-does .where-does--percentages-mobile .info__percentage.info__percentage-1 .info__percentage--bar {
  background-color: #AD5C31;
  color: #AD5C31;
}
.where-does .where-does--percentages-mobile .info__percentage.info__percentage-2 .info__percentage--bar {
  background-color: #344662;
  color: #344662;
}
.where-does .where-does--percentages-mobile .info__percentage.info__percentage-3 .info__percentage--bar {
  background-color: #4B977B;
  color: #4B977B;
}
.where-does .where-does--percentages-mobile .info__percentage.info__percentage-4 .info__percentage--bar {
  background-color: #D7A023;
  color: #D7A023;
}
.where-does .where-does--percentages-mobile .info__percentage--description {
  color: #808080;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  text-align: justify;
}
.where-does .where-does--percentages-mobile .info__percentage--title {
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
/*--------------------------------------------------------------
# Ready to contribute?
--------------------------------------------------------------*/
.ready-to-contribute .ready-to-contribute--title {
  text-align: center;
}
.ready-to-contribute .ready-to-contribute--button {
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .ready-to-contribute .ready-to-contribute--button {
    margin-bottom: 4rem;
  }
}
.ready-to-contribute .ready-to-contribute--button a {
  background-color: #D7A023;
  border-radius: 0.5rem;
  color: #FFFFFF;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 3.25rem;
  margin: 0 auto;
  min-width: 250px;
  text-align: center;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .ready-to-contribute .ready-to-contribute--button a {
    font-size: 1.5rem;
  }
}
.ready-to-contribute .ready-to-contribute--button a:hover {
  background-color: #4B977B;
}
.ready-to-contribute .ready-to-contribute--description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .ready-to-contribute .ready-to-contribute--description {
    font-size: 1.5rem;
  }
}
/*--------------------------------------------------------------
# Let's contribute
--------------------------------------------------------------*/
#lets-contribute,
#program-form {
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  height: 100vh;
  left: 0;
  overflow: auto;
  padding: 3rem 1rem 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1500;
}
@media screen and (min-width: 768px) {
  #lets-contribute,
  #program-form {
    padding: 3rem;
  }
}
#lets-contribute .close-modal,
#program-form .close-modal {
  align-items: center;
  display: flex;
  height: 50px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
}
#lets-contribute .close-modal img,
#program-form .close-modal img {
  display: block;
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
}
#lets-contribute .close-modal:hover,
#program-form .close-modal:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#lets-contribute .overlay .nf-form-cont,
#program-form .overlay .nf-form-cont {
  margin: 0 auto;
  max-width: 1130px;
}
#lets-contribute .overlay .nf-form-cont .nf-form-title,
#program-form .overlay .nf-form-cont .nf-form-title {
  background-color: #486680;
  border-radius: 1.25rem 1.25rem 0 0;
  display: block;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  #lets-contribute .overlay .nf-form-cont .nf-form-title,
  #program-form .overlay .nf-form-cont .nf-form-title {
    padding: 2rem 5.5rem;
  }
}
#lets-contribute .overlay .nf-form-cont .nf-form-title h3,
#program-form .overlay .nf-form-cont .nf-form-title h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  #lets-contribute .overlay .nf-form-cont .nf-form-title h3,
  #program-form .overlay .nf-form-cont .nf-form-title h3 {
    font-size: 2rem;
  }
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap,
#program-form .overlay .nf-form-cont .nf-form-wrap {
  background-color: #E3E9E8;
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  #lets-contribute .overlay .nf-form-cont .nf-form-wrap,
  #program-form .overlay .nf-form-cont .nf-form-wrap {
    padding: 2rem 3.5rem;
  }
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-before-form-content,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-before-form-content {
  display: none;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content {
  max-width: none;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap {
  display: flex;
  flex-wrap: wrap;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field {
  display: block;
  flex: 0 0 100%;
  padding: 0.25rem 0rem;
}
@media screen and (min-width: 768px) {
  #lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field,
  #program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field {
    padding: 0.25rem 0.5rem;
  }
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container {
  margin-bottom: 0;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-label,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-label {
  display: none;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element input,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element input,
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element select,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element select,
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element textarea,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element textarea {
  background-color: transparent;
  border: 1px solid #486680;
  color: #344662;
  font-size: 1rem;
  height: 30px;
  padding: 0 10px;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element label,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element label {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  #lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element label,
  #program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element label {
    font-size: 1.125rem;
  }
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element textarea,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element textarea {
  height: 150px;
  resize: none;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  #lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element textarea,
  #program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element textarea {
    border-radius: 0 0 0.5rem 0.5rem;
  }
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element:after,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element:after {
  font-size: 0.875rem;
  height: 28px;
  line-height: 30px;
  width: 28px;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element > div,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element > div {
  background-color: transparent;
  height: 30px;
  padding: 0;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element > div:after,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field .nf-field-element > div:after {
  color: #344662;
  font-size: 0.875rem;
  height: 28px;
  line-height: 28px;
  top: 0;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-after-field .nf-error-wrap .nf-error-msg,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-after-field .nf-error-wrap .nf-error-msg {
  font-size: 0.75rem;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .submit-container .nf-field .nf-field-element input,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .submit-container .nf-field .nf-field-element input {
  background-color: #4B977B;
  border: none;
  border-radius: 0.5rem;
  color: #FFFFFF;
  display: block;
  height: 2rem;
  margin: 0 auto;
  width: 250px;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(1),
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(1),
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2),
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2),
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3),
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3),
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(4),
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(4) {
  flex: 0 0 100%;
}
@media screen and (min-width: 768px) {
  #lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(1),
  #program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(1),
  #lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2),
  #program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2),
  #lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3),
  #program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(3),
  #lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(4),
  #program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(4) {
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 768px) {
  #lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(1) .nf-field-container .nf-field .nf-field-element input,
  #program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(1) .nf-field-container .nf-field .nf-field-element input {
    border-radius: 0.5rem 0 0 0;
  }
  #lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2) .nf-field-container .nf-field .nf-field-element input,
  #program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2) .nf-field-container .nf-field .nf-field-element input {
    border-radius: 0 0.5rem 0 0;
  }
  #lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2) .nf-field-container .nf-field .nf-field-element:after,
  #program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(2) .nf-field-container .nf-field .nf-field-element:after {
    border-radius: 0 0.5rem 0 0;
  }
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(6) .nf-field-container .nf-field,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(6) .nf-field-container .nf-field,
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(7) .nf-field-container .nf-field,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(7) .nf-field-container .nf-field {
  border: 1px solid #344662;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(6) .nf-field-container .nf-field .nf-field-label,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(6) .nf-field-container .nf-field .nf-field-label,
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(7) .nf-field-container .nf-field .nf-field-label,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(7) .nf-field-container .nf-field .nf-field-label {
  background-color: #BCCBD3;
  border-bottom: 1px solid #344662;
  color: #486680;
  display: block;
  flex: 0 0 100%;
  font-size: 1rem;
  line-height: 1;
  padding: 0.5rem;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(6) .nf-field-container .nf-field .nf-field-element ul,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(6) .nf-field-container .nf-field .nf-field-element ul,
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(7) .nf-field-container .nf-field .nf-field-element ul,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(7) .nf-field-container .nf-field .nf-field-element ul {
  display: flex;
  flex-wrap: wrap;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(6) .nf-field-container .nf-field .nf-field-element ul li,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(6) .nf-field-container .nf-field .nf-field-element ul li,
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(7) .nf-field-container .nf-field .nf-field-element ul li,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(7) .nf-field-container .nf-field .nf-field-element ul li {
  flex: 0 0 auto;
  padding: 0 10px !important;
}
#lets-contribute .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(10) .nf-field-container .nf-field .nf-field-description,
#program-form .overlay .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field:nth-child(10) .nf-field-container .nf-field .nf-field-description {
  display: none;
  flex: 0 0 auto;
  margin-left: 8px;
  margin-top: 2px;
  width: auto;
}
#program-form .overlay .program-form__box {
  margin: 0 auto;
  max-width: 1130px;
}
#program-form .overlay .program-form__box .program-form__title {
  background-color: #486680;
  border-radius: 1.25rem 1.25rem 0 0;
  color: #FFFFFF;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  padding: 1rem;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  #program-form .overlay .program-form__box .program-form__title {
    font-size: 2rem;
    padding: 2rem 4.25rem;
  }
}
#program-form .overlay .program-form__box .program-form__content .program-form__form {
  background-color: #E3E9E8;
  border-radius: 0 0 1.25rem 1.25rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  #program-form .overlay .program-form__box .program-form__content .program-form__form {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 3.5rem;
  }
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group {
  display: block;
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group input,
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group select,
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group textarea {
  background-color: transparent;
  border: 1px solid #486680;
  border-radius: 0;
  color: #344662;
  font-size: 1rem;
  height: 30px;
  padding: 0 10px;
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group textarea {
  border-radius: 0 0 0.5rem 0.5rem;
  height: 150px;
  resize: none;
  padding: 10px;
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group:nth-child(1),
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group:nth-child(2),
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group:nth-child(3),
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group:nth-child(4) {
  flex: 0 0 100%;
}
@media screen and (min-width: 768px) {
  #program-form .overlay .program-form__box .program-form__content .program-form__form .form-group:nth-child(1),
  #program-form .overlay .program-form__box .program-form__content .program-form__form .form-group:nth-child(2),
  #program-form .overlay .program-form__box .program-form__content .program-form__form .form-group:nth-child(3),
  #program-form .overlay .program-form__box .program-form__content .program-form__form .form-group:nth-child(4) {
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 768px) {
  #program-form .overlay .program-form__box .program-form__content .program-form__form .form-group:nth-child(1) input {
    border-radius: 0.5rem 0 0 0;
  }
  #program-form .overlay .program-form__box .program-form__content .program-form__form .form-group:nth-child(2) input {
    border-radius: 0 0.5rem 0 0;
  }
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group:nth-child(6) {
  border: 1px solid #344662;
}
@media screen and (min-width: 768px) {
  #program-form .overlay .program-form__box .program-form__content .program-form__form .form-group.form-group-wide {
    grid-column: 1 / 3;
  }
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group.form-group-submit .download-factsheet {
  align-items: center;
  background-color: #4B977B;
  border: none;
  border-radius: 0.5rem;
  color: #FFFFFF;
  display: flex;
  font-size: 1rem;
  height: 2rem;
  justify-content: center;
  margin: 0 auto;
  text-transform: uppercase;
  width: 250px;
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group .form-label {
  background-color: #BCCBD3;
  border-bottom: 1px solid #344662;
  color: #486680;
  display: block;
  flex: 0 0 100%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  padding: 0.5rem;
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group ul li {
  margin-bottom: 10px;
  padding: 0 10px;
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group ul li input {
  display: none;
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group ul li input:checked + label:before {
  background: #333;
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group ul li input:checked + label:after {
  border-color: #333;
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group ul li label {
  display: block;
  font-size: 16px;
  line-height: 20px;
  padding-left: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #program-form .overlay .program-form__box .program-form__content .program-form__form .form-group ul li label {
    font-size: 18px;
  }
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group ul li label:before {
  border-radius: 50%;
  bottom: 5px;
  content: "";
  height: 10px;
  left: 4px;
  position: absolute;
  top: 5px;
  transition: all 0.5s;
  width: 10px;
  z-index: 2;
}
#program-form .overlay .program-form__box .program-form__content .program-form__form .form-group ul li label:after {
  background: #f7f7f7;
  border: 2px solid #c4c4c4;
  border-radius: 50%;
  bottom: 1px;
  content: "";
  height: 18px;
  left: 0px;
  position: absolute;
  top: 0.05em;
  width: 18px;
}
#program-form .overlay .program-form__box .nf-form-cont .nf-form-title {
  display: none;
}
#program-form .overlay .program-form__box .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content nf-fields-wrap nf-field .hidden-container {
  display: none;
}
#donate-page {
  margin-bottom: -110px;
  padding: 60px 0 120px;
  position: relative;
}
@media screen and (min-width: 992px) {
  #donate-page {
    margin-bottom: -120px;
    padding: 120px 0 240px;
  }
}
#donate-page .donate--background {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
#donate-page .donate--background img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  width: 100%;
}
#donate-page .donate--form {
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  #donate-page .donate--form {
    margin-bottom: 0;
    max-width: 600px;
  }
}
#donate-page .donate--form .form--header {
  align-items: center;
  background-color: #486680;
  border-radius: 1rem 1rem 0 0;
  color: #FFFFFF;
  display: flex;
  padding: 1rem;
}
@media screen and (min-width: 992px) {
  #donate-page .donate--form .form--header {
    padding: 2rem;
  }
}
#donate-page .donate--form .form--header .header--title {
  flex: 1 1 0;
  font-size: 1.5rem;
}
@media screen and (min-width: 992px) {
  #donate-page .donate--form .form--header .header--title {
    font-size: 1.125rem;
  }
}
#donate-page .donate--form .form--header .header--dots {
  display: flex;
  flex: 0 0 auto;
}
#donate-page .donate--form .form--header .header--dots a {
  border: 2px solid #BCCBD3;
  border-radius: 100%;
  display: block;
  height: 18px;
  margin-left: 10px;
  width: 18px;
}
#donate-page .donate--form .form--header .header--dots a.active {
  background-color: #BCCBD3;
  pointer-events: none;
}
#donate-page .donate--form .form--header .header--arrow {
  display: block;
  margin-left: 1rem;
  padding: 0.5rem;
}
#donate-page .donate--form .form--header .header--arrow svg path {
  fill: #FFFFFF;
}
#donate-page .donate--form .form--content {
  background-color: #E3E9E8;
  border-radius: 0 0 1rem 1rem;
  padding: 1.5rem 1rem 2rem;
}
@media screen and (min-width: 992px) {
  #donate-page .donate--form .form--content {
    padding: 3rem 3rem 4rem;
  }
}
#donate-page .donate--form .form--content .content--page {
  display: none;
}
#donate-page .donate--form .form--content .content--page.active {
  display: block;
}
#donate-page .donate--form .form--content .content--page .page--choose {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
#donate-page .donate--form .form--content .content--page .page--portfolio {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
#donate-page .donate--form .form--content .content--page .page--portfolio a {
  color: #344662;
  text-decoration: underline;
}
#donate-page .donate--form .form--content .content--page .page--projects a {
  border: 1px solid #344662;
  border-radius: 1rem;
  color: #344662;
  display: block;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  padding: 1rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  #donate-page .donate--form .form--content .content--page .page--projects a {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1140px) {
  #donate-page .donate--form .form--content .content--page .page--projects a {
    padding: 1rem 6rem;
  }
}
#donate-page .donate--form .form--content .content--page .page--projects a:hover {
  background-color: #4B977B;
  color: #FFFFFF;
}
#donate-page .donate--form .form--content .content--page .page--projects a.active {
  background-color: #4B977B;
  border-color: #4B977B;
  color: #FFFFFF;
  pointer-events: none;
}
#donate-page .donate--form .form--content .content--page .page--type-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
#donate-page .donate--form .form--content .content--page .page--type-tabs .type-tab {
  align-items: center;
  border: 2px solid #344662;
  color: #344662;
  display: flex;
  flex: 0 0 auto;
  font-size: 1.125rem;
  height: 52px;
  justify-content: center;
  text-align: center;
  width: 140px;
}
#donate-page .donate--form .form--content .content--page .page--type-tabs .type-tab:first-child {
  border-radius: 1rem 0 0 1rem;
  margin-right: -1px;
}
#donate-page .donate--form .form--content .content--page .page--type-tabs .type-tab:last-child {
  border-radius: 0 1rem 1rem 0;
  margin-left: -1px;
}
#donate-page .donate--form .form--content .content--page .page--type-tabs .type-tab.active {
  background-color: #344662;
  color: #FFFFFF;
  pointer-events: none;
}
#donate-page .donate--form .form--content .content--page .page--currency-tabs {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
#donate-page .donate--form .form--content .content--page .page--currency-tabs .currency-text {
  font-size: 1rem;
  margin-bottom: 4px;
  margin-right: 1rem;
}
#donate-page .donate--form .form--content .content--page .page--currency-tabs .currency-tab {
  border-bottom: 2px solid transparent;
  color: #344662;
  display: block;
  font-size: 1rem;
  padding: 0.5rem;
}
#donate-page .donate--form .form--content .content--page .page--currency-tabs .currency-tab.active {
  border-color: #D7A023;
  pointer-events: none;
}
#donate-page .donate--form .form--content .content--page .page--prices-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 2rem;
}
#donate-page .donate--form .form--content .content--page .page--prices-grid .price--element {
  align-items: center;
  border: 2px solid #344662;
  border-radius: 1rem;
  color: #344662;
  display: flex;
  height: 52px;
  font-size: 1.125rem;
  justify-content: center;
  text-align: center;
}
#donate-page .donate--form .form--content .content--page .page--prices-grid .price--element:hover {
  background-color: #4B977B;
  color: #FFFFFF;
}
#donate-page .donate--form .form--content .content--page .page--prices-grid .price--element.active {
  background-color: #4B977B;
  border-color: #4B977B;
  color: #FFFFFF;
}
#donate-page .donate--form .form--content .content--page .page--info {
  margin-bottom: 2rem;
}
#donate-page .donate--form .form--content .content--page .page--info .input-group {
  margin-bottom: 1.5rem;
}
#donate-page .donate--form .form--content .content--page .page--info .input-group input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #344662;
  border-radius: 0;
  font-size: 1.125rem;
}
#donate-page .donate--form .form--content .content--page .page--info .input-group.input-group--company {
  display: none;
}
#donate-page .donate--form .form--content .content--page .page--info .input-group.input-group--company.active {
  display: flex;
}
#donate-page .donate--form .form--content .content--page .page--info .input-group.input-group--company input {
  background-color: #BCCBD3;
  border-left: 1px solid #344662;
  border-right: 1px solid #344662;
}
#donate-page .donate--form .form--content .content--page .page--info .form-check {
  margin-bottom: 0.5rem;
}
#donate-page .donate--form .form--content .content--page .page--info .form-check label {
  margin-top: 2px;
}
#donate-page .donate--form .form--content .content--continue {
  background-color: #D7A023;
  border-radius: 1rem;
  box-shadow: 0px 7px 14px rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
  display: block;
  font-size: 1.125rem;
  font-weight: 300;
  padding: 1rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  #donate-page .donate--form .form--content .content--continue {
    font-size: 1.5rem;
  }
}
#donate-page .donate--form .form--content .content--continue:hover {
  background-color: #4B977B;
}
#donate-page .donate--form .form--content .content--continue svg {
  margin-left: 0.5rem;
}
#donate-page .donate--form .form--content .content--continue svg path {
  fill: #FFFFFF;
}
#donate-page .project--preview {
  align-content: stretch;
  align-items: stretch;
  border: 8px solid #D7A023;
  border-radius: 1rem;
  display: none;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
#donate-page .project--preview.active {
  display: flex;
}
#donate-page .project--preview .preview--image {
  flex: 1 1 0;
  min-height: 500px;
  position: relative;
}
#donate-page .project--preview .preview--image img {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}
#donate-page .project--preview .preview--content {
  background-color: #FFFFFF;
  flex: 0 0 auto;
  padding: 1rem;
}
#donate-page .project--preview .preview--content .content--description {
  color: #344662;
  font-size: 1rem;
}
#donate-page .project--preview .preview--content .content--url a {
  color: #D7A023;
  font-size: 1rem;
}
#donate-page .project--preview .preview--content .content--url a:hover {
  color: #4B977B;
}
.donate__thanks {
  margin-bottom: -5rem;
  overflow: hidden;
  padding: 3rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .donate__thanks {
    margin-bottom: -6rem;
    padding: 6rem 0;
  }
}
@media screen and (min-width: 992px) {
  .donate__thanks {
    padding: 10rem 0;
  }
}
.donate__thanks:before {
  background-image: url('../img/tierra-der.png');
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: none;
  height: 740px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 100px;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .donate__thanks:before {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .donate__thanks:before {
    width: 200px;
  }
}
.donate__thanks:after {
  background-image: url('../img/tierra-izq.png');
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: none;
  height: 740px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .donate__thanks:after {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .donate__thanks:after {
    width: 200px;
  }
}
.donate__thanks .donate__thanks--background {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.donate__thanks .donate__thanks--background img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.donate__thanks .thanks__list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .donate__thanks .thanks__list {
    margin: 0 0 3rem;
  }
}
.donate__thanks .thanks__list li {
  font-size: 1.125rem;
  font-weight: 900;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .donate__thanks .thanks__list li {
    font-size: 2rem;
    margin-left: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .donate__thanks .thanks__list li {
    font-size: 3rem;
    margin-left: 3rem;
  }
}
.donate__thanks .thanks__list li:first-child {
  margin-left: 0;
}
.donate__thanks .thanks__text {
  border-bottom: 3px solid #D7A023;
  border-top: 3px solid #D7A023;
  font-size: 1.125rem;
  margin-bottom: 6rem;
  padding: 1rem 0;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .donate__thanks .thanks__text {
    padding: 1.5rem 0;
  }
}
.donate__thanks .thanks__white-box {
  position: relative;
  z-index: 1;
}
.donate__thanks .thanks__white-box:before {
  background-image: url('../img/hoja2.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -70px;
  content: '';
  display: block;
  height: 125px;
  left: -50px;
  position: absolute;
  transform: rotate(180deg);
  width: 140px;
  z-index: -1;
}
.donate__thanks .thanks__white-box:after {
  background-image: url('../img/hoja2.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 125px;
  position: absolute;
  right: -50px;
  top: -70px;
  width: 140px;
  z-index: -1;
}
.donate__thanks .thanks__white-box .white-box__container {
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 6rem;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .donate__thanks .thanks__white-box .white-box__container {
    padding: 1.5rem 2.5rem;
  }
}
.donate__thanks .thanks__white-box .white-box__title {
  color: #D7A023;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.donate__thanks .thanks__white-box .white-box__text p {
  font-size: 1.125rem;
  margin: 0;
  text-align: justify;
}
.donate__thanks .thanks__white-box .white-box__thanks {
  color: #D7A023;
  font-size: 1.125rem;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .donate__thanks .thanks__white-box .white-box__thanks {
    font-size: 1.5rem;
  }
}
.donate__thanks .thanks__white-box .white-box__thanks span {
  font-weight: bold;
}
.donate__thanks .thanks__rrss {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .donate__thanks .thanks__rrss {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.donate__thanks .thanks__rrss li {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .donate__thanks .thanks__rrss li {
    margin-bottom: 0;
    margin-left: 1.125rem;
  }
}
.donate__thanks .thanks__rrss li:first-child {
  margin-left: 0;
}
.donate__thanks .thanks__rrss li a {
  background-color: #FFFFFF;
  border-radius: 5px;
  display: flex;
  flex: 0 0 auto;
}
.donate__thanks .thanks__rrss li a .icon {
  align-items: center;
  border-right: 1px solid #CBCBCB;
  display: flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}
.donate__thanks .thanks__rrss li a .icon svg {
  display: block;
  height: 16px;
  object-fit: contain;
  object-position: center;
  width: 16px;
}
.donate__thanks .thanks__rrss li a .icon svg path {
  fill: #344662;
}
.donate__thanks .thanks__rrss li a .txt {
  align-items: center;
  color: #344662;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  height: 30px;
  padding: 0 0.5rem;
}
.site-under-construction ~ #footer {
  display: none;
}
.under-construction {
  align-items: center;
  background-image: url('../img/bg-under-construction.jpg');
  background-size: cover;
  background-position: center bottom;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 120px;
}
.under-construction .under-construction--title {
  color: #FFFFFF;
  font-size: 130px;
  font-weight: 700;
  letter-spacing: 9px;
  line-height: 1;
  margin: 0 2rem 3rem;
  max-width: 1000px;
  text-align: center;
  text-transform: uppercase;
}
.under-construction .under-construction--coming {
  align-items: center;
  display: flex;
  margin: 0 2rem 3rem;
  max-width: 1000px;
  position: relative;
  width: 100%;
}
.under-construction .under-construction--coming:before,
.under-construction .under-construction--coming:after {
  background-color: #FFFFFF;
  content: '';
  display: block;
  height: 6px;
  flex: 1 1 0;
}
.under-construction .under-construction--coming .coming--text {
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  padding: 0 1rem;
  text-align: center;
  text-transform: uppercase;
}
.under-construction .under-construction--percentage {
  margin: 0 2rem 12rem;
  max-width: 1000px;
  position: relative;
  width: 100%;
}
.under-construction .under-construction--percentage .percentage--bar {
  background-color: #212D3F;
  border-radius: 5px;
  height: 50px;
  overflow: hidden;
  position: relative;
}
.under-construction .under-construction--percentage .percentage--bar .bar--fill {
  background-color: #AEB5C0;
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 80%;
}
.under-construction .under-construction--percentage .percentage--numbers {
  left: 0;
  position: absolute;
  margin-top: 1rem;
  top: 100%;
  width: 100%;
}
.under-construction .under-construction--percentage .percentage--numbers .number {
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  top: 0;
}
.under-construction .under-construction--percentage .percentage--numbers .number:nth-child(2) {
  left: 80%;
}
.under-construction .under-construction--percentage .percentage--numbers .number:last-child {
  left: 100%;
}
.under-construction .under-construction--rrss {
  display: flex;
  justify-content: center;
}
.under-construction .under-construction--rrss .rrss {
  align-items: center;
  border-radius: 100%;
  border: 1px solid #FFFFFF;
  display: flex;
  flex: 0 0 auto;
  height: 40px;
  justify-content: center;
  margin: 0 0.75rem;
  width: 40px;
}
.under-construction .under-construction--rrss .rrss img {
  display: block;
  height: 18px;
  object-fit: contain;
  object-position: center;
  width: 18px;
}
/*# sourceMappingURL=main.css.map */