/*!**********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js!./css/main.scss ***!
  \**********************************************************************************************************************************************************************************************************/
.cursor-pointer {
  cursor: url("/img/cursor.svg") 4 5, url("/img/cursor.png") 4 5, pointer;
}

*[data-scroll-animation=words-fade] {
  opacity: 0;
}

.seed {
  position: fixed;
  right: clamp(1.5rem, 5vw, 3rem);
  bottom: clamp(1.5rem, 5vw, 3rem);
  z-index: 50;
  overflow: visible;
}
.seed--close svg {
  width: clamp(30px, 5vw, 60px) !important;
  transform-origin: center center;
}
.seed--close:hover svg, .seed--close:focus svg {
  animation: spin 0.2s ease !important;
}
.seed svg {
  display: block;
  height: auto;
  overflow: visible;
  transition: transform 0.3s cubic-bezier(0.4, 0.7, 0.3, 1);
  width: clamp(80px, 10vw, 120px);
}
.seed svg path {
  fill: #1b1b1b;
}
.seed:hover svg, .seed:focus svg {
  animation: seed-wiggle 0.5s ease;
}

.seed[data-scroll-animation=seed-reveal] {
  transform: translateY(calc(100% + 3rem));
  opacity: 1;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.37, 0, 0.63, 1);
}
.seed[data-scroll-animation=seed-reveal].is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes seed-wiggle {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(8deg);
  }
  45% {
    transform: rotate(-8deg);
  }
  60% {
    transform: rotate(8deg);
  }
  75% {
    transform: rotate(-4deg);
  }
  85% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
h1,
h2,
h3,
h4 {
  margin: 0;
}

h1 a,
h2 a,
h3 a,
h4 a {
  text-decoration: none;
}

blockquote {
  margin: 0;
}

a {
  text-decoration: underline;
  color: inherit;
}

