/*!********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/scss/style.scss ***!
  \********************************************************************************************************************************************************************************************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/** 
  WordPress related
*/

:where(.wp-site-blocks) > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.wp-site-blocks {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.grecaptcha-badge {
  visibility: hidden;
}

.container {
  display: grid;
  width: 100%;
  --gutter: 1rem;
}

@media only screen and (min-width: 1280px) {
  .container {
    --gutter: 4rem;
  }
}

@media only screen and (min-width: 1536px) {
  .container {
    --gutter: 9rem;
  }
}

@media only screen and (min-width: 2000px) {
  .container {
    --gutter: 25rem;
  }
}

.container {
  grid-template-columns: minmax(1rem, var(--gutter)) repeat(8, 1fr) minmax(1rem, var(--gutter));
}

@media (max-width: 991px) {
  .hide-on-mobile {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hide-on-desktop {
    display: none !important;
  }
}

.is-hidden {
  display: none !important;
}

body:not(.wp-admin) .bts-page-content {
  grid-column: 2/10;
  padding-top: clamp(3rem, 2.4851rem + 2.1968vw, 6rem);
  padding-bottom: clamp(3rem, 1.7986rem + 5.1259vw, 10rem);
}

body:not(.wp-admin) .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 175ch;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.menu {
  background: #cceef3;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: grid;
  align-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 90;
  overflow-y: auto;
  display: block;
  padding-top: 100px;
  padding-bottom: 40px;
}

.menu .container {
  display: grid;
  align-items: start;
}

.menu__nav {
  grid-column: 2/10;
  grid-row: 1;
  margin-bottom: 1.5rem;
}

.menu__list {
  list-style-type: none;
  padding: 0;
}

.menu__item:not(:last-child) {
  margin-bottom: 0.5rem;
}

@media (orientation: landscape) and (max-height: 500px) {
  .menu__item:not(:last-child) {
    margin-bottom: 0.75rem;
  }
}

.menu__link {
  font-size: clamp(1.5rem, 0.8135rem + 2.9291vw, 5.5rem);
  font-weight: bold;
  color: #434343;
  text-decoration: none;
}

.menu__social {
  grid-column: 2/10;
  grid-row: 3;
  align-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #434343;
}

@media (min-width: 992px) {
  .menu__social {
    grid-column: 2/5;
    margin-top: 2.5rem;
  }
}

.menu__social-title {
  font-size: clamp(1rem, 0.9485rem + 0.2197vw, 1.3rem);
}

.menu__social-list {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: clamp(0.6875rem, 0.6553rem + 0.1373vw, 0.875rem);
  gap: 1rem;
}

.menu__logo {
  grid-column: 2/9;
  grid-row: 4;
  justify-self: start;
}

.menu__logo-img {
  width: 220px;
  height: auto;
  display: block;
  padding-bottom: 20px;
}

@media (min-width: 992px) {
  .menu__logo-img {
    display: none;
  }
}

.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-switcher__option {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 5px 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: bold;
  display: inline-flex !important;
}

.lang-switcher__option:hover {
  background-color: #f0f0f0;
}

.lang-switcher__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: bold;
  padding: 5px 10px;
}

.lang-switcher__list {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 120px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  list-style: none;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.lang-switcher__list::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.lang-switcher:hover .lang-switcher__list, .lang-switcher.is-open .lang-switcher__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
  pointer-events: auto;
}

.lang-switcher--desktop {
  display: none;
}

@media only screen and (min-width: 992px) {
  .lang-switcher--desktop {
    display: block;
  }
  .lang-switcher--desktop .lang-switcher__current {
    color: #ffffff;
    transition: color 0.3s ease;
  }
}

.lang-switcher--mobile {
  grid-column: 8/10;
  justify-self: end;
  margin-bottom: 1rem;
}

@media only screen and (min-width: 992px) {
  .lang-switcher--mobile {
    display: none;
  }
}

/* Prevents WordPress core blocks from performing FOUC - Flash of Unstyled Content */

/* Hide Spanish by default when the site is set to English */

html[lang=en] .bilingual-section[data-lang=es] {
  display: none !important;
}

/* Hide English by default when the site is set to Spanish */

html[lang=es] .bilingual-section[data-lang=en] {
  display: none !important;
}

/* Ensure the correct one is visible */

html[lang=en] .bilingual-section[data-lang=en],
html[lang=es] .bilingual-section[data-lang=es] {
  display: block !important;
}

/* Hide ALL multilingual content before lang is set */

html:not([lang]) [data-lang] {
  visibility: hidden;
}

/* Default: assume English is active until JS sets language */

html:not([data-lang]) [data-lang=en] {
  display: initial;
}

html:not([data-lang]) [data-lang=es] {
  display: none;
}

/* English active */

html[data-lang=en] [data-lang=en] {
  display: initial;
}

html[data-lang=en] [data-lang=es] {
  display: none;
}

/* Spanish active */

html[data-lang=es] [data-lang=es] {
  display: initial;
}

html[data-lang=es] [data-lang=en] {
  display: none;
}

html[data-lang=en] .involved__title[data-lang=en] {
  display: block;
}

html[data-lang=es] .involved__title[data-lang=es] {
  display: block;
}

html[data-lang=en] .involved__subtitle[data-lang=en] {
  display: block;
}

html[data-lang=es] .involved__subtitle[data-lang=es] {
  display: block;
}

html[data-lang=en] .involved__paragraph[data-lang=en] {
  display: block;
}

html[data-lang=es] .involved__paragraph[data-lang=es] {
  display: block;
}

html[data-lang=en] .involved__list-item[data-lang=en] {
  display: revert;
}

html[data-lang=es] .involved__list-item[data-lang=es] {
  display: revert;
}

html[data-lang=en] .involved__quote[data-lang=en] {
  display: block;
}

html[data-lang=es] .involved__quote[data-lang=es] {
  display: block;
}

html[data-lang=en] .programs__heading[data-lang=en] {
  display: block;
}

html[data-lang=es] .programs__heading[data-lang=es] {
  display: block;
}

html[data-lang=en] .programs__description[data-lang=en] {
  display: block;
}

html[data-lang=es] .programs__description[data-lang=es] {
  display: block;
}

html[data-lang=en] .board__mission[data-lang=en] {
  display: block;
}

html[data-lang=es] .board__mission[data-lang=es] {
  display: block;
}

html[data-lang=en] .board__cite[data-lang=en] {
  display: block;
}

html[data-lang=es] .board__cite[data-lang=es] {
  display: block;
}

html[data-lang=en] .board__title[data-lang=en] {
  display: block;
}

html[data-lang=es] .board__title[data-lang=es] {
  display: block;
}

html[data-lang=en] .board__statement[data-lang=en] {
  display: block;
}

html[data-lang=es] .board__statement[data-lang=es] {
  display: block;
}

.button {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.5rem;
  text-decoration: none;
}

.button--transparent .button__text {
  color: white;
}

.button--transparent::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQgMTJMMjAgMTJNMjAgMTJMMTQgMThNMjAgMTJMMTQgNiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
  background-size: contain;
  background-repeat: no-repeat;
}

