@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Source+Serif+Pro:400,600,700&display=swap");
@font-face {
  font-family: "Bebas Neue";
  src: url("/fonts/BebasNeue-Regular.woff") format("woff"), url("/fonts/BebasNeue-Regular.otf") format("otf");
  font-weight: 400;
  font-style: normal;
}
* {
  box-sizing: border-box;
  outline: none;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  font-size: 16px;
  color: #1e0f14;
  background-color: white;
}

body > header,
body > main,
body > footer {
  position: relative;
}

.wrapper {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 600px) {
  .wrapper {
    padding: 0 60px;
  }
}

h1 {
  margin: 24px 0 0;
}
@media screen and (min-width: 600px) {
  h1 {
    margin: 96px 0 0;
  }
}

h2 {
  font-family: "Bebas Neue", "Arial", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 36px;
  margin: 16px 0 0;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(30, 15, 20, 0.3);
  text-transform: uppercase;
  color: #a71930;
}
@media screen and (min-width: 600px) {
  h2 {
    font-size: 60px;
    line-height: 60px;
    margin: 40px 0 0;
    padding-bottom: 120px;
    letter-spacing: -0.25px;
  }
}
@media screen and (max-width: 720px) {
  h2 span {
    display: inline-block;
  }
}

h3 {
  font-family: "Bebas Neue", "Arial", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  margin: 24px 0 0;
  color: rgba(30, 15, 20, 0.8);
  text-transform: uppercase;
}
@media screen and (min-width: 600px) {
  h3 {
    font-size: 48px;
    line-height: 48px;
    margin: 40px 0 0;
  }
}

p, li {
  font-family: "Source Serif Pro", "Georgia", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 28px;
  margin: 16px 0 0;
}
@media screen and (min-width: 600px) {
  p, li {
    font-size: 22px;
    line-height: 32px;
  }
}

ul {
  list-style: none;
  padding-left: 24px;
}

ul li::before {
  content: "●";
  color: rgba(30, 15, 20, 0.6);
  display: inline-block;
  width: 24px;
  margin-left: -24px;
}

li + li {
  margin-top: 8px;
}

a:link, a:visited {
  color: #a71930;
}
a:hover, a:hover, a:active {
  color: #1e0f14;
}

figure {
  margin: 0;
}

.page-header .wrapper {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.page-header svg {
  width: 100%;
  height: auto;
}

.page-content {
  padding-bottom: 48px;
}
@media screen and (min-width: 600px) {
  .page-content {
    padding-bottom: 120px;
  }
}

.page-footer {
  background-color: #e9e7e8;
}

.page-footer_wrapper {
  padding-top: 32px;
  padding-bottom: 32px;
}

.page-footer_logos {
  background-color: #e9e7e8;
}
@media screen and (min-width: 600px) {
  .page-footer_logos .page-footer_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.page-footer_info {
  color: #b4d8fd;
  background-color: #1e0f14;
}
.page-footer_info .org-info {
  padding-bottom: 20px;
  border-bottom: 1px solid #b4d8fd;
}
.page-footer_info a {
  display: inline-block;
  font-size: 19px;
  line-height: 28px;
  color: #b4d8fd;
}
.page-footer_info a.overlay-show {
  display: inline-block;
  color: white;
  text-decoration: none;
}
@media screen and (min-width: 600px) {
  .page-footer_info a {
    font-size: 22px;
    line-height: 32px;
  }
}

.page-footer_logo {
  margin: 2rem 0;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .page-footer_logo {
    margin: 0;
  }
}

.page-footer_logo img {
  width: auto;
}

.overlay {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: none;
  background-color: #fff;
  padding-bottom: 32px;
}
.overlay h2 {
  max-width: 360px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(30, 15, 20, 0.8);
}
@media screen and (min-width: 600px) {
  .overlay h2 {
    max-width: 480px;
    font-size: 40px;
    line-height: 40px;
    margin: 0;
    padding: 0;
    border: 0;
  }
}
.overlay h3, .overlay h4 {
  font-family: "Source Serif Pro", "Georgia", serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 28px;
  margin-top: 24px;
  color: #1e0f14;
  text-transform: none;
}
@media screen and (min-width: 600px) {
  .overlay h3, .overlay h4 {
    font-size: 22px;
    line-height: 32px;
    margin-top: 32px;
  }
}
.overlay h4 {
  color: rgba(30, 15, 20, 0.5);
  margin-top: 19px;
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .overlay h4 {
    font-size: 22px;
    line-height: 32px;
    margin-top: 25px;
  }
}

.overlay-header {
  position: fixed;
  width: 100%;
  color: #1e0f14;
  background-color: #fff;
  z-index: 10;
}

.overlay-header_inner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: top;
  padding-top: 28px;
  background-color: #fff;
  border-bottom: 1px solid rgba(30, 15, 20, 0.3);
}

.p5y-overlay .overlay-header_inner-wrapper {
  height: 125px;
}

.a11y-overlay .overlay-header_inner-wrapper {
  height: 90px;
}

.overlay-content {
  position: relative;
  padding-bottom: 32px;
}

.p5y-overlay .overlay-content {
  top: 125px;
}

.a11y-overlay .overlay-content {
  top: 90px;
}

.overlay-hide {
  width: 32px;
  text-align: right;
  padding-top: 2px;
}
@media screen and (min-width: 600px) {
  .overlay-hide {
    width: 48px;
  }
}
.overlay-hide a {
  text-decoration: none;
}
.overlay-hide a img {
  width: 23px;
  height: 23px;
  vertical-align: baseline;
}
@media screen and (min-width: 600px) {
  .overlay-hide a img {
    width: 28px;
    height: 28px;
  }
}
@media screen and (min-width: 600px) {
  .overlay-hide a {
    font-size: 40px;
    line-height: 20px;
  }
}

/*# sourceMappingURL=main.css.map */
