@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@400;500;800&display=swap");
:root {
  --font-family: "Karla", 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 #33ACB3;
  --duration: 150ms;
  --timing: ease;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #33ACB3;
  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;
  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 #33ACB3;
}

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);
  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: #fff;
  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: #fff;
  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: #fff;
  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: #fff;
  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: #181C24;
  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: 20px 0 0;
  text-align: left;
  width: 100%;
}

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

tbody {
  vertical-align: top;
}

th {
  font-weight: 600;
}

html {
  color: #fff;
  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);
  color: #33ACB3;
  font-weight: 800;
}

h1, h2, .lead {
  text-align: center;
}

h2 {
  font-size: 2em;
  line-height: 1em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5em;
  line-height: 1em;
}

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

a {
  color: #33ACB3;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip: ink;
  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;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?l3eg63");
  src: url("../fonts/icomoon.eot?l3eg63#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?l3eg63") format("truetype"), url("../fonts/icomoon.woff?l3eg63") format("woff"), url("../fonts/icomoon.svg?l3eg63#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-sort:before {
  content: "";
  opacity: 0.2;
}

.icon-sort-asc:before {
  content: "";
  opacity: 1;
}

.icon-sort-desc:before {
  content: "";
  opacity: 1;
}

.wrapper {
  font-size: 15px;
}
.wrapper .inner {
  max-width: 1400px;
  min-width: 563px;
  margin: 0 auto;
  padding: 0 20px;
}
.wrapper .inner p {
  max-width: 700px;
  margin: 0 auto 20px;
}
.wrapper section {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  overflow: hidden;
  margin: 40px 0;
}
@media screen and (min-width: 700px) {
  .wrapper section {
    margin: 150px 0;
  }
}
.wrapper section .grid_50 {
  margin: 40px 0;
}
.wrapper section .grid_50 > div:nth-child(1) {
  margin-bottom: 40px;
}
@media screen and (min-width: 700px) {
  .wrapper section .grid_50 {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
  .wrapper section .grid_50 > div:nth-child(1) {
    margin: 0;
  }
}
.wrapper section .stat_wrap .stat {
  text-align: center;
  margin: 20px auto 40px;
}
.wrapper section .stat_wrap .stat .img_wrap {
  height: 240px;
  width: 240px;
  margin: 0 auto 20px;
  border-radius: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  border: 5px solid #33ACB3;
}
@media screen and (min-width: 700px) {
  .wrapper section .stat_wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 40px;
  }
  .wrapper section .stat_wrap .stat {
    width: 240px;
  }
}
.wrapper section .chart_block h3 {
  text-align: left;
  margin-bottom: 20px;
}
.wrapper section .chart_block .chart_wrap {
  border-radius: 20px;
  padding: 20px 10px;
  border: 2px solid #33ACB3;
  background-color: #181C24;
  background-image: linear-gradient(transparent 50%, rgba(58, 113, 129, 0.3) 100%);
  margin-bottom: 40px;
}
.wrapper section .small_table_wrap {
  border: 2px solid #33ACB3;
  background-color: #181C24;
  border-radius: 20px;
  padding: 0 20px 10px;
  margin: 40px 0;
  background-image: linear-gradient(transparent 50%, rgba(58, 113, 129, 0.3) 100%);
}
.wrapper section .small_table_wrap table {
  font-size: 1em;
}
.wrapper section .small_table_wrap table thead th {
  font-weight: 600;
  padding-bottom: 10px;
}
.wrapper section .small_table_wrap table thead th span {
  display: block;
  font-size: 0.8em;
}
.wrapper section .small_table_wrap table tbody tr:nth-child(2n) {
  background-image: linear-gradient(to right, transparent 0%, rgba(58, 113, 129, 0.2) 50%, transparent 100%);
}
@media screen and (min-width: 700px) {
  .wrapper section.vh {
    min-height: 100vh;
  }
}
.wrapper section#intro {
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  background-image: linear-gradient(rgba(24, 28, 36, 0.5), #181C24), url(../img/hero@2x.webp);
  background-size: cover;
  background-position: center top;
}
.wrapper section#intro .inner {
  z-index: 1;
}
.wrapper section#intro h1 {
  font-size: 3.7em;
  line-height: 1em;
}
.wrapper section#intro .lead {
  font-size: 2em;
  line-height: 1em;
  font-weight: 500;
  max-width: 400px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 700px) {
  .wrapper section#intro:before {
    content: "";
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(transparent 0, #181C24 100%), url(../img/hero@2x.webp);
    background-size: cover;
    background-position: top center;
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: scale(2);
            transform: scale(2);
    -webkit-animation-name: zoomOut;
            animation-name: zoomOut;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(1, 0.09, 0.72, 0.81);
            animation-timing-function: cubic-bezier(1, 0.09, 0.72, 0.81);
  }
  @-webkit-keyframes zoomOut {
    0% {
      -webkit-transform: scale(2);
              transform: scale(2);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes zoomOut {
    0% {
      -webkit-transform: scale(2);
              transform: scale(2);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  .wrapper section#intro h1 {
    margin-top: 50%;
  }
  .wrapper section#intro h1, .wrapper section#intro p {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
}
.wrapper section#search_by_state .us_map {
  background-color: #3A7181;
  border-radius: 20px;
  position: relative;
}
.wrapper section#search_by_state .us_map .state_pop {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 274px;
  padding: 10px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wrapper section#search_by_state .us_map .state_pop h3 {
  text-align: center;
}
.wrapper section#search_by_state .us_map .state_pop table {
  color: #2A3447;
}
.wrapper section#search_by_state .table_wrap {
  background-image: linear-gradient(transparent 0%, transparent 50%, rgba(58, 113, 129, 0.2) 100%);
  border-radius: 20px;
  padding: 0 20px 10px;
}
.wrapper section#search_by_state .table_wrap .row {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: minmax(120px, 1fr) repeat(10, minmax(22px, 50px)) minmax(30px, 50px);
}
.wrapper section#search_by_state .table_wrap .row div:nth-last-child(1) {
  color: #EF9F32;
}
.wrapper section#search_by_state .table_wrap .thead {
  padding-right: 10px;
  margin: 160px 0 10px;
}
.wrapper section#search_by_state .table_wrap .thead .row .cat {
  white-space: nowrap;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: translate(27px, 0) rotate(-90deg);
          transform: translate(27px, 0) rotate(-90deg);
  font-size: 1em;
}
.wrapper section#search_by_state .table_wrap .thead .row .cat .icon-sort {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: inline-block;
  margin-right: 5px;
  color: #33ACB3;
}
@media screen and (min-width: 700px) {
  .wrapper section#search_by_state .table_wrap .thead .row .cat {
    -webkit-transform: translate(5px, 0) rotate(-45deg);
            transform: translate(5px, 0) rotate(-45deg);
  }
  .wrapper section#search_by_state .table_wrap .thead .row .cat .icon-sort {
    position: absolute;
    right: 0;
    top: 21px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.wrapper section#search_by_state .table_wrap .tbody {
  height: 400px;
  overflow: auto;
  padding-right: 5px;
}
.wrapper section#search_by_state .table_wrap .tbody::-webkit-scrollbar {
  width: 5px;
}
.wrapper section#search_by_state .table_wrap .tbody::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.wrapper section#search_by_state .table_wrap .tbody::-webkit-scrollbar-thumb {
  background-color: #EF9F32;
  outline: none;
}
.wrapper section#search_by_state .table_wrap .tbody .row:nth-child(2n) {
  background-image: linear-gradient(to right, transparent 0%, rgba(58, 113, 129, 0.3) 50%, transparent 100%);
}
.wrapper section#search_by_state .table_wrap .row div {
  font-size: 0.9em;
  text-align: right;
}
.wrapper section#search_by_state .table_wrap .row div:nth-child(1) {
  text-align: left;
}
@media screen and (min-width: 700px) {
  .wrapper section#search_by_state .table_wrap .row div {
    font-size: 0.9em;
  }
}
.wrapper section#search_by_state .stat_wrap {
  margin: 100px 0;
}
.wrapper section#search_by_state .grid_50 {
  display: block;
}
@media screen and (min-width: 900px) {
  .wrapper section#search_by_state .grid_50 {
    display: grid;
    margin-top: 160px;
  }
  .wrapper section#search_by_state .table_wrap .thead {
    margin-top: 0;
  }
}
.wrapper section#us_overall {
  background-image: linear-gradient(#181C24, rgba(24, 28, 36, 0.5), #181C24), url(../img/usoveral_img@2x.webp);
  background-size: cover;
}
.wrapper section#us_overall .grid_50 div {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
}
.wrapper section#us_overall .grid_50 div h2 {
  text-align: left;
}
.wrapper section#causes .inner {
  max-width: 1100px;
}
.wrapper section#causes h2 {
  text-align: left;
}
.wrapper section#causes p {
  max-width: 100%;
}
.wrapper section#cta .inner {
  max-width: 1100px;
}