.button--transparent-alt .button__text {
  color: black;
}

.button--transparent-alt::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxOCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuNzUgNi43NUwxNi43NSA2Ljc1TTE2Ljc1IDYuNzVMMTAuNzUgMTIuNzVNMTYuNzUgNi43NUwxMC43NSAwLjc1IiBzdHJva2U9IiM0QjRCNEIiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
  background-size: contain;
  background-repeat: no-repeat;
}

.button--donate {
  background-color: #ffffff;
  padding: 15px 30px;
  border: 1px solid #ebebeb;
  border-radius: 999px;
  color: #000;
}

.button--donate::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOSAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMuMDgzMTcgMTYuMTg3NUgxMC40OTg2QzEwLjk0MzQgMTYuMTg3NSAxMS4zODI5IDE2LjA5MTIgMTEuNzg3IDE1LjkwNTRDMTIuMTkxMSAxNS43MTk1IDEyLjU1MDIgMTUuNDQ4NCAxMi44Mzk2IDE1LjExMDZMMTYuNzcyNCAxMC41MjI2QzE2Ljg1NDggMTAuNDI2NyAxNi45MTIzIDEwLjMxMjEgMTYuOTM5OCAxMC4xODg3QzE2Ljk2NzQgMTAuMDY1MyAxNi45NjQzIDkuOTM3MDcgMTYuOTMwNiA5LjgxNTIyQzE2Ljg5NjkgOS42OTMzNyAxNi44MzM4IDkuNTgxNjcgMTYuNzQ2OCA5LjQ4OTk2QzE2LjY1OTggOS4zOTgyNSAxNi41NTE2IDkuMzI5MzQgMTYuNDMxNyA5LjI4OTMxTDE0LjkxNDcgOC43ODM2NUMxNC41NDgxIDguNjY0MjYgMTQuMTU3NyA4LjYzNzE5IDEzLjc3ODEgOC43MDQ4MkMxMy4zOTg1IDguNzcyNDYgMTMuMDQxNSA4LjkzMjcxIDEyLjczODYgOS4xNzEzN0wxMC4yODM1IDExLjEzNDdMOS44MDc5MiAxMC4xODI3QzkuNTUzMTMgOS42Njk1NSA5LjE1OTczIDkuMjM3OTkgOC42NzIyOCA4LjkzNjkxQzguMTg0ODMgOC42MzU4MyA3LjYyMjgxIDguNDc3MjYgNy4wNDk4OCA4LjQ3OTE3SDMuMDgzMTdDMi4yMzI5NCA4LjQ3OTE3IDEuNTQxNSA5LjE3MDYgMS41NDE1IDEwLjAyMDhWMTQuNjQ1OEMxLjU0MTUgMTUuNDk2MSAyLjIzMjk0IDE2LjE4NzUgMy4wODMxNyAxNi4xODc1Wk0zLjA4MzE3IDEwLjAyMDhINy4wNDk4OEM3LjYzODAyIDEwLjAyMDggOC4xNjYwNSAxMC4zNDY5IDguNDI4OSAxMC44NzI2TDguNzczNDYgMTEuNTYyNUg1LjM5NTY3VjEzLjEwNDJIMTAuMDMxNUMxMC4xNSAxMy4xMDI1IDEwLjI2NjYgMTMuMDczNSAxMC4zNzIyIDEzLjAxOTRMMTAuMzc0NSAxMy4wMTg2TDEwLjM3NzYgMTMuMDE3MUgxMC4zNzk5TDEwLjM4MTQgMTMuMDE2M0gxMC4zODQ1TDEwLjM4NTMgMTMuMDE1NUMxMC4zOTIyIDEzLjAxNzggMTAuMzg3NiAxMy4wMTQ3IDEwLjM4NzYgMTMuMDE0N0MxMC4zOTUzIDEzLjAxNDcgMTAuMzg5MSAxMy4wMTQgMTAuMzg5MSAxMy4wMTRIMTAuMzg5OUwxMC4zOTE0IDEzLjAxMzJMMTAuMzkzOCAxMy4wMTI0TDEwLjM5NTMgMTMuMDExN0wxMC4zOTY4IDEzLjAxMDlMMTAuMzk5MSAxMy4wMTAxTDEwLjQwMDcgMTMuMDA5NEMxMC40MDMgMTMuMDA5NCAxMC40MDE1IDEzLjAwODYgMTAuNDAyMiAxMy4wMDg2TDEwLjQwNDUgMTMuMDA3TDEwLjQwNjEgMTMuMDA2M0wxMC40MDc2IDEzLjAwNTVMMTAuNDA5OSAxMy4wMDQ3TDEwLjQxMTUgMTMuMDA0SDEwLjQxMjNMMTAuNDEzOCAxMy4wMDMyTDEwLjQxNjEgMTMuMDAyNEwxMC40MTc3IDEzLjAwMTZDMTAuNDI0NiAxMy4wMDA5IDEwLjQyIDEzLjAwMDkgMTAuNDIgMTMuMDAwOUwxMC40MjE1IDEzLjAwMDFDMTAuNDUxMSAxMi45ODIgMTAuNDc5NCAxMi45NjE5IDEwLjUwNjMgMTIuOTRMMTMuNzAyMiAxMC4zODMxQzEzLjkwNDEgMTAuMjIyOCAxNC4xODI0IDEwLjE3MjcgMTQuNDI2OCAxMC4yNTQ0TDE0Ljg1NjEgMTAuMzk3OEwxMS42NzAzIDE0LjExNTVDMTEuNTIzNyAxNC4yODE5IDExLjM0MzQgMTQuNDE1MiAxMS4xNDE0IDE0LjUwNjZDMTAuOTM5NCAxNC41OTggMTAuNzIwMyAxNC42NDU1IDEwLjQ5ODYgMTQuNjQ1OEgzLjA4MzE3VjEwLjAyMDhaTTEyLjMzMzIgMS41NDE2N0gxMi4zMjAxQzEyLjE5NDQgMS41NDMyMSAxMS41NDQ2IDEuNTcxNzMgMTAuNzkxNSAyLjA4NTFDMTAuMDU4NCAxLjU4NTYgOS40MjQwNSAxLjU0NTUyIDkuMjc0NSAxLjU0MjQ0TDkuMjUxMzggMS41NDE2N0g5LjI0ODNDOC42MzA4NiAxLjU0MTY3IDguMDQ5NjUgMS43ODI5NCA3LjYxNDkgMi4yMTg0NkM3LjE3ODYxIDIuNjU1NTIgNi45MzczNCAzLjIzNTk2IDYuOTM3MzQgMy44NTQxN0M2LjkzNzM0IDQuNDcyMzcgNy4xNzg2MSA1LjA1MjgxIDcuNjAxMDIgNS40NzZMMTAuMjMyNiA4LjI0MDIxQzEwLjMwNTEgOC4zMTUzNyAxMC4zOTE5IDguMzc1MTQgMTAuNDg3OSA4LjQxNTk1QzEwLjU4NCA4LjQ1Njc1IDEwLjY4NzMgOC40Nzc3NSAxMC43OTE3IDguNDc3NjhDMTAuODk2IDguNDc3NjEgMTAuOTk5MyA4LjQ1NjQ3IDExLjA5NTMgOC40MTU1M0MxMS4xOTEzIDguMzc0NTkgMTEuMjc4MSA4LjMxNDcgMTEuMzUwNCA4LjIzOTQ0TDEzLjk2ODEgNS40ODkxQzE0LjQwNTIgNS4wNTI4MSAxNC42NDU3IDQuNDcyMzcgMTQuNjQ1NyAzLjg1NDE3QzE0LjY0NTcgMy4yMzU5NiAxNC40MDQ0IDIuNjU1NTIgMTMuOTY4OSAyLjIxOTIzQzEzLjc1NDggMi4wMDM4OCAxMy41MDAxIDEuODMzMTIgMTMuMjE5NiAxLjcxNjgyQzEyLjkzOTEgMS42MDA1MiAxMi42Mzg0IDEuNTQwOTkgMTIuMzM0NyAxLjU0MTY3SDEyLjMzMzJaTTEzLjEwNCAzLjg1NDE3QzEzLjEwNCA0LjA1OTk4IDEzLjAyMzggNC4yNTM0NiAxMi44NjQzIDQuNDEzMDJMMTAuNzkxNSA2LjU5MDYyTDguNzA0ODYgNC4zOTkxNEM4LjU1OTE3IDQuMjUzNDYgOC40NzkgNC4wNTk5OCA4LjQ3OSAzLjg1NDE3QzguNDc5IDMuNjQ4MzUgOC41NTkxNyAzLjQ1NDg3IDguNzA1NjMgMy4zMDg0MkM4Ljg0NTE3IDMuMTY2ODQgOS4wMzQ4OCAzLjA4NTk3IDkuMjMzNjUgMy4wODMzM0M5LjI1MjkyIDMuMDg0MSA5LjYyMDYxIDMuMTA4IDEwLjA1NjEgMy40NTcxOUMxMC4xMTgzIDMuNTA3NTUgMTAuMTgxOCAzLjU2NDU5IDEwLjI0NjUgMy42MjgzMUwxMC43OTE1IDQuMTczMjlMMTEuMzM2NSAzLjYyODMxQzExLjQwMTIgMy41NjQ1OSAxMS40NjQ3IDMuNTA3NTUgMTEuNTI2OSAzLjQ1NzE5QzExLjkzNDYgMy4xMjk1OCAxMi4yNzkyIDMuMDg4NzMgMTIuMzM3OCAzLjA4NDFDMTIuNTQwNSAzLjA4NTE2IDEyLjczNDYgMy4xNjYwMyAxMi44NzgxIDMuMzA5MTlDMTMuMDIzOCAzLjQ1NDg3IDEzLjEwNCAzLjY0ODM1IDEzLjEwNCAzLjg1NDE3WiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+Cg==);
  background-size: contain;
  background-repeat: no-repeat;
}

