html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
Usage:
@include new(search, form) {
  @include has(input);
  @include has(submit);
}
*/
/* hi dpi dependency*/
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}

/* RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 100%;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  text-decoration: none;
  color: #8b8b8b;
}

img {
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

img {
  -ms-interpolation-mode: bicubic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
}

.skip-link {
  background: white;
  color: black;
  left: 50%;
  opacity: 0;
  padding: 5px 10px;
  position: fixed;
  top: 0;
  text-decoration: none;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.skip-link:focus:not(.focus-ring) {
  outline: none;
}

.skip-link.focus-ring {
  opacity: 1;
  z-index: 0;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

body {
  -webkit-font-feature-settings: "ss01" on, "ss02" on;
          font-feature-settings: "ss01" on, "ss02" on;
  font-size: 24px;
  line-height: 30px;
  word-break: break-word;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

body.open {
  overflow-y: hidden;
}

.wrapper {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

.wrapper.open {
  overflow-y: hidden;
}

.alert {
  width: 100%;
  background-color: black;
  color: white;
}

.alert a {
  color: white;
}

.alert p {
  margin: 0;
  line-height: 1.2;
  padding-right: 30px;
  font-size: 18px;
  font-size: var(--captions);
}

.alert .alert-inner {
  display: grid;
  grid-template-columns: 1fr 35px;
  grid-template-rows: 1fr;
  grid-gap: 0;
  gap: 0;
  grid-template-areas: "text close-button";
  padding-top: 20px;
  padding-bottom: 20px;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.alert .alert-close {
  cursor: pointer;
}

header, .header {
  width: 100%;
}

header .header-inner, .header .header-inner {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-gap: 2.1875rem;
  gap: 2.1875rem;
  grid-template-areas: "brand navigation navigation navigation";
}

@media (max-width: 79.99em) {
  header .header-inner, .header .header-inner {
    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;
    -ms-flex-line-pack: center;
        align-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.banner {
  width: 100px;
  height: 100px;
}

@media (max-width: 44.99em) {
  .banner {
    width: 50px;
    height: 50px;
  }
}

svg.main-logo {
  width: 100px;
  height: auto;
}

@media (max-width: 44.99em) {
  svg.main-logo {
    width: 50px;
  }
}

svg.main-logo .logo-background {
  fill: #FF0098;
}

svg.main-logo .logo-wordmark {
  fill: #FFFFFF;
}

#hamburger {
  width: 30px;
  height: 45px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  position: relative;
  z-index: 6000;
}

#hamburger span {
  background-color: black;
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 9px;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#hamburger span:nth-child(2) {
  top: 9px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#hamburger span:nth-child(3) {
  top: 18px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -3px;
  left: 0px;
}

#hamburger.open span:nth-child(2) {
  top: 24px;
  position: relative;
  opacity: 0;
}

#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 19px;
  left: 0px;
}

footer {
  background-color: black;
  color: white;
  padding-top: 2.1875rem;
}

footer a {
  color: white;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat 3, auto;
  grid-gap: 30px;
  gap: 30px;
  grid-template-areas: "brand sponsors" "footer-nav footer-nav" "twitter copyright";
}

@media (max-width: 67.49em) {
  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    grid-gap: 0px;
    gap: 0px;
    grid-template-areas: "brand" "sponsors" "footer-nav" "twitter" "copyright";
    padding: 1.5625rem;
  }
}

.grid-container {
  display: grid;
}

.footer-brand {
  grid-area: brand;
  justify-self: start;
}

.footer-brand img {
  max-width: 333px;
  margin-bottom: 1.5625rem;
}

@media (max-width: 67.49em) {
  .footer-brand {
    justify-self: center;
  }
}

.footer-sponsors {
  grid-area: sponsors;
  justify-self: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 1.5625rem;
}

.footer-sponsors a {
  margin-left: 35px;
  margin-left: var(--spacing-s);
}

.footer-sponsors img {
  height: 30px;
  width: auto;
}

.footer-sponsors img.tolive {
  height: 50px;
}

@media (max-width: 67.49em) {
  .footer-sponsors {
    justify-self: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer-nav {
  grid-area: footer-nav;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  list-style-type: none;
  margin-left: 0;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav li {
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 67.49em) {
  .footer-nav {
    -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;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    line-height: 60px;
    margin-bottom: 1.5625rem;
  }
}

.footer-twitter {
  grid-area: twitter;
  justify-self: start;
  margin-bottom: 1.5625rem;
  font-size: 16px;
}

@media (max-width: 67.49em) {
  .footer-twitter {
    justify-self: center;
  }
}

.footer-copyright {
  grid-area: copyright;
  justify-self: end;
  margin-bottom: 1.5625rem;
  font-size: 16px;
}

@media (max-width: 67.49em) {
  .footer-copyright {
    justify-self: center;
  }
}

.menu-trigger {
  display: none;
  grid-area: brand;
}

@media (max-width: 79.99em) {
  .menu-trigger {
    padding-top: 20px;
    display: block;
    grid-area: unset;
  }
}

.off-nav {
  grid-area: navigation;
}

@media (max-width: 79.99em) {
  .off-nav {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1000;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    overflow-y: scroll;
    padding: 30px;
    background-color: white;
    grid-area: unset;
  }
}

.off-nav.is-open {
  z-index: 1000;
}

@media (max-width: 79.99em) {
  .off-nav.is-open {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}

ul.nav {
  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;
  width: 100%;
  height: 100%;
  list-style-type: none;
  margin: 0px;
}

@media (max-width: 79.99em) {
  ul.nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

@media (max-width: 79.99em) {
  ul.nav li {
    margin-bottom: 15px;
    border-top: 1px solid black;
    padding-top: 15px;
    width: 100%;
    text-align: center;
  }
  ul.nav li:last-child {
    border: none;
    width: 100%;
  }
}

ul.nav li a {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 79.99em) {
  ul.nav li a {
    width: 100%;
    display: block;
  }
}

ul.nav li [title~=Survey] {
  background-color: #FF4116;
  padding: 10px;
  color: white;
}

@media (max-width: 79.99em) {
  ul.nav li [title~=Survey] {
    width: 100%;
  }
}

.menu-trigger {
  display: none;
  grid-area: brand;
}

@media (max-width: 79.99em) {
  .menu-trigger {
    padding-top: 20px;
    display: block;
    grid-area: unset;
  }
}

.off-nav {
  grid-area: navigation;
}

@media (max-width: 79.99em) {
  .off-nav {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1000;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    overflow-y: scroll;
    padding: 30px;
    background-color: white;
    grid-area: unset;
  }
}

.off-nav.is-open {
  z-index: 1000;
}

@media (max-width: 79.99em) {
  .off-nav.is-open {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}

ul.nav {
  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;
  width: 100%;
  height: 100%;
  list-style-type: none;
  margin: 0px;
}

@media (max-width: 79.99em) {
  ul.nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

@media (max-width: 79.99em) {
  ul.nav li {
    margin-bottom: 15px;
    border-top: 1px solid black;
    padding-top: 15px;
    width: 100%;
    text-align: center;
  }
  ul.nav li:last-child {
    border: none;
    width: 100%;
  }
}

ul.nav li a {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 79.99em) {
  ul.nav li a {
    width: 100%;
    display: block;
  }
}

ul.nav li [title~=Survey] {
  background-color: #FF4116;
  padding: 10px;
  color: white;
}

@media (max-width: 79.99em) {
  ul.nav li [title~=Survey] {
    width: 100%;
  }
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  /* Image border */
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 0;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}:root {
  --spacing-xs: 15px;
  --spacing-s: 35px;
  --spacing-m: 50px;
  --spacing-l: 70px;
  --spacing-xl: 140px;
  --gutter: 50px;
  --main-hed:  60px;
  --secondary-hed: 60px;
  --tertiary-hed: 35px;
  --quaternary-hed: 25px;
  --para-text: 25px;
  --captions: 18px;
  --quotes: 24px;
  --page-width: 80%;
  --page-padding: 35px;
  --page-margin: 10%;
  --debug-message: 'Unset (1280 and up)';
}

