footer#footer {
  background-color: var(--primaryFontColor);
  margin-top: -1px;
  min-height: 185px;
  padding-bottom: 0;
  padding-top: 40px;
}

footer#footer .submit {
  background-color: var(--anovaColor);
  transition: 0.3s;
  font-family: FontAwesome, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  padding: 1px 0 0 4px;
  outline: none;
}

footer#footer .submit:hover {
  background-color: #c66c00 !important;
}

footer#footer .submit:focus {
  background-color: #8a510e !important;
}

/* End _footer.scss */
footer {
  color: #fff;
}

footer #footer-nav nav#about,
footer #footer-nav nav#get-help,
footer #footer-nav nav#shop,
footer #footer-nav nav#resources {
  padding-left: 15px;
}

/* This represents Sass' breakpoint desktop. Shouldn't that be 800ish though? */
@media (max-width: 992px) {
  footer #footer-nav nav#about,
  footer #footer-nav nav#get-help,
  footer #footer-nav nav#shop,
  footer #footer-nav nav#resources {
    text-align: center;
  }
}

#footer-nav {
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0 15px;
}

#footer-nav nav h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#footer-subnav ul {
  list-style: none;
  padding: 0 0 0 15px;
  margin: 0;
}

#footer-subnav ul li {
  display: inline-block;
  margin-left: 50px;
}

#footer-subnav ul li a {
  color: #959595;
  cursor: pointer;
}

#footer-nav nav li a {
  color: var(--contentBorder);
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s;
  border-bottom: 1px solid hsla(0,0%,84.7%,0);
}

#footer-nav nav ul a:hover {
  border-bottom: 1px solid rgba(216, 216, 216, 0.6);
}

#footer-nav nav ul {
  list-style-type: none;
  padding-left: 0;
}

#footer-nav nav ul li {
  padding-bottom: 10px;
}

#footer-nav #social-icons {
  width: 240px;
  margin: 20px auto 0 auto;
  font-size: 36px;
}

#footer-nav #social-icons a {
  text-decoration: none;
}

#footer-nav #social-icons a i {
  padding: 0 4px 0 4px;
  color: var(--contentBorder);
  transition: 0.3s;
}

#footer-nav #social-icons a i:hover {
  color: #fff;
}

/* end _footer-nav.scss */

#footer-subnav {
  height: 57px;
  background: #222;
  margin-top: 20px;
  color: #959595;
  font-size: 1.2rem;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: stretch;
}

#footer-subnav #copyright {
  text-align: right;
}

/* Was breakpoint tablet landscape */
@media (max-width: 768px) {
  #footer-subnav {
    min-height: 75px;
  }

  #footer-subnav #copyright {
    text-align: center;
  }
}

@media (min-width: 990px) {
  #footer-nav {
    flex-direction: row;
  }

  #footer-subnav {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