.button--donate-cyan {
  background-color: #00bed6;
  padding: 15px 30px;
  border: 1px solid #00bed6;
  border-radius: 999px;
  color: #000;
}

.button--donate-cyan::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOSAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMuMDgzMTcgMTYuMTg3NUgxMC40OTg2QzEwLjk0MzQgMTYuMTg3NSAxMS4zODI5IDE2LjA5MTIgMTEuNzg3IDE1LjkwNTRDMTIuMTkxMSAxNS43MTk1IDEyLjU1MDIgMTUuNDQ4NCAxMi44Mzk2IDE1LjExMDZMMTYuNzcyNCAxMC41MjI2QzE2Ljg1NDggMTAuNDI2NyAxNi45MTIzIDEwLjMxMjEgMTYuOTM5OCAxMC4xODg3QzE2Ljk2NzQgMTAuMDY1MyAxNi45NjQzIDkuOTM3MDcgMTYuOTMwNiA5LjgxNTIyQzE2Ljg5NjkgOS42OTMzNyAxNi44MzM4IDkuNTgxNjcgMTYuNzQ2OCA5LjQ4OTk2QzE2LjY1OTggOS4zOTgyNSAxNi41NTE2IDkuMzI5MzQgMTYuNDMxNyA5LjI4OTMxTDE0LjkxNDcgOC43ODM2NUMxNC41NDgxIDguNjY0MjYgMTQuMTU3NyA4LjYzNzE5IDEzLjc3ODEgOC43MDQ4MkMxMy4zOTg1IDguNzcyNDYgMTMuMDQxNSA4LjkzMjcxIDEyLjczODYgOS4xNzEzN0wxMC4yODM1IDExLjEzNDdMOS44MDc5MiAxMC4xODI3QzkuNTUzMTMgOS42Njk1NSA5LjE1OTczIDkuMjM3OTkgOC42NzIyOCA4LjkzNjkxQzguMTg0ODMgOC42MzU4MyA3LjYyMjgxIDguNDc3MjYgNy4wNDk4OCA4LjQ3OTE3SDMuMDgzMTdDMi4yMzI5NCA4LjQ3OTE3IDEuNTQxNSA5LjE3MDYgMS41NDE1IDEwLjAyMDhWMTQuNjQ1OEMxLjU0MTUgMTUuNDk2MSAyLjIzMjk0IDE2LjE4NzUgMy4wODMxNyAxNi4xODc1Wk0zLjA4MzE3IDEwLjAyMDhINy4wNDk4OEM3LjYzODAyIDEwLjAyMDggOC4xNjYwNSAxMC4zNDY5IDguNDI4OSAxMC44NzI2TDguNzczNDYgMTEuNTYyNUg1LjM5NTY3VjEzLjEwNDJIMTAuMDMxNUMxMC4xNSAxMy4xMDI1IDEwLjI2NjYgMTMuMDczNSAxMC4zNzIyIDEzLjAxOTRMMTAuMzc0NSAxMy4wMTg2TDEwLjM3NzYgMTMuMDE3MUgxMC4zNzk5TDEwLjM4MTQgMTMuMDE2M0gxMC4zODQ1TDEwLjM4NTMgMTMuMDE1NUMxMC4zOTIyIDEzLjAxNzggMTAuMzg3NiAxMy4wMTQ3IDEwLjM4NzYgMTMuMDE0N0MxMC4zOTUzIDEzLjAxNDcgMTAuMzg5MSAxMy4wMTQgMTAuMzg5MSAxMy4wMTRIMTAuMzg5OUwxMC4zOTE0IDEzLjAxMzJMMTAuMzkzOCAxMy4wMTI0TDEwLjM5NTMgMTMuMDExN0wxMC4zOTY4IDEzLjAxMDlMMTAuMzk5MSAxMy4wMTAxTDEwLjQwMDcgMTMuMDA5NEMxMC40MDMgMTMuMDA5NCAxMC40MDE1IDEzLjAwODYgMTAuNDAyMiAxMy4wMDg2TDEwLjQwNDUgMTMuMDA3TDEwLjQwNjEgMTMuMDA2M0wxMC40MDc2IDEzLjAwNTVMMTAuNDA5OSAxMy4wMDQ3TDEwLjQxMTUgMTMuMDA0SDEwLjQxMjNMMTAuNDEzOCAxMy4wMDMyTDEwLjQxNjEgMTMuMDAyNEwxMC40MTc3IDEzLjAwMTZDMTAuNDI0NiAxMy4wMDA5IDEwLjQyIDEzLjAwMDkgMTAuNDIgMTMuMDAwOUwxMC40MjE1IDEzLjAwMDFDMTAuNDUxMSAxMi45ODIgMTAuNDc5NCAxMi45NjE5IDEwLjUwNjMgMTIuOTRMMTMuNzAyMiAxMC4zODMxQzEzLjkwNDEgMTAuMjIyOCAxNC4xODI0IDEwLjE3MjcgMTQuNDI2OCAxMC4yNTQ0TDE0Ljg1NjEgMTAuMzk3OEwxMS42NzAzIDE0LjExNTVDMTEuNTIzNyAxNC4yODE5IDExLjM0MzQgMTQuNDE1MiAxMS4xNDE0IDE0LjUwNjZDMTAuOTM5NCAxNC41OTggMTAuNzIwMyAxNC42NDU1IDEwLjQ5ODYgMTQuNjQ1OEgzLjA4MzE3VjEwLjAyMDhaTTEyLjMzMzIgMS41NDE2N0gxMi4zMjAxQzEyLjE5NDQgMS41NDMyMSAxMS41NDQ2IDEuNTcxNzMgMTAuNzkxNSAyLjA4NTFDMTAuMDU4NCAxLjU4NTYgOS40MjQwNSAxLjU0NTUyIDkuMjc0NSAxLjU0MjQ0TDkuMjUxMzggMS41NDE2N0g5LjI0ODNDOC42MzA4NiAxLjU0MTY3IDguMDQ5NjUgMS43ODI5NCA3LjYxNDkgMi4yMTg0NkM3LjE3ODYxIDIuNjU1NTIgNi45MzczNCAzLjIzNTk2IDYuOTM3MzQgMy44NTQxN0M2LjkzNzM0IDQuNDcyMzcgNy4xNzg2MSA1LjA1MjgxIDcuNjAxMDIgNS40NzZMMTAuMjMyNiA4LjI0MDIxQzEwLjMwNTEgOC4zMTUzNyAxMC4zOTE5IDguMzc1MTQgMTAuNDg3OSA4LjQxNTk1QzEwLjU4NCA4LjQ1Njc1IDEwLjY4NzMgOC40Nzc3NSAxMC43OTE3IDguNDc3NjhDMTAuODk2IDguNDc3NjEgMTAuOTk5MyA4LjQ1NjQ3IDExLjA5NTMgOC40MTU1M0MxMS4xOTEzIDguMzc0NTkgMTEuMjc4MSA4LjMxNDcgMTEuMzUwNCA4LjIzOTQ0TDEzLjk2ODEgNS40ODkxQzE0LjQwNTIgNS4wNTI4MSAxNC42NDU3IDQuNDcyMzcgMTQuNjQ1NyAzLjg1NDE3QzE0LjY0NTcgMy4yMzU5NiAxNC40MDQ0IDIuNjU1NTIgMTMuOTY4OSAyLjIxOTIzQzEzLjc1NDggMi4wMDM4OCAxMy41MDAxIDEuODMzMTIgMTMuMjE5NiAxLjcxNjgyQzEyLjkzOTEgMS42MDA1MiAxMi42Mzg0IDEuNTQwOTkgMTIuMzM0NyAxLjU0MTY3SDEyLjMzMzJaTTEzLjEwNCAzLjg1NDE3QzEzLjEwNCA0LjA1OTk4IDEzLjAyMzggNC4yNTM0NiAxMi44NjQzIDQuNDEzMDJMMTAuNzkxNSA2LjU5MDYyTDguNzA0ODYgNC4zOTkxNEM4LjU1OTE3IDQuMjUzNDYgOC40NzkgNC4wNTk5OCA4LjQ3OSAzLjg1NDE3QzguNDc5IDMuNjQ4MzUgOC41NTkxNyAzLjQ1NDg3IDguNzA1NjMgMy4zMDg0MkM4Ljg0NTE3IDMuMTY2ODQgOS4wMzQ4OCAzLjA4NTk3IDkuMjMzNjUgMy4wODMzM0M5LjI1MjkyIDMuMDg0MSA5LjYyMDYxIDMuMTA4IDEwLjA1NjEgMy40NTcxOUMxMC4xMTgzIDMuNTA3NTUgMTAuMTgxOCAzLjU2NDU5IDEwLjI0NjUgMy42MjgzMUwxMC43OTE1IDQuMTczMjlMMTEuMzM2NSAzLjYyODMxQzExLjQwMTIgMy41NjQ1OSAxMS40NjQ3IDMuNTA3NTUgMTEuNTI2OSAzLjQ1NzE5QzExLjkzNDYgMy4xMjk1OCAxMi4yNzkyIDMuMDg4NzMgMTIuMzM3OCAzLjA4NDFDMTIuNTQwNSAzLjA4NTE2IDEyLjczNDYgMy4xNjYwMyAxMi44NzgxIDMuMzA5MTlDMTMuMDIzOCAzLjQ1NDg3IDEzLjEwNCAzLjY0ODM1IDEzLjEwNCAzLjg1NDE3WiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+Cg==);
  background-size: contain;
  background-repeat: no-repeat;
}