@media (max-width:767px) {
  :root {
    --spacing-xs: 15px;
    --spacing-s: 25px;
    --spacing-m: 40px;
    --spacing-l: 50px;
    --spacing-xl: 100px;
    --gutter: 25px;
    --main-hed:  15px;
    --secondary-hed: 25px;
    --tertiary-hed: 17px;
    --quaternary-hed: 15px;
    --para-text: 15px;
    --captions: 14px;
    --quotes: 14px;
    --page-width: 100%;
    --page-padding: 20px;
    --page-margin: 0;
    --debug-message: 'Mobile/Phablet (0 to 767)';
  }
}

@media (min-width: 768px) and (max-width: 1599px) {
  :root {
    --spacing-xs: 15px;
    --spacing-s: 35px;
    --spacing-m: 50px;
    --spacing-l: 70px;
    --spacing-xl: 140px;
    --gutter: 35px;
    --main-hed:  40px;
    --secondary-hed: 40px;
    --tertiary-hed: 25px;
    --quaternary-hed: 19px;
    --para-text: 19px;
    --captions: 16px;
    --quotes: 18px;
    --page-width: 90%;
    --page-padding: 35px;
    --page-margin: 5%;
    --debug-message: 'Tablet/DT (768 to 1279)';
  }
}

.debug {
  padding: 20px;
  font-size: 14px;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 167, 0, 0.5);
  z-index: 5;
}

