.footer {
  background-color: #000;
  color: #fff;
  padding: 25px 0;
}

.footer__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  max-width: 118px;
  width: 100%;
}

.footer__text {
  text-align: center;
}

.footer__link {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.footer__copy {
  font-weight: 400;
  line-height: 1.5;
  color: #8d95a5;
}

@media (max-width: 750px) {
  .footer__logo {
    max-width: 104px;
  }

  .footer__text {
    width: 100%;
    order: 1;
    margin-top: 32px;
  }

  .footer__link {
    font-size: 18px;
  }

  .footer__copy {
    font-size: 12px;
  }
}