/* Footer Css */
.footer {
  height: var(--footer-height);
  margin-top: 40px;
  background-color: #f9fafb;
}
.footer .footer__content {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
}
.footer .footer__copyright {
  font-size: 1.4rem;
  color: #9ca3af;
}

@media (min-width: 768px) {
  .footer {
    margin-top: 0;
  }
}
@media (max-width: 767.98px) {
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Css for IE10+ */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .footer {
    height: 68px;
  }
}