.debug:after {
  content: 'Unset (1280 and up)';
  content: var(--debug-message);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

a {
  text-decoration: underline;
}

.content-container {
  max-width: 80%;
  max-width: var(--page-width);
  padding-left: 35px;
  padding-left: var(--page-padding);
  padding-right: 35px;
  padding-right: var(--page-padding);
  margin: 0 auto;
}

.page-header {
  position: relative;
  margin-bottom: 70px;
  margin-bottom: var(--spacing-l);
}

.page-header-inner {
  position: absolute;
  z-index: 1000;
  width: 80%;
  width: var(--page-width);
  margin-left: 10%;
  margin-left: var(--page-margin);
  margin-right: 10%;
  margin-right: var(--page-margin);
  padding-left: 35px;
  padding-left: var(--page-padding);
  padding-right: 35px;
  padding-right: var(--page-padding);
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

h1 {
  font-size: 60px;
  font-size: var(--main-hed);
  line-height: 1.2;
}

h1.page-heading {
  color: white;
}

h2 {
  font-size: 60px;
  font-size: var(--secondary-hed);
  line-height: 1.2;
  color: #FF0098;
  font-weight: bold;
  margin-bottom: 35px;
  margin-bottom: var(--spacing-s);
}

h3 {
  font-size: 35px;
  font-size: var(--tertiary-hed);
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 35px;
  margin-bottom: var(--spacing-s);
}

h4 {
  font-size: 25px;
  font-size: var(--quaternary-hed);
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}

h5, h6 {
  font-size: 25px;
  font-size: var(--quaternary-hed);
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0;
}

p, ul {
  font-size: 25px;
  font-size: var(--para-text);
  line-height: 1.5;
  margin-bottom: 35px;
  margin-bottom: var(--spacing-s);
}

p:last-child, ul:last-child {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 1em;
}

.content-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  gap: 50px;
  grid-gap: var(--gutter);
  gap: var(--gutter);
}

.content-block-wide {
  grid-template-areas: "content content content";
}

.content-block-wide .main {
  grid-area: content;
}

.content-block__standard {
  grid-template-areas: "content content white";
}

@media (max-width: 67.49em) {
  .content-block__standard {
    grid-template-areas: "content content content";
  }
}

.content-block__standard .main {
  grid-area: content;
}

.split-content-block {
  grid-template-areas: "left left right";
}

.split-content-block .left {
  grid-area: left;
}

.split-content-block .right {
  grid-area: right;
}

@media (max-width: 67.49em) {
  .split-content-block {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "left" "left" "right";
  }
}

.content-block__home {
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "headline headline headline" "left left right";
}

.content-block__home .homepage-heading {
  grid-area: headline;
}

.content-block__home .homepage-text {
  grid-area: left;
}

.content-block__home .homepage-map {
  grid-area: right;
}

@media (max-width: 67.49em) {
  .content-block__home {
    grid-template-rows: auto;
    grid-template-areas: "headline"  "left " " right";
    grid-template-columns: 1fr;
  }
}

.content-block__timeline {
  grid-template-rows: auto;
  grid-template-areas: "header header header" "text text text";
  background-color: #FFF1EF;
  margin-bottom: 15px;
  margin-bottom: var(--spacing-xs);
  grid-gap: 0px;
  gap: 0px;
}

.content-block__timeline .timeline-header {
  grid-area: header;
  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;
  background-color: #FFE0D9;
  padding: 15px;
  padding: var(--spacing-xs);
}

.content-block__timeline .timeline-header h6, .content-block__timeline .timeline-header p {
  color: #C1272D;
}

.content-block__timeline .timeline-text {
  grid-area: text;
  padding: 15px;
  padding: var(--spacing-xs);
}

.content-block__timeline .timeline-text p, .content-block__timeline .timeline-text ul {
  margin-right: 33.33333%;
}

@media (max-width: 67.49em) {
  .content-block__timeline .timeline-text p, .content-block__timeline .timeline-text ul {
    margin-right: 0;
  }
}

.content-block__timeline .timeline-text h3 {
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
  padding-bottom: var(--spacing-xs);
}

.content-block__gallery {
  padding-top: 35px;
  padding-top: var(--spacing-s);
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  grid-gap: 35px;
  gap: 35px;
  grid-gap: var(--spacing-s);
  gap: var(--spacing-s);
}

p.records {
  margin-bottom: 0px !important;
}

.record-item {
  border-top: 1px solid grey;
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 0px;
  gap: 0px;
  grid-template-areas: "data cta";
  padding-top: 15px;
  padding-bottom: 15px;
}

.record-item__data {
  grid-area: data;
}

.record-item__cta {
  grid-area: cta;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.record-item__date {
  font-weight: 700;
}

.record-item__header {
  font-weight: 700;
  color: #FF4116;
}

.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit] {
  width: 300px !important;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  background-color: #FF4116;
  border-color: #FF4116;
  color: #fff;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 12px;
  text-decoration: none !important;
  font-size: 1.1875rem;
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

@media (max-width: 37.49em) {
  .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit] {
    max-width: 100%;
    font-size: 12px;
  }
}

button, a.button, input.gform_submit_button_1 {
  width: 100%;
  max-width: 300px;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  background-color: #FF4116;
  border-color: #FF4116;
  color: #fff;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 12px;
  text-decoration: none !important;
  font-size: 1.1875rem;
}

@media (max-width: 37.49em) {
  button, a.button, input.gform_submit_button_1 {
    max-width: 100%;
    font-size: 12px;
  }
}

.article-content {
  border-bottom: 2px solid #707070;
  margin-bottom: 70px;
  margin-bottom: var(--spacing-l);
  padding-bottom: 70px;
  padding-bottom: var(--spacing-l);
}

.article-content:last-child {
  border: none;
}

.article-content a {
  text-decoration: underline;
}

.article-content hr.wp-block-separator {
  border-bottom: 2px solid #707070;
  background: #707070;
  background-color: #707070;
  margin-top: 7.5rem;
  margin-bottom: 5.9375rem;
}

body img.gform_ajax_spinner {
  display: none !important;
}

#map {
  margin-bottom: 3.125rem;
}

.blockquote-block {
  grid-template-areas: "content content white";
  padding-top: 35px;
  padding-top: var(--spacing-s);
}

@media (max-width: 67.49em) {
  .blockquote-block {
    grid-template-areas: "content content content";
  }
}

.quote-block {
  grid-area: content;
  display: grid;
  grid-template-columns: 45px 1fr;
  grid-gap: 0px;
  gap: 0px;
  grid-template-areas: "art quote";
}

.quote-block .art {
  grid-area: art;
}

.quote-block .art img {
  width: 30px;
}

.quote-block blockquote {
  grid-area: quote;
  font-size: 24px;
  font-size: var(--quotes);
  color: #676767;
}

.quote-block blockquote .quote {
  margin-bottom: 24px;
  margin-bottom: var(--quotes);
}

.quote-block blockquote .attribution {
  line-height: 1.5;
}

.quote-block blockquote p {
  font-size: 24px;
  font-size: var(--quotes);
  font-weight: 700;
  color: #676767;
}

.content-block-video {
  display: inline-block;
  position: relative;
  padding-bottom: 60%;
  width: 100%;
}

.content-block-video iframe {
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
}

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