footer {
  width: 100%;
  min-height: 35vh;
  background-color: #333;
  color: white;
  display: flex;
  align-items: center;
  background-image: url("./img/footer.jpg");
  border-top: 3px solid var(--main-color);
  background-repeat: no-repeat;
  object-fit: cover;
}
.footer-sections {
  width: 70%;
  display: flex;
  margin: 0 auto;
  align-items: left;
  justify-content: center;
}
.information-section img {
  /* width: 20%; */
}
.footer-description p {
  font-size: medium;
}
.logo {
  display: flex;
  align-items: left;
  flex-direction: column;
  justify-content: left;
}
.links a {
  text-decoration: none;
  color: white;
}
.links li {
  list-style-type: none;
  margin-top: 0.5em;
}
.footer-contact {
  width: 33%;
}
.footer-links {
  width: 23%;
}
.information-section {
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: left;
  align-items: left;
  width: 33%;
}
.social-icons {
  display: flex;
}
.social-icons img {
  border: 1px solid var(--main-color);
  border-radius: 45px;
  padding: 8px;
  width: 40px;
  margin-right: 0.5em;
}
@media (max-width: 500px) {
  .footer-sections {
    flex-direction: column;
    align-items: left;
    justify-content: space-between;
    padding-top: 2em;
  }
  .information-section {
    width: 90%;
  }
  .information-section img {
    width: 70%;
  }
  .footer-links {
    width: 90%;
    margin-bottom: 2em;
  }
  .footer-contact {
    width: 90%;
  }
  .links {
    display: none;
  }
  .social-icons img {
    padding: 3px;
    margin-right: 0.5em;
    width: 35px;
  }
}
.footer-text {
  font-size: xx-small;
}