header {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  background-color: #000000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  padding: 2vh 0;
}
header img {
  width: 130px;
  height: 80px;
}
header nav {
  display: none;
}
header nav ul {
  display: flex;
}
header nav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  margin: 0 12px;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background-color: #ffffff;
  transition: width 0.5s ease-in-out;
}
header nav ul li a:hover::after {
  width: 100%;
}

footer {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000000;
  overflow-x: hidden;
  padding-top: 3vh;
}
footer .div-principal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40vw;
}
footer .div-principal-footer div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .div-principal-footer div img {
  width: 130px;
  height: 80px;
}
footer .div-principal-footer div div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 10px 0 5vh;
}
footer .div-principal-footer div div img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin: 0 5px;
  border: 2px solid white;
  transition: 1s;
}
footer .div-principal-footer div div img:hover {
  scale: 1.05;
}
footer .div-principal-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
footer .div-principal-footer ul li {
  margin-bottom: 12px;
}
footer .div-principal-footer ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  margin: 0 12px;
}
footer .div-principal-footer ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background-color: #ffffff;
  transition: width 0.5s ease-in-out;
}
footer .div-principal-footer ul li a:hover::after {
  width: 100%;
}
footer p {
  color: rgb(223, 223, 223);
  font-size: 14px;
  margin: 2vh 0;
  text-align: center;
}
footer p a {
  text-decoration: underline;
  color: white;
}

@media (min-width: 750px) {
  header {
    justify-content: space-around;
    padding: 4vh 5vw;
  }
  header nav {
    display: block;
  }
  footer {
    padding-top: 8vh;
  }
  footer .div-principal-footer {
    flex-direction: row;
    width: 100vw;
    padding: 0 8vw;
  }
  footer .div-principal-footer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 28vw;
  }
  footer .div-principal-footer ul {
    width: 28vw;
    justify-content: start;
  }
  footer .div-principal-footer ul li {
    margin: 0 auto;
    margin-bottom: 10px;
  }
  footer .div-principal-footer ul li a {
    text-decoration: none;
    font-size: 18px;
  }
}
@media (min-width: 1000px) {
  header {
    padding: 3vh 0 3vh 6vw;
  }
  header img {
    width: 160px;
    height: 90px;
  }
  header nav ul li a {
    font-size: 24px;
    margin-right: 20px;
  }
  footer .div-principal-footer div img {
    width: 180px;
    height: 100px;
  }
  footer .div-principal-footer div div img {
    width: 50px;
    height: 50px;
  }
  footer .div-principal-footer ul li a {
    font-size: 22px;
  }
  footer p {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  header img {
    width: 230px;
    height: 150px;
  }
  header nav ul li a {
    font-size: 28px;
    margin-right: 20px;
  }
  footer .div-principal-footer div img {
    width: 230px;
    height: 150px;
  }
  footer .div-principal-footer div div img {
    width: 70px;
    height: 70px;
  }
  footer .div-principal-footer ul li a {
    font-size: 28px;
  }
  footer p {
    font-size: 20px;
  }
}/*# sourceMappingURL=headerfooter.css.map */