@charset "UTF-8";
@keyframes fade-out {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
#fader.fade-out {
  opacity: 0;
  animation-name: fade-out; }

#fader.fade-in {
  opacity: 1;
  animation-name: fade-in; }

/* SASS Variables */
/* Blue */
/* Blue */
/* Fonts */
@font-face {
  font-family: 'NeueHelvetica65Medium';
  src: url("../fonts/NeueHelvetica65Medium/font.woff2") format("woff2"), url("../fonts/NeueHelvetica65Medium/font.woff") format("woff"); }
/* General */
* {
  margin: 0;
  padding: 0; }

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

html {
  background: #222222; }

body {
  margin: 0;
  height: 100%;
  overflow: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #FFFFFF; }
  body.no-scroll {
    overflow: hidden; }

img {
  width: 100%;
  height: auto; }

:root {
  --gutter: 16px;
  --container-padding: 20px; }

@media (min-width: 992px) {
  :root {
    --gutter: 24px;
    --container-padding: 40px; } }
.container {
  box-sizing: border-box;
  width: min(1400px, 100%);
  margin-inline: auto;
  padding-inline: var(--container-padding); }

.row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  grid-auto-flow: row dense; }

.row > * {
  min-width: 0; }

.col-1 {
  grid-column: 1 / -1; }
  @media (min-width: 992px) {
    .col-1 {
      grid-column: auto/span 1; } }

.col-2 {
  grid-column: 1 / -1; }
  @media (min-width: 992px) {
    .col-2 {
      grid-column: auto/span 2; } }

.col-3 {
  grid-column: 1 / -1; }
  @media (min-width: 992px) {
    .col-3 {
      grid-column: auto/span 3; } }

.col-4 {
  grid-column: 1 / -1; }
  @media (min-width: 992px) {
    .col-4 {
      grid-column: auto/span 4; } }

.col-5 {
  grid-column: 1 / -1; }
  @media (min-width: 992px) {
    .col-5 {
      grid-column: auto/span 5; } }

.col-6 {
  grid-column: 1 / -1; }
  @media (min-width: 992px) {
    .col-6 {
      grid-column: auto/span 6; } }

.col-7 {
  grid-column: 1 / -1; }
  @media (min-width: 992px) {
    .col-7 {
      grid-column: auto/span 7; } }

.col-8 {
  grid-column: 1 / -1; }
  @media (min-width: 992px) {
    .col-8 {
      grid-column: auto/span 8; } }

.col-9 {
  grid-column: 1 / -1; }
  @media (min-width: 992px) {
    .col-9 {
      grid-column: auto/span 9; } }

.col-10 {
  grid-column: 1 / -1; }
  @media (min-width: 992px) {
    .col-10 {
      grid-column: auto/span 10; } }

.col-11 {
  grid-column: 1 / -1; }
  @media (min-width: 992px) {
    .col-11 {
      grid-column: auto/span 11; } }

.col-12 {
  grid-column: 1 / -1; }
  @media (min-width: 992px) {
    .col-12 {
      grid-column: auto/span 12; } }

@media (min-width: 992px) {
  .offset-1 {
    grid-column-start: 2; } }

@media (min-width: 992px) {
  .offset-2 {
    grid-column-start: 3; } }

@media (min-width: 992px) {
  .offset-3 {
    grid-column-start: 4; } }

@media (min-width: 992px) {
  .offset-4 {
    grid-column-start: 5; } }

@media (min-width: 992px) {
  .offset-5 {
    grid-column-start: 6; } }

@media (min-width: 992px) {
  .offset-6 {
    grid-column-start: 7; } }

@media (min-width: 992px) {
  .offset-7 {
    grid-column-start: 8; } }

@media (min-width: 992px) {
  .offset-8 {
    grid-column-start: 9; } }

@media (min-width: 992px) {
  .offset-9 {
    grid-column-start: 10; } }

@media (min-width: 992px) {
  .offset-10 {
    grid-column-start: 11; } }

@media (min-width: 992px) {
  .offset-11 {
    grid-column-start: 12; } }

body.show-grid::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: var(--container-padding);
  right: var(--container-padding);
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(to right, rgba(255, 0, 0, 0.1) 0, rgba(255, 0, 0, 0.1) calc((100% - (var(--gutter) * (12 - 1))) / 12), transparent calc((100% - (var(--gutter) * (12 - 1))) / 12), transparent calc((100% - (var(--gutter) * (12 - 1))) / 12 + var(--gutter))); }

/* ---------------------------------------
   Typography
--------------------------------------- */
body, p, h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: 'NeueHelvetica65Medium';
  font-weight: 400; }

