.hamburger {
  display: none;
  position: absolute;
  z-index: 10;
  top: 28px;
  right: 15px;
  cursor: pointer;
}
.hamburger span {
  font-size: 16px;
  font-family: monospace;
}
.hamburger div {
  width: 35px;
  height: 5px;
  background-color: #333;
  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: "Source Sans 3", sans-serif;
}

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

.site-header {
  margin: 0;
  padding: 0.9375rem 0;
  border-color: #e8e8e8;
}
.site-header .site-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header__logo {
  max-width: 18.125rem;
}
.site-header__logo img {
  width: 100%;
}

.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: #f0f0f0;
  padding: 0.625rem 0;
}
.main-navigation .nav-menu ul li ul li a {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #003a42;
  -webkit-text-decoration-color: transparent !important;
          text-decoration-color: transparent !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.3125rem 0.9375rem;
}
.main-navigation .nav-menu ul li ul li a:hover {
  -webkit-text-decoration-color: #00c8b7 !important;
          text-decoration-color: #00c8b7 !important;
  text-decoration: underline;
}
.main-navigation .nav-menu > ul > li > a {
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #003a42;
  padding: 0.3125rem 0.9375rem;
  -webkit-text-decoration-color: transparent !important;
          text-decoration-color: transparent !important;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-navigation .nav-menu > ul > li:hover > a {
  -webkit-text-decoration-color: #00c8b7 !important;
          text-decoration-color: #00c8b7 !important;
  text-decoration: underline;
}

.separator {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(53%, #05bdad), color-stop(33%, #b1d400));
  background: linear-gradient(to bottom, #05bdad 53%, #b1d400 33%);
  min-height: 1.25rem;
  width: 100%;
  margin-top: 1.25rem;
}

.site-footer {
  margin-top: 0;
  background-color: #003a42;
  padding: 1.25rem 0;
}
.site-footer .site-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-footer__column {
  padding: 0 0.9375rem;
  width: 33%;
}
.site-footer__column.center {
  text-align: center;
}
.site-footer h3 {
  font-size: 1.6875rem;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.6875rem;
}
.site-footer h3.center {
  text-align: center;
}
.site-footer p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.375rem;
  margin-bottom: 0.625rem;
}
.site-footer p.center {
  text-align: center;
}
.site-footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1.25rem 0;
}
.site-footer__socials a, .site-footer__socials a:link, .site-footer__socials a:visited {
  padding: 0.375rem 0.625rem;
  color: #b1d400;
  font-size: 0.8125rem;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-footer__socials a:hover, .site-footer__socials a:link:hover, .site-footer__socials a:visited:hover {
  color: #00c8b7;
}
.site-footer a.site-footer__button, .site-footer a:link.site-footer__button, .site-footer a:visited.site-footer__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #00c8b7;
  background: #003a42;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.375rem 1.0625rem;
  font-size: 1rem;
  line-height: 1.375rem;
  margin-top: 0.6875rem;
  text-transform: uppercase;
}
.site-footer a.site-footer__button:hover, .site-footer a:link.site-footer__button:hover, .site-footer a:visited.site-footer__button:hover {
  background-color: #ffffff;
  color: #2f3234;
  border-color: #2f3234;
}

.site-footer-bottom {
  background-color: #003a42;
  border-top: 2px solid #00c8b7;
  padding: 1.25rem 0;
}
.site-footer-bottom .site-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-footer-bottom__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
}
.site-footer-bottom__logo img {
  max-width: 8.375rem;
}
.site-footer-bottom__logo span {
  color: #ffffff;
  font-size: 0.5rem;
  letter-spacing: 2px;
}
.site-footer-bottom__copyright {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #ffffff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
.site-footer-bottom__copyright a, .site-footer-bottom__copyright a:link, .site-footer-bottom__copyright a:visited {
  color: #b1d400;
  font-size: 1rem;
  line-height: 1.375rem;
}
.site-footer-bottom__copyright a:hover, .site-footer-bottom__copyright a:link:hover, .site-footer-bottom__copyright a:visited:hover {
  text-decoration: underline;
}
.site-footer-bottom__affiliate p {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #ffffff;
  text-align: center;
}
.site-footer-bottom__affiliate__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}
.site-footer-bottom__affiliate__logos a, .site-footer-bottom__affiliate__logos a:link, .site-footer-bottom__affiliate__logos a:visited {
  display: block;
  max-width: 5.6875rem;
}
.site-footer-bottom__affiliate__logos a img, .site-footer-bottom__affiliate__logos a:link img, .site-footer-bottom__affiliate__logos a:visited img {
  max-width: 100%;
}

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

  .site-header__logo {
    max-width: 11.25rem;
  }
  .site-header .site-container {
    display: block;
  }

  .site-footer .site-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
  .site-footer__column {
    width: 100%;
    text-align: center;
  }
  .site-footer__socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .site-footer__button {
    margin-bottom: 1.875rem;
  }

  .site-footer-bottom__logo {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .site-footer-bottom .site-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .site-footer-bottom p {
    display: block;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .site-footer-bottom__affiliate {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}