footer {
  background: var(--brand-secondary-color-darkest);
  font-size: 0.85rem;
  line-height: 23px;
  padding: 60px 0 25px 0;
}
footer * {
  color: var(--brand-secondary-color-text);
}

footer a.button {
  font-size: 0.85rem;
  padding: 8px 22px;
  height: fit-content;
  width: fit-content;
}

.footer-logo {
  object-fit: contain;
  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.footer-title,h1,h2,h3,h4,h5,h6 {
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.footer-social-link{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  transition: filter 0.3s ease;
}
.footer-social-link:hover, .footer-social-link:focus {
  filter: invert(1) brightness(1.5);
}
.footer-social-link img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid var(--brand-secondary-color-text);
  padding-top: 25px;
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}

.footer-legal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-self: flex-end;
  align-self: end;
}

.footer-legal ul li:not(:last-child)::after {
  content: '|';
  margin: 0 15px;
}


@media (max-width: 768px) {
  
  .footer-legal ul {
    justify-self: center;
  }
}
