footer h1 a {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  padding: 1rem 0;
}

footer .wrap {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0rem 1rem;
}

footer .wrap ul {
  width: 35%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .wrap ul li a {
  display: block;
  color: #FFF;
  font-size: 1rem;
  font-weight: bold;
  padding: 0;
  /*text-transform: uppercase;*/
  text-decoration: none;
}

footer .wrap ul li {
  color: #FFF;
  font-size: 1rem;
  font-weight: bold;
}

.footer-home.login {
  background: linear-gradient(90deg, var(--site-header-bg-contrast) 0%, var(--site-header-bg) 100%);
}

.footer-home.login hr {
  border-top: transparent solid 1px;
}

.footer-home {
  background: var(--site-footer-bg);
  width: 100%;
  position: relative !important;
  padding-bottom: 5rem;
}

.footer-home .social-icon {
  width: 40px;
  height: 40px;
}

footer nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-flex-start {
  justify-content: flex-start !important;
}

.footer-flex-end {
  justify-content: flex-end !important;
}

ul:first-child.footer-flex-start a {
  margin-left: 0 !important;
}

ul.footer-flex-start a, ul.footer-flex-end a {
  width: 10rem;
  margin-left: 3rem;
  text-align: center;
}

.footer-home hr {
    border-top: var(--site-primary) solid 1px;
    width: 90%;
    margin: auto;
    padding-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  footer nav {
    flex-direction: column;
    gap: 3rem;
  }
}