@import url("https://fonts.googleapis.com/css2?family=Baskervville&family=Nunito+Sans:wght@400;700&display=swap");
@font-face {
  font-family: "Avenir Light";
  src: url("../assets/fonts/avenir-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}
footer img {
  width: 110px;
  margin-top: 60px;
}
footer p {
  margin-top: 15px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
}
footer p:last-of-type {
  margin-top: 20px;
  color: #535353;
  font-weight: 300;
}
footer .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 15px;
}
footer .socials a {
  transition: all 0.3s ease;
}
footer .socials a img {
  margin: 0;
  width: 30px;
  height: 30px;
}
footer .socials a:hover {
  scale: 1.1;
}
footer #footer-bar {
  width: 85%;
  border-top: 1px solid #725a58;
  border-bottom: 1px solid #725a58;
  background-color: transparent;
  margin-top: 40px;
}
footer #footer-bar ul {
  padding: 20px 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
footer #footer-bar ul li {
  list-style: none;
}
footer #footer-bar ul li a {
  text-decoration: none;
  color: #725a58;
  font-size: 20px;
  width: 100%;
  height: 30px;
  transition: all 0.3s ease;
}
footer #footer-bar ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 868px) {
  footer #footer-bar ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 40px !important;
  }
  footer #footer-bar ul li {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  footer #footer-bar ul li a {
    width: 100px !important;
  }
}

/*# sourceMappingURL=footer.css.map */