p {
  font-weight: 400;
  color: #222222;
  font-size: 16px;
  line-height: 1.2em;
  margin-bottom: 12px; }
  @media (min-width: 992px) {
    p {
      font-size: 20px;
      margin-bottom: 16px; } }
  p.small {
    font-size: 16px;
    line-height: 1.2em; }
    @media (min-width: 768px) {
      p.small {
        font-size: 21px; } }
  p a {
    text-decoration: underline;
    color: #1885DD; }
  p em {
    font-style: normal; }

h1 {
  font-size: 85px;
  line-height: .8em;
  color: #FFFFFF;
  font-weight: 600; }
  @media (min-width: 768px) {
    h1 {
      font-size: 210px; } }

h2 {
  font-size: 72px;
  line-height: .8em;
  letter-spacing: -.04em;
  color: #222222;
  margin-top: 40px;
  margin-bottom: 0; }
  @media (min-width: 992px) {
    h2 {
      font-size: 152px; } }

h3 {
  font-size: 85px;
  line-height: 1em;
  color: #222222; }
  @media (min-width: 768px) {
    h3 {
      font-size: 210px; } }

h4 {
  font-size: 16px;
  line-height: 1.2em;
  color: #222222; }
  @media (min-width: 768px) {
    h4 {
      font-size: 20px; } }

h5 {
  font-size: 12px;
  line-height: 1.2em;
  color: #222222; }
  @media (min-width: 768px) {
    h5 {
      font-size: 16px; } }

ul {
  font-weight: 400;
  color: #222222;
  font-size: 16px;
  line-height: 1.3em;
  list-style-position: inside;
  list-style-type: none; }
  @media (min-width: 768px) {
    ul {
      font-size: 20px; } }
  ul li {
    margin-left: 16px; }
    @media (min-width: 768px) {
      ul li {
        margin-left: 32px; } }
    ul li:before {
      content: '\2014';
      position: absolute;
      margin-left: -16px; }
      @media (min-width: 768px) {
        ul li:before {
          margin-left: -32px; } }

ol {
  font-weight: 400;
  color: #222222;
  font-size: 21px;
  line-height: 1.3em; }
  @media (min-width: 768px) {
    ol {
      font-size: 30px; } }

::selection {
  background: #1885DD;
  color: #FFFFFF; }

::-moz-selection {
  background: #1885DD;
  color: #FFFFFF; }

/* ---------------------------------------
   Links & Buttons
--------------------------------------- */
a {
  color: #222222;
  text-decoration: none; }

button,
a.button {
  width: 100%;
  border: 1px solid #222222;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1em;
  color: #222222;
  text-align: center;
  padding: 16px 48px 12px;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all .25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%; }
  @media (min-width: 768px) {
    button,
    a.button {
      font-size: 20px;
      padding: 22px 48px; } }
  button .icon,
  a.button .icon {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-left: 6px;
    background-size: cover;
    transition: all .25s ease-in-out;
    transform: scale(1); }
    @media (min-width: 768px) {
      button .icon,
      a.button .icon {
        width: 12px;
        height: 12px;
        margin-left: 8px; } }
    button .icon.external-link,
    a.button .icon.external-link {
      background-image: url(../img/icon-external-link-black.svg); }
  button:hover, button:active,
  a.button:hover,
  a.button:active {
    color: #222222;
    border: 1px solid #FFFFFF;
    background-color: #FFFFFF; }
    button:hover .icon.external-link, button:active .icon.external-link,
    a.button:hover .icon.external-link,
    a.button:active .icon.external-link {
      background-image: url(../img/icon-external-link-white.svg); }
  button.small,
  a.button.small {
    font-size: 12px;
    line-height: 1em;
    padding: 12px;
    width: auto; }
    button.small .icon,
    a.button.small .icon {
      width: 8px;
      height: 8px;
      margin-left: 4px; }
    @media (min-width: 768px) {
      button.small,
      a.button.small {
        font-size: 14px;
        line-height: 14px;
        padding: 16px 40px; }
        button.small .icon,
        a.button.small .icon {
          width: 10px;
          height: 10px;
          margin-left: 6px; } }
  button.primary,
  a.button.primary {
    color: #222222;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF; }
    button.primary .icon.external-link,
    a.button.primary .icon.external-link {
      background-image: url(../img/icon-external-link-primary.svg); }
    button.primary:hover, button.primary:active,
    a.button.primary:hover,
    a.button.primary:active {
      color: #222222;
      background-color: #FFFFFF;
      border: 1px solid #FFFFFF; }
  button.secondary,
  a.button.secondary {
    color: #FFFFFF;
    background-color: #222222;
    border: 1px solid #FFFFFF; }
    button.secondary:hover, button.secondary:active,
    a.button.secondary:hover,
    a.button.secondary:active {
      color: #FFFFFF;
      background-color: #222222;
      border: 1px solid #FFFFFF; }

/* ---------------------------------------
   Header
--------------------------------------- */
header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 100vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: none;
  /* -----------------------------------
     Background image (fade + zoom)
  ----------------------------------- */
  /* -----------------------------------
     Black tint overlay (delayed fade)
  ----------------------------------- */
  /* Ensure header content sits above overlays */
  /* -----------------------------------
     Mobile / Desktop nav visibility
  ----------------------------------- */
  /* -----------------------------------
     Centred logo (delayed fade-in)
  ----------------------------------- */ }
  @media (min-width: 768px) {
    header {
      padding: 32px; } }
  @media (min-width: 992px) {
    header {
      padding: 48px; } }
  header.on-top {
    z-index: 3; }
  header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: center/cover no-repeat url(../img/hero-image.jpg);
    transform-origin: center;
    opacity: 0;
    /* fades in quickly, then keeps zooming */
    animation: hero-zoom 10s ease-in-out forwards;
    z-index: 0; }
  header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: header-overlay-fade 2s ease-in-out 2s forwards;
    z-index: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); }
  header > * {
    position: relative;
    z-index: 2; }
  header nav.mobile {
    display: block; }
  header nav.desktop {
    display: none; }
  @media (min-width: 768px) {
    header nav.mobile {
      display: none; }
    header nav.desktop {
      display: block; } }
  header #logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 600px;
    opacity: 0;
    animation: logo-fade-in 1s ease-out 3s forwards; }
    header #logo img {
      display: block;
      width: 100%;
      height: auto; }

/* ---------------------------------------
   Nav
--------------------------------------- */
nav.desktop {
  height: 32px;
  /* start slightly up + hidden; animate in */
  opacity: 0;
  transform: translateY(-8px);
  animation: nav-slide-fade 1s ease-out 4s forwards; }
  nav.desktop ul li {
    display: inline-block;
    margin-left: 0;
    margin-right: 40px; }
    @media (min-width: 828px) {
      nav.desktop ul li {
        margin-right: 72px; } }
    nav.desktop ul li:before {
      content: ''; }
    nav.desktop ul li a {
      font-weight: 500;
      font-size: 16px;
      line-height: 16px;
      color: #FFFFFF; }
      nav.desktop ul li a.active::before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        margin-right: 8px;
        border-radius: 50%;
        background: #1885DD;
        position: relative;
        top: -1px; }
    nav.desktop ul li:last-of-type {
      float: right;
      margin-right: 0; }
      nav.desktop ul li:last-of-type .icon.external-link {
        display: inline-block;
        width: 12px;
        height: 12px;
        margin-left: 4px;
        background: center/cover no-repeat url(../img/icon-external-link-white.svg); }

nav.mobile {
  opacity: 0;
  transform: translateY(-8px);
  animation: nav-slide-fade 0.75s ease-out 3.5s forwards;
  /* burger button */
  /* overlay */ }
  nav.mobile #nav-icon {
    position: absolute !important;
    top: 24px;
    right: 16px;
    width: 48px;
    height: 22px;
    background: none;
    border: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
    transition: .5s ease-in-out; }
    nav.mobile #nav-icon span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1px;
      background: #FFFFFF;
      border-radius: 2px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
      transition: .25s ease-in-out; }
      nav.mobile #nav-icon span:nth-child(1) {
        top: 0; }
      nav.mobile #nav-icon span:nth-child(2), nav.mobile #nav-icon span:nth-child(3) {
        top: 8px; }
      nav.mobile #nav-icon span:nth-child(4) {
        top: 16px; }
    nav.mobile #nav-icon.open span {
      width: 80%;
      left: 10%;
      background: #222222;
      box-shadow: none; }
      nav.mobile #nav-icon.open span:nth-child(1) {
        top: 8px;
        width: 0;
        left: 50%; }
      nav.mobile #nav-icon.open span:nth-child(2) {
        transform: rotate(45deg); }
      nav.mobile #nav-icon.open span:nth-child(3) {
        transform: rotate(-45deg); }
      nav.mobile #nav-icon.open span:nth-child(4) {
        top: 16px;
        width: 0;
        left: 50%; }
  nav.mobile #nav-overlay {
    inset: 0;
    height: 100vh;
    background: #FFFFFF;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease-in-out; }
    nav.mobile #nav-overlay.show {
      opacity: 1;
      pointer-events: auto; }
    nav.mobile #nav-overlay .wrapper {
      display: flex;
      flex-direction: column;
      height: calc(100vh - 32px);
      margin: 0 16px 24px 16px; }
    nav.mobile #nav-overlay ul {
      margin-top: 64px;
      display: flex;
      flex-direction: column;
      text-align: right;
      list-style: none; }
      nav.mobile #nav-overlay ul li {
        list-style: none; }
      nav.mobile #nav-overlay ul li:before {
        content: ''; }
      nav.mobile #nav-overlay ul li:last-of-type {
        position: absolute;
        right: 16px;
        bottom: 16px; }
      nav.mobile #nav-overlay ul a {
        display: block;
        color: #222222;
        font-size: 64px;
        line-height: 64px;
        margin-bottom: 8px; }
        nav.mobile #nav-overlay ul a.active::before {
          display: none;
          content: "";
          display: inline-block;
          width: 10px;
          height: 10px;
          margin: 0 16px 0 -24px;
          border-radius: 50%;
          background: #1885DD;
          position: relative;
          top: -25px; }
        nav.mobile #nav-overlay ul a.instagram {
          margin-top: 24px;
          font-size: 16px;
          line-height: 16px;
          text-transform: uppercase; }
          nav.mobile #nav-overlay ul a.instagram .icon.external-link {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin-left: 4px;
            background: center/cover no-repeat url(../img/icon-external-link-black.svg); }

