.footer {
  position: relative;
  height: 80px;
  background: #fff;
  z-index: 6;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  height: 100%
}
.footer-logo img {
  max-height: 40px;
}
.copyright {
  font-size: 12px;
}

@media screen and (max-width: 896px) {
  .footer {
    height: auto;
    padding: 0 16px;
  }
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
  }
  .footer-logo {
    margin: 0 0 16px;
  }
}