footer.footer {
  background-color: var(--wp--preset--color--light);
}
footer.footer .container {
  border-top: 1px solid #E0E0E0;
  padding: 20px 0px;
}
footer.footer .footer-content {
  justify-content: space-between;
  text-align: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}
footer.footer .footer-content .footer-logo {
  height: 50px;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-content .footer-logo {
    height: 100px;
  }
}
footer.footer .footer-content .footer-logo img {
  height: 100%;
  object-fit: contain;
}
footer.footer .footer-content .menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-left: 0px;
  padding-left: 0px;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-content .menu ul {
    flex-direction: column;
    gap: 10px;
  }
}
footer.footer .footer-content .menu ul li a {
  font-size: 14px;
  font-weight: 600;
}