/* ---------------------------------------
   Animations
--------------------------------------- */
@keyframes hero-zoom {
  0% {
    opacity: 0;
    transform: scale(1); }
  20% {
    opacity: 1; }
  100% {
    opacity: 1;
    transform: scale(1.1); } }
@keyframes header-overlay-fade {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes logo-fade-in {
  from {
    opacity: 0;
    transform: translate(-50%, -40%); }
  to {
    opacity: 1;
    transform: translate(-50%, -50%); } }
@keyframes nav-slide-fade {
  from {
    opacity: 0;
    transform: translateY(-8px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* ---------------------------------------
   Reduced motion
--------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  header::before,
  header::after,
  #logo,
  nav.mobile,
  nav.desktop {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important; }

  /* keep logo centered even when we nuke transforms above */
  header #logo {
    transform: translate(-50%, -50%) !important; } }
/* ---------------------------------------
   Main
--------------------------------------- */
main {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  margin-top: 100vh; }
  main section {
    padding-bottom: 40px; }
    @media (min-width: 992px) {
      main section {
        padding-top: 40px; } }

/* ---------------------------------------
   About – Overlap Video Card
--------------------------------------- */
#about {
  padding-top: 0; }
  #about .overlap-card {
    position: relative;
    z-index: 3;
    overflow: hidden;
    isolation: isolate;
    display: block;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    background: #222222;
    margin-bottom: -25%;
    /* Scroll animation */
    opacity: 0;
    transform: translateY(0);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
    will-change: transform, opacity;
    /* Video */ }
    #about .overlap-card.is-visible {
      opacity: 1;
      transform: translateY(-50%); }
    #about .overlap-card video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      cursor: pointer;
      /* no opacity tricks here */ }
    #about .overlap-card .video-toggle-icon {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      opacity: 0;
      transform: scale(1);
      transition: opacity 0.5s ease; }
      #about .overlap-card .video-toggle-icon::before {
        content: "";
        width: 160px;
        height: 160px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain; }
      #about .overlap-card .video-toggle-icon[data-state="play"]::before {
        background-image: url("../img/icon-play.svg"); }
      #about .overlap-card .video-toggle-icon[data-state="pause"]::before {
        background-image: url("../img/icon-pause.svg"); }
      #about .overlap-card .video-toggle-icon.visible {
        opacity: 1; }

