#footer {
  background-color: var(--dark-color);
  padding-top: 3rem;
}

.footer-copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--white-color);
  color: var(--muted-color);
  font-family: var(--regular-font);
}

.footer-menu-header {
  margin-bottom: 20px;
  font-family: var(--regular-font);
  color: var(--white-color);
  font-size: 18px;
}

.footer-link-2 {
  display: inline-block;
  margin-bottom: 0px;
  border-bottom: 2px solid transparent;
  -webkit-transition: border 300ms ease, color 300ms ease;
  transition: border 300ms ease, color 300ms ease;
  font-family: var(--regular-font);
  color: var(--white-color);
  font-size: 14px;
  line-height: 30px;
  text-decoration: none;
}

.footer-link-2:hover {
  border-bottom: 2px solid var(--alternative-color);
  color: var(--alternative-color);
  text-decoration: none;
  cursor: pointer;
}