html {
  font-size: 14px; }
  @media (min-width: 500px) {
    html {
      font-size: 16px; } }
  @media (min-width: 1440px) {
    html {
      font-size: 18px; } }

#adminbar {
  bottom: 0;
  top: auto; }

.adminbar__links {
  height: 40px !important; }

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

body {
  margin: 0;
  padding: 0;
  font-family: "IBM Plex Mono", monospace; }

a, a:visited {
  -webkit-transition: 0.4s;
  transition: 0.4s; }

a:hover {
  color: rgba(0, 0, 0, 0.5); }

p, ul, ol {
  font-family: "IBM Plex Mono", monospace;
  line-height: 1.778;
  font-size: 1rem; }
  @media (min-width: 768px) {
    p, ul, ol {
      font-size: 1rem; } }

ul, ol {
  padding-left: 1rem; }
  ul li + li, ol li + li {
    margin-top: 1rem; }

ol {
  padding-left: 1.5rem; }
  @media (min-width: 768px) {
    ol {
      padding-left: 2rem; } }

h1, h2, h3, h4, h5 {
  font-family: "IBM Plex Sans", sans-serif; }

h3, h4, h5 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5;
  margin-top: 0;
  font-size: 1rem; }
  @media (min-width: 768px) {
    h3, h4, h5 {
      font-size: 1rem; } }

label {
  display: block;
  cursor: pointer;
  width: 100%; }
  label h1 {
    margin: 0; }

.grid-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 1024px) {
    .grid-container {
      display: grid;
      grid-template-columns: 9fr 3fr;
      grid-template-areas: "nav nav" "hero hero" "main filters"; } }

.about-page .grid-container, .initiative-page .grid-container {
  grid-template-areas: "nav nav" "hero hero" "main main"; }

@media (min-width: 1024px) {
  .main-content .block, .activity-post .footer, .about-page .footer, .fourOhfour .footer {
    display: grid;
    grid-template-columns: minmax(10%, 1fr) 12fr minmax(10%, 1fr);
    grid-template-areas: 'gut1 main gut2'; }
    .main-content .block .container, .activity-post .footer .container, .about-page .footer .container, .fourOhfour .footer .container {
      grid-area: main;
      max-width: none; } }

@media (min-width: 1024px) {
  .filters + .main-content .block {
    display: grid;
    grid-template-columns: minmax(5%, 1fr) 9fr;
    grid-template-areas: "gut main"; }
    .filters + .main-content .block .container {
      grid-area: main;
      -ms-flex-line-pack: end;
          align-content: flex-end;
      padding-right: 4rem; } }

@media (min-width: 1200px) {
  .filters + .main-content .block {
    grid-template-columns: minmax(13.5%, 1fr) 9fr; } }

.full-container, .container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto; }
  .full-container.centered, .container.centered {
    margin: 0 auto; }

#msg-box {
  display: none;
  padding-top: 4rem;
  padding-bottom: 8rem; }

.card.empty {
  opacity: 0; }

