.hamburger {
  display: none;
  position: absolute;
  z-index: 10;
  top: 25px;
  right: 15px;
  cursor: pointer;
}
.hamburger span {
  font-size: 16px;
  font-family: monospace;
}
.hamburger div {
  width: 35px;
  height: 5px;
  background-color: #0f4c5c;
  margin: 6px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  will-change: transform;
}
.hamburger.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}
.hamburger.change .bar2 {
  opacity: 0;
}
.hamburger.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

a, p, span, li, td, div, label, blockquote, input, textarea, select, h1, h2, h3, h4, h5, h6 {
  font-family: "Albert Sans", sans-serif;
}

.site-container {
  max-width: 80rem;
  padding: 0 0.9375rem;
  margin: 0 auto;
  width: 100%;
}

.site-header-top {
  background-color: #efeded;
  height: 2.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header-top .site__socials a, .site-header-top .site__socials a:link, .site-header-top .site__socials a:visited {
  color: #0f4c5c;
  font-size: 1.25rem;
}
.site-header-top .site__socials a:hover {
  color: #7d092f;
}

.site-header {
  margin: 0;
  padding: 0;
  border: none;
}
.site-header .site-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-header__logo {
  max-width: 12.375rem;
  padding: 1.625rem 0 1.25rem;
}
.site-header__logo img {
  width: 100%;
}
.site-header__nav {
  background-color: #0f4c5c;
}

.main-navigation {
  background-color: transparent;
  padding: 0;
}
.main-navigation .nav-menu {
  border: none;
}
.main-navigation .nav-menu ul {
  margin: 0;
  padding: 0;
}
.main-navigation .nav-menu ul li {
  margin: 0;
  padding: 0;
}
.main-navigation .nav-menu ul li a {
  padding: 0.75em 1em;
}
.main-navigation .nav-menu ul li ul {
  background-color: #0f4c5c;
  padding: 0.5625rem 0;
}
.main-navigation .nav-menu ul li ul li {
  margin: 0.375rem 0;
}
.main-navigation .nav-menu ul li ul li a {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
}
.main-navigation .nav-menu ul li ul li a:hover {
  text-decoration: underline;
}
.main-navigation .nav-menu > ul > li {
  padding: 1.1875rem 0.9375rem;
}
.main-navigation .nav-menu > ul > li > a {
  font-size: 1.25rem;
  line-height: 1.25rem;
  color: #ffffff;
  font-weight: 600;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}
.main-navigation .nav-menu > ul > li:hover > a {
  border-color: #ffffff;
}

.site__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}
.site__socials a, .site__socials a:link, .site__socials a:visited {
  display: block;
  color: #ffffff;
  font-size: 1.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site__socials a:hover {
  color: #f68e71;
}

a.site__button, a.site__button:link, a.site__button:visited {
  background-color: #0f4c5c;
  color: #ffffff;
  border-radius: 0.25rem;
  font-size: 1rem;
  line-height: 1rem;
  padding: 1rem 2rem;
  font-weight: 700;
  display: block;
  max-width: 13.125rem;
  margin-top: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #0f4c5c;
}
a.site__button:hover, a.site__button:link:hover, a.site__button:visited:hover {
  background-color: #023a48;
  border-color: #023a48;
}

.site-footer {
  background-color: #7d092f;
  padding: 6.25rem 0;
  margin-top: 1.875rem;
}
.site-footer a.site__button, .site-footer a.site__button:link, .site-footer a.site__button:visited {
  color: #7d092f;
  background-color: #fff;
  border-color: #fff;
}
.site-footer a.site__button:hover, .site-footer a.site__button:link:hover, .site-footer a.site__button:visited:hover {
  background-color: transparent;
  border-color: #fff;
  COLOR: #ffffff;
}
.site-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-footer__logo {
  max-width: 12.375rem;
  display: block;
  margin-bottom: 2.5rem;
}
.site-footer__logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.site-footer p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: block;
  width: 100%;
}
.site-footer__copyright {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9375rem;
}
.site-footer__copyright p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.75rem;
  width: auto;
  margin-bottom: 0;
}
.site-footer__copyright a, .site-footer__copyright a:link, .site-footer__copyright a:visited {
  color: #fff;
  font-size: 1rem;
  line-height: 1.75rem;
  white-space: nowrap;
  display: block;
}
.site-footer__non-profit {
  margin-top: 3rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.75rem;
  max-width: 23.25rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .hamburger {
    display: inline-block;
  }

  .site-footer {
    padding: 3.125rem 0;
  }
  .site-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .site-footer__logo {
    margin: 0 auto 1.25rem;
  }
  .site-footer__copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-footer__column {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-footer .site__socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 1.25rem;
  }

  .site-header-top {
    display: none;
  }

  .site-header {
    border-bottom: 1px solid #efeded;
  }
  .site-header__logo {
    padding: 0.75rem 0 0.5rem;
  }
  .site-header a.site__button, .site-header a:link.site__button, .site-header a:visited.site__button {
    display: none;
  }

  .main-navigation {
    width: 100%;
  }
  .main-navigation .nav-menu ul li ul li a {
    font-size: 1rem;
    line-height: 1.5rem;
    display: inline-block;
  }
  .main-navigation .nav-menu > ul > li {
    padding: 0.375rem 0.9375rem;
  }
  .main-navigation .nav-menu > ul > li > a {
    font-size: 1.125rem;
    line-height: 1.75rem;
    display: inline-block;
  }
}