a {
  transition: .25s;
}

header {
  background: #e6e6e6;
  padding: 0 1rem;
}

.header-wrapper {
  max-width: 62.5rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header-logo-wrapper {
  width: 20rem;
  display: flex;
  align-items: center;
}

.header-logo-wrapper a {
  width: 100%;
  padding-top: .35rem;
}

nav.header-nav ul {
  display: flex;
  margin: 0;
}

nav.header-nav ul li {
  /* display: inline; */
  list-style-type: none;
  height: 100%;
}

nav.header-nav ul a:not(:last-child) {
  border-right: solid 1px #e6e6e6;
}

nav.header-nav ul a {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: .85rem;
  text-align: center;
  padding: 1rem .5rem;
  border-top: 3px solid #8c2816;
}

nav.header-nav ul a:link, nav.header-nav ul a:visited {
  text-decoration: none;
  color: #031B1B;
  background: #d1d1d1;
}

nav.header-nav ul a:hover, nav.header-nav ul a:active, nav.header-nav ul a:focus {
  background: #bbbbbb;
}

footer {
  background: #031B1B;
}

.footer-wrapper {
  max-width: 62.5rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
}

.footer-logo-wrapper {
  flex-basis: 100%;
  padding: 1rem 0;
}

.footer-logo-wrapper img {
  max-width: 20rem;
}

.footer-col {
  flex-basis: 49%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-section-title {
  flex-basis: 100%;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #cccccc;
  border-bottom: 1px solid #2b3a3a;
  margin-top: 1rem;
  padding-bottom: .75rem;
  margin-bottom: .75rem;
}

.links-container {
  display: flex;
  flex-basis: 100%;
}

.divider-line {
  border-left: solid 1px #2b3a3a;
  margin: 0 5%;
}

.links-column a {
  display: block;
  font-family: Helvetica, Arial, sans-serif;
  font-size: .85rem;
  margin-bottom: .5rem;
}

.links-column a:link, .links-column a:visited {
  color: #cccccc;
  text-decoration: none;
}

.links-column a:hover, .links-column a:active, .links-column a:focus {
  color: #ffffff;
}

.copyright-wrapper {
  padding: .75rem;
  background: #2b3a3a;
  text-align: center;
}

.copyright-text, .copyright-text a {
  font-family: Helvetica, Arial, sans-serif;
  color: #ffffff;
  font-size: .85rem;
  font-weight: 300;
  transition: 0s;
}

.copyright-text a:link, .copyright-text a:visited {
  color: #ffffff;
  text-decoration: none;
}

.copyright-text a:hover, .copyright-text a:active, .copyright-text a:focus {
  color:#cccccc;
  text-decoration: underline;
}

/* MEDIA QUERIES */

@media screen and (max-width: 53.125rem) {
  .footer-col {
    flex-basis: 100%;
  }

  .divider-line {
    margin: 0 2%;
  }
}

@media screen and (max-width: 58.75rem) {
  .header-wrapper {
    justify-content: center;
    padding-top: 1rem;
  }

  .header-logo-wrapper {
    flex-basis: 100%;
    justify-content: center;
  }

  .header-logo-wrapper a {
    max-width: 24rem;
  }

  .header-logo-wrapper img {
    max-width: 24rem;
  }

  nav.header-nav {
    margin-top: 1rem;
  }

  ul {
    padding: 0 !important;
  }
}

@media screen and (max-width: 36.375rem) {
  nav.header-nav ul a {
    padding: 1rem .25rem;
    font-size: .75rem;
  }
}