.button--cyan {
  background-color: #00bed6;
  color: #000000;
  padding: 15px 40px;
  border-radius: 999px;
  font-weight: bold;
}

.button--cyan-square {
  background-color: #00bed6;
  color: #000000;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 8px;
  border: none;
}

.button--cyan-square::after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxOCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuNzUgNi43NUwxNi43NSA2Ljc1TTE2Ljc1IDYuNzVMMTAuNzUgMTIuNzVNMTYuNzUgNi43NUwxMC43NSAwLjc1IiBzdHJva2U9IiM0QjRCNEIiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
  background-size: contain;
  background-repeat: no-repeat;
}

/** 
 * Stated below styles for the 'Terms of Use' page 
*/

.terms-title {
  font-size: clamp(2.5rem, 2.3284rem + 0.7323vw, 3.5rem);
}

.terms-date {
  font-size: 1rem;
  margin-top: 5rem;
}

.terms-paragraph,
.terms-list {
  font-size: clamp(1rem, 0.9657rem + 0.1465vw, 1.2rem);
}

.terms-list li {
  margin-bottom: 0.5rem;
}

.wp-block-list.en-version.terms-list > li > ul.wp-block-list,
.wp-block-list.es-version.terms-list > li > ul.wp-block-list {
  list-style-type: disc;
}

