/** Shopify CDN: Minification failed

Line 19:2 Unexpected "{"
Line 19:3 Expected identifier but found "%"
Line 19:35 Unexpected "{"
Line 19:36 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.banner {
}
.banner__media-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  {% comment %} aspect-ratio: 3/4; {% endcomment %}
  overflow: hidden;
}
.banner.fullbleed .banner__media-wrapper {
  height: calc(100svh - 47px);
  width: 100%;
}
.banner:not(.fullbleed) .banner__media-wrapper {
  border-radius: 0.5rem;
}
.banner__media {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-linen);
  font-family: var(--font-serif);
  font-size: var(--font-size-xxl);
}
.banner__media-wrapper.darken .banner__overlay {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.15);
}
.banner__overlay .fade-out {
  animation-name: banner-overlay-fade-out;
  animation-duration: 1s;
  animation-delay: 5s;
  animation-fill-mode: forwards;
}
@keyframes banner-overlay-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.banner__content {
  position: relative;
  z-index: 2;
  color: var(--color-linen);
  font-family: var(--font-serif);
  font-size: var(--font-size-xxl);
}
.banner__button {
  position: absolute;
  z-index: 1;
  bottom: 2rem;
  color: var(--color-linen);
  border-color: var(--color-linen);
  opacity: 0;
  animation-name: banner-button-fade-in;
  animation-duration: 1s;
  animation-delay: 5s;
  animation-fill-mode: forwards;
}
@keyframes banner-button-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.banner__button:hover {
  color: var(--color-linen);
  background-color: var(--color-black);
  border-color: var(--color-black);
}
@media screen and (min-width: 600px) {
  .banner__media-wrapper {
    aspect-ratio: 16/9;
    height: auto;
  }
}
.bloom-step-graphics {
  display: flex;
  justify-content: center;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.bloom-step-graphics > * {
  width: 100%;
  display: flex;
  justify-content: center;
}
.bloom-step-graphics__1 svg,
.bloom-step-graphics__2 svg,
.bloom-step-graphics__3 svg {
  width: 62px;
  margin: 0 1rem;
}
.bloom-step-graphics__plus,
.bloom-step-graphics__equals {
  width: 13px;
}
.bloom-step-graphics__plus svg,
.bloom-step-graphics__equals svg {
  width: 13px;
}
.bloom-step-text {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  flex-direction: row;
  font-size: var(--font-size-sm);
  letter-spacing: 0;
  gap: 12px;
}
.bloom-step-text > * {
  width: calc(88px + 6rem);
}
@media screen and (max-width: 599px) {
  .bloom-step-text br {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .bloom-step-graphics {
    max-width: none;
  }
  .bloom-step-graphics > * {
    width: auto;
  }
  .bloom-step-graphics__1 svg,
  .bloom-step-graphics__2 svg,
  .bloom-step-graphics__3 svg {
    width: 88px;
    margin: 0 3rem;
  }
  .bloom-step-text {
    flex-direction: row;
    font-size: var(--font-size-sm);
    gap: 12px;
  }
  .bloom-step-text {
    max-width: none;
    justify-content: center;
  }
  .bloom-step-text > * {
    width: calc(88px + 6rem);
  }
    
}
.charity-groups {
}
.charity-group img {
  display: block;
  border-radius: 0.5rem;
  object-fit: cover;
  aspect-ratio: 1;
}
.charity-group__title {
  font-family: var(--font-sans);
  margin: 0.9rem 0 0.8rem 0;
}
.charity-group .accordion-btn {
  position: relative;
  padding: 0.5em 0;
  border-top: 1px solid var(--color-black);
  width: 100%;
  text-align: left;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
}
.charity-group .accordion-btn:before,
.charity-group .accordion-btn:after {
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  content: "";
  width: 12px;
  border-top: 1px solid var(--color-black);
  transition: transform 0.3s;
}
.charity-group .accordion-btn:after {
  transform: rotate(90deg);
}
.charity-group .accordion.open .accordion-btn:before {
  transform: rotate(45deg);
}
.charity-group .accordion.open .accordion-btn:after {
  transform: rotate(135deg);
}
.charity-group .accordion-content {
  border-bottom: 1px solid var(--color-black);
  font-size: var(--font-size-sm);
}
.charity-group .accordion-content ul {
  padding: 0;
  margin: 0 0 1rem 1rem;
  list-style: none;
}
.charity-group .accordion-content li + li {
  margin-top: 0.7em;
}
.charity-header {
  background-repeat: no-repeat;
  background-size: cover;
}
.charity-feature-img {
  display: block;
  aspect-ratio: 3/2;
  border-radius: 0.5rem;
  object-fit: cover;
}
.charity .metafield-rich_text_field > *:last-child {
  margin-bottom: 0;
}
.charity-logo-img {
  width: 150px;
}
.charity-statistics {
  background: white;
}
.charity-statistics .grid {
  max-width: 20rem;
  row-gap: 2rem;
}
.charity-statistic svg {
  display: block;
  margin: 0 auto 1rem;  
}
.charity-statistic:nth-child(1) svg {
  width: 20px;
}
.charity-statistic:nth-child(2) svg {
  width: 19px;
}
.charity-statistic:nth-child(3) svg {
  width: 23px;
}
@media screen and (min-width:600px) {
  .charity-logo-img {
    width: 250px;
  }
}
@media screen and (min-width:768px) {
  .charity-header {
    padding-top: 2rem;
  }
  .charity-statistics {
    font-size: var(--font-size-lg);
  }
  .charity-statistics .grid {
    max-width: 58rem;
    gap: 3rem;
  }
  .charity-statistic svg {
    margin-bottom: 1.5rem;  
  }
  .charity-statistic:nth-child(1) svg {
    width: 25px;
  }
  .charity-statistic:nth-child(2) svg {
    width: 23px;
  }
  .charity-statistic:nth-child(3) svg {
    width: 28px;
  }
}
.form-row + * {
  margin-top: var(--col-gap);
}
.form-row:has(input[type=checkbox]) + .form-row:has(input[type=checkbox]) {
  margin-top: 0;
}
.faq {
  padding: 0.7rem 0;
}
.faq + .faq {
  border-top: 1px solid var(--color-black);
}
.faq .accordion-btn {
  position: relative;
  width: 100%;
  padding: 0 2rem 0 0;
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  text-align: left;
}
.faq .accordion-btn:before,
.faq .accordion-btn:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  display: block;
  width: 15px;
  border-top: 1px solid var(--color-black);
  transition: transform var(--animation--transition-regular);
}
.faq .accordion-btn:before {
  transform: rotate(90deg);
}
.faq.open .accordion-btn:before {
  transform: rotate(135deg);
}
.faq.open .accordion-btn:after {
  transform: rotate(45deg);
}
.heading-section+.faqs-section > .block-gap {
  margin-top: 1rem;
}
.heading-section + .text-section .block-gap {
  margin-top: 0;
}
.image-grid {
  display: flex;
  gap: var(--col-gap);
}
.image-grid__image {
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
}
.image-grid__image > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-carousel {
  padding: 0 var(--col-gap) 30px var(--col-gap);
}
.logo-carousel__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 100 / 35;
}
.logo-carousel__image > * {
  width: 50%;
  height: 100%;
  object-fit: contain;
}
.logo-carousel__image .ar-3 {
  width: 50%;
}
.logo-carousel__image .ar-2 {
  width: 45%;
}
.logo-carousel__image .ar-1 {
  width: 40%;
}
.logo-carousel__image .ar-0 {
  width: 35%;
}
@media only screen and (max-width:600px) {
  .logo-carousel__image > * {
    width: 65%;
  }
  .logo-carousel__image .ar-3 {
    width: 65%;
  }
  .logo-carousel__image .ar-2 {
    width: 62%;
  }
  .logo-carousel__image .ar-1 {
    width: 60%;
  }
  .logo-carousel__image .ar-0 {
    width: 58%;
  }
}
.blog .grid {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .blog .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .blog .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.text-section + .button-section .block-gap {
  margin-top: 2rem;
}

/* CSS from snippet stylesheet tags */
.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  font-size: var(--font-size-sm)
}
.pagination li > a {
  text-decoration: none;
  color: var(--color-black)
}
.pagination li:not(:first-child):not(:last-child) > a {
  padding: 0 1em;
}