footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 50px 20px 50px;
  background-color: rgba(238, 238, 238, 0.7);
  box-sizing: border-box;
}

.footer-row {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 20px;
}

.footer-lists {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-subheading {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.footer-lists li {
  margin-bottom: 5px;
}

.footer-link {
  color: #333;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}

.footer-link:hover {
  color: #999;
}

.footer-divider {
  margin-top: 30px;
  color: #333;
  width: 100px;
  height: 1px;
  background-color: #333;
  border: none;
}

.footer-copyright {
  margin-top: 20px;
  text-align: center;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .footer-row {
    width: 90%;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}

@media only screen and (max-width: 767px) {
  footer {
    padding: 30px 20px 15px 20px;
  }

  .footer-row {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-lists {
    width: 100%;
    text-align: center;
  }

  .footer-subheading {
    font-size: 1.2em;
    text-align: center;
  }

  .footer-lists li {
    width: 100%;
  }

  .footer-divider {
    margin-top: 15px;
  }

  .footer-copyright {
    font-size: 0.9em;
  }
}