.terms-list a {
  color: #000;
}

.donation {
  margin-top: clamp(7rem, 6.3135rem + 2.9291vw, 11rem);
  margin-bottom: clamp(5rem, 3.627rem + 5.8581vw, 13rem);
}

.donation__container {
  grid-column: 1/-1;
}

@media (min-width: 992px) {
  .donation__container {
    grid-column: 2/10;
  }
}

.donation__heading {
  grid-column: 2/10;
  font-size: clamp(1.5rem, 1.3284rem + 0.7323vw, 2.5rem);
  font-weight: bold;
  line-height: 1.2;
  color: #3f3f3f;
  text-align: center;
  margin-top: clamp(3.813rem, 2.0647rem + 7.4596vw, 14rem);
  margin-bottom: 1.1rem;
}

.donation__paragraph {
  grid-column: 2/10;
  font-size: clamp(1rem, 0.9142rem + 0.3661vw, 1.5rem);
  text-align: center;
  margin: 0 auto clamp(3rem, 2.8284rem + 0.7323vw, 4rem);
}

.donation .bilingual-paragraph-container {
  margin-block-start: 0px !important;
}

.donation__receipt {
  grid-column: 1/-1;
  justify-self: end;
  margin-top: clamp(4rem, 3.3135rem + 2.9291vw, 8rem) !important;
  margin-bottom: 4rem !important;
}

