/*---FOOTER---*/
footer {
  margin-left: 20%;
  width: 80%;
  background-color: #212121;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
/*---FOOTER CONTACTO---*/
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  min-height: 300px;
}
.footer-container img {
  width: 40px;
  height: 40px;
}
.contacto-info {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 15px;
  padding: 20px;
  text-align: center;
  height: 200px;
}
.contacto-titulo {
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffa040;
}
.contacto-info ul li {
  padding-top: 5px;
}
.contacto-info ul li a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  font-size: 12px;
}
.contacto-info ul li a:hover {
  color: #ffa040;
  font-weight: 400;
  text-decoration: none;
  font-size: 12px;
}

@media (max-width: 820px) {
  footer {
    margin-left: 0;
    width: 100%;
  }
  .footer-container {
    padding: 50px 0;
    height: 70vh;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contacto-info {
    padding: 10px;
    height: auto;
  }
}
