footer {
  background-color: var(--mcan-blue);
  color: white;
  padding: 40px 0;
  position: relative;
  margin-top: 70px;
  font-size: 0.8rem;
}
footer .footer-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: start;
}
@media (min-width: 768px) {
  footer .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  footer .footer-content {
    grid-template-columns: repeat(5, 1fr);
  }
}
footer p {
  margin: 0;
}
footer .footer-logo {
  width: 100%;
}
footer .footer-logo img {
  width: 100%;
  max-width: 150px;
  height: auto;
}
footer .footer-contact a {
  color: white;
  text-decoration: underline;
}
footer .footer-contact a:hover {
  opacity: 0.8;
}
footer .footer-media a {
  color: white;
  text-decoration: underline;
}
footer .footer-media a:hover {
  opacity: 0.8;
}
footer .footer-social .footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
footer .footer-social .subscribe-label {
  font-weight: 700;
  text-transform: uppercase;
}
footer .footer-social a {
  display: block;
}
footer .footer-social a img, footer .footer-social a svg {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
footer .footer-social a img:hover, footer .footer-social a svg:hover {
  opacity: 1;
}/*# sourceMappingURL=footer.css.map */