body {
  overflow-x: hidden;
  background-color: #2772b8;
  background: linear-gradient(to bottom, #2772b8 60%, #fff 40%);
}

.logo_EcoYuma {
  position: relative;
  left: -7px;
  top: 0px;
  width: 300px;
  height: 186px;
  border: 0px solid #808080;
  text-align: center;
}

.logo_EcoYuma_arb {
  position: absolute;
  height: 97%;
  width: 99%;
  margin: 0px auto;
  animation-name: escalar;
  animation-duration: 2s;
}

.logo_EcoYuma_arb_tallo {
  position: absolute;
  height: 186px;
  width: 300px;
  margin: 0px auto;
  background-image: url(../img/cargador/tallo.png);
  background-size: 100%;
}

.logo_EcoYuma_arb_hojas {
  position: absolute;
  width: 185px;
  height: 129px;
  margin: 0px auto;
  background-image: url(../img/cargador/hojas.png);
  background-size: 100%;
  animation-name: mover_hojas;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

.logo_EcoYuma_tex {
  height: 186px;
  width: 300px;
  margin: 0px auto;
  background-size: 100%;
  animation-name: aparecer;
  animation-duration: 3s;
}

.cnt_logo {
  width: 350px;
  height: 350px;
  transform: scale(0.9);
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 175px;
  margin: -40px;
  overflow: hidden;
}

.bg_logo_EcoYuma {
  background: gray;
}

.cnt_logo:hover {
  transition: all 0.8s ease-in-out;
  transform: scale(1);
  -webkit-transform: scale(1);
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cnt_logo:hover > * {
  transition: all 0.8s ease-in-out;
  transform: rotate(-360deg);
  -webkit-transform: scale(0.9);
  filter: inherit;
}

.logo_EcoYuma_tex_1 {
  top: -5px;
  height: 186px;
  width: 300px;
  margin: 0px auto;
  position: absolute;
  background-image: url(../img/cargador/tex1.png);
  background-size: 100%;
  animation-name: aparecer;
  animation-duration: 5s;
}
.logo_EcoYuma_tex_2 {
  height: 186px;
  width: 300px;
  margin: 0px auto;
  position: absolute;
  background-image: url(../img/cargador/tex2.png);
  background-size: 100%;
  animation-name: escalar;
  animation-duration: 3s;
}

.logo_EcoYuma_tex_3 {
  right: -10px;
  height: 186px;
  width: 300px;
  margin: 0px auto;
  position: absolute;
  background-image: url(../img/cargador/tex3.png);
  background-size: 100%;
  animation-name: desplazar_x;
  animation-duration: 5s;
}

.logo_EcoYuma_arb_cargando {
  position: absolute;
  height: 97%;
  width: 99%;
  margin: 0px auto;
  animation-name: escalar_cargando;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes escalar_cargando {
  0% {
    transform: scale(0.5);
    top: 15px;
    left: -18px;
  }
  50% {
    transform: scale(0.7);
    top: 12px;
    left: -7px;
  }
  100% {
    transform: scale(0.5);
    top: 15px;
    left: -18px;
  }
}
@keyframes subir_bajar {
  0% {
    top: -5px;
  }
  100% {
    top: 10px;
    opacity: 0;
  }
}

@keyframes mover_hojas {
  0% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(-3deg);
  }
  10% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(-3deg);
  }
  20% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  30% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes escalar {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes aparecer {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes desplazar_x {
  0% {
    right: -300px;
  }
  40% {
    right: -10px;
  }
  100% {
    right: -10px;
  }
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}
.sombra {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.36);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.36);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.36);
}
.centrado {
  display: flex;
  justify-content: center;
  align-items: center;
}
.centrado-vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

/* Barra de navegación */

.navbar_boton {
  color: #333;
  background-position: bottom;
  background-image: -webkit-linear-gradient(0deg, #009045, #70a83b, #a3bd31);
  background-size: 0% 0%;
  margin-bottom: 4px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-family: var(--fuente-texto);
  font-size: 1.6rem;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.navbar_boton:hover {
  color: #000;
  background-size: 100% 5%;
  animation-name: ani_btn;
  animation-duration: 1.4s;
}
@keyframes ani_btn {
  0% {
    background-size: 0% 5%;
  }
  15% {
    background-size: 100% 5%;
  }
  37% {
    background-size: 78% 5%;
  }
  50% {
    background-size: 100% 5%;
  }
  64% {
    background-size: 91% 5%;
  }
  70% {
    background-size: 100% 5%;
  }
  100% {
    background-size: 100% 5%;
  }
}

header {
  width: 100%;
}

header > .fondo-header {
  position: absolute;
  width: 100%;
  min-width: 1254px;
  max-height: 60rem;
  filter: drop-shadow(0rem 0.4rem 7.9rem rgba(0, 0, 0, 0.25));
}

header > .grid-1 {
  display: grid;
  grid-template-columns: 60% 40%;
  position: relative;
  max-width: 120rem;
  margin: auto;
  padding: 0rem 1.5rem;
  z-index: 1;
}

header > .grid-1 > .contenedor-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

header > .grid-1 > div:first-of-type {
  align-items: flex-start;
}

header > .grid-1 > div:first-of-type h1 {
  font-family: var(--fuente-titulos);
  font-size: 4.8rem;
  color: #2772b8;
  margin-bottom: 2rem;
}

header > .grid-1 > div:first-of-type p {
  width: 72%;
  font-family: var(--fuente-texto);
  font-size: 1.4rem;
  color: #5c5c5c;
  margin-bottom: 2rem;
}

header > .grid-1 > div:first-of-type button {
  width: 12.5rem;
  height: 5rem;
  font-family: var(--fuente-texto);
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #2772b8;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
}

header > .grid-1 > div:first-of-type button:hover {
  color: #fff;
  background-color: #57983f;
  text-decoration: none;
}

header > .grid-1 > div:first-of-type button:active {
  transform: scale(1.1);
}

header > .grid-1 > div:first-of-type button::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 2rem;
  margin-top: 4rem;
  background-color: #06345f;
  filter: blur(20px);
  border-radius: 1rem;
  z-index: -1;
}

header > .grid-1 > div:last-of-type > .logo-yuma-siembra {
  position: relative;
  max-width: 44rem;
  top: 2rem;
}

/* Logo */

.cls-13 {
  animation: animacion-1 1s;
  transform-origin: 50% 100%;
}

.cls-14,
.cls-12,
.cls-11,
.cls-10,
.cls-9,
.cls-8,
.cls-7,
.cls-6,
.cls-5,
.cls-4,
.cls-3,
.cls-2,
.cls-1 {
  animation: animacion-1 5s;
  transform-origin: 50% 100%;
  transform-box: fill-box;
  z-index: 1;
}

.cls-14:hover,
.cls-12:hover,
.cls-11:hover,
.cls-10:hover,
.cls-9:hover,
.cls-8:hover,
.cls-7:hover,
.cls-6:hover,
.cls-5:hover,
.cls-4:hover,
.cls-3:hover,
.cls-2:hover,
.cls-1:hover {
  animation: animacion-5 linear 0.5s;
  transform-origin: center;
}
.animacion-3 {
  animation: animacion-3 3s linear infinite;
  transform-origin: 50% 100%;
  transform-box: fill-box;
}

.caer {
  position: relative;
  /* transform: translateY(1500px) !important;
  transition: 500s linear !important; */
  animation: animacion-4 linear 6s !important;
}
/* Animaciones */

@keyframes animacion-1 {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes animacion-2 {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes animacion-3 {
  0% {
    transform: rotateZ(0deg);
  }
  50% {
    transform: rotateZ(-2deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}

@keyframes animacion-4 {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(1500px);
  }
}

@keyframes animacion-5 {
  0% {
    transform: rotateZ(0deg);
  }
  50% {
    transform: rotateZ(-10deg);
  }
  100% {
    transform: rotateZ(10deg);
  }
}

/* Cuerpo */

/* Sección nosotros */
#nosotros {
  margin-top: 6.7rem;
}

#nosotros > .grid-nosotros {
  display: grid;
  grid-template-columns: 50% 50%;
  max-width: 1200px;
  margin: auto;
  padding: 0rem 1.5rem;
}

#nosotros > .grid-nosotros > .contenedor-nosotros > .nosotros {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 90%;
  height: 100%;
}

#nosotros > .grid-nosotros > .contenedor-nosotros > .nosotros > h1 {
  margin: 0rem auto;
  font-family: var(--fuente-titulos);
  font-size: 4.8rem;
  color: #fff;
}

#nosotros > .grid-nosotros > .contenedor-nosotros > .nosotros > p {
  width: 100%;
  font-family: var(--fuente-texto);
  font-size: 1.6rem;
  text-align: justify;
  color: #fff;
}

#nosotros > .grid-nosotros > .contenedor-nosotros > .nosotros > button {
  width: 12.5rem;
  height: 5rem;
  font-family: var(--fuente-texto);
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2772b8;
  background-color: #fff;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
}

