@import url(../fonts/Stag%20Sans%20Bold/StagSans-Bold-min.css);
@import url(../fonts/Stag%20Sans%20Book/StagSans-Book-min.css);
@import url(../fonts/Stag%20Sans%20Light/StagSans-Light-min.css);
/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
:root {
  --font-family: 'StagSans', system-ui, sans-serif;
  --font-family--heading: var(--font-family);
  --font-weight--thin: 100;
  --font-weight--extra-light: 200;
  --font-weight--light: 300;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --font-weight--extra-bold: 800;
  --font-weight--black: 900;
  --line-height: 1.5;
  --line-height--heading: 1.2;
  --border-radius: 0.1875rem;
  --spacing: 1.5rem;
  --spacing--small: 0.75rem;
  --border-width: 0.0625rem;
  --border: var(--border-width) solid currentColor;
  --focus-outline-width: 0.1875rem;
  --focus-outline-offset: 0.125rem;
  --focus-outline: var(--focus-outline-width) solid #1565c0;
  --duration: 150ms;
  --timing: ease; }

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #1565c0;
  border: 0;
  border-radius: var(--border-radius);
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: var(--spacing--small) var(--spacing);
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color var(--duration) var(--timing);
  transition: background-color var(--duration) var(--timing);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap; }
  button:hover,
  [type='button']:hover,
  [type='reset']:hover,
  [type='submit']:hover {
    background-color: #3b83d5; }
  button:focus,
  [type='button']:focus,
  [type='reset']:focus,
  [type='submit']:focus {
    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset); }
  button:disabled,
  [type='button']:disabled,
  [type='reset']:disabled,
  [type='submit']:disabled {
    cursor: not-allowed;
    opacity: 0.5; }

:root {
  --form-box-shadow: inset 0 --border-width 0.1875rem rgba(#000, 0.06);
  --form-box-shadow-focus: var(--form-box-shadow), 0 0 0.3125rem #1565c0; }

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0; }

legend {
  font-weight: 600;
  margin-bottom: var(--spacing--small);
  padding: 0; }

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing--small); }

input,
select,
textarea {
  display: block;
  font-family: var(--font-family);
  font-size: 1rem; }

