footer {
  margin-top: auto;
  width: 100%;
  padding-top: 50px;
  background-color: #000000;
  padding-bottom: 10px;
}

footer .custom-container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  color: white;
}

footer img {
  margin-bottom: 20px;
}

footer .subtext {
  font-family: 'Sequel Sans Book Body', sans-serif;
  margin-left: 2px;
  color: #B5B5B5;
  font-size: 13px;
}

footer .footer-info {
  /* order: 2; */
}

footer .footer-menu {
  /* order: 1; */
  width: 100%;
  text-align: right;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  letter-spacing: 0px;
}

footer .footer-menu a{
  font-family: 'Sequel Sans Book Disp';
  font-size: 12px;
  color: white;
  text-decoration: none;
}

footer .footer-menu a:not(:last-of-type){
  margin-right: 15px;
}

footer .footer-copyright {
  font-family: 'Sequel Sans Book Body';
  color: #B5B5B5;
  font-size: 11px;
  margin-top: 30px;
}

@media (min-width: 576px) {
  footer .footer-info {
    /* order: 1 */
  }
  
  footer .footer-menu {
    /* order: 2 */
  }

  footer {
    /* grid-auto-flow: column; */
  }
}