#nosotros > .grid-nosotros > .contenedor-nosotros > .nosotros > button:hover {
  color: #fff;
  text-decoration: none;
  background-color: #57983f;
  border: none;
}

#nosotros > .grid-nosotros > .contenedor-nosotros > .nosotros > button:active {
  transform: scale(1.1);
  border: none;
}

#nosotros > .grid-nosotros > .contenedor-nosotros > .nosotros > button::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 2rem;
  margin-top: 4rem;
  background-color: #224415;
  filter: blur(20px);
  border-radius: 1rem;
  border: none;
  z-index: -1;
}

#nosotros > .grid-nosotros > .contenedor-nosotros > .nosotros > h1,
#nosotros > .grid-nosotros > .contenedor-nosotros > .nosotros > p,
#nosotros > .grid-nosotros > .contenedor-nosotros > .nosotros > button {
  margin-bottom: 3rem;
}

#nosotros > .grid-nosotros > .contenedor-galeria-1 > .galeria-1 {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: space-evenly;
  height: 68rem;
  max-width: 58.5rem;
}

#nosotros
  > .grid-nosotros
  > .contenedor-galeria-1
  > .galeria-1
  > img:nth-of-type(1) {
  box-shadow: 0rem 0rem 2.2rem 0.3rem rgba(0, 0, 0, 0.25);
}

