/*  footer
-----------------------------------------------------------*/
footer#footer {
  position: relative;
  background-color: white;
  font-size: 16px;
  color: black;
  line-height: inherit;
  padding: 3rem 0;
}
footer#footer::before  {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105px;
  height: 100px;
  background-image: url(../../images/logo-zygomatic-footer.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
footer#footer p {
  line-height: 16px;
}

footer#footer .footer_block {
  padding: 1rem 2rem 0;
}
@media (max-width: 767.98px) {
  footer#footer .footer_block {
    padding: 1rem 1rem 0;
  }
}
footer#footer .footer_block .footer_block-title {
  display: block;
  width: 100%;
  padding: .5rem 0;
  margin-bottom: .5rem;
  border-bottom: 2px solid #000;
  font-size: var(--font-size-md);
  font-weight: 600;
}
footer#footer .footer_block ul {
  padding: 0;
  margin-top: 1rem;
}
footer#footer .footer_block ul li {
  list-style: none;
  padding: .25rem 0;
  position: relative;
}
footer#footer .footer_block ul li a {
  color: #000;
  font-size: var(--font-size-md);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 800;
  transition: all 0.3s ease;
}
footer#footer .footer_block ul li a:hover {
  color: var(--secondary);
}
footer#footer .footer-bottom {
  margin-top: 1rem;
  padding: 0 2rem;
}
@media (max-width: 767.98px) {
  footer#footer .footer-bottom {
    margin-top: 1rem;
    padding: 0 1rem;
  }
}
footer#footer .footer-bottom .nav-social {
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  footer#footer .footer-bottom .nav-social {
    justify-content: flex-start;
  }
}
footer#footer .footer-bottom .nav-social li {
  padding: .25rem;
  font-size: var(--font-size-xl);
}
footer#footer .footer-bottom .nav-social li a {
  transition: all 0.3s ease;
}
footer#footer .footer-bottom .nav-social li a:hover {
  color: var(--secondary);
}
