.footer .content {
  flex-direction: column;
  min-height: 550px;
}
.footer .footer-upper,
.footer .footer-lower {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-upper {
  display: flex;
  justify-content: flex-start;
  gap: 100px;
}
.footer .footer-tile {
  max-width: 150px;
}
.footer .footer-lower {
  display: flex;
}
.footer .footer-lower-left,
.footer .footer-lower-right {
  flex: 1;
}
.footer .footer-lower-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer .footer-lower-right {
  display: flex;
  justify-content: flex-end;
  gap: var(--inner-spacing-l);
}
.footer .footer-lower-right i {
  font-size: 36px;
}
.footer .copyright {
  font-size: var(--footer-font-size);
}
@media screen and (max-width: 885px) {
  .footer .footer-upper {
    gap: 50px;
  }
  .footer .footer-lower {
    flex-direction: column;
    gap: var(--inner-spacing-l);
  }
  .footer .footer-lower-right {
    justify-content: flex-start;
    gap: var(--inner-spacing-m);
  }
  .footer .footer-lower-right i {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-tile {
    max-width: 100%;
  }
}