[type='color'],
[type='date'],
[type='datetime'],
[type='datetime-local'],
[type='email'],
[type='month'],
[type='number'],
[type='password'],
[type='search'],
[type='tel'],
[type='text'],
[type='time'],
[type='url'],
[type='week'],
input:not([type]),
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--form-box-shadow);
  box-sizing: border-box;
  margin-bottom: var(--spacing--small);
  padding: calc(var(--spacing) / 3);
  -webkit-transition: border-color var(--duration) var(--timing);
  transition: border-color var(--duration) var(--timing);
  width: 100%; }
  [type='color']:focus,
  [type='date']:focus,
  [type='datetime']:focus,
  [type='datetime-local']:focus,
  [type='email']:focus,
  [type='month']:focus,
  [type='number']:focus,
  [type='password']:focus,
  [type='search']:focus,
  [type='tel']:focus,
  [type='text']:focus,
  [type='time']:focus,
  [type='url']:focus,
  [type='week']:focus,
  input:not([type]):focus,
  textarea:focus {
    box-shadow: var(--form-box-shadow-focus); }
  [type='color']:disabled,
  [type='date']:disabled,
  [type='datetime']:disabled,
  [type='datetime-local']:disabled,
  [type='email']:disabled,
  [type='month']:disabled,
  [type='number']:disabled,
  [type='password']:disabled,
  [type='search']:disabled,
  [type='tel']:disabled,
  [type='text']:disabled,
  [type='time']:disabled,
  [type='url']:disabled,
  [type='week']:disabled,
  input:not([type]):disabled,
  textarea:disabled {
    cursor: not-allowed; }
    [type='color']:disabled:hover,
    [type='date']:disabled:hover,
    [type='datetime']:disabled:hover,
    [type='datetime-local']:disabled:hover,
    [type='email']:disabled:hover,
    [type='month']:disabled:hover,
    [type='number']:disabled:hover,
    [type='password']:disabled:hover,
    [type='search']:disabled:hover,
    [type='tel']:disabled:hover,
    [type='text']:disabled:hover,
    [type='time']:disabled:hover,
    [type='url']:disabled:hover,
    [type='week']:disabled:hover,
    input:not([type]):disabled:hover,
    textarea:disabled:hover {
      border: var(--border); }
  [type='color']::-webkit-input-placeholder, [type='date']::-webkit-input-placeholder, [type='datetime']::-webkit-input-placeholder, [type='datetime-local']::-webkit-input-placeholder, [type='email']::-webkit-input-placeholder, [type='month']::-webkit-input-placeholder, [type='number']::-webkit-input-placeholder, [type='password']::-webkit-input-placeholder, [type='search']::-webkit-input-placeholder, [type='tel']::-webkit-input-placeholder, [type='text']::-webkit-input-placeholder, [type='time']::-webkit-input-placeholder, [type='url']::-webkit-input-placeholder, [type='week']::-webkit-input-placeholder, input:not([type])::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #333;
    opacity: 0.25; }
  [type='color']::-moz-placeholder, [type='date']::-moz-placeholder, [type='datetime']::-moz-placeholder, [type='datetime-local']::-moz-placeholder, [type='email']::-moz-placeholder, [type='month']::-moz-placeholder, [type='number']::-moz-placeholder, [type='password']::-moz-placeholder, [type='search']::-moz-placeholder, [type='tel']::-moz-placeholder, [type='text']::-moz-placeholder, [type='time']::-moz-placeholder, [type='url']::-moz-placeholder, [type='week']::-moz-placeholder, input:not([type])::-moz-placeholder, textarea::-moz-placeholder {
    color: #333;
    opacity: 0.25; }
  [type='color']:-ms-input-placeholder, [type='date']:-ms-input-placeholder, [type='datetime']:-ms-input-placeholder, [type='datetime-local']:-ms-input-placeholder, [type='email']:-ms-input-placeholder, [type='month']:-ms-input-placeholder, [type='number']:-ms-input-placeholder, [type='password']:-ms-input-placeholder, [type='search']:-ms-input-placeholder, [type='tel']:-ms-input-placeholder, [type='text']:-ms-input-placeholder, [type='time']:-ms-input-placeholder, [type='url']:-ms-input-placeholder, [type='week']:-ms-input-placeholder, input:not([type]):-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #333;
    opacity: 0.25; }
  [type='color']::-ms-input-placeholder, [type='date']::-ms-input-placeholder, [type='datetime']::-ms-input-placeholder, [type='datetime-local']::-ms-input-placeholder, [type='email']::-ms-input-placeholder, [type='month']::-ms-input-placeholder, [type='number']::-ms-input-placeholder, [type='password']::-ms-input-placeholder, [type='search']::-ms-input-placeholder, [type='tel']::-ms-input-placeholder, [type='text']::-ms-input-placeholder, [type='time']::-ms-input-placeholder, [type='url']::-ms-input-placeholder, [type='week']::-ms-input-placeholder, input:not([type])::-ms-input-placeholder, textarea::-ms-input-placeholder {
    color: #333;
    opacity: 0.25; }
  [type='color']::placeholder,
  [type='date']::placeholder,
  [type='datetime']::placeholder,
  [type='datetime-local']::placeholder,
  [type='email']::placeholder,
  [type='month']::placeholder,
  [type='number']::placeholder,
  [type='password']::placeholder,
  [type='search']::placeholder,
  [type='tel']::placeholder,
  [type='text']::placeholder,
  [type='time']::placeholder,
  [type='url']::placeholder,
  [type='week']::placeholder,
  input:not([type])::placeholder,
  textarea::placeholder {
    color: #333;
    opacity: 0.25; }

[type="search"] {
  -webkit-appearance: textfield; }

textarea {
  resize: vertical; }

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: var(--spacing--small); }

[type="file"] {
  margin-bottom: var(--spacing--small);
  width: 100%; }

select {
  margin-bottom: var(--spacing--small);
  width: 100%; }

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="file"]:focus,
select:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset); }

html {
  background-color: #fff;
  box-sizing: border-box; }

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

html,
body {
  height: 100%; }

body {
  margin: 0; }

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0; }

dl {
  margin: 0; }

dt {
  font-weight: 600;
  margin: 0; }

dd {
  margin: 0; }

figure {
  margin: 0; }

img,
picture {
  margin: 0;
  max-width: 100%; }

table {
  border-collapse: collapse;
  margin: var(--spacing) 0;
  table-layout: fixed;
  text-align: left;
  width: 100%; }

thead {
  line-height: var(--line-height--heading);
  vertical-align: bottom; }

tbody {
  vertical-align: top; }

tr {
  border-bottom: var(--border); }

th {
  font-weight: 600; }

