.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5em;
  display: flex;
  z-index: 2;
}

.footer-col {
  width: 100%;
  flex: 1;
  display: flex;
}

.footer-col:nth-child(1) {
  display: flex;
  gap: 1.5em;
}

.footer-sub-col {
  flex: 1;
}

.footer-col:nth-child(2) {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

@media (max-width: 900px) {
  .footer-col:nth-child(2) {
    display: none;
  }

  .footer-sub-col:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