/* ---------------------------------------
   Donation Drops 
--------------------------------------- */
#donation-drops {
  	/* ---------------------------------------
     Table 
  	--------------------------------------- */
  /* Visually hidden helper for <caption> or hidden head on mobile */ }
  @media (min-width: 992px) {
    #donation-drops {
      padding-bottom: 80px; } }
  #donation-drops .sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0; }
  #donation-drops .drops-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 16px;
    line-height: 1.2em;
    margin-top: 16px;
    /* ---------------------------------------
       Hover & Interaction (Desktop only)
    --------------------------------------- */
    /* ---------------------------------------
       Mobile (Stacked)
    --------------------------------------- */
    /* ---------------------------------------
       Desktop (Typography & Spacing)
    --------------------------------------- */ }
    #donation-drops .drops-table thead tr {
      border-top: 1px solid #222222; }
    #donation-drops .drops-table thead th {
      text-align: left;
      font-weight: 400;
      padding: 16px 0;
      border-bottom: 1px solid #222222; }
    #donation-drops .drops-table tr {
      border-bottom: 1px solid #222222;
      transition: background-color .25s ease-in-out, color .25s ease-in-out; }
    #donation-drops .drops-table th,
    #donation-drops .drops-table td {
      padding: 16px 0;
      vertical-align: middle;
      transition: color .25s ease-in-out; }
    #donation-drops .drops-table .col-year {
      text-align: right; }
    #donation-drops .drops-table thead th:first-child,
    #donation-drops .drops-table tbody td:first-child {
      width: 64px; }
    #donation-drops .drops-table thead th:last-child,
    #donation-drops .drops-table tbody td:last-child {
      width: 88px; }
    @media (min-width: 768px) {
      #donation-drops .drops-table tbody tr:hover {
        background-color: #222222;
        cursor: pointer; }
        #donation-drops .drops-table tbody tr:hover th,
        #donation-drops .drops-table tbody tr:hover td {
          color: #FFFFFF; } }
    @media (max-width: 767px) {
      #donation-drops .drops-table {
        /* Disable hover highlight on touch */ }
        #donation-drops .drops-table thead {
          position: absolute;
          width: 1px;
          height: 1px;
          overflow: hidden;
          clip: rect(0 0 0 0);
          white-space: nowrap;
          border: 0;
          padding: 0;
          margin: -1px; }
        #donation-drops .drops-table tbody,
        #donation-drops .drops-table tr,
        #donation-drops .drops-table td {
          display: block;
          width: 100%; }
        #donation-drops .drops-table tbody {
          border-top: 1px solid #222222; }
        #donation-drops .drops-table tbody tr {
          padding: 12px 0; }
        #donation-drops .drops-table thead th,
        #donation-drops .drops-table tbody td {
          padding: 0; }
        #donation-drops .drops-table td {
          padding: 2px 0; }
        #donation-drops .drops-table td::before {
          content: attr(data-label);
          display: block;
          font-size: 12px;
          line-height: 1.2em; }
        #donation-drops .drops-table td:nth-child(2) {
          font-size: 16px;
          line-height: 1.2em; }
        #donation-drops .drops-table .col-year {
          text-align: left; }
        #donation-drops .drops-table tbody tr:hover {
          background-color: transparent; }
          #donation-drops .drops-table tbody tr:hover th,
          #donation-drops .drops-table tbody tr:hover td {
            color: inherit; } }
    @media (min-width: 768px) {
      #donation-drops .drops-table {
        font-size: 20px;
        line-height: 1.2em; }
        #donation-drops .drops-table thead th,
        #donation-drops .drops-table tbody td {
          padding: 24px 16px; } }

