.footer {
  background-image: url("/sites/all/themes/vesta_theme/image/footer.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: 22rem;
  margin-top: -4rem;
}
@media screen and (max-width: 992px) {
  .footer {
    margin-top: 0;
  }
}
.footer__inner {
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 13rem;
}
@media screen and (max-width: 992px) {
  .footer__inner {
    display: flex;
    flex-direction: column;
    row-gap: 0;
  }
}
.footer__content {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}
@media screen and (max-width: 992px) {
  .footer__content {
    margin-bottom: 5rem;
  }
}
.copyrights-block {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.backlink {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  align-self: flex-end;
  justify-self: flex-end;
}
@media screen and (max-width: 992px) {
  .backlink {
    align-self: flex-start;
    margin-top: 0.5rem;
  }
}
.backlink a {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