@font-face {
  font-family: "Ivory LL Sub";
  src: url("/fonts/IvoryLLSub-Regular.woff2") format("woff2"), url("/fonts/IvoryLLSub-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ivory LL Sub";
  src: url("/fonts/IvoryLLSub-Italic.woff2") format("woff2"), url("/fonts/IvoryLLSub-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Ivory LL Web";
  src: url("/fonts/IvoryLLWeb-Regular.woff2") format("woff2"), url("/fonts/IvoryLLWeb-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ivory LL Web";
  src: url("/fonts/IvoryLLWeb-Italic.woff2") format("woff2"), url("/fonts/IvoryLLWeb-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Season Sans";
  src: url("/fonts/SeasonSans-Regular.woff2") format("woff2"), url("/fonts/SeasonSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Season Sans";
  src: url("/fonts/SeasonSans-RegularItalic.woff2") format("woff2"), url("/fonts/SeasonSans-RegularItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Season Sans";
  src: url("/fonts/SeasonSans-Medium.woff2") format("woff2"), url("/fonts/SeasonSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Season Sans";
  src: url("/fonts/SeasonSans-MediumItalic.woff2") format("woff2"), url("/fonts/SeasonSans-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
/* Simple List */
.simple_list {
  list-style-type: none;
  padding: 0;
}

.simple_list li {
  margin-bottom: 0em;
}

.simple_list li a {
  font-weight: bold;
}

/* Numbered List */
.numbered_list {
  list-style-type: decimal-leading-zero;
  list-style-position: outside;
  padding-left: 1.5em;
}

.numbered_list li {
  margin-bottom: 0.5em;
}

.numbered_list li a {
  font-weight: bold;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.color-black {
  color: #1b1b1b;
}

.color-white {
  color: #F2F1ED;
}

.color-primary {
  color: #73c5eb;
}

.color-secondary {
  color: #E2B6B6;
}

.link-underline {
  text-decoration: underline !important;
  text-underline-offset: 0.2em;
}

.link-underline_hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.link-underline_hover:hover {
  text-decoration: none;
}

.link-no_underline {
  text-decoration: none;
}

.opacity-10 {
  opacity: 0.1;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-80 {
  opacity: 0.8;
}
.opacity-90 {
  opacity: 0.9;
}
.opacity-100 {
  opacity: 1;
}

.mt-0 {
  margin-top: clamp(0rem, 0vw + 0rem, 0rem) !important;
}

.mr-0 {
  margin-right: clamp(0rem, 0vw + 0rem, 0rem) !important;
}

.mb-0 {
  margin-bottom: clamp(0rem, 0vw + 0rem, 0rem) !important;
}

.ml-0 {
  margin-left: clamp(0rem, 0vw + 0rem, 0rem) !important;
}

.mx-0 {
  margin-left: clamp(0rem, 0vw + 0rem, 0rem) !important;
  margin-right: clamp(0rem, 0vw + 0rem, 0rem) !important;
}

.my-0 {
  margin-top: clamp(0rem, 0vw + 0rem, 0rem) !important;
  margin-bottom: clamp(0rem, 0vw + 0rem, 0rem) !important;
}

.pt-0 {
  padding-top: clamp(0rem, 0vw + 0rem, 0rem) !important;
}

.pr-0 {
  padding-right: clamp(0rem, 0vw + 0rem, 0rem) !important;
}

.pb-0 {
  padding-bottom: clamp(0rem, 0vw + 0rem, 0rem) !important;
}

.pl-0 {
  padding-left: clamp(0rem, 0vw + 0rem, 0rem) !important;
}

.px-0 {
  padding-left: clamp(0rem, 0vw + 0rem, 0rem) !important;
  padding-right: clamp(0rem, 0vw + 0rem, 0rem) !important;
}

.py-0 {
  padding-top: clamp(0rem, 0vw + 0rem, 0rem) !important;
  padding-bottom: clamp(0rem, 0vw + 0rem, 0rem) !important;
}

.mt-xs {
  margin-top: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
}

.mr-xs {
  margin-right: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
}

.mb-xs {
  margin-bottom: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
}

.ml-xs {
  margin-left: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
}

.mx-xs {
  margin-left: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
  margin-right: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
}

.my-xs {
  margin-top: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
  margin-bottom: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
}

.pt-xs {
  padding-top: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
}

.pr-xs {
  padding-right: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
}

.pb-xs {
  padding-bottom: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
}

.pl-xs {
  padding-left: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
}

.px-xs {
  padding-left: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
  padding-right: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
}

.py-xs {
  padding-top: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
  padding-bottom: clamp(0.25rem, 0.42vw + 0.17rem, 0.5rem) !important;
}

.mt-sm {
  margin-top: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
}

.mr-sm {
  margin-right: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
}

.mb-sm {
  margin-bottom: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
}

.ml-sm {
  margin-left: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
}

.mx-sm {
  margin-left: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
  margin-right: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
}

.my-sm {
  margin-top: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
  margin-bottom: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
}

.pt-sm {
  padding-top: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
}

.pr-sm {
  padding-right: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
}

.pb-sm {
  padding-bottom: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
}

.pl-sm {
  padding-left: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
}

.px-sm {
  padding-left: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
  padding-right: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
}

.py-sm {
  padding-top: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
  padding-bottom: clamp(0.5rem, 0.83vw + 0.33rem, 1rem) !important;
}

.mt-md {
  margin-top: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
}

.mr-md {
  margin-right: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
}

.mb-md {
  margin-bottom: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
}

.ml-md {
  margin-left: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
}

.mx-md {
  margin-left: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
  margin-right: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
}

.my-md {
  margin-top: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
  margin-bottom: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
}

.pt-md {
  padding-top: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
}

.pr-md {
  padding-right: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
}

.pb-md {
  padding-bottom: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
}

.pl-md {
  padding-left: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
}

.px-md {
  padding-left: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
  padding-right: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
}

.py-md {
  padding-top: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
  padding-bottom: clamp(1rem, 1.67vw + 0.67rem, 2rem) !important;
}

.mt-lg {
  margin-top: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
}

.mr-lg {
  margin-right: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
}

.mb-lg {
  margin-bottom: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
}

.ml-lg {
  margin-left: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
}

.mx-lg {
  margin-left: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
  margin-right: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
}

.my-lg {
  margin-top: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
  margin-bottom: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
}

.pt-lg {
  padding-top: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
}

.pr-lg {
  padding-right: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
}

.pb-lg {
  padding-bottom: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
}

.pl-lg {
  padding-left: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
}

.px-lg {
  padding-left: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
  padding-right: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
}

.py-lg {
  padding-top: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
  padding-bottom: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important;
}

.mt-xl {
  margin-top: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
}

.mr-xl {
  margin-right: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
}

.mb-xl {
  margin-bottom: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
}

.ml-xl {
  margin-left: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
}

.mx-xl {
  margin-left: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
  margin-right: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
}

.my-xl {
  margin-top: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
  margin-bottom: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
}

.pt-xl {
  padding-top: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
}

.pr-xl {
  padding-right: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
}

.pb-xl {
  padding-bottom: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
}

.pl-xl {
  padding-left: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
}

.px-xl {
  padding-left: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
  padding-right: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
}

.py-xl {
  padding-top: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
  padding-bottom: clamp(2rem, 3.33vw + 1.33rem, 4rem) !important;
}

.mt-2xl {
  margin-top: clamp(3rem, 5vw + 2rem, 6rem) !important;
}

.mr-2xl {
  margin-right: clamp(3rem, 5vw + 2rem, 6rem) !important;
}

.mb-2xl {
  margin-bottom: clamp(3rem, 5vw + 2rem, 6rem) !important;
}

.ml-2xl {
  margin-left: clamp(3rem, 5vw + 2rem, 6rem) !important;
}

.mx-2xl {
  margin-left: clamp(3rem, 5vw + 2rem, 6rem) !important;
  margin-right: clamp(3rem, 5vw + 2rem, 6rem) !important;
}

.my-2xl {
  margin-top: clamp(3rem, 5vw + 2rem, 6rem) !important;
  margin-bottom: clamp(3rem, 5vw + 2rem, 6rem) !important;
}

.pt-2xl {
  padding-top: clamp(3rem, 5vw + 2rem, 6rem) !important;
}

.pr-2xl {
  padding-right: clamp(3rem, 5vw + 2rem, 6rem) !important;
}

.pb-2xl {
  padding-bottom: clamp(3rem, 5vw + 2rem, 6rem) !important;
}

.pl-2xl {
  padding-left: clamp(3rem, 5vw + 2rem, 6rem) !important;
}

.px-2xl {
  padding-left: clamp(3rem, 5vw + 2rem, 6rem) !important;
  padding-right: clamp(3rem, 5vw + 2rem, 6rem) !important;
}

.py-2xl {
  padding-top: clamp(3rem, 5vw + 2rem, 6rem) !important;
  padding-bottom: clamp(3rem, 5vw + 2rem, 6rem) !important;
}

.mt-3xl {
  margin-top: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
}

.mr-3xl {
  margin-right: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
}

.mb-3xl {
  margin-bottom: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
}

.ml-3xl {
  margin-left: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
}

.mx-3xl {
  margin-left: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
  margin-right: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
}

.my-3xl {
  margin-top: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
  margin-bottom: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
}

.pt-3xl {
  padding-top: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
}

.pr-3xl {
  padding-right: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
}

.pb-3xl {
  padding-bottom: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
}

.pl-3xl {
  padding-left: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
}

.px-3xl {
  padding-left: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
  padding-right: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
}

.py-3xl {
  padding-top: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
  padding-bottom: clamp(4rem, 6.67vw + 2.67rem, 8rem) !important;
}

.display-xl {
  font-family: "Ivory LL Web";
  font-weight: 400;
  line-height: 1;
  font-style: normal;
  font-size: clamp(1.75rem, 7.08vw + 0.33rem, 6rem);
}

.display-lg {
  font-family: "Ivory LL Web";
  font-weight: 400;
  line-height: 1;
  font-style: normal;
  font-size: clamp(1.75rem, 3.33vw + 1.08rem, 3.75rem);
}

.display-md {
  font-family: "Ivory LL Web";
  font-weight: 400;
  line-height: 1;
  font-style: normal;
  font-size: clamp(1.5rem, 2.5vw + 1rem, 3rem);
}

.display-sm {
  font-family: "Ivory LL Web";
  font-weight: 400;
  line-height: 1;
  font-style: normal;
  font-size: clamp(1.25rem, 1.25vw + 1rem, 2rem);
  line-height: 1.125;
}

.display-xs {
  font-family: "Ivory LL Web";
  font-weight: 400;
  line-height: 1;
  font-style: normal;
  font-size: clamp(1rem, 0.83vw + 0.83rem, 1.5rem);
  line-height: 1.25;
}

.display-xxs {
  font-family: "Ivory LL Web";
  font-weight: 400;
  line-height: 1;
  font-style: normal;
  font-size: clamp(1rem, 0.42vw + 0.92rem, 1.25rem);
  line-height: 1.425;
}

.text-xs {
  font-family: "Season Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-style: normal;
  font-size: clamp(0.88rem, 0.21vw + 0.83rem, 1rem);
}

.text-sm {
  font-family: "Season Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-style: normal;
  font-size: clamp(1rem, 0.21vw + 0.96rem, 1.13rem);
}

.text-md {
  font-family: "Season Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-style: normal;
  font-size: clamp(1rem, 0.63vw + 0.88rem, 1.38rem);
}

.text-lg {
  font-family: "Season Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-style: normal;
  font-size: clamp(1.13rem, 0.63vw + 1rem, 1.5rem);
}

.text-xl {
  font-family: "Season Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-style: normal;
  font-size: clamp(1.13rem, 1.46vw + 0.83rem, 2rem);
  line-height: 1.125;
}

.text-2xl, .fui-heading-h2 {
  font-family: "Season Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-style: normal;
  font-size: clamp(1.5rem, 2.5vw + 1rem, 3rem);
  line-height: 1.125;
}

/* https://www.a11yproject.com/posts/how-to-hide-content/ */
.visually-hidden, .fui-fieldset .fui-legend, .fui-field.fui-type-single-line-text .fui-errors,
.fui-field.fui-type-multi-line-text .fui-errors,
.fui-field.fui-type-email .fui-errors,
.fui-field.fui-type-tel .fui-errors,
.fui-field.fui-type-url .fui-errors,
.fui-field.fui-type-number .fui-errors,
.fui-field.fui-type-date .fui-errors,
.fui-field.fui-type-time .fui-errors,
.fui-field.fui-type-name .fui-errors {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

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

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

.article_grid-inner {
  display: grid;
  grid-template-columns: 1fr;
}
.article_grid-inner .article_card {
  margin: -1px 0 0 0;
}
@media (min-width: 992px) {
  .article_grid-inner {
    grid-template-columns: 1fr 1fr;
  }
  .article_grid-inner .article_card {
    margin: -1px 0 0 -1px;
  }
}

@media (min-width: 992px) {
  .bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.bento > div {
  border: 1px solid #1b1b1b;
  border-radius: fluid(16px, 32px);
  padding: 1.5rem;
  height: 100%;
}
@media (min-width: 768px) {
  .bento > div {
    padding: 3rem;
  }
}
.bento > div:nth-child(1) {
  grid-area: 1/1/3/2;
  margin-right: -1px;
}
.bento > div:nth-child(2) {
  grid-area: 1/2/2/3;
}
.bento > div:nth-child(3) {
  grid-area: 2/2/3/3;
  margin-top: -1px;
}

.broadcast_card {
  aspect-ratio: 562/734;
  color: #F2F1ED;
  position: relative;
}
.broadcast_card-link {
  background: #1b1b1b;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  height: 100%;
  transition: border-radius 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .broadcast_card-link {
    padding: 2rem;
  }
}
.broadcast_card-link:hover {
  border-radius: 24%/19%;
}
@media (pointer: coarse), (hover: none) {
  .broadcast_card.is-active .broadcast_card-link {
    border-radius: 24%/19%;
  }
}
.broadcast_card h3 {
  margin-bottom: 0.25em;
}
.broadcast_card p {
  margin: 0;
}
.broadcast_card-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.01) translateZ(0);
  transform-origin: center;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
  will-change: transform, opacity, filter;
}
@media (pointer: fine), (hover: hover) {
  .broadcast_card-link:hover .broadcast_card-image {
    transform: scale(1.1) translateZ(0);
    opacity: 0.5;
    filter: blur(5px);
  }
}
@media (pointer: coarse), (hover: none) {
  .broadcast_card.is-active .broadcast_card-link .broadcast_card-image {
    transform: scale(1.1) translateZ(0);
    opacity: 0.5;
    filter: blur(5px);
  }
}
.broadcast_card-content, .broadcast_card-footer {
  z-index: 10;
}
.broadcast_card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.broadcast_card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 0 10%;
}
.broadcast_card-footer-item {
  background: rgba(242, 241, 237, 0.8);
  border-radius: 4em;
  color: #1b1b1b;
  display: inline-block;
  padding: 0.2em 1.25em;
  text-decoration: none;
  transition: background 0.3s ease;
}
.broadcast_card-footer-item--coming_soon {
  background: #73c5eb;
  color: #1b1b1b;
}
a:hover .broadcast_card-footer-item {
  background: #F2F1ED;
}

.category_nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.category_nav li {
  border-right: 1px solid currentColor;
  padding-right: 1rem;
}
.category_nav li:last-child {
  border-right: none;
  padding-right: 0;
}
.category_nav li a {
  opacity: 0.6;
  text-decoration: none;
}
.category_nav li a:hover, .category_nav li a.is-active {
  opacity: 1;
}

.broadcast_list {
  border-top: 1px solid currentColor;
}
.broadcast_list-item {
  position: relative;
  border-bottom: 1px solid currentColor;
}
.broadcast_list-item-inner {
  display: block;
}
.broadcast_list-item-inner .wrap {
  display: grid;
  gap: 1rem;
  grid-template: "a b c" auto "d d d" auto "e e e" auto/1fr 1fr 1fr;
  align-items: center;
  padding: clamp(1rem, 5vw, 2rem) clamp(1rem, 5vw, 3rem) clamp(1.5rem, 5vw, 2rem);
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .broadcast_list-item-inner .wrap {
    grid-template: "a b c d e" auto/1fr 1fr 1fr 3fr 2fr;
  }
}
.broadcast_list-item-date {
  grid-area: a;
}
.broadcast_list-item-category {
  grid-area: b;
}
.broadcast_list-item-duration {
  grid-area: c;
}
.broadcast_list-item-title {
  grid-area: d;
}
.broadcast_list-item-description {
  grid-area: e;
}
.broadcast_list-item p {
  margin: 0;
}
.broadcast_list-item a {
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (pointer: fine) {
  .broadcast_list-item a:hover {
    background: #B6DDE2;
    color: #1b1b1b;
  }
}
.broadcast_list-item-title {
  opacity: 0.6;
}
@media (pointer: fine) {
  a:hover .broadcast_list-item-title {
    opacity: 1;
  }
}
.broadcast_list-item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 20vw;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 20;
  visibility: hidden;
}
@media (max-width: 991px) {
  .broadcast_list-item-image {
    display: none !important;
  }
}
.broadcast_list-preview {
  position: fixed;
  left: 0;
  top: 0;
  width: 20vw;
  height: auto;
  max-height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform-origin: 50% 50%;
  pointer-events: none;
  z-index: 100;
  transition: visibility 0.15s ease;
}
.broadcast_list-preview.is-hidden {
  visibility: hidden;
}

.broadcast-load-more-sentinel {
  min-height: 1px;
}

.broadcast-load-more {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.broadcast-load-more--auto {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (pointer: coarse), (hover: none) {
  .broadcast_list-preview {
    display: none;
  }
  .broadcast_list-item-image {
    display: none;
  }
}
.card_slider {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: visible;
  position: relative;
}
.card_slider-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(1rem, 2vw, 2rem);
  overflow-x: auto;
  padding-left: calc(max(0px, (100vw - 1440px) / 2) + clamp(1rem, 5vw, 3rem));
  padding-right: clamp(1rem, 5vw, 3rem);
  padding-bottom: 2px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: calc(max(0px, (100vw - 1440px) / 2) + clamp(1rem, 5vw, 3rem));
  scroll-padding-right: clamp(1rem, 5vw, 3rem);
  width: 100%;
  /* Hide scrollbar for Chrome, Safari and Opera */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.card_slider-inner::-webkit-scrollbar {
  display: none;
}
.card_slider-inner > * {
  flex: 0 0 auto;
  margin-right: -1px;
  width: 80%;
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .card_slider-inner > * {
    width: 45%;
  }
}
@media (min-width: 992px) {
  .card_slider-inner > * {
    width: 36%;
  }
}
.card_slider_heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(0.5rem, 3vw, 1rem) !important;
}
.card_slider_heading h2 {
  margin: 0;
}
.card_slider_heading-arrows {
  display: flex;
  gap: 0.05rem;
}
@media (min-width: 992px) {
  .card_slider_heading-arrows {
    gap: 0.25rem;
  }
}
.card_slider-arrow {
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #1b1b1b;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.card_slider-arrow svg {
  width: clamp(1.25rem, 5vw, 2rem);
  height: auto;
}
.card_slider-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}
.card_slider-arrow--left svg {
  transform: rotate(180deg);
}

.carousel {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.carousel-item {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.5s ease;
  width: 100%;
}
.carousel-item.active {
  opacity: 1;
}
.carousel video,
.carousel img {
  border-radius: fluid(16px, 32px);
  border: 1px solid #1b1b1b;
  height: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0;
  width: 100%;
}

.columns {
  display: grid;
  grid-template-columns: 100%;
  gap: 2rem 6rem;
  width: 100%;
}
@media (min-width: 768px) {
  .columns--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.columns--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.columns--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.columns--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.columns .column {
  max-width: 100%;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .flex {
    flex-direction: row;
  }
}
.flex-item {
  --flex: 1 0 auto;
  flex: var(--flex);
}

.person_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.person_list-item {
  flex: 1 0 240px;
}
.person_list-item img {
  width: 100%;
  height: auto;
}
.person_list-item img[data-scroll-animation=image-unblur] {
  filter: blur(12px);
  opacity: 0.78;
  transition: filter 0.65s ease-out, opacity 0.65s ease-out;
  will-change: filter, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .person_list-item img[data-scroll-animation=image-unblur] {
    filter: none;
    opacity: 1;
    transition: none;
  }
}

.collage {
  display: block;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.37, 0, 0.63, 1);
}
.collage.is-loaded {
  opacity: 1;
}
.collage.is-loaded img {
  transform: translate(0, 0);
}
.collage img {
  height: 100%;
  width: auto;
}
.cta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.cta-text {
  flex: 1;
}
.cta-text p {
  margin-top: 0;
  margin-bottom: 0.5em;
}
.cta-text p:last-child {
  margin-bottom: 0;
}
.cta-text a {
  display: flex;
  align-items: center;
  gap: 1em;
  text-decoration: none;
  text-wrap: nowrap;
}
.cta-text a span {
  flex: 0 auto;
}
.cta-text a svg {
  width: 1.5em;
  height: auto;
  transition: transform 0.3s ease;
}
.cta-text a:hover svg {
  transform: translateX(0.5em);
}
.cta-image {
  display: none;
}
@media (min-width: 992px) {
  .cta-image {
    display: block;
  }
}
.cta-image img {
  max-width: 20vw;
  width: 100%;
  height: auto;
  margin-top: -50%;
}

.faq-heading {
  margin-bottom: 1rem;
}
.faq-item {
  padding: 0.75em 0;
}
.faq-item summary {
  cursor: s-resize;
  list-style: none;
}
.faq-item-answer {
  max-width: 68ch;
  margin-bottom: 2em;
}
.faq-item-answer > *:last-child {
  margin-bottom: 0;
}

.footer {
  background: #73c5eb center no-repeat;
  background-image: var(--background-image);
  background-size: cover;
}
.footer p {
  margin: 0;
}
.footer-logo {
  display: block;
  margin: 0 -1.5rem;
}
@media (max-width: 991px) {
  .footer-logo {
    margin: 0 -0.5rem;
  }
}
.footer-logo svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.footer-logo svg path {
  stroke: #1b1b1b;
  stroke-width: 0;
  transition: stroke-width 0.3s ease;
}
.footer-logo:hover svg path, .footer-logo:focus-within svg path {
  stroke-width: 1vw;
}
.footer-logo-desktop {
  display: none;
}
@media (min-width: 768px) {
  .footer-logo-desktop {
    display: block;
  }
}
.footer-logo-mobile {
  display: block;
}
@media (min-width: 768px) {
  .footer-logo-mobile {
    display: none;
  }
}
.footer-illustration img {
  display: block;
  width: clamp(100px, 15vw, 186px);
  height: auto;
  margin: 0 auto;
}
.footer-columns {
  display: grid;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fui-form-container {
  background: rgba(255, 255, 255, 0.025);
  border-radius: 1rem;
  margin: 0 0 4em;
  max-width: 1440px;
}
@media (min-width: 768px) {
  .fui-form-container {
    margin: 0 clamp(0.05rem, 2vw, 1.5rem) 4em;
  }
}
@media (min-width: 1200px) {
  .fui-form-container {
    border-radius: clamp(1rem, 5vw, 4rem);
  }
}
@media (min-width: 1480px) {
  .fui-form-container {
    margin: 0 auto 4em;
    padding: 0 auto;
  }
}
.fui-form-container .fui-page {
  margin: 0 auto;
  max-width: 1000px;
  padding: 1rem clamp(1rem, 5vw, 2rem) 2rem;
}
@media (min-width: 1200px) {
  .fui-form-container .fui-page {
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 1.5rem);
  }
}

.form-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  margin-bottom: 1rem;
}
.form-intro p {
  margin: 0;
}

.fui-captcha {
  margin-top: 2rem;
  text-align: center;
}

.fui-row,
.fui-type-checkboxes .fui-layout-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.fui-row-empty {
  display: none !important;
}

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

.fui-field.fui-type-single-line-text,
.fui-field.fui-type-multi-line-text,
.fui-field.fui-type-email,
.fui-field.fui-type-tel,
.fui-field.fui-type-url,
.fui-field.fui-type-number,
.fui-field.fui-type-date,
.fui-field.fui-type-time,
.fui-field.fui-type-name {
  position: relative;
  flex: 1 1 220px;
}
@media (min-width: 992px) {
  .fui-field.fui-type-single-line-text,
  .fui-field.fui-type-multi-line-text,
  .fui-field.fui-type-email,
  .fui-field.fui-type-tel,
  .fui-field.fui-type-url,
  .fui-field.fui-type-number,
  .fui-field.fui-type-date,
  .fui-field.fui-type-time,
  .fui-field.fui-type-name {
    width: calc(20% - 0.8rem);
  }
}
.fui-field.fui-type-single-line-text.is-active .fui-input::-moz-placeholder, .fui-field.fui-type-multi-line-text.is-active .fui-input::-moz-placeholder, .fui-field.fui-type-email.is-active .fui-input::-moz-placeholder, .fui-field.fui-type-tel.is-active .fui-input::-moz-placeholder, .fui-field.fui-type-url.is-active .fui-input::-moz-placeholder, .fui-field.fui-type-number.is-active .fui-input::-moz-placeholder, .fui-field.fui-type-date.is-active .fui-input::-moz-placeholder, .fui-field.fui-type-time.is-active .fui-input::-moz-placeholder, .fui-field.fui-type-name.is-active .fui-input::-moz-placeholder {
  color: #1b1b1b !important;
}
.fui-field.fui-type-single-line-text.is-active .fui-input,
.fui-field.fui-type-single-line-text.is-active .fui-input::placeholder,
.fui-field.fui-type-multi-line-text.is-active .fui-input,
.fui-field.fui-type-multi-line-text.is-active .fui-input::placeholder,
.fui-field.fui-type-email.is-active .fui-input,
.fui-field.fui-type-email.is-active .fui-input::placeholder,
.fui-field.fui-type-tel.is-active .fui-input,
.fui-field.fui-type-tel.is-active .fui-input::placeholder,
.fui-field.fui-type-url.is-active .fui-input,
.fui-field.fui-type-url.is-active .fui-input::placeholder,
.fui-field.fui-type-number.is-active .fui-input,
.fui-field.fui-type-number.is-active .fui-input::placeholder,
.fui-field.fui-type-date.is-active .fui-input,
.fui-field.fui-type-date.is-active .fui-input::placeholder,
.fui-field.fui-type-time.is-active .fui-input,
.fui-field.fui-type-time.is-active .fui-input::placeholder,
.fui-field.fui-type-name.is-active .fui-input,
.fui-field.fui-type-name.is-active .fui-input::placeholder {
  color: #1b1b1b !important;
}
.fui-field.fui-type-single-line-text.is-active .fui-field-container,
.fui-field.fui-type-multi-line-text.is-active .fui-field-container,
.fui-field.fui-type-email.is-active .fui-field-container,
.fui-field.fui-type-tel.is-active .fui-field-container,
.fui-field.fui-type-url.is-active .fui-field-container,
.fui-field.fui-type-number.is-active .fui-field-container,
.fui-field.fui-type-date.is-active .fui-field-container,
.fui-field.fui-type-time.is-active .fui-field-container,
.fui-field.fui-type-name.is-active .fui-field-container {
  background: #B6DDE2;
  color: #1b1b1b;
}
.fui-field.fui-type-single-line-text .fui-field-container,
.fui-field.fui-type-multi-line-text .fui-field-container,
.fui-field.fui-type-email .fui-field-container,
.fui-field.fui-type-tel .fui-field-container,
.fui-field.fui-type-url .fui-field-container,
.fui-field.fui-type-number .fui-field-container,
.fui-field.fui-type-date .fui-field-container,
.fui-field.fui-type-time .fui-field-container,
.fui-field.fui-type-name .fui-field-container {
  background: rgba(255, 255, 255, 0.025);
  border-radius: clamp(0.5rem, 5vw, 1rem);
  overflow: hidden;
  padding: 1.5em;
  height: 100%;
}
@media (min-width: 768px) {
  .fui-field.fui-type-single-line-text .fui-field-container,
  .fui-field.fui-type-multi-line-text .fui-field-container,
  .fui-field.fui-type-email .fui-field-container,
  .fui-field.fui-type-tel .fui-field-container,
  .fui-field.fui-type-url .fui-field-container,
  .fui-field.fui-type-number .fui-field-container,
  .fui-field.fui-type-date .fui-field-container,
  .fui-field.fui-type-time .fui-field-container,
  .fui-field.fui-type-name .fui-field-container {
    min-height: 10em;
  }
}
.fui-field.fui-type-single-line-text .fui-input,
.fui-field.fui-type-multi-line-text .fui-input,
.fui-field.fui-type-email .fui-input,
.fui-field.fui-type-tel .fui-input,
.fui-field.fui-type-url .fui-input,
.fui-field.fui-type-number .fui-input,
.fui-field.fui-type-date .fui-input,
.fui-field.fui-type-time .fui-input,
.fui-field.fui-type-name .fui-input {
  background: transparent;
  border: none;
  color: currentColor;
  width: 100%;
  padding: 0.25em 0;
}
.fui-field.fui-type-single-line-text .fui-input:focus-visible,
.fui-field.fui-type-multi-line-text .fui-input:focus-visible,
.fui-field.fui-type-email .fui-input:focus-visible,
.fui-field.fui-type-tel .fui-input:focus-visible,
.fui-field.fui-type-url .fui-input:focus-visible,
.fui-field.fui-type-number .fui-input:focus-visible,
.fui-field.fui-type-date .fui-input:focus-visible,
.fui-field.fui-type-time .fui-input:focus-visible,
.fui-field.fui-type-name .fui-input:focus-visible {
  outline: none;
}
.fui-field.fui-type-single-line-text .fui-input::-moz-placeholder, .fui-field.fui-type-multi-line-text .fui-input::-moz-placeholder, .fui-field.fui-type-email .fui-input::-moz-placeholder, .fui-field.fui-type-tel .fui-input::-moz-placeholder, .fui-field.fui-type-url .fui-input::-moz-placeholder, .fui-field.fui-type-number .fui-input::-moz-placeholder, .fui-field.fui-type-date .fui-input::-moz-placeholder, .fui-field.fui-type-time .fui-input::-moz-placeholder, .fui-field.fui-type-name .fui-input::-moz-placeholder {
  opacity: 0.4;
}
.fui-field.fui-type-single-line-text .fui-input::placeholder,
.fui-field.fui-type-multi-line-text .fui-input::placeholder,
.fui-field.fui-type-email .fui-input::placeholder,
.fui-field.fui-type-tel .fui-input::placeholder,
.fui-field.fui-type-url .fui-input::placeholder,
.fui-field.fui-type-number .fui-input::placeholder,
.fui-field.fui-type-date .fui-input::placeholder,
.fui-field.fui-type-time .fui-input::placeholder,
.fui-field.fui-type-name .fui-input::placeholder {
  opacity: 0.4;
}
.fui-field.fui-type-single-line-text.fui-error .fui-field-container,
.fui-field.fui-type-multi-line-text.fui-error .fui-field-container,
.fui-field.fui-type-email.fui-error .fui-field-container,
.fui-field.fui-type-tel.fui-error .fui-field-container,
.fui-field.fui-type-url.fui-error .fui-field-container,
.fui-field.fui-type-number.fui-error .fui-field-container,
.fui-field.fui-type-date.fui-error .fui-field-container,
.fui-field.fui-type-time.fui-error .fui-field-container,
.fui-field.fui-type-name.fui-error .fui-field-container {
  background: #E2B6B6;
  color: #1b1b1b;
}
.fui-label,
.fui-input {
  font-family: "Season Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-style: normal;
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 0.025em;
}

.fui-type-multi-line-text .fui-field-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fui-type-multi-line-text .fui-input-wrapper {
  flex: 1;
}
.fui-type-multi-line-text .fui-input-wrapper textarea {
  height: 100%;
}

.fui-alert {
  color: #B6DDE2;
  text-align: center;
  margin: 0 0 2rem;
}
.fui-alert.fui-alert-error {
  color: #E2B6B6;
}

.fui-type-checkboxes {
  width: 100%;
}

.fui-checkbox {
  background: rgba(255, 255, 255, 0.025);
  border-radius: clamp(0.5rem, 5vw, 1rem);
  flex: 1 1 160px;
  position: relative;
  overflow: hidden;
  width: calc(50% - 0.5rem);
}
@media (min-width: 768px) {
  .fui-checkbox {
    min-height: 10em;
  }
}
@media (min-width: 768px) {
  .fui-checkbox {
    width: calc(33% - 0.6rem);
  }
}
@media (min-width: 992px) {
  .fui-checkbox {
    width: calc(20% - 0.8rem);
  }
}
.fui-checkbox .fui-checkbox-input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fui-checkbox .fui-checkbox-input:checked + .fui-checkbox-label {
  background: #B6DDE2;
  color: #1b1b1b;
}
.fui-checkbox .fui-checkbox-label {
  display: block;
  padding: 1.5em;
  height: 100%;
}

.fui-heading-h2 {
  margin: 1.5em 0 0.5em;
  text-wrap: balance;
}

.fui-fieldset {
  border: none;
  padding: 0;
}
.fui-submit {
  background: #B6DDE2;
  color: #1b1b1b;
  border: none;
  border-radius: clamp(0.5rem, 5vw, 1rem);
  width: 100%;
  text-align: left;
  padding: 8rem 2rem 2rem 2rem;
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: normal !important;
}

.fui-type-html {
  width: 100%;
}

.range_slider {
  --range-track-height: 0.5rem;
  --range-thumb-size: 1.5625rem;
  --range-thumb-offset-pct: 0;
  --min-percent: 0;
  --max-percent: 100;
}
.range_slider .range_slider-labels {
  position: relative;
  width: 100%;
  height: 1.5em;
  margin-bottom: 0.25rem;
}
.range_slider .range_slider-label {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.875rem;
  color: currentColor;
  pointer-events: none;
}
.range_slider .range_slider-label--min {
  left: calc(var(--range-thumb-offset-pct) * 1% + (100% - 2 * var(--range-thumb-offset-pct) * 1%) * var(--min-percent) / 100);
}
.range_slider .range_slider-label--max {
  left: calc(var(--range-thumb-offset-pct) * 1% + (100% - 2 * var(--range-thumb-offset-pct) * 1%) * var(--max-percent) / 100);
}
.range_slider .range_slider-track {
  position: relative;
  width: 100%;
  height: var(--range-thumb-size);
  display: flex;
  align-items: center;
}
.range_slider .range_slider-fill {
  position: absolute;
  left: calc(var(--min-percent) * 1%);
  width: calc((var(--max-percent) - var(--min-percent)) * 1%);
  height: var(--range-track-height);
  top: 50%;
  transform: translateY(-50%);
  background: #B6DDE2;
  border-radius: 999px;
  pointer-events: none;
}
.range_slider .range_slider-input {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--range-thumb-size);
  margin: 0;
  pointer-events: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: transparent;
}
.range_slider .range_slider-input::-webkit-slider-runnable-track {
  height: var(--range-track-height);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}
.range_slider .range_slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: var(--range-thumb-size);
  height: var(--range-thumb-size);
  border-radius: 50%;
  background: #B6DDE2;
  cursor: pointer;
  pointer-events: auto;
  margin-top: calc((var(--range-track-height) - var(--range-thumb-size)) / 2);
  border: 2px solid #1b1b1b;
}
.range_slider .range_slider-input::-webkit-slider-thumb:hover {
  filter: brightness(1.05);
}
.range_slider .range_slider-input::-moz-range-track {
  height: var(--range-track-height);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}
.range_slider .range_slider-input::-moz-range-thumb {
  width: var(--range-thumb-size);
  height: var(--range-thumb-size);
  border-radius: 50%;
  background: #B6DDE2;
  cursor: pointer;
  pointer-events: auto;
  border: 2px solid #1b1b1b;
}
.range_slider .range_slider-input::-moz-range-thumb:hover {
  filter: brightness(1.05);
}
.range_slider .range_slider-input--max {
  pointer-events: none;
}
.range_slider .range_slider-input--max::-webkit-slider-runnable-track {
  background: transparent;
}
.range_slider .range_slider-input--max::-moz-range-track {
  background: transparent;
}
.range_slider .range_slider-input--max::-webkit-slider-thumb {
  pointer-events: auto;
}
.range_slider .range_slider-input--max::-moz-range-thumb {
  pointer-events: auto;
}

.header {
  --color: #000;
  color: var(--color);
  padding: clamp(1rem, 5vw, 2rem) 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: transform 0.3s ease;
}
.header.is-dark {
  --color: #FFF;
}
.header.is-dark .nav-slider {
  background: #000;
}
.header.is-dark ul li a {
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .nav_open .header {
    --color: #FFF;
  }
}
.header.is-hidden {
  transform: translateY(-100%);
}
.header-inner {
  align-items: center;
  display: flex;
  gap: 0.5em 1.5em;
  justify-content: space-between;
}
.header-inner .veggie_burger {
  flex: 0 0 40px;
}
.header h1,
.header p,
.header li {
  margin: 0;
}
.header-logo {
  border-bottom: none !important;
  display: block;
  width: 100%;
  max-width: 240px;
}
@media (min-width: 768px) {
  .header-logo {
    max-width: 300px;
  }
}
.header-logo svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.header-logo svg path {
  stroke: currentColor;
  fill: currentColor;
  stroke-width: 0;
  transition: stroke-width 0.3s ease;
}
.header-logo:hover svg path, .header-logo:focus-within svg path {
  stroke-width: 1.25vw;
}
.header .header-nav-list {
  position: relative;
  display: inline-flex;
}
.header .nav-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: #FFF;
  border-radius: 2em;
  pointer-events: none;
  z-index: 0;
  transition: left 0.3s ease, right 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.2s ease;
}
.header ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  isolation: isolate;
  position: relative;
  z-index: 1;
}
.header ul li {
  display: flex;
  align-items: center;
}
.header ul li a {
  background: rgba(255, 255, 255, 0.5);
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 2em;
  padding: 0.125em 1em;
  text-decoration: none;
  backdrop-filter: blur(10px);
  min-width: 10ch;
  text-align: center;
}
.veggie_burger {
  align-items: center;
  background: none;
  border: none;
  border-radius: 28px;
  color: var(--color) !important;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  width: 40px !important;
  padding: 8px;
  margin-right: -8px;
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
  z-index: 9999;
}
@media (min-width: 992px) {
  .veggie_burger {
    display: none;
  }
}
.veggie_burger span {
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease-in-out;
  transform-origin: center;
}

@media (max-width: 991px) {
  body.nav_open {
    background: #F2F1ED;
    overflow: hidden;
  }
  body.nav_open .veggie_burger span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  body.nav_open .veggie_burger span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
  }
}

.mobile_nav {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1b1b1b;
  color: #F2F1ED;
  opacity: 0;
  padding: clamp(1.5rem, 4.17vw + 0.67rem, 4rem);
  pointer-events: none;
  z-index: 88;
  transition: all 0.3s ease;
}
.mobile_nav.is-visible {
  -webkit-appearance: inherit;
     -moz-appearance: inherit;
          appearance: inherit;
  opacity: 1;
  pointer-events: auto;
}
.mobile_nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
  height: 80%;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.mobile_nav ul li {
  margin: 0 0 0.25em;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(100%) rotate(5deg);
  opacity: 0;
}
.mobile_nav ul li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile_nav ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile_nav ul li:nth-child(3) {
  transition-delay: 0.3s;
}
body.nav_open .mobile_nav ul li {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
.mobile_nav ul li a {
  display: block;
  text-decoration: none;
}
.mobile_nav .mobile_nav-inner {
  display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: space-between;
  height: 100%;
  padding-top: 4em;
}
.mobile_nav .mobile_nav-inner p {
  margin: 0;
}

.blur_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 88;
}
.blur_overlay-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--height);
  backdrop-filter: blur(var(--blur));
  pointer-events: none;
  /* Create a fade effect from blurred to not blurred vertically */
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  /* Optionally use opacity for extra gradient control */
  opacity: var(--opacity, 0.7);
}

.loading_screen {
  --loading-screen-duration: 2.5s;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 4vw, 1.5rem);
  align-items: center;
  justify-content: center;
  background: #F2F1ED;
  overflow: hidden;
  transition: opacity 0.4s ease-out;
  opacity: 1;
  pointer-events: auto;
}
.loading_screen.is-fading-out {
  opacity: 0;
  pointer-events: none;
}
.loading_screen.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.loading_screen-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: rgba(27, 27, 27, 0.08);
  overflow: hidden;
}
.loading_screen-bar-fill {
  height: 100%;
  width: 0;
  background: #73c5eb;
  animation: loading-screen-bar var(--loading-screen-duration) ease-out forwards;
}
.loading_screen-tagline {
  margin: 0;
  font-family: "Ivory LL Web", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.1;
  color: #1b1b1b;
  text-align: center;
  padding: 0 2em;
  text-wrap: balance;
  opacity: 0;
}
.is-loaded .loading_screen-tagline {
  opacity: 1;
  transition: opacity 0.75s ease-out;
}
.is-hidden .loading_screen-tagline, .is-fading-out .loading_screen-tagline {
  opacity: 0 !important;
}
.loading_screen-logo {
  transition: opacity 1s ease-out 0.4s;
}
.loading_screen-logo svg {
  aspect-ratio: 6/7;
  width: clamp(40px, 5vw, 60px);
  height: auto;
  margin: 0 auto;
  transform: rotate(-10deg);
  transform-origin: center center;
  opacity: 0;
}
.is-loaded .loading_screen-logo svg {
  opacity: 1;
  transform: rotate(0);
  transition: opacity 0.3s ease-in-out 0.4s, transform 0.3s ease-in-out 0.4s;
}
.is-fading-out .loading_screen-logo svg {
  opacity: 0 !important;
  animation: loading-screen-logo-fall 0.6s cubic-bezier(0.5, 0, 0.75, 1) forwards;
}

@keyframes loading-screen-logo-fall {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  35% {
    transform: translate(5px, 140px) rotate(180deg);
  }
  65% {
    transform: translate(-8px, 280px) rotate(320deg);
  }
  100% {
    transform: translate(40px, 420px) rotate(480deg);
  }
}
@keyframes loading-screen-bar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.page-transition-overlay {
  --page-transition-duration: 0.4s;
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: var(--page-transition-overlay-color, #fff);
  opacity: 0;
  transition: opacity var(--page-transition-duration) ease-out;
}
.page-transition-overlay.is-visible {
  pointer-events: auto;
  opacity: 1;
}

.image_group {
  position: relative;
  width: 100%;
  background: #F4F3F0;
  padding-top: 6em;
}
.image_group-inner {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
}
.image_group-item {
  flex: 1 1 auto;
  position: relative;
  width: 80px;
  max-width: 100%;
}
.image_group-item video,
.image_group-item img {
  border-radius: fluid(16px, 32px);
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}

.scroll-animation-word {
  display: inline-block;
  vertical-align: baseline;
  opacity: 0;
}

.masthead {
  margin: 0 0 2rem;
}
.masthead-heading {
  margin: 0.2em 0;
  max-width: 28ch;
}
.masthead-heading:first-child {
  margin-top: 0;
}
.masthead.text-center .masthead-content {
  margin: 0 auto;
}

.masthead-content p {
  max-width: 80ch;
  text-wrap: balance;
}
.masthead.text-center .masthead-content p {
  margin: 0 auto;
}

.masthead-content p:last-child {
  margin-bottom: 0;
}

.masonry-inner {
  position: relative;
  width: 100%;
}

.masonry-inner > * img,
.masonry-inner > * video {
  border-radius: fluid(16px, 32px);
  border: 1px solid #1b1b1b;
  display: block;
  height: auto;
  margin: 0;
  padding: 0;
  width: 100%;
}

/**************************\
  Basic Modal Styles
\**************************/
.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 27, 27, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal__container {
  padding: 0;
  max-width: 880px;
  width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  box-sizing: border-box;
  z-index: 9999;
}

.modal__container {
  display: flex;
  flex-direction: column;
}

.modal__close, .modal__caption {
  flex: 1 0 auto;
}

.modal__content {
  flex: 1 1 auto;
  overflow-y: auto;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  align-self: flex-end;
  background: transparent;
  border: 0;
  color: #F2F1ED;
  display: block;
  margin-bottom: 8px;
  padding: 1rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
@media (max-width: 991px) {
  .modal__close svg {
    mix-blend-mode: difference;
  }
  .modal__close svg path {
    fill: #F2F1ED;
    stroke: #F2F1ED;
  }
}
.modal__close:focus, .modal__close:active {
  outline: none;
  text-shadow: 0 0 0 2px #F2F1ED;
}

.modal__content {
  background: #F2F1ED;
  border: 1px solid #1b1b1b;
  border-radius: 8px;
  overflow: scroll-y;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.modal__content img,
.modal__content video {
  display: block;
  height: auto;
  width: 100%;
}

.modal__caption {
  background: #F2F1ED;
  border: 1px solid #1b1b1b;
  border-radius: 8px;
  margin-top: 0.5rem;
  padding: 0.6rem 1rem 0.5rem;
}
@media (min-width: 992px) {
  .modal__caption {
    margin-top: 1rem;
    padding: 1.1rem 1.5rem 1rem;
  }
}
.modal__caption figcaption {
  max-width: 78ch;
  text-transform: none !important;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination a {
  text-decoration: underline;
}
.pagination-info {
  color: var(--base-text-color, currentColor);
  opacity: 0.8;
}

[data-tippy] {
  position: relative;
}

[data-tippy]:before,
[data-tippy]:after {
  position: absolute;
  display: block;
  opacity: 0;
  font-family: sans-serif;
  transform: translate(-50%, 0);
  transform-origin: top;
  top: 100%;
  left: 50%;
  pointer-events: none;
}

[data-tippy]:before {
  content: attr(data-tippy);
  color: #fff;
  font-size: 14px;
  background-color: #000;
  z-index: 1;
  padding: 3px 6px;
  border-radius: 3px;
  white-space: nowrap;
  margin-top: 10px;
  font-weight: normal;
}

[data-tippy]:after {
  content: "";
  border: 5px solid transparent;
  border-bottom-color: #000;
}

[data-tippy]:hover:before,
[data-tippy]:hover:after {
  transform: translate(-50%, 0);
}

/* reset for other positions */
[data-tippy][data-tippy-pos]:before {
  top: auto;
  left: auto;
  margin-top: auto;
  transform: none;
}

[data-tippy][data-tippy-pos]:after {
  top: auto;
  left: auto;
  margin-top: auto;
  border-bottom-color: transparent;
  transform: none;
}

/* end reset */
/* up and down */
[data-tippy][data-tippy-pos=up]:before,
[data-tippy][data-tippy-pos=up]:after,
[data-tippy][data-tippy-pos=down]:before,
[data-tippy][data-tippy-pos=down]:after {
  left: 50%;
}

/* up */
[data-tippy][data-tippy-pos=up]:before,
[data-tippy][data-tippy-pos=up]:after {
  bottom: 100%;
  transform: translate(-50%, 0);
}

[data-tippy][data-tippy-pos=up]:before {
  margin-bottom: 10px;
}

[data-tippy][data-tippy-pos=up]:after {
  border-top-color: #000;
  border-bottom-color: transparent;
}

/* down */
[data-tippy][data-tippy-pos=down]:before,
[data-tippy][data-tippy-pos=down]:after {
  top: 100%;
  transform: translate(-50%, 0);
}

[data-tippy][data-tippy-pos=down]:before {
  margin-top: 10px;
}

[data-tippy][data-tippy-pos=down]:after {
  border-bottom-color: #000;
  border-top-color: transparent;
}

/* left and right */
[data-tippy][data-tippy-pos=left]:before,
[data-tippy][data-tippy-pos=left]:after,
[data-tippy][data-tippy-pos=right]:before,
[data-tippy][data-tippy-pos=right]:after {
  top: 50%;
}

/* left */
[data-tippy][data-tippy-pos=left]:before,
[data-tippy][data-tippy-pos=left]:after {
  right: 100%;
  transform: translate(0, -50%);
}

[data-tippy][data-tippy-pos=left]:before {
  margin-right: 10px;
}

[data-tippy][data-tippy-pos=left]:after {
  border-left-color: #000;
}

/* right */
[data-tippy][data-tippy-pos=right]:before,
[data-tippy][data-tippy-pos=right]:after {
  left: 100%;
  transform: translate(0, -50%);
}

[data-tippy][data-tippy-pos=right]:before {
  margin-left: 10px;
}

[data-tippy][data-tippy-pos=right]:after {
  border-right-color: #000;
}

/* hover */
[data-tippy]:hover:before,
[data-tippy]:hover:after {
  opacity: 1;
}

/* animated - fade (default) */
[data-tippy][data-tippy-animate]:before,
[data-tippy][data-tippy-animate]:after {
  transition: all 150ms ease-out;
  transition-delay: 0s;
}

[data-tippy][data-tippy-animate]:hover:before,
[data-tippy][data-tippy-animate]:hover:after {
  transition-delay: 150ms;
}

/* animated - slide */
[data-tippy][data-tippy-animate=slide]:before,
[data-tippy][data-tippy-animate=slide]:after {
  transform: translate(-50%, -10px);
}

[data-tippy][data-tippy-animate=slide]:hover:before,
[data-tippy][data-tippy-animate=slide]:hover:after {
  transform: translate(-50%, 0);
}

[data-tippy][data-tippy-pos=up][data-tippy-animate=slide]:before,
[data-tippy][data-tippy-pos=up][data-tippy-animate=slide]:after {
  transform: translate(-50%, 10px);
}

[data-tippy][data-tippy-pos=down][data-tippy-animate=slide]:before,
[data-tippy][data-tippy-pos=down][data-tippy-animate=slide]:after {
  transform: translate(-50%, -10px);
}

[data-tippy][data-tippy-pos=up][data-tippy-animate=slide]:hover:before,
[data-tippy][data-tippy-pos=up][data-tippy-animate=slide]:hover:after,
[data-tippy][data-tippy-pos=down][data-tippy-animate=slide]:hover:before,
[data-tippy][data-tippy-pos=down][data-tippy-animate=slide]:hover:after {
  transform: translate(-50%, 0);
}

[data-tippy][data-tippy-pos=left][data-tippy-animate=slide]:before,
[data-tippy][data-tippy-pos=left][data-tippy-animate=slide]:after {
  transform: translate(10px, -50%);
}

[data-tippy][data-tippy-pos=right][data-tippy-animate=slide]:before,
[data-tippy][data-tippy-pos=right][data-tippy-animate=slide]:after {
  transform: translate(-10px, -50%);
}

[data-tippy][data-tippy-pos=left][data-tippy-animate=slide]:hover:before,
[data-tippy][data-tippy-pos=left][data-tippy-animate=slide]:hover:after,
[data-tippy][data-tippy-pos=right][data-tippy-animate=slide]:hover:before,
[data-tippy][data-tippy-pos=right][data-tippy-animate=slide]:hover:after {
  transform: translate(0, -50%);
}

/* animated - bubble */
[data-tippy][data-tippy-animate=bubble]:before,
[data-tippy][data-tippy-animate=bubble]:after {
  opacity: 1;
  visibility: hidden;
}

[data-tippy][data-tippy-animate=bubble]:hover:before,
[data-tippy][data-tippy-animate=bubble]:hover:after {
  visibility: visible;
}

[data-tippy][data-tippy-animate=bubble]:before {
  clip-path: circle(10% at 50% 0);
}

[data-tippy][data-tippy-animate=bubble]:hover:before {
  clip-path: circle(100% at 50%);
}

[data-tippy][data-tippy-pos=up][data-tippy-animate=bubble]:before {
  clip-path: circle(10% at 50% 100%);
}

[data-tippy][data-tippy-pos=up][data-tippy-animate=bubble]:hover:before {
  clip-path: circle(100% at 50%);
}

[data-tippy][data-tippy-pos=down][data-tippy-animate=bubble]:before {
  clip-path: circle(10% at 50% 0);
}

[data-tippy][data-tippy-pos=down][data-tippy-animate=bubble]:hover:before {
  clip-path: circle(100% at 50%);
}

[data-tippy][data-tippy-pos=left][data-tippy-animate=bubble]:before {
  clip-path: circle(10% at 100% 50%);
}

[data-tippy][data-tippy-pos=left][data-tippy-animate=bubble]:hover:before {
  clip-path: circle(100% at 50%);
}

[data-tippy][data-tippy-pos=right][data-tippy-animate=bubble]:before {
  clip-path: circle(10% at 0 50%);
}

[data-tippy][data-tippy-pos=right][data-tippy-animate=bubble]:hover:before {
  clip-path: circle(100% at 50%);
}

/* force display */
[data-tippy][data-tippy-visible]:before,
[data-tippy][data-tippy-visible]:after {
  opacity: 1;
  visibility: visible;
}

/* sizes */
[data-tippy][data-tippy-size=tiny]:before {
  font-size: 10px;
}

[data-tippy][data-tippy-size=small]:before {
  font-size: 12px;
}

[data-tippy][data-tippy-size=large]:before {
  font-size: 16px;
}

[data-tippy][data-tippy-size=jumbo]:before {
  font-size: 20px;
}

.project_card {
  margin-bottom: 4rem;
  overflow-x: hidden;
}
@media (min-width: 640px) {
  .project_card {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .project_card {
    grid-template-columns: 400px 1fr;
    margin-bottom: 2rem;
  }
}
.project_card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.project_card-content > * {
  margin: 0;
}
.project_card-heading {
  max-width: 770px;
}
.project_card-link a {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #1b1b1b;
  width: auto;
  flex: 0;
}
.project_card-meta {
  margin-bottom: -0.5em;
}
.project_card-image {
  aspect-ratio: 3/2;
  border: 1px solid black;
  border-radius: fluid(16px, 32px);
  height: auto;
  margin-bottom: 1rem;
  width: 100%;
}
@media (min-width: 992px) {
  .project_card-image {
    margin-bottom: 0;
  }
}

.related {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  list-style-type: none;
  margin: 4rem;
}
.related li {
  margin: 0;
  padding: 0;
}

.richtext h2,
.richtext h3,
.richtext h4,
.richtext h5,
.richtext blockqoute {
  margin: 2rem 0;
}
.richtext hr {
  margin: clamp(2rem, 8vw, 4rem) 0;
  background: #1b1b1b;
  border: none;
  height: 1px;
}
.richtext h2,
.richtext h3,
.richtext h4,
.richtext h5 {
  @inlcude font-display();
  font-size: clamp(1.5rem, 0.83vw + 1.33rem, 2rem);
  line-height: 1em;
  position: relative;
  text-transform: uppercase;
}
.richtext h2 .header-anchor,
.richtext h3 .header-anchor,
.richtext h4 .header-anchor,
.richtext h5 .header-anchor {
  font-size: 0.5em;
  opacity: 0.3;
}
.richtext p {
  font-size: inherit;
}
.richtext p + p {
  margin: 1em 0;
}
.richtext blockquote {
  border-left: 1px solid #1b1b1b;
  padding-left: 2em;
}
.richtext ol, .richtext ul {
  font-size: clamp(1rem, 0.63vw + 0.88rem, 1.38rem);
}
.richtext ol li, .richtext ul li {
  margin: 0.5em 0;
}
.richtext > *:first-child {
  margin-top: 0 !important;
}
.richtext > *:last-child {
  margin-bottom: 0 !important;
}

figure {
  margin: 0;
}
figure figcaption {
  margin: 1em 0.7em 0;
  max-width: 80ch;
  text-transform: none !important;
}
@media (min-width: 992px) {
  figure figcaption {
    margin: 1em 1em 0;
  }
}

.paragraph_list {
  list-style: none;
  padding-left: 0;
}
.paragraph_list li {
  display: inline-block;
  margin: 0 0.5em 0 0 !important;
}
.paragraph_list li:not(:last-child)::after {
  content: ", ";
}

.mute_button {
  background: #FEF8EE url("/img/icon-volume.svg") no-repeat 8px center;
  border: 1px solid #1b1b1b;
  border-radius: fluid(16px, 32px);
  padding: 8px 12px 4px 40px;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  height: 40px;
}
.mute_button:hover {
  background-color: #fbe4be;
}

.separator {
  padding: 1rem;
  margin: 4rem 0;
  text-align: center;
}
.separator--leaf img {
  animation: sway 4s ease-in-out infinite;
  transform-origin: 50% 100%;
}

@keyframes sway {
  0%, 100% {
    transform: translateX(12px) rotate(-12deg);
  }
  50% {
    transform: translateX(-12px) rotate(4deg);
  }
}
.service_list {
  margin-right: clamp(-3rem, -5vw, -1rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service_list-item {
  display: flex;
  gap: 0.5em;
}
.service_list-item > * {
  margin: 0;
}
.service_list-item-description {
  overflow: hidden;
  mask-image: linear-gradient(to right, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 95%, transparent 100%);
}
.service_list-item-description-track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  gap: 0.25em;
  opacity: 0.6;
}

.wrap {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 clamp(1rem, 5vw, 3rem);
}
@media (max-width: 768px) {
  .wrap .wrap_small {
    padding: 0;
  }
}

.wrap_small {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 3rem;
}

.wrap_medium {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 3rem;
}

:root {
  --header-offset: clamp(4rem, 10vw, 6rem); /* Match fixed header height; adjust if header changes */
}

* {
  box-sizing: border-box;
}

html, body {
  color: #1b1b1b;
  background-color: #FEF8EE;
  height: 100%;
  margin: 0 auto;
  min-height: 100vh;
  padding: 0;
  max-width: 100%;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  font-family: "Season Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-style: normal;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1 0 auto;
  position: relative;
  width: 100vw;
  background-color: var(--background-color);
  color: var(--text-color);
}

.content_blocks {
  position: relative;
  padding: 1px 0;
}
.content_blocks > * {
  width: 100%;
}
.content_blocks > :first-child {
  padding-top: var(--header-offset);
}
.content_blocks > * {
  position: relative;
  z-index: 1;
  background-color: var(--background-color);
}

.fixed + .scrolled .content_blocks > :first-child {
  padding-top: 0;
}

.fixed {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 0;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.scrolled {
  background: #fff;
  position: relative;
  z-index: 2;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.video_wrapper video {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 539px) {
  .video_wrapper video {
    aspect-ratio: 1;
  }
}

.footer {
  flex-shrink: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

.seeds {
  background: #8eacb0 url("/img/seed-bg.jpg") no-repeat center center;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
}
.seeds-hero {
  display: flex;
  flex-direction: column;
  padding: var(--header-offset) 0 0;
}
.seeds-hero-title {
  padding: clamp(1rem, 5vw, 2rem) 0;
  text-align: center;
  will-change: transform;
}
.seeds-hero-title svg {
  margin: 0 auto;
  width: 75vw;
  height: auto;
  overflow: visible;
}
.seeds-hero-title svg path {
  filter: blur(0.3em);
  stroke-width: 1vw;
  stroke: #f1f1f1;
  fill: #f1f1f1;
  animation: seedsBlurAnim 1s ease-in-out forwards;
}
@keyframes seedsBlurAnim {
  from {
    filter: blur(0.1em);
    stroke-width: 4vw;
  }
  to {
    filter: blur(0.3em);
    stroke-width: 0;
  }
}
.seeds-hero-marquee {
  color: #F2F1ED;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 5;
  pointer-events: none;
  width: 100%;
  will-change: transform;
}
.seeds-hero-marquee-wrapper {
  display: block;
  overflow: hidden;
}
.seeds-hero-marquee-track {
  display: inline-flex;
  filter: blur(0.02em);
  text-shadow: 0 0.05em 0.125em currentColor;
  white-space: nowrap;
  will-change: transform;
  line-height: 1.5;
  gap: 0.25em;
}

.seeds_list {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: calc(2em + 5vw);
  position: relative;
  z-index: 5;
}
@media (min-width: 480px) {
  .seeds_list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .seeds_list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.seeds_list-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 var(--margin-right, 0) 0 var(--margin-left, 0);
  position: relative;
  cursor: pointer;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  animation-name: seeds-bob;
  animation-duration: var(--bob-duration, 5200ms);
  animation-delay: var(--bob-delay, 0ms);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@media (max-width: 991px) {
  .seeds_list-item {
    margin: 0 !important;
  }
}
.seeds_list-item-close, .seeds_list-item-teaser, .seeds_list-item-spacer, .seeds_list-item-content, .seeds_list-item-image {
  transition: all 0.2s ease-in-out;
}
.seeds_list-item-close {
  background: rgba(27, 27, 27, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid currentColor;
  border-radius: 3em;
  color: #F2F1ED;
  padding: 0.5em;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}
.seeds_list-item-close .seeds_list-item-close-icon {
  display: block;
}
.seeds_list-item-close svg {
  display: block;
  width: 16px;
  height: auto;
}
.seeds_list-item-teaser {
  background: #fff;
  border-radius: 1.25em;
  color: #1b1b1b;
  filter: blur(0.05em);
  left: 50%;
  margin: 0;
  opacity: 0;
  padding: 0.25em 1em;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, calc(-50% + 1em));
  transition: all 0.2s ease-in-out;
  width: 80%;
  min-width: -moz-min-content;
  min-width: min-content;
  max-width: -moz-max-content;
  max-width: max-content;
  text-wrap: balance;
  z-index: 5;
}
@media (pointer: coarse) {
  .seeds_list-item-teaser {
    display: none;
  }
}
.seeds_list-item-spacer {
  display: none;
}
.seeds_list-item.is-active {
  animation-play-state: paused;
}
.seeds_list-item.is-active .seeds_list-item-content {
  opacity: 1;
  pointer-events: auto;
}
.seeds_list-item.is-active .seeds_list-item-close {
  background: rgba(242, 241, 237, 0.5);
  color: #1b1b1b;
  opacity: 1;
  pointer-events: auto;
}
.seeds_list-item.is-active .seeds_list-item-close svg path {
  fill: #1b1b1b;
}
.seeds_list-item:hover {
  animation-play-state: paused;
}
.seeds_list-item:hover .seeds_list-item-image {
  opacity: 1;
  filter: blur(0) !important;
}
.seeds_list-item:hover .seeds_list-item-teaser {
  color: #1b1b1b;
  filter: blur(0) !important;
  transform: translate(-50%, -50%);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .seeds_list-item {
    animation: none;
  }
}
.seeds_list-item:focus-visible {
  outline: 2px solid #1b1b1b;
  outline-offset: 6px;
}
.seeds_list-item-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateZ(0);
}
@media (pointer: fine) {
  .seeds_list-item:not(.is-active) .seeds_list-item-image {
    filter: blur(10px);
  }
}
.seeds_list-item-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
}
.seeds_list-item-content .seed_card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
}
@media (max-width: 991px) {
  .seeds_list-item.is-active {
    aspect-ratio: auto;
    gap: 0;
  }
  .seeds_list-item.is-active .seeds_list-item-image {
    height: auto;
  }
  .seeds_list-item.is-active .seeds_list-item-spacer {
    display: block;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes seeds-bob {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(0, -8px, 0) rotate(-0.8deg);
  }
  50% {
    transform: translate3d(0, 0, 0) rotate(0.5deg);
  }
  75% {
    transform: translate3d(0, -4px, 0) rotate(-0.3deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
#modal-seeds-details .modal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
#modal-seeds-details .seeds-modal-image {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  #modal-seeds-details .modal__overlay {
    align-items: stretch;
  }
  #modal-seeds-details .modal__container {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    border-radius: 0.5rem;
    padding: 1rem;
  }
  #modal-seeds-details .modal__content {
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    border: 0;
    overflow-y: auto;
  }
  #modal-seeds-details .modal__content .seed_card {
    flex: 1 1 auto;
  }
  #modal-seeds-details .seeds-modal-image {
    height: auto;
  }
  #modal-seeds-details .seeds-modal-image img {
    -o-object-fit: contain;
       object-fit: contain;
    max-height: 50vh;
  }
  #modal-seeds-details .modal__caption {
    border-radius: 0;
    border: 0;
  }
}

.seeds-load-more-sentinel {
  min-height: 1px;
}

.seeds-load-more {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.seeds-load-more--auto {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.seed_card {
  background: #F2F1ED;
  color: #1b1b1b;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1rem, 5vw, 2rem);
  gap: 2rem;
}
.seed_card p {
  margin: 0;
}
.seed_card-title {
  border-bottom: 1px solid #1b1b1b;
  border-top: 1px solid #1b1b1b;
  margin-top: 1em;
  padding: 0.875em 0;
}
.seed_card-title a {
  -webkit-text-decoration: 1px solid #1b1b1b !important;
          text-decoration: 1px solid #1b1b1b !important;
}
.seed_card-description {
  opacity: 0.7;
}
.seed_card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.seed_card-tags .tag {
  background: #1b1b1b;
  color: #F2F1ED;
  border-radius: 3em;
  padding: 0.5em 1em;
  min-width: 5em;
  text-align: center;
}

.tippy-box[data-theme=seeds-popover] {
  background: #F2F1ED;
  border: 1px solid #1b1b1b;
  color: #1b1b1b;
  max-width: 20rem;
  opacity: 0;
  transform: scale(0.94) translateY(4px);
  transform-origin: center;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5 cubic-bezier(0.22, 1, 0.36, 1);
}
.tippy-box[data-theme=seeds-popover][data-state=visible] {
  opacity: 1;
  transform: scale(1) translateY(0) rotate(0);
}
.tippy-box[data-theme=seeds-popover][data-state=hidden] {
  opacity: 0;
  transform: scale(0.96) translateY(2px) rotate(4deg);
  transition-duration: 0.5s;
}
