
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  font-family: 'Poppins', sans-serif;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: #1a1919;
  background-color: #b5a9b2;
}

.bloque_texto {
  line-height: 150%;
}

.bloque_texto_line {
  font-style: italic;
}

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

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


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  margin-top: 30px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: black;
}

#hero h2 {
  color: #484848;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

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

@media (max-width: 991px) {
  #hero {
    height: 100vh;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 120%;
  }
}

@media (max-width: 768px) {
  #hero {
    margin-top: 20px;
  }

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

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

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 27px 30px;
  background-color: rgb(43, 40, 63);
  margin-bottom: 0;

}

footer > * {
  flex:  1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 10.25em;
}

.nav__title {
  font-weight: 800;
  font-size: 16px;
  color: azure;
  text-transform: uppercase;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: max-content;
  background-color: rgb(33, 33, 33, 0.07);
  border-radius: 100px;
  color: #2f2f2f;
  line-height: 0;
  margin: 0.6em 0;
  font-size: 1rem;
  padding: 0 0em;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer li {
  line-height: 2em;
}

footer a {
  text-decoration: none;
}

.footer__nav {
  display: flex;
    flex-flow: row wrap;
}

.footer__nav > * {
  flex: 1 50%;
  margin-right: 1.25em;
}

.nav__ul li a {
  color: azure;
  font-weight: lighter;
}

.legal {
  display: inline;
  flex-wrap: wrap;
  color: rgb(213, 212, 212);
  text-align: right;
}
  
@media screen and (min-width: 24.375em) {
  .legal {
    margin-left: auto;
  }
}

@media screen and (min-width: 40.375em) {
  .footer__nav > * {
    flex: 1;
  }
  
  .footer__addr {
    flex: 1 0px;
  }
  
  .footer__nav {
    flex: 2 0px;
  }
}