th,
td {
  padding: var(--spacing--small) var(--spacing--small) var(--spacing--small) 0; }

html {
  color: #333;
  font-family: var(--font-family);
  font-size: 100%;
  line-height: var(--line-height); }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--heading);
  font-size: 1.25em;
  line-height: var(--line-height--heading);
  margin: 0 0 var(--spacing--small); }

p {
  margin: 0 0 var(--spacing--small); }

a {
  color: #1565c0;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip: ink;
  -webkit-transition: color var(--duration) var(--timing);
  transition: color var(--duration) var(--timing); }
  a:hover {
    color: #3b83d5; }
  a:focus {
    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset); }

hr {
  border-bottom: var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: var(--spacing) 0; }

.wrapper p, .wrapper li {
  font-size: 0.9em; }

.wrapper .inner {
  max-width: 900px;
  margin: auto;
  padding: 0 20px; }

.wrapper section {
  color: #3A4C5C;
  padding: 2em 0; }
  .wrapper section h2 {
    font-size: 2em; }
  .wrapper section.header h1 {
    font-size: 3.3em; }
    .wrapper section.header h1 span {
      display: block;
      color: #EA9147; }
  @media screen and (min-width: 701px) {
    .wrapper section.header .top {
      display: -webkit-box;
      display: flex;
      -webkit-box-align: center;
              align-items: center; } }
  .wrapper section.header .top .col:nth-child(1) {
    -webkit-box-flex: 1;
            flex: 1; }
    @media screen and (min-width: 701px) {
      .wrapper section.header .top .col:nth-child(1) {
        margin-right: 20px; } }
  .wrapper section.header .top .col:nth-child(2) {
    margin: auto;
    text-align: center;
    width: 200px;
    margin-bottom: 20px; }
    @media screen and (min-width: 701px) {
      .wrapper section.header .top .col:nth-child(2) {
        width: 350px;
        margin-bottom: 0; } }
  .wrapper section.header .data {
    text-align: center; }
    .wrapper section.header .data h2 {
      margin-bottom: 30px; }
    .wrapper section.header .data .grid {
      display: none; }
      .wrapper section.header .data .grid.mobile {
        display: block; }
      @media screen and (min-width: 651px) {
        .wrapper section.header .data .grid {
          display: grid;
          grid-template: repeat(2, 250px)/repeat(3, 250px);
          grid-gap: 20px 20px;
          -webkit-box-pack: center;
                  justify-content: center; }
          .wrapper section.header .data .grid.mobile {
            display: none; } }
  @media screen and (min-width: 651px) and (max-width: 900px) {
    .wrapper section.header .data .grid {
      grid-template: repeat(3, 250px)/repeat(2, 250px); } }
  @media screen and (min-width: 651px) and (max-width: 550px) {
    .wrapper section.header .data .grid {
      grid-template: repeat(6, 250px)/repeat(1, 250px); } }
      .wrapper section.header .data .grid .slide {
        background-color: #14AD88;
        color: #fff;
        padding: 20px;
        display: -webkit-box;
        display: flex;
        border-radius: 150px;
        justify-content: space-around;
        -webkit-transform: scale(0);
                transform: scale(0);
        -webkit-animation-name: pop;
                animation-name: pop;
        -webkit-animation-duration: 0.3s;
                animation-duration: 0.3s;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.58, 1.4);
                animation-timing-function: cubic-bezier(0, 0, 0.58, 1.4); }
        @media screen and (max-width: 650px) {
          .wrapper section.header .data .grid .slide {
            height: 280px;
            width: 280px !important;
            font-size: 0.9em;
            margin-bottom: 20px; }
            .wrapper section.header .data .grid .slide .inner {
              display: -webkit-box;
              display: flex;
              -webkit-box-align: center;
                      align-items: center;
              -webkit-box-pack: center;
                      justify-content: center;
              height: 100%; }
            .wrapper section.header .data .grid .slide.tall .inner {
              padding: 0 30px; }
              .wrapper section.header .data .grid .slide.tall .inner .arrow {
                height: 30px !important;
                margin: 10px 0 !important; }
                .wrapper section.header .data .grid .slide.tall .inner .arrow img {
                  height: 100%; } }