.wrapper section#cta h2 {
  text-align: left;
}

.wrapper section#cta p {
  max-width: 100%;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
.wrapper section#method {
  background-image: linear-gradient(#181C24, rgba(24, 28, 36, 0.5), #181C24), url(../img/method_img@2x.webp);
  background-size: cover;
  -webkit-justify-content: end;
          justify-content: end;
}
.wrapper section#method .inner {
  max-width: 1100px;
}
.wrapper section#method h2 {
  text-align: left;
}
.wrapper section#method p {
  max-width: 100%;
}
.wrapper h1, .wrapper h2, .wrapper p, .wrapper .stat .img_wrap {
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  opacity: 0;
}
.wrapper h1.inview, .wrapper h2.inview, .wrapper p.inview, .wrapper .stat .img_wrap.inview {
  -webkit-animation: loadIn 0.3s linear forwards;
          animation: loadIn 0.3s linear forwards;
}
@-webkit-keyframes loadIn {
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
}
@keyframes loadIn {
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
}
.wrapper .grid_50 > div:nth-child(1) {
  -webkit-transform: translate(-40px, 0);
          transform: translate(-40px, 0);
  opacity: 0;
}
.wrapper .grid_50 > div:nth-child(2) {
  -webkit-transform: translate(40px, 0);
          transform: translate(40px, 0);
  opacity: 0;
}
.wrapper .grid_50.inview > div {
  -webkit-animation: slideIn 0.3s linear forwards;
          animation: slideIn 0.3s linear forwards;
}
@-webkit-keyframes slideIn {
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
}
@keyframes slideIn {
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
}
