.footer {
  font-size: 0.75rem;
  line-height: 1.2rem;
  font-weight: 400;
  font-family: Roboto Regular, sans-serif;
  padding-bottom: 1rem;
}
.footer > .row {
  padding: 0.6rem 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  row-gap: 1.2rem;
  column-gap: 2rem;
}
.footer > .row > * {
  flex: 1;
  padding: 0;
}
.footer p {
  margin: 0;
  font-size: inherit;
}
.footer h5 {
  font-size: inherit;
  font-weight: 700;
  color: #212529;
  margin: 0;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul li a {
  font-size: inherit;
  white-space: nowrap;
  text-decoration: none;
}
.footer .copyright {
  flex: 0 1 100% !important;
  height: min-content;
  align-self: flex-end;
  text-align: right;
}
.footer .copyright span {
  display: inline-block;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .footer > .row {
    flex-flow: row wrap;
  }
}
@media (min-width: 992px) {
  .footer > .row {
    flex-flow: row nowrap;
  }
  .footer > .row > * {
    flex: 0;
    width: initial;
  }
  .footer .copyright {
    flex: 0 !important;
    width: auto;
    margin-left: auto;
  }
}
