footer.footer {
  padding: 3rem 0;
}
footer.footer .footer-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  footer.footer .footer-logos {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  footer.footer .footer-logos {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 1.5rem;
  }
}
footer.footer .footer-logos .logo-link {
  display: flex;
}
footer.footer .footer-logos .logo-link .image-container {
  justify-content: center;
  align-items: center;
}
footer.footer .footer-logos .logo-link .image-container .image-box {
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.footer .footer-logos .logo-link .image-container .image-box img {
  height: 100%;
  max-height: 100%;
  width: auto;
}
footer.footer .footer-logos .logo-link .image-container .caption .caption-inner {
  display: none;
}
footer.footer .footer-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 6rem;
}
@media (max-width: 768px) {
  footer.footer .footer-contact {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 4rem;
  }
}
footer.footer .footer-contact .footer-adress {
  font-size: 1.1rem;
}
footer.footer .footer-contact .footer-social {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
}
footer.footer .footer-contact .footer-social a {
  display: flex;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border-radius: 50%;
  margin-right: 1rem;
}
footer.footer .footer-contact .footer-social a svg {
  justify-self: center;
  align-self: center;
  height: 60%;
  width: 60%;
  fill: #fff !important;
}
@media (max-width: 768px) {
  footer.footer .footer-contact .footer-social {
    margin-top: 2rem;
    justify-content: center;
  }
}
footer.footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 3rem;
}
footer.footer .footer-legal a {
  padding: 0 0.5rem;
  color: #000;
}
footer.footer .footer-legal a:hover {
  color: var(--primary-color);
}

footer.footer.is-template-4 {
  background: #fff;
}
footer.footer.is-template-4 .footer-contact .footer-social {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
}
footer.footer.is-template-4 .footer-contact .footer-social a {
  display: flex;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: none;
  border-radius: none;
  margin-right: 1rem;
}
footer.footer.is-template-4 .footer-contact .footer-social a svg {
  justify-self: center;
  align-self: center;
  height: 75%;
  width: 75%;
  fill: gray !important;
}