body {
  margin: 0px;
  background-color: #fff;
  max-width: 100vw;
  overflow-y: auto;
  overflow-x: none;
}

.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;
  }
}

a {
  outline: none !important;
  box-shadow: none !important;
}
@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 */
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Regular.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Bold.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
  font-weight: bold;
}
.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;
}
p {
  font-family: var(--fuente-texto);
}
/* 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%;
  }
}

/* Banner */
div#header {
  overflow: hidden;
  position: relative;
  min-height: 40vh;
}
.img-banner {
  width: 100%;
  filter: drop-shadow(0px 2px 20px #444);
}
div.titulo {
  margin-top: 25%;
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 45%;
  left: 0px;
}
div.titulo > div {
  cursor: pointer;
  user-select: none;
  border: solid 13px #fff;
  display: inline-block;
  padding: 0.7em 3em;
  border-radius: 70px;
  filter: drop-shadow(3px 2px 3px rgba(0, 0, 0, 0.6));
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

h1.titulo {
  /*box-shadow: none;*/
  text-shadow: 2px 1px 3px #121212dd;
  color: #fff;
  display: inline-block;
  line-height: 1.1em;
  font-family: var(--fuente-titulos);
}
div.subtitulo {
  position: relative;
  text-align: center;
  width: 100%;
  margin-bottom: 0.5em;
}
div.subtitulo > div {
  display: inline-block;
  border: solid 11px #fff;
  border-radius: 70px;
  filter: none;
  padding: 0.6em 1.7em 0.3em 1.8em;
}

h3.titulo b {
  font-size: 3.5rem;
}
div.subtitulo > div.color-1,
h3.titulo.color-1 {
  border-color: #6d1b1b;
  color: #6d1b1b;
}
div.subtitulo > div.color-2 {
  filter: drop-shadow(-3px 3px 0px rgba(0, 0, 0, 0.4));
}
div.subtitulo > div.color-2,
h3.titulo.color-2 {
  border-color: #fff;
  color: #fff;
}
div.row.color-1 {
  background-color: #6d1b1b;
  color: #fff;
  filter: drop-shadow(7px 7px 0px rgba(0, 0, 0, 0.4));
}
div.row.color-2 {
  background-color: #fff;
  color: #000;
  filter: drop-shadow(-7px 7px 0px rgba(0, 0, 0, 0.4));
}
div.number {
  font-family: Anton;
  font-size: 15em;
  font-weight: bold;
  line-height: 0px;
}
div.number.color-1 {
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 3px #6d1b1b;
}
div.number.color-2 {
  -webkit-text-fill-color: #f9bf5b;
  -webkit-text-stroke: 3px #fff;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  #header {
    min-height: 0px;
  }
  .img-banner {
    width: auto;
    height: 70vh;
  }
  div.titulo {
    margin-top: 25px;
    margin-bottom: 25px;
    position: relative;
  }
  div.titulo > div {
    filter: none;
    border: solid 8px #651717;
    animation-duration: 3s;
    padding: 0.7em 2em 0.5em 2em;
  }
  h1.titulo {
    font-weight: bolder;
    color: #000;
    text-shadow: none;
    font-size: 1.9em;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  div.titulo > div {
    border: solid 8px #fff;
  }
  h1.titulo {
    font-size: 2em;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  div.titulo > div {
    border: solid 10px #fff;
  }
  h1.titulo {
    font-size: 3em;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  h1.titulo {
    font-size: 4em;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1400px) {
  h1.titulo {
    font-size: 6.5em;
  }
}

/* Secciones */

#mision,
#vision {
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 1em;
}

div.titulo-seccion {
  background-image: url(../img/basetitulo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 226px 90.8px;
  width: 226px;
  height: 90.8px;
}

div.titulo-seccion h2 {
  font-family: var(--fuente-titulos);
  font-size: 4rem;
}

p.text-seccion,
p.text-seccion b {
  font-size: 2.5rem;
  text-align: center;
  direction: ltr;
}
img.img-seccion {
  width: 90%;
  height: auto;
  animation-iteration-count: infinite;
  animation-duration: 5s;
}
.seccion-left {
  direction: rtl;
}
div.contenedor-img-seccion {
  width: 10px;
  height: 10px;
}
.bg-amarillo {
  background-color: #f7a81fbb;
  transform: skewY(2deg);
  padding-top: 1em;
  padding-bottom: 1em;
  margin-top: 2em;
  margin-bottom: 2em;
}
.bg-amarillo > div {
  transform: skewY(-2deg);
}

#nosotros {
  background-color: #f9bf5b;
  padding-top: 1em;
  padding-bottom: 1em;
  margin-top: 2em;
  margin-bottom: 2em;
  position: relative;
}
#nosotros:before {
  box-shadow: inset 0 -1px 0 0 #f9bf5b, 0 1px 0 0 #f9bf5b;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,100 100,0 100,100' style='fill:%23f9bf5b%3B' /%3E%3C/svg%3E");
}
#nosotros:after {
  box-shadow: inset 0 -1px 0 0 #f9bf5b, 0 1px 0 0 #f9bf5b;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,100 100,0 100,100' style='fill:%23f9bf5b%3B' /%3E%3C/svg%3E");
}
#nosotros:before,
#nosotros:after {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 3em;
  position: absolute;
  width: 100%;
}
#nosotros:before {
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
  left: 0;
  top: -3em;
}
#nosotros:after {
  -moz-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
  bottom: -3em;
  left: 0;
  z-index: -1;
}

.video-institucional .container .row > div:first-of-type iframe {
  width: 100%;
  border: solid 10px #6d1b1b;
}

.video-institucional .container .row > div:first-of-type::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  border: solid 2px #6d1b1b;
  z-index: -1;
  transform: rotateZ(-3deg);
}

.video-institucional .container .row > div:first-of-type::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;

  left: 0px;
  border: solid 2px #6d1b1b;
  z-index: -1;
  transform: rotateZ(3deg);
}

.video-institucional .container .row > div:last-of-type h1 {
  font-size: 5rem;
  text-align: center;
  font-weight: bolder;
  font-family: var(--fuente-titulos);
  color: #6d1b1b;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  p.text-seccion {
    text-align: justify;
  }
  .seccion-left {
    direction: ltr;
  }
  div.contenedor-img-seccion {
    display: none;
  }
  #nosotros,
  .bg-amarillo {
    padding-top: 1.7em;
    padding-bottom: 2.5em;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  div.contenedor-img-seccion {
    display: none;
  }
  img.img-seccion {
    width: 80%;
  }
  #nosotros,
  .bg-amarillo {
    padding-bottom: 2em;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  img.img-seccion {
    width: 100%;
  }
  #nosotros,
  .bg-amarillo {
    padding-top: 1em;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  #nosotros,
  .bg-amarillo {
    padding-top: 1.2em;
  }
  img.img-seccion {
    width: 90%;
  }
  div.contenedor-img-seccion {
    width: 10px;
    height: 10px;
    display: flex;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}
