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

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

.site-header {
  margin: 0;
  background: url("../images/bg.jpg") no-repeat bottom;
  background-size: cover;
  width: 100%;
  padding: 0;
  border: none;
}
.site-header .site-container {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  position: relative;
}
.site-header__logo__link {
  display: block;
  max-width: 18.75rem;
}
.site-header__logo p {
  font-size: 1.125rem;
  font-style: italic;
  color: #fff;
  line-height: 1.375rem;
  opacity: 0.8;
  max-width: 25rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.site-header__logo img {
  width: 100%;
}
.site-header__brand {
  max-width: 15.875rem;
  position: absolute;
  right: 0;
  bottom: -7px;
}

.site-header-nav {
  background-color: #3384cb;
}

.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: #3384cb;
  border: 1px solid #fff;
}
.main-navigation .nav-menu ul li ul li {
  border-bottom: 1px solid #fff;
}
.main-navigation .nav-menu ul li ul li:last-child {
  border-bottom: none;
}
.main-navigation .nav-menu ul li ul li a {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #ffffff;
  text-transform: uppercase;
  padding: 0.5rem;
}
.main-navigation .nav-menu ul li ul li a:hover {
  background-color: #1e4f6a;
}
.main-navigation .nav-menu > ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-navigation .nav-menu > ul > li > a {
  font-size: 0.9375rem;
  line-height: 2.5rem;
  padding: 0 0.625rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-navigation .nav-menu > ul > li:hover > a {
  background: -webkit-gradient(linear, left top, left bottom, from(#3384cb), to(#093c54));
  background: linear-gradient(to bottom, #3384cb, #093c54);
}

.site-footer {
  background: url("../images/bg.jpg") no-repeat;
  background-size: cover;
  padding: 4.375rem 0;
  margin-top: 1.25rem;
}
.site-footer .site-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
}
.site-footer__column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 16.25rem;
}
.site-footer__column h3 {
  color: #fff;
  font-size: 1.3125rem;
  line-height: 1.375rem;
  margin-bottom: 0.9375rem;
  font-weight: 500;
}
.site-footer__column h3.highlighted {
  background-color: #ffcc00;
  color: #ff0000;
  padding: 0.1875rem;
}
.site-footer__column p {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #fff;
  margin-bottom: 1.375rem;
}
.site-footer__column p a, .site-footer__column p a:link, .site-footer__column p a:visited {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #ffcc00;
  text-decoration: underline;
}

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

  .site-footer .site-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .site-footer__column {
    max-width: 100%;
  }
  .site-footer__column h3 {
    display: inline-block;
  }

  .site-header__brand {
    display: none;
  }

  .site-header-nav {
    min-height: 2.5rem;
  }

  .main-navigation .nav-menu {
    padding-top: 2.5rem;
  }
  .main-navigation .nav-menu ul li ul {
    border: none;
  }
  .main-navigation .nav-menu ul li ul li a {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .main-navigation .nav-menu > ul > li > a {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .main-navigation .nav-menu > ul > li:hover > a {
    background: none;
    background-color: #1e4f6a;
  }
}