@-webkit-keyframes pop {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes pop {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
        .wrapper section.header .data .grid .slide.tall {
          grid-row-start: 1;
          grid-row-end: 3;
          -webkit-animation-delay: .1s;
                  animation-delay: .1s; }
          .wrapper section.header .data .grid .slide.tall .inner {
            display: -webkit-box;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                    flex-direction: column;
            -webkit-box-pack: center;
                    justify-content: center; }
            .wrapper section.header .data .grid .slide.tall .inner .arrow {
              margin: 30px 0;
              height: 100px; }
        .wrapper section.header .data .grid .slide.small:nth-of-type(2) {
          -webkit-animation-delay: .3s;
                  animation-delay: .3s; }
        .wrapper section.header .data .grid .slide.small:nth-of-type(3) {
          -webkit-animation-delay: .5s;
                  animation-delay: .5s; }
        .wrapper section.header .data .grid .slide.small:nth-of-type(4) {
          -webkit-animation-delay: .7s;
                  animation-delay: .7s; }
        .wrapper section.header .data .grid .slide.small:nth-of-type(5) {
          -webkit-animation-delay: .9s;
                  animation-delay: .9s; }
  .wrapper section.map {
    background-color: #B4E9FF; }
    .wrapper section.map p {
      margin: 20px 0 40px; }
    @media screen and (max-width: 700px) {
      .wrapper section.map .map_wrap .nav ul {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap; } }
    .wrapper section.map .map_wrap .nav li {
      background-color: #EA9147;
      display: block;
      color: #fff;
      padding: 5px 10px;
      border-radius: 10px;
      margin: 5px 5px 5px 0;
      cursor: pointer; }
      .wrapper section.map .map_wrap .nav li.active {
        background-color: #3A4C5C; }
    .wrapper section.map .map_wrap .map_img {
      position: relative;
      width: 90%;
      height: 0;
      padding-bottom: 139.2438070404%;
      margin: 0 10% 0 0; }
      @media screen and (min-width: 701px) {
        .wrapper section.map .map_wrap .map_img {
          padding-bottom: 93%; } }
      .wrapper section.map .map_wrap .map_img img {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0; }
        .wrapper section.map .map_wrap .map_img img.pins {
          top: 29%;
          left: 11%; }
    @media screen and (min-width: 701px) {
      .wrapper section.map .map_wrap {
        display: -webkit-box;
        display: flex; }
        .wrapper section.map .map_wrap .nav {
          width: 200px; }
        .wrapper section.map .map_wrap .map_img {
          -webkit-box-flex: 1;
                  flex: 1; } }
  .wrapper section.impact {
    background-color: #3A4C5C;
    color: #fff; }
    .wrapper section.impact h2 {
      color: #00F4C0; }
    .wrapper section.impact nav {
      background-color: #EA9147;
      overflow: auto;
      z-index: 999 !important; }
      .wrapper section.impact nav ul {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        max-width: 900px;
        margin: auto; }
        @media screen and (max-width: 900px) {
          .wrapper section.impact nav ul {
            width: 630px;
            margin: 0; } }
        .wrapper section.impact nav ul li {
          margin: 7px;
          background-color: rgba(255, 255, 255, 0.5);
          border-radius: 10px;
          color: #3A4C5C;
          font-size: 0.9em;
          padding: 5px 10px;
          text-transform: uppercase; }
          .wrapper section.impact nav ul li a {
            color: inherit;
            text-decoration: none; }
    .wrapper section.impact .top {
      display: -webkit-box;
      display: flex;
      -webkit-box-align: center;
              align-items: center;
      margin: 80px 0 20px; }
      .wrapper section.impact .top .img {
        margin-right: 40px; }
    .wrapper section.impact .stats {
      background-color: #00F4C0;
      color: #3A4C5C;
      margin: 20px 0 20px;
      padding: 20px;
      border-radius: 20px; }
      @media screen and (min-width: 701px) {
        .wrapper section.impact .stats {
          display: -webkit-box;
          display: flex; }
          .wrapper section.impact .stats .col {
            -webkit-box-flex: 1;
                    flex: 1; } }
      .wrapper section.impact .stats .col li {
        margin-bottom: 20px;
        padding-left: 30px;
        position: relative; }
        .wrapper section.impact .stats .col li:before {
          position: absolute;
          content: "";
          top: 5px;
          left: 5px;
          height: 20px;
          width: 20px;
          background-size: contain;
          background-repeat: no-repeat;
          background-image: url(../img/z_icon.svg); }
  .wrapper section.outro {
    background-color: #EA9147;
    color: #fff; }
    .wrapper section.outro p a {
      color: inherit; }
  .wrapper section.footer {
    text-align: center;
    font-size: 0.7em; }
    .wrapper section.footer .cc {
      margin-bottom: 20px; }
