.footer {
  padding: 30px 0 18px;
  background: url("../../uploads/footer-bg.png") repeat-x;
}
.footer__wrap {
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  width: 182px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin-left: -20px;
  padding: 15px 10px 15px 20px;
  background: #fbb900;
}
.footer__link {
  color: #fff;
  font-size: 16px;
  padding: 6px 28px;
  background: #e30033;
  border-radius: 20px;
  position: relative;
  top: -10px;
  left: 50px;
}
.footer__link:hover {
  background: #2d2d2c;
}
.footer__policy {
  width: 270px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-align: right;
  margin-right: -15px;
  padding: 15px;
  background: #fbb900;
}
.footer__policy a:hover {
  color: #e30033;
}

@media screen and (max-width: 1080px) {
  .footer__copy {
    margin-left: 0;
  }
  .footer__link {
    top: 0;
    left: 0;
  }
  .footer__policy {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    background-size: cover;
    background-position-y: top;
  }
  .footer__wrap {
    flex-direction: column;
  }
  .footer__policy {
    order: 1;
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
  }
  .footer__link {
    order: 2;
  }
  .footer__copy {
    order: 3;
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
    margin-top: 10px;
    text-align: center;
  }
}