/* ---------------------------------------
   Section – Donate 
--------------------------------------- */
#donate .full-width-image {
  border-radius: 8px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  background-image: url(../img/donate-bg-image.jpg);
  padding: 320px 8px 8px 8px; }
  @media (min-width: 992px) {
    #donate .full-width-image {
      height: 570px;
      padding: 24px; } }
  #donate .full-width-image .card {
    display: block;
    border-radius: 8px;
    background-color: #222222;
    padding: 16px; }
    @media (min-width: 992px) {
      #donate .full-width-image .card {
        width: 50%; } }
    #donate .full-width-image .card h4 {
      color: #FFFFFF;
      font-size: 16px;
      margin: 0 0 24px 0; }
      #donate .full-width-image .card h4::before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        margin-right: 4px;
        border-radius: 50%;
        background: #1885DD;
        position: relative;
        top: -2px; }
    #donate .full-width-image .card h2 {
      color: #FFFFFF;
      line-height: 0.85em;
      margin: 0 0 8px 0; }
      @media (min-width: 992px) {
        #donate .full-width-image .card h2 {
          font-size: 88px; } }
    #donate .full-width-image .card p {
      color: #FFFFFF;
      margin: 0 0 24px 0; }
    #donate .full-width-image .card .actions {
      padding: 0 0 16px 0; }
      #donate .full-width-image .card .actions button {
        margin-right: 4px; }