#nosotros
  > .grid-nosotros
  > .contenedor-galeria-1
  > .galeria-1
  > img:nth-of-type(2) {
  position: relative;
  top: -5rem;
  box-shadow: 0rem 0rem 2.2rem 0.3rem rgba(0, 0, 0, 0.25);
}

#nosotros
  > .grid-nosotros
  > .contenedor-galeria-1
  > .galeria-1
  > img:nth-of-type(4) {
  position: relative;
  top: -1rem;
  box-shadow: 0rem 0rem 2.2rem 0.3rem rgba(0, 0, 0, 0.25);
}

#nosotros
  > .grid-nosotros
  > .contenedor-galeria-1
  > .galeria-1
  > img:nth-of-type(4) {
  position: relative;
  top: -7rem;
  box-shadow: 0rem 0rem 2.2rem 0.3rem rgba(0, 0, 0, 0.25);
}
#nosotros
  > .grid-nosotros
  > .contenedor-galeria-1
  > .galeria-1
  > img:nth-of-type(5) {
  position: relative;
  top: -3rem;
  box-shadow: 0rem 0rem 2.2rem 0.3rem rgba(0, 0, 0, 0.25);
}

#nosotros
  > .grid-nosotros
  > .contenedor-galeria-1
  > .galeria-1
  > img:nth-of-type(6) {
  position: relative;
  top: -4.6rem;
  box-shadow: 0rem 0rem 2.2rem 0.3rem rgba(0, 0, 0, 0.25);
}

/* Sección objetivo */
#objetivo {
  margin-bottom: 3rem;
}

#objetivo > img {
  position: absolute;
  width: 100%;
  min-width: 1254px;
  max-height: 60rem;
  /* filter: drop-shadow(0rem -0.4rem 7.9rem rgba(0, 0, 0, 0.25)); */
  transform: rotateZ(180deg);
  z-index: -1;
}

#objetivo > .grid-objetivo {
  display: grid;
  grid-template-columns: 50% 50%;
  max-width: 120rem;
  margin: auto;
  padding: 0rem 1.5rem;
}
#objetivo > .grid-objetivo > .contenedor-galeria-2 > .galeria-2 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  max-width: 55.8rem;
  padding-top: 5rem;
}

#objetivo
  > .grid-objetivo
  > .contenedor-galeria-2
  > .galeria-2
  > img:nth-of-type(1) {
  width: 28rem;
  border-radius: 20rem;
  box-shadow: 0rem 0rem 3.4rem 0.6rem rgba(0, 0, 0, 0.25);
}

