@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;600,700&family=Roboto+Mono&family=Roboto:wght@500&display=swap");
.btn {
  color: #000;
  font-size: 0.91rem;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  border-width: 5px;
  border-style: solid;
  display: inline-block;
  padding: 10px 20px;
  align-self: start;
  cursor: pointer; }
  .btn.btn--primary {
    border-color: #9deeff; }
  .btn.btn--secondary {
    border-color: #ff6a49; }

.intro-box {
  width: 90%;
  max-width: 605px;
  border: 10px solid #9deeff;
  background: #fff;
  margin: 100px auto;
  padding: 2em 2.5em;
  text-align: justify; }
  @media (min-width: 788px) {
    .intro-box {
      border-width: 20px; } }
.arrow-heading {
  display: flex;
  align-items: center; }
  .arrow-heading::before {
    content: '';
    display: block;
    width: 41px;
    height: 54px;
    background: url("../vectors/orange-right-arrow.svg") no-repeat center center;
    background-size: contain;
    margin-right: 1rem; }

.hero {
  padding: 0;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column; }
  .hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  @media (min-width: 788px) {
    .hero {
      flex-direction: row; } }
  .hero .hero__image {
    max-width: 100%; }
    @media (min-width: 788px) {
      .hero .hero__image {
        max-width: 50%; } }
    .hero .hero__image img {
      height: auto;
      flex: 1;
      object-fit: contain; }
  @media (max-width: 788px) {
    .hero .hero__content {
      padding: 50px 20px !important; } }
.outer {
  width: 100%;
  max-width: 100%;
  background-color: #fff; }

.inner {
  max-width: 600px;
  margin: 0 auto 0;
  padding: 50px; }
  @media screen and (min-width: 788px) {
    .inner {
      padding: 50px 0; } }
  .inner.top-zero {
    padding-top: 0; }

.photo {
  padding: 0 0 50px; }

.icon-box {
  max-width: 600px;
  background-color: #fff;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  padding: 0 40px; }
  @media screen and (min-width: 788px) {
    .icon-box {
      padding: 0; } }
  .icon-box img {
    max-width: 100px;
    max-height: 100px;
    margin-right: 1rem; }
  .icon-box.top-spaced {
    padding-top: 100px; }

@media screen and (max-width: 788px) {
  .relative-header {
    position: relative;
    transform: translateY(0);
    height: 101px;
    background-color: #fff; } }

.header {
  background-color: #fff;
  align-items: center;
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out, height 0s linear 0.3s;
  transform: translateY(0); }
  @media screen and (min-width: 788px) {
    .header {
      position: relative;
      display: flex;
      height: 125px;
      margin: 0 auto;
      justify-content: space-between;
      background-color: #fff; } }
  @media screen and (max-width: 788px) {
    .header.sticky {
      height: 101px;
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      transform: translateY(0); } }
  @media screen and (max-width: 788px) {
    .header.unsticky {
      height: 101px;
      transform: translateY(-100%); } }
  .header.active {
    width: 100vw;
    height: 100vh; }
    .header.active .header-top {
      position: relative;
      z-index: 999;
      top: 0;
      height: 101px;
      width: 100vw;
      background-color: #fff; }
  .header__logo {
    background-color: #fff;
    z-index: 1000;
    padding: 1rem;
    padding-left: 1rem;
    display: flex;
    align-items: center;
    height: 100%;
    position: absolute;
    top: 0; }
    .header__logo.active {
      position: fixed;
      top: 9px;
      height: auto; }
    @media screen and (min-width: 788px) {
      .header__logo {
        min-width: 300px;
        flex-direction: column;
        justify-content: center;
        position: static; } }
    .header__logo h1 {
      display: inline-block;
      margin-left: 25px;
      max-width: 170px; }
      @media screen and (max-width: 480px) {
        .header__logo h1 {
          font-size: 1.2rem;
          max-width: 100px;
          margin-left: 5px; } }
    .header__logo .header-arrow-left {
      margin-top: 30px; }
      @media screen and (max-width: 480px) {
        .header__logo .header-arrow-left {
          margin-top: 18px; } }
    .header__logo .header-arrow-right {
      margin-top: 68px;
      margin-right: 25px; }
      @media screen and (max-width: 480px) {
        .header__logo .header-arrow-right {
          margin-top: 40px; } }
  .header__burger {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1000;
    position: absolute;
    right: 20px;
    top: 36px; }
    @media screen and (max-width: 788px) {
      .header__burger {
        display: block; } }
    .header__burger .burger-line {
      width: 100%;
      height: 3px;
      margin-bottom: 5px;
      background-color: #ff6a49;
      transition: all 0.3s ease-in-out; }
    .header__burger.active {
      position: fixed; }
      .header__burger.active .burger-line.first {
        transform: translate(4px, 11px) rotateZ(45deg); }
      .header__burger.active .burger-line.second {
        opacity: 0; }
      .header__burger.active .burger-line.third {
        transform: translate(5px, -5px) rotateZ(-45deg); }
  .header__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #fff;
    position: relative;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
    font-size: 2rem; }
    @media (min-width: 788px) {
      .header__menu {
        position: relative;
        transform: translateX(0);
        height: 100%; } }
    .header__menu.active {
      transform: translateX(0); }
      @media (max-width: 788px) {
        .header__menu.active {
          overflow-y: auto;
          height: 100vh;
          transform: translateX(0); } }
    .header__menu ul {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      width: 100%;
      padding: 0 50px 50px; }
      @media (min-width: 788px) {
        .header__menu ul {
          flex-direction: row;
          justify-content: center;
          align-items: center;
          margin-top: 0;
          padding: 0 50px; } }
      .header__menu ul li {
        list-style: none;
        text-align: center;
        padding: 2rem 0;
        margin: 10px 0;
        width: 100%; }
        .header__menu ul li:not(:last-child) {
          border: 8px solid #9deeff; }
          @media (min-width: 788px) {
            .header__menu ul li:not(:last-child) {
              border: 0;
              margin: 0 0.5rem; } }
        @media (min-width: 788px) {
          .header__menu ul li {
            margin: 0 0.5rem;
            border: 0;
            width: auto; }
            .header__menu ul li .header__menu__donate {
              display: block;
              padding: 0.2em 1em;
              border: 4px solid #ff6a49; }
              .header__menu ul li .header__menu__donate a::after {
                width: 90%;
                margin-top: -10px; } }
        .header__menu ul li a {
          text-decoration: none;
          text-transform: uppercase;
          font-weight: 600;
          font-size: 2.6rem; }
          @media (min-width: 788px) {
            .header__menu ul li a {
              font-size: 1rem; } }
        .header__menu ul li.flag-container {
          text-transform: uppercase;
          margin-left: 10px; }
          @media screen and (min-width: 788px) {
            .header__menu ul li.flag-container {
              justify-self: flex-end;
              margin-left: 20px; } }
          .header__menu ul li.flag-container .flag {
            flex: 1;
            display: flex;
            align-items: center;
            font-size: 1.3rem; }
            @media screen and (min-width: 788px) {
              .header__menu ul li.flag-container .flag {
                width: 50px;
                justify-content: flex-end;
                font-size: 1rem; } }
            .header__menu ul li.flag-container .flag span {
              order: 1;
              margin-left: 10px; }
              @media screen and (min-width: 788px) {
                .header__menu ul li.flag-container .flag span {
                  order: 0;
                  margin-left: 0; } }
            .header__menu ul li.flag-container .flag img {
              margin-left: 0.5em;
              order: 0; }
              @media screen and (min-width: 788px) {
                .header__menu ul li.flag-container .flag img {
                  order: 1; } }
.backdrop {
  background-color: #fff;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all 0.3s ease-in-out;
  transform: translateX(-100%); }
  .backdrop.active {
    transform: translateX(0); }
  @media screen and (min-width: 788px) {
    .backdrop {
      display: none; } }
.single-arrow-title-container {
  display: flex;
  align-items: center; }
  .single-arrow-title-container .arrow-title-arrows {
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: #ff6a49;
    margin-right: 15px; }
    .single-arrow-title-container .arrow-title-arrows::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0.6rem;
      height: 0.6rem;
      border-top: 4px solid #ff6a49;
      border-left: 4px solid #ff6a49;
      transform: rotate(135deg);
      animation: double-arrow-gt 1s infinite; }

main.home section.hero {
  display: flex;
  align-items: center;
  max-height: 100vh; }
  main.home section.hero .hero__image {
    height: 500px;
    width: 200%;
    object-fit: cover;
    flex: 1; }
  main.home section.hero .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 1rem;
    height: 100%;
    z-index: 1;
    margin: auto;
    order: 1; }
    @media (min-width: 788px) {
      main.home section.hero .hero__content {
        order: 0;
        width: 50%;
        max-width: 340px; } }
    main.home section.hero .hero__content h1 {
      margin: 0; }
    main.home section.hero .hero__content .btn {
      margin-top: 10px; }

@media screen and (min-width: 788px) {
  main.bankcampaign {
    width: 100%; } }

main.bankcampaign .hero__content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center; }

main.bankcampaign section .inner {
  max-width: 90%; }

main.bankcampaign h2 {
  margin-top: 0;
  padding-top: 1em; }

main.bankcampaign figure {
  margin: 50px 0;
  width: 100%;
  object-fit: cover; }
  @media (min-width: 788px) {
    main.bankcampaign figure {
      width: 100%;
      margin-left: 0; } }
main.bankcampaign strong {
  font-weight: 700;
  font-size: 1.05rem; }

@media screen and (min-width: 788px) {
  main.about {
    width: 100%; } }

main.about .hero__content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center; }

main.about .so-far {
  margin-top: -50px; }

main.about .join {
  margin-top: 100px; }

main.about figure {
  margin: 50px 0;
  width: 100%;
  object-fit: cover; }
  @media (min-width: 788px) {
    main.about figure {
      width: 100%;
      margin-left: 0; } }
main.press .hero__content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center; }

main.press .intro-box a {
  letter-spacing: 1.5px; }

main.press .messages {
  padding: 100px 50px 0; }
  @media screen and (min-width: 788px) {
    main.press .messages {
      padding: 100px 0; } }
  main.press .messages h2 {
    max-width: 600px;
    margin: 0px auto 0; }
  main.press .messages .message {
    max-width: 600px;
    margin: 50px auto 0;
    padding-bottom: 50px;
    border-bottom: 2px solid #9deeff; }
    main.press .messages .message:last-child {
      border-bottom: none; }
    main.press .messages .message h3 {
      text-transform: uppercase; }
  main.press .messages a {
    color: #ff6a49; }

main.press.single a {
  color: #ff6a49; }

main.contact .hero__content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center; }

main.contact .icon-spacer {
  padding: 50px 0; }

main.donate section.hero {
  display: flex;
  align-items: center; }
  main.donate section.hero .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
    width: 100%;
    max-width: 340px;
    height: 100%;
    z-index: 1;
    margin: auto; }
    main.donate section.hero .hero__content h1 {
      margin: 0; }
    main.donate section.hero .hero__content .btn {
      margin-top: 30px; }

main.donate .intro-box a {
  color: #ff6a49; }

main.donate .inner {
  margin: 0 auto;
  padding: 50px 0; }
  main.donate .inner.zero-spaced {
    padding: 0px; }

main.donate .outer {
  padding: 50px; }

main.donate .btn--secondary {
  margin: 30px 0;
  display: inline-block; }

main.thank-you .photo {
  background-color: #fff; }
  main.thank-you .photo .inner {
    padding: 50px 0;
    max-width: 100%; }
    @media screen and (min-width: 788px) {
      main.thank-you .photo .inner {
        padding: 50px;
        max-width: 600px; } }
    main.thank-you .photo .inner img {
      object-fit: cover;
      width: 100%; }

footer {
  background-color: #f6f6f6;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  @media screen and (min-width: 788px) {
    footer {
      height: 300px;
      flex-direction: row; } }
  footer .logo {
    display: flex;
    justify-content: center;
    align-items: center; }
    footer .logo img {
      max-height: 100px;
      max-width: 250px; }
      @media screen and (min-width: 788px) {
        footer .logo img {
          max-height: 100px;
          max-width: max-content; } }
  footer .socials {
    display: flex;
    justify-content: center;
    align-items: center; }
    @media screen and (min-width: 788px) {
      footer .socials {
        flex-direction: column;
        margin-left: 50px; } }
    footer .socials a {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      color: #b6b6b6;
      text-transform: uppercase;
      text-decoration: none;
      margin: 40px 20px 0; }
      @media screen and (min-width: 788px) {
        footer .socials a {
          margin: 10px;
          flex-direction: row; } }
      footer .socials a img {
        width: 50px;
        height: 50px;
        margin: 0 10px; }
        @media screen and (min-width: 788px) {
          footer .socials a img {
            width: 60px;
            height: 60px; } }
.arrow-title-container {
  display: flex;
  align-items: center; }
  .arrow-title-container .arrow-title-arrows {
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: #ff6a49;
    margin-right: 15px; }
    .arrow-title-container .arrow-title-arrows::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0.6rem;
      height: 0.6rem;
      border-top: 4px solid #ff6a49;
      border-left: 4px solid #ff6a49;
      transform: rotate(135deg);
      animation: double-arrow-gt 1s infinite; }
    .arrow-title-container .arrow-title-arrows::after {
      content: '';
      position: absolute;
      top: 0;
      left: 15px;
      width: 0.6rem;
      height: 0.6rem;
      border-top: 4px solid #ff6a49;
      border-left: 4px solid #ff6a49;
      transform: rotate(135deg); }

.press-row {
  display: flex;
  width: 50%; }
  @media screen and (max-width: 750px) {
    .press-row {
      flex-direction: column; } }
  .press-row .press-box {
    display: flex;
    flex-direction: column;
    flex: 0.5;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
    background-color: #f6f6f6;
    color: #000; }
    .press-row .press-box .name {
      font-weight: bold; }

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center; }
  .flex-row div {
    padding: 1em; }
  .flex-row img {
    width: 50%; }

* {
  box-sizing: border-box; }

body, html {
  margin: 0;
  padding: 0;
  font-family: "Roboto Mono", monospace;
  font-size: 16px;
  color: #000; }

a {
  color: #000;
  font-family: "Barlow", sans-serif;
  font-size: 0.91rem;
  font-weight: 400; }

body {
  background: #f4f4f4;
  font-size: 16px;
  line-height: 150%; }
  body.no-scroll {
    overflow: hidden; }

main {
  display: flex;
  flex-direction: column;
  width: 100%; }

section:not(.intro) {
  background-color: #fff; }

section.intro {
  background-color: #f6f6f6; }

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

h1, h2, h3 {
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  color: #000;
  text-transform: uppercase;
  line-height: 150%; }

h1 {
  font-size: 2.6rem; }
  h1.small {
    font-size: 1.3rem; }

h2 {
  font-size: 1.3rem; }
  h2.large {
    font-size: 2.6rem; }
  h2.small {
    font-size: 1rem; }

h3 {
  font-size: 1rem; }

p {
  font-size: 16px;
  font-weight: 500;
  font-family: "Roboto Mono", monospace;
  color: #000; }

em, strong {
  font-size: 0.91rem;
  font-weight: 600;
  font-family: "Roboto Mono", monospace;
  color: #000; }

.special {
  font-size: 0.91rem;
  font-weight: 400;
  font-family: "Barlow", sans-serif;
  color: #000; }

.hidden {
  display: none; }

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