.example-cards {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .example-cards .card {
    margin: 0; }
  .example-cards .card .card-inner {
    padding: 0;
    overflow: hidden; }
    .example-cards .card .card-inner img {
      width: calc(100% + 4px);
      left: -2px;
      top: -2px;
      height: auto; }
  @media (min-width: 1024px) {
    .example-cards {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

.example-card {
  padding: 1rem;
  margin: 1rem; }

.container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%; }

.main-content {
  padding: 0;
  background: #fff; }

.hero {
  background: #364838;
  grid-area: hero;
  min-height: 30vh;
  grid-row: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 300px; }
  .home .hero {
    color: #fff; }
  .hero h1 {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -1.04;
    margin-bottom: 4.5rem;
    text-transform: none; }
    @media (min-width: 1024px) {
      .hero h1 {
        font-size: 3.111rem;
        letter-spacing: -1.35; } }
  .hero h2 {
    color: #F9DDDB;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1.78;
    text-align: center; }
  @media (min-width: 768px) and (min-height: 600px) {
    .hero {
      min-height: 500px; } }
  @media (min-width: 1024px) {
    .hero {
      display: grid;
      grid-template-columns: minmax(10%, 1fr) 12fr minmax(10%, 1fr);
      grid-template-areas: 'gut1 main gut2'; }
      .hero .container {
        grid-area: main; } }

.filter .btn, .filter-block .btn {
  font-size: 0.7rem; }

@media (min-width: 1024px) {
  .filter .btn, .filter-block .btn {
    font-size: 0.7rem; } }

.activities-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .activities-filter-list li + li {
    margin-top: 0; }
  @media (min-width: 1024px) {
    .activities-filter-list {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .activities-filter-list .filter-block {
        width: 150px; } }

.filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-area: filters;
  grid-row: 3;
  position: fixed;
  width: 100%;
  z-index: 2; }
  .activities-page .filters {
    background-color: #F9DDDB; }
  .filters.lock {
    position: fixed;
    right: 0;
    height: 100vh; }
  .home .filters {
    position: relative; }
  body.activities-page .filters {
    position: fixed;
    top: 3.8rem; }
  body.activities-page .filters.open {
    position: relative; }
  body.activities-page .filters + .main-content {
    margin-top: 7rem; }
  .filters.open {
    top: 0;
    position: relative; }
  .home .filters.open {
    top: 0;
    position: relative; }
  .filters input[type="reset"] {
    display: none; }
  @media (max-width: 768px) {
    .home .filters {
      position: -webkit-sticky;
      position: sticky;
      top: 3.9rem; } }
  @media (min-width: 768px) and (min-height: 500px) {
    .home .filters {
      position: -webkit-sticky;
      position: sticky;
      top: 5rem; }
    body.activities-page .filters {
      padding-top: calc(3rem + 30px);
      top: 0rem; }
    body.activities-page .filters + .main-content {
      margin-top: 7rem; }
    body.activities-page .filters.open + .main-content {
      margin-top: 0rem; } }
  @media (min-width: 1024px) {
    .filters {
      position: relative; }
      .home .filters {
        top: 5rem; }
      .home .filters.open {
        top: 0; }
      body.activities-page .filters {
        top: 0; }
      .activities-page .filters + .main-content {
        margin-top: 0; }
      body.activities-page .filters.open + .main-content {
        margin-top: 0; } }
  @media (min-width: 1440px) {
    .home .filters.open {
      top: 0.55rem; } }

.filter-block {
  display: inline-block;
  vertical-align: middle;
  width: 32%; }

.about-page .filters {
  display: none; }

.about-page h1:before {
  content: '';
  height: 2px;
  background: #0D2431; }

.about-page .hero {
  background: #DEE2E5;
  color: #0D2431;
  margin-top: 3.9rem;
  padding-top: 2rem;
  padding-bottom: 2rem; }
  .about-page .hero h3, .about-page .hero h4, .about-page .hero h5 {
    width: 70%; }
  .about-page .hero h1 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #0D2431; }

@media (max-width: 1023px) {
  .about-page {
    min-height: 0; } }

.activity-post {
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s; }
  .activity-post.shapes-loaded {
    opacity: 1; }
  .activity-post .hero {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-top: 15rem; }
    .activity-post .hero h1 {
      margin-top: 0;
      margin-bottom: 1.5rem; }
    .activity-post .hero .icon {
      position: absolute;
      top: 4rem;
      left: 50%;
      width: 45%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      z-index: 1; }
      .activity-post .hero .icon img {
        max-height: 10rem;
        width: 100%;
        height: auto; }
    .activity-post .hero .intro {
      z-index: 3;
      margin-bottom: 1.5rem; }
      .activity-post .hero .intro h5 {
        font-size: 1.31rem;
        margin: 0; }
    @media (min-width: 1024px) {
      .activity-post .hero {
        padding-top: 5rem;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .activity-post .hero .container {
          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-align: center;
              -ms-flex-align: center;
                  align-items: center; }
        .activity-post .hero .intro {
          width: 70%;
          margin-bottom: 0; }
        .activity-post .hero .icon {
          position: relative;
          width: 30%;
          top: auto;
          left: auto;
          -webkit-transform: none;
                  transform: none; }
          .activity-post .hero .icon img {
            width: calc(100% - 6rem);
            height: auto;
            margin-left: 4rem; } }
  .activity-post .btn {
    width: 6.5rem;
    color: #0D2431;
    border: none; }
  .activity-post .filters {
    padding-top: 4rem;
    padding-bottom: 2rem; }
    .activity-post .filters h5 {
      margin-bottom: 0.5rem; }
    .activity-post .filters ul {
      margin-bottom: 1rem; }
    .activity-post .filters .btn, .activity-post .filters .btn:visited, .activity-post .filters .btn:active {
      color: #0D2431;
      border-color: #0D2431;
      background: #EBB640; }
    @media (min-width: 1024px) {
      .activity-post .filters {
        position: -webkit-sticky;
        position: sticky;
        height: 100vh;
        top: 5rem; }
        .activity-post .filters .container {
          padding-left: 3rem; }
        .activity-post .filters.fixed {
          position: fixed;
          width: 25%;
          right: 0;
          height: 100%; } }
    @media (min-width: 1200px) {
      .activity-post .filters .container {
        padding-left: 4rem; } }

.main-content {
  grid-area: main;
  grid-row: 3; }

h1, .main-nav {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.47;
  text-transform: uppercase;
  margin-bottom: 1.5rem; }

@media (min-width: 768px) {
  h1 {
    font-size: 1.31rem; } }

.nav label h1 {
  font-size: 1rem; }

.main-nav {
  margin: 0; }

.nav-header {
  font-family: "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  grid-area: nav;
  background: #364838;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 1rem 0; }
  .nav-header ul a {
    font-family: "IBM Plex Sans", sans-serif; }
  .nav-header a {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .nav-header a:hover {
    opacity: 0.70; }
  .nav-header h1 {
    /* mobile */
    font-size: 1rem;
    color: #fff;
    position: absolute;
    left: 1.4rem;
    top: 1.32rem;
    z-index: 5;
    margin: 0; }
  .nav-header .main-nav {
    z-index: 1; }
    .nav-header .main-nav svg {
      padding: 0.2rem 0; }
  .nav-header .nav label {
    text-align: right;
    display: block;
    color: #fff;
    z-index: 1; }
  @media (min-width: 768px) and (min-height: 500px) {
    .nav-header {
      padding: 0;
      padding-top: 2rem;
      padding-bottom: 2rem; }
      .nav-header .nav.main-nav {
        padding: 0; }
      .nav-header h1, .nav-header .main-nav li {
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 1.47;
        line-height: 1; }
      .nav-header h1 {
        position: relative;
        left: auto;
        top: auto; } }
  .nav-header .full-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
  .nav-header a {
    color: #fff;
    text-decoration: none; }

.dark-header h1, .activity-post.theme-dark-blue .nav-header h1, .activity-post.theme-light-blue .nav-header h1, .activity-post.theme-purple .nav-header h1, .activity-post.theme-med-blue .nav-header h1, .activity-post.theme-teal .nav-header h1, .dark-header a, .activity-post.theme-dark-blue .nav-header a, .activity-post.theme-light-blue .nav-header a, .activity-post.theme-purple .nav-header a, .activity-post.theme-med-blue .nav-header a, .activity-post.theme-teal .nav-header a, .dark-header .nav label, .activity-post.theme-dark-blue .nav-header .nav label, .activity-post.theme-light-blue .nav-header .nav label, .activity-post.theme-purple .nav-header .nav label, .activity-post.theme-med-blue .nav-header .nav label, .activity-post.theme-teal .nav-header .nav label {
  color: #0D2431; }

.dark-header .nav ul:before, .activity-post.theme-dark-blue .nav-header .nav ul:before, .activity-post.theme-light-blue .nav-header .nav ul:before, .activity-post.theme-purple .nav-header .nav ul:before, .activity-post.theme-med-blue .nav-header .nav ul:before, .activity-post.theme-teal .nav-header .nav ul:before {
  border-color: #0D2431; }

.caret-down {
  height: 5px;
  width: 14px; }

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  text-align: left;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  /* full nav */ }
  .nav h1 {
    margin: 0; }
  .nav.main-nav {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem; }
  .nav label {
    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; }
  .nav input {
    display: none; }
  .nav .nav-toggle:checked + label + ul {
    width: 100%;
    padding-top: 2rem;
    padding-left: 1.67rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .nav .nav-toggle:checked + label .caret-down {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  .nav ul {
    text-align: left;
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    list-style: none;
    margin: 0;
    letter-spacing: 1.31; }
    .nav ul li + li {
      margin: 0; }
  .nav ul:before {
    content: '';
    width: 145px;
    display: inline-block;
    border-top: 2px solid #fff; }
  .nav ul li {
    line-height: 3rem; }
  @media (min-width: 768px) and (min-height: 500px) {
    .nav {
      width: auto; }
      .nav.main-nav .nav-toggle-label {
        display: none !important; }
      .nav-toggle:checked + label + .nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
      .nav ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; }
        .nav ul:before {
          display: none; }
        .nav ul li {
          margin: 0 20px;
          padding: 0; }
        .nav ul li + li {
          margin-left: 2rem; } }
  @media (min-width: 1024px) {
    .nav label {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .nav label svg {
        margin-left: 1rem; } }

.nav-header {
  /* mobile only */
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; }

.category-group {
  margin-bottom: 2rem; }
  .category-group h4 {
    font-family: "IBM Plex Sans", sans-serif;
    color: #0D2431;
    text-transform: uppercase; }

.group-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .group-filters .filter {
    width: 32%; }

.filters-inner {
  max-height: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  opacity: 0;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s; }
  .nav-toggle:checked + label + .filters-inner {
    padding-top: 2rem;
    max-height: 2000px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    overflow: visible;
    opacity: 1; }
  @media (min-width: 1024px) {
    .filters-inner {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .nav-toggle:checked + label + .filters-inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-height: 50vh; }
      .filters-inner .btn {
        width: 150px; }
      .filters-inner .category-group {
        width: 16.5%; }
        .filters-inner .category-group .group-filters {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between; }
          .filters-inner .category-group .group-filters .filter {
            width: 150px; }
        .filters-inner .category-group:first-child {
          width: calc(450px + 2rem); }
          .filters-inner .category-group:first-child .group-filters {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row; } }

.breadcrumb {
  margin-top: 50px; }

.slick-slide.example-card-wrap, .slick-slide.card, .category-activity-type.slick-slider, .see-more-cards.slick-slider {
  height: auto; }

.slick-slider .slick-list {
  margin: 0 -1.4rem; }

.cards, .see-more-cards {
  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;
  z-index: 1;
  margin-top: 2rem; }

.see-more-cards {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .see-more-cards h3, .see-more-cards h4, .see-more-cards h5 {
    display: none; }
  @media (min-width: 768px) {
    .see-more-cards {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .see-more-cards h3, .see-more-cards h4, .see-more-cards h5 {
        padding-top: 0.75rem;
        font-size: 0.88rem;
        display: block; } }
  @media (min-width: 1200px) {
    .see-more-cards h3, .see-more-cards h4, .see-more-cards h5 {
      font-size: inherit; } }

.see-more-cards .category-activity-type {
  height: auto;
  overflow: hidden;
  position: relative; }
  @media (min-width: 768px) {
    .see-more-cards .category-activity-type {
      width: 33%;
      overflow: visible; } }

@media (min-width: 768px) {
  .category-activity-type + .category-activity-type {
    margin-left: 20px; } }

.see-more-cards .card {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 90%;
  padding-bottom: 90%;
  margin: 0; }
  .see-more-cards .card h1 {
    font-size: 1rem; }
  @media (max-width: 767px) {
    .see-more-cards .card {
      padding-bottom: 67.5%; } }
  @media (min-width: 768px) and (max-width: 1024px) {
    .see-more-cards .card .icon {
      height: 3rem; } }
  @media (min-width: 768px) {
    .see-more-cards .card {
      width: 100%;
      padding-bottom: 100%; } }
  @media (min-width: 1200px) {
    .see-more-cards .card h1 {
      font-size: 1.2rem; } }

.example-card-wrap {
  width: 100%; }
  .example-card-wrap .card {
    width: 90%;
    padding-bottom: 90%; }
    @media (max-width: 768px) {
      .example-card-wrap .card {
        width: 90%;
        padding-bottom: 90%;
        height: 0;
        margin: 0; } }

.cards {
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
  font-family: "IBM Plex Mono", monospace;
  text-align: center;
  padding-bottom: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .cards .card, .cards .card .icon {
    opacity: 0;
    -webkit-transition: opacity 3s;
    transition: opacity 3s; }
  .cards .card.shapes-loaded, .cards .card .icon {
    opacity: 1; }
  .cards.grid {
    overflow: hidden; }
  @media (min-width: 500px) {
    .cards {
      margin-left: -1rem;
      margin-right: -1rem;
      padding-bottom: 4rem; } }

.card {
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  background: #fff;
  margin: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #111535;
  margin: 0 auto 2rem;
  color: #0D2431; }
  .card .icon {
    margin-bottom: 1rem;
    height: 4.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .card h1 {
    font-family: "IBM Plex Mono", monospace;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.33rem;
    line-height: 1.2;
    font-weight: 600;
    text-transform: none; }
  .card .card-inner {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 2px solid #111535;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background: #ffffff; }
  .card:hover .card-inner {
    top: -0.5rem;
    left: -0.5rem; }
  @media (max-width: 767px) {
    .card {
      padding-bottom: 75%; }
      .card h1 {
        font-size: 1.7rem; }
      .card .link-text {
        font-size: 0.9rem; }
      .card .icon {
        height: 6rem; }
      .card:hover .card-inner {
        top: 0;
        left: 0; } }
  @media (min-width: 500px) {
    .card {
      width: calc(50% - 2rem);
      padding-bottom: calc(50% - 2rem);
      margin: 1rem; } }
  @media (min-width: 1024px) {
    .card {
      width: calc(33% - 2rem);
      padding-bottom: calc(33% - 2rem); } }
  .card.theme-purple, .card.theme-med-blue, .card.theme-dark-blue, .card.theme-green {
    color: #fff; }
    .card.theme-purple a, .card.theme-purple h1, .card.theme-med-blue a, .card.theme-med-blue h1, .card.theme-dark-blue a, .card.theme-dark-blue h1, .card.theme-green a, .card.theme-green h1 {
      color: #fff; }
  .card.theme-yellow .card-inner {
    background: #EBB640 !important; }
  .card.theme-dark-blue .card-inner {
    background: #111535 !important; }
  .card.theme-light-blue .card-inner {
    background: #7A889F !important; }
  .card.theme-green .card-inner {
    background: #364838 !important; }
  .card.theme-pink .card-inner {
    background: #F9DDDB !important; }
  .card.theme-purple .card-inner {
    background: #967876 !important; }
  .card.theme-med-blue .card-inner {
    background: #2E2C73 !important; }
  .card.theme-gray .card-inner {
    background: #DEE2E5 !important; }
  .card.theme-teal .card-inner {
    background: #9BCDC3 !important; }

.card a {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1; }

.card h1,
.card .link-text {
  position: relative; }

.card svg {
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s; }

.card:hover svg {
  -webkit-transform: scale(1.5) rotate(10deg);
          transform: scale(1.5) rotate(10deg); }

input, textarea {
  margin: 1rem 0; }

textarea {
  min-height: 200px;
  background: #eee; }

input[type="text"], input[type="email"], textarea {
  font-size: 0.8rem;
  padding: 10px;
  background: #eee;
  font-family: "IBM Plex Mono", monospace; }
  input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    outline: none; }

/* home */
.home .hero {
  height: auto;
  width: 100%;
  /*position: fixed;*/
  z-index: 3;
  overflow: visible; }

.home .grid-container {
  grid-template-areas: "nav nav" "hero hero"; }

@media (max-width: 768px) {
  .home .hero {
    height: 100vh; } }

/* activities */
.activities-page .grid-container {
  grid-template-areas: "nav nav" "filters filters" "main main" "hero hero"; }

.activities-page .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (min-width: 768px) {
    .activities-page .filters {
      margin-top: 0; } }

.activities-page .hero {
  display: none; }

.activities-page .filters {
  grid-row: 2; }

.activities-page .main-content section {
  margin-top: 30px; }

.activities-page .container {
  max-width: 1200px; }

.debug {
  background: rgba(255, 0, 0, 0.5);
  position: relative;
  padding: 10px;
  border-top: 30px solid rgba(0, 0, 0, 0.5);
  display: none; }

.debug:after {
  content: 'debug';
  position: absolute;
  top: -20px;
  left: 10px;
  text-transform: uppercase;
  font-size: 10px; }

.btn, .btn-bg, button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  color: white;
  border-radius: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  letter-spacing: 1.71;
  font-size: 0.67rem;
  width: 6.5rem;
  height: 2.8rem;
  background: transparent;
  border: 1px solid #fff;
  position: relative;
  text-decoration: none;
  width: 100%; }
  .btn span, .btn-bg span, button span {
    margin-top: 3px; }
  @media (min-width: 1024px) {
    .btn, .btn-bg, button {
      width: 150px; } }

.btn:visited {
  color: white; }

.submit, [type="submit"] {
  border-color: #000;
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
  height: 36px;
  font-weight: 700;
  display: inline-block;
  width: 150px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s; }
  .submit:hover, [type="submit"]:hover {
    background: #000;
    color: #fff; }
  .submit:focus, [type="submit"]:focus {
    outline: none; }

/*modals*/
#modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: #F9DDDB;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 500px; }

.modal.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff; }

.modal form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.modalLauncher {
  opacity: 0;
  display: none; }

.modalLauncher:checked + label + .modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.btn.close {
  position: absolute;
  right: 0;
  top: 0; }

.filter-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .filter-btn .btn {
    color: #0D2431;
    position: absolute;
    border: 2px solid #0D2431;
    background: #F9DDDB;
    top: 0;
    left: 0;
    z-index: 2;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    width: 100%;
    height: calc(2.8rem + 1px); }
  .filter-btn .btn-bg {
    display: block;
    border: 2px solid #0D2431;
    position: relative;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 1; }
  @media (min-width: 1024px) {
    .filter-btn .btn {
      width: 151px; }
    .filter-btn .btn-bg {
      width: 150px; } }

.filter-btn:hover .btn {
  top: -5px;
  left: -5px; }

input[type="checkbox"]:checked + label .btn {
  color: #F9DDDB;
  background: #0D2431; }

label:hover span:before {
  top: -4px;
  left: -4px; }

.hide {
  display: none; }

.about-page .block h1, h1.methodology {
  font-size: 1.2rem; }

@media (min-width: 1024px) {
  .block-methodology .container {
    width: 80%; } }

.methods {
  margin-top: 1.5rem; }

.method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 2px solid #000; }
  .method .method-explainer {
    margin-top: 1.5rem; }
  @media (min-width: 768px) {
    .method {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .method .method-explainer {
        margin-top: 0; }
        .method .method-explainer p:first-child {
          margin-top: 0; } }
  @media (min-width: 768px) {
    .method .method-explainer {
      width: 60%; } }

a {
  color: inherit; }

.method-title {
  width: 100%; }
  .method-title h3, .method-title h4, .method-title h5 {
    padding-right: 2rem;
    margin: 0;
    position: relative; }
    .method-title h3:after, .method-title h3:before, .method-title h4:after, .method-title h4:before, .method-title h5:after, .method-title h5:before {
      content: '';
      background: #000;
      position: absolute;
      width: 10px;
      height: 1px;
      top: 8px;
      right: 4px;
      line-height: 1rem; }
  @media (min-width: 768px) {
    .method-title {
      width: 40%;
      padding-right: 2rem; }
      .method-title h1:after, .method-title h1:before, .method-title h5:after, .method-title h5:before {
        display: none; } }

.collapser {
  display: none; }
  .collapser:checked + label h5:after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  .collapser + label + .collapsible {
    display: block; }
  .collapser:checked + label + .collapsible {
    display: none; }

@media (min-width: 768px) {
  .collapser + label h5:after {
    display: none; }
  .collapser + label + .collapsible {
    display: block !important; } }

.block {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .block .block-inner + .block-inner {
    margin-top: 4rem; }
  .block h1 {
    font-weight: 700; }

.block-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  @media (min-width: 1024px) {
    .block-contact .container {
      -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; } }

.contact-copy {
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1; }
  @media (min-width: 1024px) {
    .contact-copy {
      max-width: 50%;
      width: 50%;
      padding-right: 4rem; } }

.contact-form {
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2; }
  @media (min-width: 1024px) {
    .contact-form {
      width: 40%; } }

/* colors */
.bg-black {
  color: #fff; }

.link-text {
  font-size: 0.70rem;
  text-transform: uppercase;
  letter-spacing: 2.28; }

/* home header */
.hero-background-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-animation: rotate 3s forwards;
          animation: rotate 3s forwards; }
  .hero-background-shapes svg {
    max-height: 100%; }
    @media (max-width: 768px) {
      .hero-background-shapes svg {
        top: 50%;
        position: absolute;
        -webkit-transform: translate(0, -100%);
                transform: translate(0, -100%); } }

@-webkit-keyframes rotate {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7) rotateZ(-10deg);
            transform: scale(0.7) rotateZ(-10deg); }
  30% {
    opacity: 1; }
  to {
    -webkit-transform: scale(1) rotateZ(0);
            transform: scale(1) rotateZ(0); } }

@keyframes rotate {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7) rotateZ(-10deg);
            transform: scale(0.7) rotateZ(-10deg); }
  30% {
    opacity: 1; }
  to {
    -webkit-transform: scale(1) rotateZ(0);
            transform: scale(1) rotateZ(0); } }

#homepage-sentence-builder,
.hero-background-shapes + h2 {
  position: relative; }

#homepage-sentence-builder {
  text-align: center;
  width: 19.5rem;
  margin: 0 auto;
  margin-top: 2.5rem; }
  #homepage-sentence-builder .sentence {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    line-height: 1.35;
    text-align: left; }
    #homepage-sentence-builder .sentence .segment, #homepage-sentence-builder .sentence .dd {
      display: inline; }
    #homepage-sentence-builder .sentence .dd {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      color: #EBB640;
      position: relative;
      z-index: 2; }
      #homepage-sentence-builder .sentence .dd:first-of-type {
        z-index: 3; }
      #homepage-sentence-builder .sentence .dd .placeholder {
        border-bottom: 1px solid #EBB640;
        font-family: "IBM Plex Mono", monospace;
        font-weight: 300;
        font-size: 0.835em;
        font-style: italic;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        #homepage-sentence-builder .sentence .dd .placeholder span {
          margin-right: 15px; }
      #homepage-sentence-builder .sentence .dd ul {
        width: 100%;
        position: absolute;
        display: none;
        height: 0;
        top: 0;
        padding: 0 1rem; }
      #homepage-sentence-builder .sentence .dd .dd-open {
        display: none; }
      #homepage-sentence-builder .sentence .dd .dd-open:checked + label + ul {
        height: auto;
        font-size: 0.75rem;
        color: #0D2431;
        display: block;
        background-color: #EBB640;
        top: 2.5rem;
        left: 0;
        list-style: none; }
        #homepage-sentence-builder .sentence .dd .dd-open:checked + label + ul li {
          margin: 1rem 0; }
        #homepage-sentence-builder .sentence .dd .dd-open:checked + label + ul input {
          display: none; }
          #homepage-sentence-builder .sentence .dd .dd-open:checked + label + ul input:checked + label {
            color: #fff; }
  #homepage-sentence-builder .show-activities-button {
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
    height: 3rem;
    margin-bottom: 0;
    margin-top: 3rem;
    border-color: #fff; }
    #homepage-sentence-builder .show-activities-button:hover {
      color: #364838;
      background: #fff; }
    @media (min-width: 768px) and (min-height: 500px) {
      #homepage-sentence-builder .show-activities-button {
        margin-top: 6rem; } }
  @media (min-width: 600px) {
    #homepage-sentence-builder {
      width: auto; } }
  @media (min-width: 768px) {
    #homepage-sentence-builder .sentence {
      font-size: 2.5rem; } }
  @media (min-width: 1024px) {
    #homepage-sentence-builder .sentence {
      font-size: 2.6667rem;
      text-align: center; } }

.mobile-hide {
  display: none; }
  @media (min-width: 768px) and (min-height: 450px) {
    .mobile-hide {
      display: block; } }

.caret-right {
  height: 0.44rem;
  width: 0.33rem; }

.objectives, .overview-items, .tips ul, .text ul {
  font-family: "IBM Plex Mono", monospace;
  font-size: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1.5rem; }
  .objectives li, .overview-items li, .tips ul li, .text ul li {
    list-style: none;
    position: relative;
    line-height: 1.7; }
    .objectives li p, .overview-items li p, .tips ul li p, .text ul li p {
      display: inline-block; }
    .objectives li:before, .overview-items li:before, .tips ul li:before, .text ul li:before {
      content: '-';
      display: inline-block;
      position: absolute;
      left: -1rem; }
  @media (min-width: 768px) {
    .objectives, .overview-items, .tips ul, .text ul {
      font-size: 1rem; } }

.objectives li, .overview p {
  font-size: 1.2rem; }

.block.overview {
  background: #F3F3F3; }

.additional-information {
  background: #EBB640; }
  .additional-information article {
    border-top: 2px solid;
    margin-bottom: 2rem; }
    .additional-information article:last-child {
      margin-bottom: 0; }

.overline {
  padding-top: 2rem;
  position: relative; }
  .overline:before {
    top: 0;
    left: 0;
    content: '';
    width: 55%;
    height: 2px;
    background: #0D2431;
    display: block;
    position: absolute; }

.hero.yellow {
  background: #EBB640;
  color: #0D2431; }

input, textarea {
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none; }

input[type="text"], input[type="email"], textarea {
  border: 1px solid #000;
  background: transparent; }

.freeform-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.freeform-column, .freeform-row {
  width: 100%; }

.freeform-label {
  font-size: 1rem; }

.overview-items {
  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; }
  .overview-items h5 {
    margin-bottom: 0.5rem; }
  @media (min-width: 1024px) {
    .overview-items {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .overview-items article {
        width: 20%;
        min-width: 150px; }
        .overview-items article + article {
          margin-left: 4em; } }

.materials, .group-size {
  width: calc(50% - 1rem);
  border-top: 2px solid #000; }
  .materials h3, .materials h4, .materials h5, .group-size h3, .group-size h4, .group-size h5 {
    margin-top: 1rem; }

.footer {
  z-index: 10;
  padding-top: 1rem;
  background: #111535;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 3rem;
  padding-bottom: 6rem;
  position: relative; }
  .footer h3, .footer h4, .footer h5 {
    margin-bottom: 0.5rem;
    text-transform: none;
    font-family: "IBM Plex Mono", monospace; }
  .footer input {
    border-color: #fff;
    width: 100%;
    height: 36px; }
  .footer .newsletter-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .footer input[type="text"], .footer input[type="email"], .footer textarea {
    color: #fff; }
  .footer .submit {
    color: #fff;
    border-color: #fff; }
    .footer .submit:hover {
      color: #0D2431;
      background: #fff; }
  .footer .copyright {
    position: absolute;
    bottom: 2rem;
    width: calc(100% - 2.8rem);
    font-size: 0.85rem;
    font-family: "IBM Plex Mono", monospace; }
  @media (min-width: 768px) {
    .footer {
      padding-bottom: 2rem; }
      .footer .container {
        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;
        max-width: 1200px; }
      .footer .copyright {
        position: relative;
        bottom: auto;
        font-size: 0.75rem;
        margin-top: 2rem; }
      .footer .newsletter-form {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -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; }
        .footer .newsletter-form input {
          width: calc(100% - 150px - 1rem); }
        .footer .newsletter-form button {
          margin: 0; } }

.footer-main {
  margin-bottom: 2rem; }
  @media (min-width: 768px) {
    .footer-main {
      width: 50%; } }

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .footer-links > div {
    width: 50%; }
  .footer-links ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0; }
    .footer-links ul li {
      margin-bottom: 1rem; }
  .footer-links a {
    text-decoration: none; }
  @media (min-width: 768px) {
    .footer-links {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      width: 40%; }
      .footer-links > div {
        margin-left: 1.5rem; }
      .footer-links ul {
        font-size: 0.75rem; } }

.activity-post.theme-yellow .hero, .activity-post.theme-yellow .additional-information {
  background: #EBB640; }

.activity-post.theme-yellow .nav-header {
  background: #111535; }

.activity-post.theme-yellow .filters {
  background: #7A889F; }
  .activity-post.theme-yellow .filters .btn {
    background-color: #7A889F; }
  .activity-post.theme-yellow .filters h3, .activity-post.theme-yellow .filters h4, .activity-post.theme-yellow .filters h5 {
    color: #fff; }

.activity-post.theme-dark-blue .hero, .activity-post.theme-dark-blue .additional-information {
  background: #111535;
  color: #fff;
  border-color: #fff; }
  .activity-post.theme-dark-blue .hero h1, .activity-post.theme-dark-blue .additional-information h1 {
    color: #fff; }

.activity-post.theme-dark-blue .nav-header {
  background: #7A889F; }

.activity-post.theme-dark-blue .filters {
  background: #EBB640; }

.fg-light, .activity-post.theme-green .hero, .activity-post.theme-green .additional-information, .activity-post.theme-purple .hero, .activity-post.theme-purple .additional-information, .activity-post.theme-med-blue .hero, .activity-post.theme-med-blue .additional-information {
  color: #fff; }
  .fg-light article, .activity-post.theme-green .hero article, .activity-post.theme-green .additional-information article, .activity-post.theme-purple .hero article, .activity-post.theme-purple .additional-information article, .activity-post.theme-med-blue .hero article, .activity-post.theme-med-blue .additional-information article {
    border-color: #fff; }

.btn-light, .activity-post.theme-yellow .filters .btn, .activity-post.theme-light-blue .filters .btn, .activity-post.theme-pink .filters .btn, .activity-post.theme-purple .filters .btn, .activity-post.theme-teal .filters .btn {
  border-color: #F3F3F3;
  color: #F3F3F3; }
  .btn-light + .btn-bg, .activity-post.theme-yellow .filters .btn + .btn-bg, .activity-post.theme-light-blue .filters .btn + .btn-bg, .activity-post.theme-pink .filters .btn + .btn-bg, .activity-post.theme-purple .filters .btn + .btn-bg, .activity-post.theme-teal .filters .btn + .btn-bg {
    border-color: #F3F3F3; }

.activity-post.theme-light-blue .hero, .activity-post.theme-light-blue .additional-information {
  background: #7A889F; }

.activity-post.theme-light-blue .nav-header {
  background: #EBB640; }

.activity-post.theme-light-blue .filters {
  background: #111535; }
  .activity-post.theme-light-blue .filters .btn {
    background-color: #111535; }
  .activity-post.theme-light-blue .filters h3, .activity-post.theme-light-blue .filters h4, .activity-post.theme-light-blue .filters h5 {
    color: #F3F3F3; }

.activity-post.theme-green .hero, .activity-post.theme-green .additional-information {
  background: #364838; }
  .activity-post.theme-green .hero h1, .activity-post.theme-green .additional-information h1 {
    color: #fff; }

.activity-post.theme-green .nav-header {
  background: #967876; }

.activity-post.theme-green .filters {
  background: #F9DDDB; }
  .activity-post.theme-green .filters .btn {
    background-color: #F9DDDB; }

.activity-post.theme-pink .hero, .activity-post.theme-pink .additional-information {
  background: #F9DDDB; }

.activity-post.theme-pink .nav-header {
  background: #364838; }

.activity-post.theme-pink .filters {
  background: #967876; }
  .activity-post.theme-pink .filters .btn {
    background-color: #967876; }
  .activity-post.theme-pink .filters h3, .activity-post.theme-pink .filters h4, .activity-post.theme-pink .filters h5 {
    color: #fff; }

.activity-post.theme-purple .hero, .activity-post.theme-purple .additional-information {
  background: #967876; }
  .activity-post.theme-purple .hero h1, .activity-post.theme-purple .additional-information h1 {
    color: #fff; }

.activity-post.theme-purple .nav-header {
  background: #F9DDDB; }

.activity-post.theme-purple .filters {
  background: #364838; }
  .activity-post.theme-purple .filters .btn {
    background-color: #364838; }
  .activity-post.theme-purple .filters h3, .activity-post.theme-purple .filters h4, .activity-post.theme-purple .filters h5 {
    color: #F3F3F3; }

.activity-post.theme-med-blue .hero, .activity-post.theme-med-blue .additional-information {
  background: #2E2C73; }
  .activity-post.theme-med-blue .hero h1, .activity-post.theme-med-blue .additional-information h1 {
    color: #fff; }

.activity-post.theme-med-blue .nav-header {
  background: #9BCDC3; }

.activity-post.theme-med-blue .filters {
  background: #DEE2E5; }
  .activity-post.theme-med-blue .filters .btn {
    background-color: #DEE2E5; }

.activity-post.theme-gray .hero, .activity-post.theme-gray .additional-information {
  background: #DEE2E5; }

.activity-post.theme-gray .nav-header {
  background: #2E2C73; }

.activity-post.theme-gray .filters {
  background: #9BCDC3; }
  .activity-post.theme-gray .filters .btn {
    background-color: #9BCDC3; }

.activity-post.theme-teal .hero, .activity-post.theme-teal .additional-information {
  background: #9BCDC3; }

.activity-post.theme-teal .nav-header {
  background: #DEE2E5; }

.activity-post.theme-teal .filters {
  background: #2E2C73; }
  .activity-post.theme-teal .filters .btn {
    background-color: #2E2C73; }
  .activity-post.theme-teal .filters h3, .activity-post.theme-teal .filters h4, .activity-post.theme-teal .filters h5 {
    color: #F3F3F3; }

.bg-dark-blue {
  color: #fff; }
  .bg-dark-blue h1 {
    color: #fff; }

.tips .tips-inner {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  display: block; }

.tips-open {
  display: none; }

.tips-expander {
  display: none; }
  .tips-open:checked + label + .tips-expander {
    display: block; }

.tips-launcher {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem; }
  .tips-launcher h3, .tips-launcher h4, .tips-launcher h5 {
    margin: 0; }
  .tips-launcher:after, .tips-launcher:before {
    content: '';
    background: #000;
    position: absolute;
    width: 14px;
    height: 2px;
    top: calc(1rem + 9px);
    right: 0;
    line-height: 1rem; }
  .tips-launcher:after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: 0.2s;
    transition: 0.2s; }
  .tips-open:checked + .tips-launcher:after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    opacity: 0; }

.tips-form-wrap {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .tips-form-wrap .tips-form-text, .tips-form-wrap .tips-form {
    width: 100%; }
  @media (min-width: 768px) {
    .tips-form-wrap {
      -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; }
      .tips-form-wrap .tips-form-text {
        width: 33%; }
      .tips-form-wrap .tips-form {
        width: 60%; } }

.block-copy .container {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.block-copy .text {
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2; }

.block-copy .image {
  margin-bottom: 2rem; }
  .block-copy .image img {
    width: 100%; }

@media (min-width: 768px) {
  .block-copy .image {
    width: 40%; } }

@media (min-width: 1024px) {
  .block-copy .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
  .block-copy .image + .text {
    width: calc(60% - 2rem); }
  .block-copy .image {
    width: 40%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: 4rem;
    margin-top: 4rem;
    text-align: center; }
    .block-copy .image img {
      max-width: 400px; }
  .block-copy .image.image-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: 0; }
  .block-copy .image.image-right + .text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-right: 4rem; } }

.slick-lightbox .slick-next {
  position: absolute;
  top: 0; }

.form-success p {
  color: green; }

.form-errors, .errors {
  color: red;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem !important; }

.fourOhfour .hero {
  background: #EBB640;
  min-height: calc(100vh - 438px); }
  .fourOhfour .hero h3, .fourOhfour .hero p, .fourOhfour .hero a {
    color: #0D2431; }
  .fourOhfour .hero p {
    margin-top: 3rem;
    font-size: 1.15rem; }
  .fourOhfour .hero h3 {
    margin-bottom: 0; }
  .fourOhfour .hero h1 {
    font-size: 7.5rem;
    margin: 0; }
  .fourOhfour .hero a {
    font-weight: 700;
    text-decoration: none; }
  .fourOhfour .hero .container {
    padding-top: 8rem;
    padding-bottom: 6rem; }
  @media (min-width: 500px) {
    .fourOhfour .hero {
      min-height: calc(100vh - 490px); } }
  @media (min-width: 768px) {
    .fourOhfour .hero {
      min-height: calc(100vh - 255px); } }
  @media (min-width: 1440px) {
    .fourOhfour .hero {
      min-height: calc(100vh - 280px); } }

.slick-lightbox-slick .slick-arrow {
  position: absolute;
  bottom: 0;
  top: auto;
  z-index: 1000;
  cursor: pointer; }
  .slick-lightbox-slick .slick-arrow:focus {
    outline: none; }

.slick-lightbox-slick-item:focus {
  outline: none; }

.slick-arrow {
  -webkit-transition: 0.4s;
  transition: 0.4s; }
  .slick-arrow:hover {
    background: #fff;
    color: #000; }