.donation__statement {
  margin-top: 10rem;
}

.charitable-donation-form.charitable-same-page-form {
  background-color: #f8f7f7;
  width: 100%;
  padding: 4rem clamp(1rem, 0.4851rem + 2.1968vw, 4rem) 1rem;
  color: #000;
}

.charitable-field-label {
  visibility: hidden !important;
}

/* Ensure No-JS messages stay hidden when JS is actually active */

.show-if-no-js,
.charitable-notice-errors {
  display: none !important;
}

/* If the error persists, the plugin might be failing its own JS check. 
   This usually resolves once the infinite loop is removed. */

/* ==========================================================================
   WP Charitable  Recurring Options Styling
   ========================================================================== */

.recurring-donation-options {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 400px !important;
  list-style: none !important;
  padding: 5px !important;
  /* 1. The "Single Unit" Rectangular Border */
  border: 1px solid #d1d1d1 !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  background-color: #ffffff !important;
}

@media (min-width: 768px) {
  .recurring-donation-options {
    justify-content: flex-start !important;
    margin: 0 0 2.5rem 0 !important;
  }
}

.recurring-donation-options .recurring-donation-option {
  flex: 1 !important;
  display: flex !important;
  margin: 0 !important;
  /* 3. The subtle separator line */
}

.recurring-donation-options .recurring-donation-option:first-child {
  border-right: 1px solid #d1d1d1 !important;
}