/* ---------------------------------------
   Modal 
--------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222222;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease-in-out;
  height: 100vh;
  align-items: center; }
  @supports (height: 100dvh) {
    .modal {
      height: 100dvh; } }
  .modal.show {
    opacity: 1;
    pointer-events: auto; }
  @media (max-width: 767px) {
    .modal {
      align-items: flex-start; } }
  .modal > div {
    position: relative;
    padding: 16px 16px;
    max-width: 100%;
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* smooth scrolling on iOS */
    padding-bottom: max(24px, env(safe-area-inset-bottom, 24px)); }
    @media (min-width: 768px) {
      .modal > div {
        padding: 24px; } }
  .modal h4 {
    color: #FFFFFF;
    margin: 0 32px 8px 0; }
    .modal h4::before {
      content: "";
      display: inline-block;
      width: 8px;
      height: 8px;
      margin-right: 8px;
      border-radius: 50%;
      background: #1885DD;
      position: relative;
      top: -1px; }
      @media (min-width: 992px) {
        .modal h4::before {
          top: -3px; } }
  .modal .close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 16px;
    height: 16px;
    background: center/cover no-repeat url(../img/icon_close_white.svg);
    cursor: pointer; }
    @media (max-width: 767px) {
      .modal .close-modal {
        width: 12px;
        height: 12px;
        top: 16px;
        right: 16px;
        background-image: url(../img/icon_close_small_white.svg); } }

/* Lock scroll when modal is open */
body.no-scroll {
  overflow: hidden; }

/* ---------------------------------------
   Video frame (auto-sizes to real AR)
--------------------------------------- */
.video-frame {
  /* --ar is a pure number we set in JS = videoWidth / videoHeight */
  --ar: 0.5625;
  /* default 9/16 for portrait as a fallback */
  position: relative;
  margin: 0 auto;
  /* Key: choose the largest size that fits both vw and vh */
  width: min(90vw, calc(90vh * var(--ar)));
  /* cap if you want: */
  max-width: 1200px;
  /* height is implied by aspect-ratio when width is set */
  aspect-ratio: var(--ar);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  /* letterbox background */ }

/* Poster + video occupy the same box; "contain" to avoid cropping */
.video-frame .video-poster,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* show full frame, no crop */
  border-radius: inherit;
  background: #000; }

/* Optional: fade poster when playing */
.video-frame {
  --fade-dur: .35s; }

.video-frame .video-poster {
  opacity: 1;
  transition: opacity var(--fade-dur) ease-in-out; }

.video-frame.is-playing .video-poster {
  opacity: 0;
  pointer-events: none; }

/* ---------------------------------------
   Play / Pause Flash Icons (SVG-based)
--------------------------------------- */
.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  translate: -50% -50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: opacity 0.5s ease;
  opacity: 1; }
  .video-icon.fade {
    opacity: 0; }
  .video-icon img {
    display: block;
    width: 160px;
    height: 160px; }

/* ---------------------------------------
   Modal Donate
--------------------------------------- */
.modal.donate .modal-inner {
  padding: 32px 16px;
  width: 100%;
  max-width: 425px; }
.modal.donate .close-modal {
  top: 32px; }
  @media (min-width: 992px) {
    .modal.donate .close-modal {
      top: 32px; } }
.modal.donate h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin: 0 0 24px 0; }
  .modal.donate h4::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: #1885DD;
    position: relative;
    top: -2px; }
.modal.donate h3 {
  color: #FFFFFF;
  font-size: 64px;
  line-height: .85em;
  margin-bottom: 8px; }
.modal.donate p {
  color: #FFFFFF;
  margin-bottom: 24px; }
.modal.donate .payment-methods {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px; }
  .modal.donate .payment-methods .payment-method-logo {
    height: 24px;
    width: auto; }
    .modal.donate .payment-methods .payment-method-logo.visa {
      height: 16px; }
.modal.donate label.container.mailing-list {
  font-size: 16px !important; }
.modal.donate button.small {
  width: 100%; }

/* ---------------------------------------
   Footer
--------------------------------------- */
footer {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  background: #222222;
  	/* ---------------------------------------
     Contact
  	--------------------------------------- */
  	/* ---------------------------------------
     Colophon
  	--------------------------------------- */ }
  footer section {
    padding-bottom: 40px; }
    @media (min-width: 992px) {
      footer section {
        padding-top: 40px;
        padding-bottom: 120px; } }
  footer #contact h2 {
    color: #FFFFFF; }
  footer #colophon {
    padding: 16px 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px; }
    footer #colophon p {
      color: #FFFFFF;
      margin: 0; }
    footer #colophon #website-credit .opacity-50 {
      opacity: .5; }
    footer #colophon #website-credit a {
      color: #FFFFFF;
      text-decoration: none;
      opacity: .5;
      transition: all .25s ease-in-out; }
      footer #colophon #website-credit a:hover, footer #colophon #website-credit a:active {
        opacity: 1; }

