.footer {
  width: 100%;
  padding: 5rem 0 5rem;
  background-color: #000;
}

.footer-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  width: 50%;
  font-size: 12px;
  color: #fff;
}

.footer-link {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-link-item {
  margin: 0 0 0 1.2em;
}

.footer-link-item img {
  height: 2.6rem;
}

@media screen and (min-width: 1px) and (max-width: 767px) {

  .footer {
    padding: 4rem 0 4rem;
  }

  .footer-inner {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .order1 {
    order: 2;
  }

  .order2 {
    order: 1;
  }

  .footer-copy {
    width: 100%;
    text-align: center;
    font-size: 12px;
  }

  .footer-link {
    width: 100%;
    margin: 0 0 2.2em;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-link-item {
    margin: 0 .5em 0;
  }

  .footer-link-item img {
    height: 2.6rem;
  }
}