.recurring-donation-options .recurring-donation-option label {
  flex: 1 !important;
  padding: 1.25rem 1.5rem !important;
  font-weight: bold !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  text-align: center !important;
  transition: all 0.2s ease-in-out !important;
  background-color: #ffffff !important;
  color: #333 !important;
  display: block !important;
  border: none !important;
}

.recurring-donation-options .recurring-donation-option label input[type=radio] {
  display: none !important;
}

.recurring-donation-options .recurring-donation-option label:hover {
  background-color: #f9f9f9 !important;
}

.recurring-donation-options .recurring-donation-option {
  /* 2. The Active State Style */
}

.recurring-donation-options .recurring-donation-option.selected label {
  background-color: #00bed6 !important;
  color: #000000 !important;
}

/* ==========================================================================
   WP Charitable Amounts
   ========================================================================== */

.charitable-donation-form .recurring-donation .recurring-donation-option.selected > label {
  color: #000 !important;
  background-color: #00bed6 !important;
}

.charitable-donation-form .donation-amounts {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  gap: 1.5rem !important;
  margin-top: 3rem !important;
}

.charitable-visual-donation-form .donation-amount.suggested-donation-amount {
  background-color: transparent !important;
  border: 1px solid #d6d6d6 !important;
  width: 100% !important;
  max-width: 250px !important;
  margin: 0 auto !important;
  padding: 2rem 1rem !important;
  cursor: pointer !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
}

@media (min-width: 650px) {
  .charitable-visual-donation-form .donation-amount.suggested-donation-amount {
    max-width: none !important;
    margin: 0 !important;
  }
}

