.FooterMenu {
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 10px 0 20px;
  font-size: 1rem;
  text-align: center;
}

@media screen and (min-width: 1026px) {

.FooterMenu {
    flex-flow: row;
}
  }

.FooterMenu a {
  margin-left: 0;
  line-height: 2.1875rem;
  text-decoration: underline;
  color: var(--font-clr-primary);
}

.FooterMenu a + a {
  margin-left: 0;
}

@media screen and (min-width: 1026px) {

.FooterMenu a + a {
    margin-left: 20px;
}
  }
