* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header {
  position: relative;
  background-image: url("images/header-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  padding: 16.6vh 3.5em;
}

header::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "\020";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0.45)));
  background: linear-gradient(rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.45));
}

header .wrapper {
  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;
  z-index: 2;
  position: relative;
  text-align: center;
  margin: 2.625em 0;
}

header .wrapper a {
  color: white;
  line-height: 1.2;
  margin: 0.4375em 0 0 0;
  font-size: 38px;
  font-weight: bold;
}

header .wrapper p {
  color: rgba(255, 255, 255, 0.84);
  margin: .4375em 0 0 0;
  font-size: 17px;
  line-height: 1.4;
  word-wrap: break-word;
}

header .wrapper .button {
  display: none;
  margin-top: 1.75em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  color: white;
  border: solid 2px white;
  border-radius: 4px;
  font-size: 17px;
  padding: .4375em .875em;
}

header .wrapper .button img {
  height: 20px;
  margin-top: 2px;
  width: auto;
  display: block;
  margin-right: 5px;
}

@media only screen and (max-width: 520px) {
  header .wrapper .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

header .wrapper .button:hover {
  cursor: pointer;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.75;
  margin-top: 0.875em;
  width: 100%;
  font-size: 17px;
  font-weight: bold;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

nav ul li {
  display: inline-block;
  margin: .21em .48em;
}

nav ul li a {
  padding: .4835em .209375em;
  color: #0087be;
}

nav ul li a:hover {
  color: #00aadc;
}

@media only screen and (max-width: 520px) {
  nav ul {
    display: none;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  nav ul li {
    width: 100%;
    border-bottom: 1px solid grey;
  }
  nav ul li:last-of-type {
    border-bottom: none;
  }
}

main {
  color: #383838;
  max-width: 1080px;
  margin: 2.625em auto 0;
  padding: 0 1.75em 4em 1.75em;
  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;
}

main article {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}

main article a {
  color: #0087be;
}

main article a:hover {
  color: #00aadc;
  text-decoration: underline;
}

main article h1 {
  color: #333332;
  font-size: 47px;
}

@media only screen and (max-width: 520px) {
  main article h1 {
    font-size: 32px;
  }
}

main article h2 {
  font-size: 32px;
  margin-bottom: .4375em;
  line-height: 1.1;
  margin-top: .875em;
}

@media only screen and (max-width: 520px) {
  main article h2 {
    font-size: 24px;
  }
}

main article h3 {
  line-height: 1.1;
  font-size: 24px;
  margin-top: .875em;
  margin-bottom: .875em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@media only screen and (max-width: 520px) {
  main article h3 {
    font-size: 19px;
  }
}

main article p {
  margin-top: .875em;
  margin-bottom: .875em;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 19px;
  line-height: 1.75;
}

@media only screen and (max-width: 520px) {
  main article p {
    font-size: 17px;
  }
}

main article section > ul {
  line-height: 1.75;
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin: 0 0 1.75em 2em;
  padding: 0;
  list-style-position: outside;
  font-size: 19px;
  list-style: disc;
}

@media only screen and (max-width: 520px) {
  main article section > ul {
    font-size: 17px;
  }
}

main article section > ul li {
  margin-top: .4375em;
}

main article section > ul ul {
  list-style: disc;
  margin-left: 2em;
}

main article section {
  font-family: Georgia, 'Times New Roman', Times, serif;
  width: 100%;
}

main article section h1, main article section h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

main article section figure {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.75em;
}

main article section figure img {
  display: block;
  max-width: 98%;
  margin: 5px auto 0;
}

main article section figure figcaption {
  margin: .875em 0;
  clear: both;
  font-size: 75%;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  color: #939393;
  width: 100%;
  line-height: 1.75;
}

main article section form {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

main article section form label {
  margin-bottom: .21875em;
  font-size: 19px;
  line-height: 1.75em;
  font-weight: bold;
}

main article section form label span {
  font-weight: normal;
  font-size: 16px;
}

@media only screen and (max-width: 520px) {
  main article section form label {
    font-size: 17px;
  }
  main article section form label span {
    font-size: 14px;
  }
}

main article section form input, main article section form textarea {
  margin-bottom: 1.8em;
  padding: 14px 7px;
  color: #404040;
  border: 1px solid #a1a1a1;
  border-radius: 3px;
}

main article section form input {
  width: 50%;
}

@media only screen and (max-width: 600px) {
  main article section form input {
    width: 100%;
  }
}

main article section form textarea {
  width: 100%;
}

main article section form button {
  border-radius: 3px;
  background: #0087be;
  display: inline-block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: .4375em .875em;
  font-size: 16px;
  font-style: normal;
  text-decoration: none;
  border: solid 1px transparent;
  color: white;
  cursor: pointer;
  height: 28px;
}
/*# sourceMappingURL=style.css.map */