#objetivo
  > .grid-objetivo
  > .contenedor-galeria-2
  > .galeria-2
  > img:nth-of-type(2) {
  width: 16.5rem;
  border-radius: 20rem;
  box-shadow: 0rem 0rem 3.4rem 0.6rem rgba(0, 0, 0, 0.25);
}

#objetivo
  > .grid-objetivo
  > .contenedor-galeria-2
  > .galeria-2
  > img:nth-of-type(3) {
  width: 20rem;
  border-radius: 20rem;
  box-shadow: 0rem 0rem 3.4rem 0.6rem rgba(0, 0, 0, 0.25);
}

#objetivo
  > .grid-objetivo
  > .contenedor-galeria-2
  > .galeria-2
  > img:nth-of-type(4) {
  width: 27rem;
  border-radius: 20rem;
  box-shadow: 0rem 0rem 3.4rem 0.6rem rgba(0, 0, 0, 0.25);
}

#objetivo
  > .grid-objetivo
  > .contenedor-galeria-2
  > .galeria-2
  > img:nth-of-type(5) {
  width: 19.8rem;
  border-radius: 20rem;
  box-shadow: 0rem 0rem 3.4rem 0.6rem rgba(0, 0, 0, 0.25);
}

#objetivo > .grid-objetivo > .contenedor-objetivo {
  display: flex;
  justify-content: flex-end;
}

#objetivo > .grid-objetivo > .contenedor-objetivo > .objetivo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 90%;
  height: 100%;
}

#objetivo > .grid-objetivo > .contenedor-objetivo > .objetivo > h1 {
  position: relative;
  font-family: var(--fuente-titulos);
  font-size: 4.8rem;
  font-weight: bold;
  color: #2772b8;
  margin: 0rem auto;
  margin-bottom: 3rem;
}

#objetivo > .grid-objetivo > .contenedor-objetivo > .objetivo > p {
  font-family: var(--fuente-texto);
  font-size: 1.6rem;
  text-align: justify;
  color: #5c5c5c;
  width: 100%;
  margin-bottom: 3rem;
}

/*
-------------------------/---------------------
Animaciones
-------------------------/--------------------- 
 */
.animacion-galeria {
  animation: animacionGaleria 2s infinite 2s linear;
}

@keyframes animacionGaleria {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

/* Puntos de interrupción */

@media only screen and (max-width: 1003px) {
  header {
    background-color: #fff;
  }
  header > img {
    display: none;
  }
  header > .grid-1 {
    grid-template-columns: 100%;
  }
  header > .grid-1 > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header > .grid-1 > div:first-of-type {
    align-items: center;
    margin-top: 4rem;
  }
  header > .grid-1 > div:first-of-type h1 {
    text-align: center;
  }
  header > .grid-1 > div:first-of-type p {
    text-align: center;
  }
  #nosotros > .grid-nosotros {
    grid-template-columns: 100%;
  }
  #nosotros > .grid-nosotros > .contenedor-nosotros > .nosotros {
    width: 100%;
    align-items: center;
  }
  #nosotros > .grid-nosotros > .contenedor-galeria-1 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #objetivo {
    margin-top: 2rem;
    background-color: #fff;
  }
  #objetivo > img {
    display: none;
  }
  #objetivo > .grid-objetivo {
    grid-template-columns: 100%;
  }
  #objetivo > .grid-objetivo > .contenedor-galeria-2 {
    grid-row: 2;
    display: flex;
    justify-content: center;
  }
  #objetivo > .grid-objetivo > .contenedor-galeria-2 > .galeria-2 {
    padding: 0rem;
  }

  #objetivo > .grid-objetivo > .contenedor-objetivo {
    justify-content: center;
  }
  #objetivo > .grid-objetivo > .contenedor-objetivo > .objetivo {
    width: 100%;
  }
  #objetivo > .grid-objetivo > .contenedor-objetivo > .objetivo h1 {
    text-align: center;
  }
}

@media only screen and (max-width: 514px) {
  #nosotros
    > .grid-nosotros
    > .contenedor-galeria-1
    > .galeria-1
    > img:nth-of-type(1n + 2) {
    display: none;
  }
  #nosotros > .grid-nosotros > .contenedor-galeria-1 > .galeria-1 {
    height: auto;
  }
  #objetivo
    > .grid-objetivo
    > .contenedor-galeria-2
    > .galeria-2
    > img:nth-of-type(1n + 2) {
    display: none;
  }
}