.charitable-visual-donation-form .donation-amount.suggested-donation-amount {
  /* 2. Center the content vertically inside the square */
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.charitable-visual-donation-form .donation-amounts .donation-amount > label {
  flex-direction: column !important;
  text-align: center;
}

.charitable-visual-donation-form .donation-amounts .donation-amount > label .amount {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  color: #333;
}

.recurring-details {
  display: none;
}

.charitable-visual-donation-form .donation-amounts .donation-amount > label .description {
  font-size: clamp(1rem, 0.9828rem + 0.0732vw, 1.1rem);
  font-weight: normal !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  color: #333 !important;
}

.charitable-donation-form .donation-amounts .donation-amount.selected {
  background-color: #00bed6 !important;
  border-color: #00bed6 !important;
}

.donation-amount.custom-donation-amount {
  display: none;
}

/* ==========================================================================
   WP Charitable Custom Grid Layout (SCSS with !important overrides)
   ========================================================================== */

/* Consolidated SCSS for WP Charitable */

@media (min-width: 768px) {
  .charitable-form-fields .charitable-fields-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
    align-items: end !important;
  }
  .charitable-form-fields .donation__name {
    grid-column: span 4 !important;
  }
  .charitable-form-fields .donation__email {
    grid-column: span 2 !important;
  }
  .charitable-form-fields .charitable-donor-name-fields-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
  }
  .charitable-form-fields #charitable-gateway-fields:not(:has(#charitable-gateway-selector)) .charitable-gateway-fields {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    /* Defining specific row behaviors helps alignment */
    grid-template-rows: auto auto !important;
    gap: 10px 20px !important;
    align-items: start !important;
  }
  .charitable-form-fields #charitable-gateway-fields:not(:has(#charitable-gateway-selector)) .charitable-gateway-fields style {
    display: none !important;
  }
  .charitable-form-fields #charitable-gateway-fields:not(:has(#charitable-gateway-selector)) .charitable-gateway-fields #charitable_field_cc_name {
    grid-column: 1 !important;
    grid-row: 1/span 2 !important;
    margin: 0 !important;
    align-self: end !important;
  }
  .charitable-form-fields #charitable-gateway-fields:not(:has(#charitable-gateway-selector)) .charitable-gateway-fields label[for=charitable_stripe_card_field] {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    align-self: end !important;
  }
  .charitable-form-fields #charitable-gateway-fields:not(:has(#charitable-gateway-selector)) .charitable-gateway-fields #charitable_stripe_card_field {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0 !important;
  }
  .charitable-form-fields #charitable-gateway-fields:not(:has(#charitable-gateway-selector)) .charitable-gateway-fields #charitable_stripe_card_errors {
    grid-column: span 2 !important;
  }
  .charitable-form-fields .charitable-payment-section-fieldset,
  .charitable-form-fields .donation__amount,
  .charitable-form-fields .charitable-form-divider {
    grid-column: span 6 !important;
  }
}

@media (max-width: 767px) {
  .charitable-form-fields .charitable-fields-grid,
  .charitable-form-fields .charitable-donor-name-fields-container,
  .charitable-form-fields #charitable-gateway-fields-stripe {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
  }
}

.charitable-visual-donation-form .charitable-fieldset.charitable-donor-name-side-by-side .charitable-donor-name-fields-container .charitable-form-field {
  max-width: 100% !important;
  width: auto !important;
}

.charitable-visual-donation-form .charitable-form-field input[type=text] {
  width: 100% !important;
}

.charitable-visual-donation-form input[type=text]:focus,
.charitable-visual-donation-form input[type=email]:focus {
  outline: none !important; /* Removes the default browser ring */
  border: 1px solid #00bed6 !important; /* Adds your custom border */
  transition: all 0.3s ease-in-out;
}

.custom-donation-amount {
  display: none !important;
}

.charitable-button {
  background-color: #00bed6 !important;
  color: #000000 !important;
  padding: 15px 60px !important;
  border-radius: 999px !important;
  font-weight: bold !important;
  transition: all 0.3s ease-in-out;
}

.charitable-fieldset input {
  background-color: #ffffff !important;
  border: 1px solid #d1d1d1 !important;
  padding: 1rem !important;
  font-size: 1rem !important;
  border-radius: 4px !important;
  outline: none !important;
  transition: border-color 0.3s ease !important;
}

#charitable_field_first_name_element,
#charitable_field_last_name_element,
#charitable_field_email_element,
#charitable_field_cc_name_element {
  padding: 1rem !important;
}

fieldset.charitable-payment-section-fieldset .charitable-gateway-fields #charitable_stripe_card_field {
  min-height: 3.5rem !important;
}

.error__404 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
}

.error__404 h1 {
  font-size: clamp(1rem, 0.6568rem + 1.4645vw, 3rem);
}

/*# sourceMappingURL=style-theme-main.css.map*/