/* ---------------------------------------
   Contact Form
  --------------------------------------- */
form#contact-form {
  border-top: 1px solid #FFFFFF;
  padding-top: 12px;
  /* Customize the label (the container) */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */ }
  @media (min-width: 768px) {
    form#contact-form {
      padding-top: 24px; } }
  form#contact-form .form-group {
    margin-bottom: 16px; }
    @media (min-width: 768px) {
      form#contact-form .form-group {
        margin-bottom: 24px; } }
    form#contact-form .form-group label {
      font-size: 12px;
      line-height: 1em;
      color: #FFFFFF; }
      @media (min-width: 768px) {
        form#contact-form .form-group label {
          font-size: 16px; } }
    form#contact-form .form-group input,
    form#contact-form .form-group textarea {
      width: 100%;
      border: none;
      border-bottom: 1px solid #FFFFFF;
      border-radius: 0;
      background-color: transparent;
      box-sizing: border-box;
      resize: vertical;
      font-weight: 600;
      color: #FFFFFF;
      font-size: 16px;
      line-height: 1.3em;
      padding: 4px 0 8px 0;
      min-height: 39px; }
      @media (min-width: 768px) {
        form#contact-form .form-group input,
        form#contact-form .form-group textarea {
          font-size: 20px;
          padding: 8px 0 16px 0;
          min-height: 27px; } }
      form#contact-form .form-group input:focus,
      form#contact-form .form-group textarea:focus {
        outline: none; }
      form#contact-form .form-group input::-webkit-input-placeholder, form#contact-form .form-group input::-moz-placeholder, form#contact-form .form-group input:-ms-input-placeholder, form#contact-form .form-group input:-moz-placeholder,
      form#contact-form .form-group textarea::-webkit-input-placeholder,
      form#contact-form .form-group textarea::-moz-placeholder,
      form#contact-form .form-group textarea:-ms-input-placeholder,
      form#contact-form .form-group textarea:-moz-placeholder {
        color: #FFFFFF;
        opacity: .5; }
    form#contact-form .form-group textarea {
      font-size: 16px; }
      @media (min-width: 768px) {
        form#contact-form .form-group textarea {
          font-size: 21px; } }
  form#contact-form .container {
    display: block;
    position: relative;
    padding-left: 36px;
    margin-bottom: 24px;
    cursor: pointer;
    font-weight: 400;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    @media (min-width: 768px) {
      form#contact-form .container {
        padding-left: 48px;
        margin-bottom: 32px;
        font-size: 21px;
        line-height: 32px; } }
  form#contact-form .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  form#contact-form .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #222222;
    border: 1px solid #FFFFFF;
    border-radius: 4px; }
    @media (min-width: 768px) {
      form#contact-form .checkmark {
        height: 32px;
        width: 32px; } }
  form#contact-form .checkmark:after {
    content: "";
    position: absolute;
    display: none; }
  form#contact-form .container input:checked ~ .checkmark:after {
    display: block; }
  form#contact-form .container .checkmark:after {
    left: 7px;
    top: 1px;
    width: 8px;
    height: 16px;
    border: solid #1885DD;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg); }
    @media (min-width: 768px) {
      form#contact-form .container .checkmark:after {
        left: 10px;
        top: 2px;
        width: 10px;
        height: 20px; } }
  form#contact-form .error-message {
    margin-top: 24px; }

/* ---------------------------------------
   Thank You Modal
	--------------------------------------- */
#modal-thank-you.modal {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); }
  #modal-thank-you.modal > div {
    background-color: #222222;
    padding: 16px;
    border-radius: 8px; }
    #modal-thank-you.modal > div .close-modal {
      right: 16px;
      top: 16px; }
  #modal-thank-you.modal h5, #modal-thank-you.modal p {
    color: #FFFFFF; }
  #modal-thank-you.modal h5 {
    margin-bottom: 8px; }

/* ---------------------------------------
   Privacy Notification
	--------------------------------------- */
#privacy-notification {
  position: fixed;
  opacity: 0;
  z-index: -999;
  bottom: 0;
  left: 0;
  background: #222222;
  width: 100%;
  transition: all .5s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 16px; }
  @media (min-width: 980px) {
    #privacy-notification {
      flex-direction: row;
      justify-content: space-between;
      gap: 16px;
      padding: 24px; } }
  #privacy-notification h5 {
    color: #FFFFFF;
    font-size: 12px;
    margin-bottom: 8px; }
    @media (min-width: 768px) {
      #privacy-notification h5 {
        font-size: 12px; } }
  #privacy-notification p {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.2em;
    margin-bottom: 8px; }
    @media (min-width: 768px) {
      #privacy-notification p {
        font-size: 20px; } }
  #privacy-notification button.primary {
    margin-right: 8px; }

/* ---------------------------------------
  Privacy Policy
--------------------------------------- */
#privacy-policy main {
  margin-top: 0; }
#privacy-policy h1 {
  color: #222222;
  font-size: 48px;
  margin-top: 48px; }
#privacy-policy h4 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 16px; }
  @media (min-width: 768px) {
    #privacy-policy h4 {
      font-size: 24px;
      margin-top: 48px; } }
#privacy-policy h5 {
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 16px; }
  @media (min-width: 768px) {
    #privacy-policy h5 {
      font-size: 21px;
      margin-top: 32px;
      margin-bottom: 16px; } }
#privacy-policy p {
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 16px; }
  @media (min-width: 768px) {
    #privacy-policy p {
      font-size: 21px; } }
  #privacy-policy p:not(:first-of-type) {
    text-indent: 0; }
#privacy-policy ul {
  margin-bottom: 16px; }

/* ---------------------------------------
   Mailing List Notification
--------------------------------------- */
#mailing-list-notification {
  position: fixed;
  opacity: 0;
  z-index: -999;
  bottom: 0;
  left: 0;
  background: #222222;
  width: 100%;
  transition: all .5s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  margin: 0; }
  @media (min-width: 768px) {
    #mailing-list-notification {
      bottom: 16px;
      right: 16px;
      left: auto;
      width: 600px;
      padding: 24px 16px 32px 24px;
      margin: 0;
      border-radius: 8px; } }
  #mailing-list-notification .close-notification {
    display: block;
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 8px;
    height: 8px;
    background-image: url(../img/icon_close_small_white.svg);
    background-size: cover; }
    @media (min-width: 768px) {
      #mailing-list-notification .close-notification {
        right: 24px;
        top: 24px;
        width: 16px;
        height: 16px;
        background-image: url(../img/icon_close_white.svg); } }
  #mailing-list-notification h5 {
    color: #FFFFFF;
    font-size: 12px;
    margin-bottom: 12px; }
    @media (min-width: 768px) {
      #mailing-list-notification h5 {
        font-size: 16px;
        margin-bottom: 16px; } }
  #mailing-list-notification input[type=email] {
    display: inline-block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    border-radius: 0;
    background-color: transparent;
    box-sizing: border-box;
    resize: vertical;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 0 0 12px 0;
    margin-bottom: 0; }
    @media (min-width: 768px) {
      #mailing-list-notification input[type=email] {
        font-size: 20px;
        padding: 12px 0;
        margin-right: 16px; } }
    #mailing-list-notification input[type=email]:focus {
      outline: none; }
    #mailing-list-notification input[type=email]::-webkit-input-placeholder {
      color: #FFFFFF;
      opacity: .5; }
    #mailing-list-notification input[type=email]::-moz-placeholder {
      color: #FFFFFF;
      opacity: .5; }
    #mailing-list-notification input[type=email]:-ms-input-placeholder {
      color: #FFFFFF;
      opacity: .5; }
    #mailing-list-notification input[type=email]:-moz-placeholder {
      color: #FFFFFF;
      opacity: .5; }
  #mailing-list-notification #mce-responses #mce-error-response {
    color: red;
    font-size: 14px;
    line-height: 1.2em;
    background: transparent; }
  #mailing-list-notification #mce-responses #mce-success-response {
    color: green;
    font-size: 14px;
    line-height: 1.2em;
    background: transparent; }
  @media (min-width: 768px) {
    #mailing-list-notification .foot {
      display: inline-block; } }
  #mailing-list-notification input[type=submit] {
    border: 1px solid #FFFFFF;
    background-color: #FFFFFF;
    border-radius: 6px;
    font-weight: 600;
    color: #222222;
    text-align: center;
    cursor: pointer;
    transition: all .25s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    white-space: nowrap;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 10px;
    line-height: 12px;
    padding: 14px 24px;
    width: auto; }
    @media (min-width: 768px) {
      #mailing-list-notification input[type=submit] {
        font-size: 14px;
        line-height: 16px;
        padding: 16px 40px; } }
  #mailing-list-notification .mc-field-group {
    display: inline-block;
    width: 100%; }
    @media (min-width: 768px) {
      #mailing-list-notification .mc-field-group {
        width: calc(100% - 164px); } }
  #mailing-list-notification .clear {
    display: inline-block; }

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