/*-------------------------
homepage_grow
--------------------------*/
.wp-block.homepage_grow {
  margin-top: -20vh;
}
@media only screen and (min-width: 440px) {
  .wp-block.homepage_grow {
    margin-top: -20vh;
  }
}
@media only screen and (min-width: 768px) {
  .wp-block.homepage_grow {
    margin-top: -20vh;
  }
}
@media only screen and (min-width: 1024px) {
  .wp-block.homepage_grow {
    margin-top: -5vh;
  }
}
@media only screen and (min-width: 1280px) {
  .wp-block.homepage_grow {
    margin-top: 0;
  }
}
.wp-block.homepage_grow .buttonwrapper {
  margin-top: 40px;
}
.wp-block.homepage_grow .gallery-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .wp-block.homepage_grow .gallery-wrap {
    margin: auto;
    height: 100vh;
  }
}
@media only screen and (min-width: 1024px) {
  .wp-block.homepage_grow .gallery-wrap {
    margin: auto;
    height: 100vh;
  }
}
@media only screen and (min-width: 1300px) {
  .wp-block.homepage_grow .gallery-wrap {
    margin: auto;
    height: 100vh;
  }
}
.wp-block.homepage_grow .gallery-wrap--auto {
  height: auto;
}
.wp-block.homepage_grow .gallery-wrap--large {
  height: 110vh;
}
.wp-block.homepage_grow .gallery-wrap--dense {
  margin: 0;
}
.wp-block.homepage_grow .gallery {
  position: relative;
  width: 100%;
  height: 100%;
  flex: none;
}
.wp-block.homepage_grow .gallery--breakout {
  width: min-content;
}
.wp-block.homepage_grow .gallery__item {
  background-position: 50% 50%;
  background-size: cover;
  flex: none;
  border-radius: 6px;
  position: relative;
  filter: brightness(1);
}
.wp-block.homepage_grow .gallery__item-cut {
  overflow: hidden;
  display: grid;
  place-items: center;
}
.wp-block.homepage_grow .gallery__item-inner {
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.wp-block.homepage_grow .caption {
  z-index: 101;
  color: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 13.6666666667px + 0.0090277778 * 100vw, 31px);
  line-height: clamp(32.4px, 28.8666666667px + 0.0073611111 * 100vw, 43px);
  color: #ffffff;
  font-family: "Libre Caslon Text", serif;
}
.wp-block.homepage_grow .gallery--row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  --size-factor: 1.25;
  --item-height: 10vh;
}
@media only screen and (min-width: 768px) {
  .wp-block.homepage_grow .gallery--row {
    --item-height: 9vh;
  }
}
@media only screen and (min-width: 1024px) {
  .wp-block.homepage_grow .gallery--row {
    --item-height: 16vh;
  }
}
@media only screen and (min-width: 1300px) {
  .wp-block.homepage_grow .gallery--row {
    --item-height: 20vh;
  }
}
.wp-block.homepage_grow .gallery--row .gallery__item {
  width: 50%;
  aspect-ratio: 2/3;
}
@media only screen and (min-width: 768px) {
  .wp-block.homepage_grow .gallery--row .gallery__item {
    width: auto;
  }
}
.wp-block.homepage_grow .gallery--row .gallery__item--s {
  height: var(--item-height);
}
.wp-block.homepage_grow .gallery--row .gallery__item--m {
  height: calc(var(--size-factor) * var(--item-height));
}
.wp-block.homepage_grow .gallery--row .gallery__item--l {
  height: calc(var(--size-factor) * 2 * var(--item-height));
}
.wp-block.homepage_grow .gallery--row .gallery__item--xl {
  z-index: 100;
  height: calc(var(--size-factor) * 3 * var(--item-height));
}
.wp-block.homepage_grow .gallery--switch.gallery--row .gallery__item--m,
.wp-block.homepage_grow .gallery--switch.gallery--row .gallery__item--l {
  height: var(--item-height);
}
.wp-block.homepage_grow .gallery--row .caption {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: -50vh;
  left: 0;
  padding-top: 4.5vw;
  padding-bottom: 80px;
  max-width: 730px;
  opacity: 0;
}
.wp-block.homepage_grow .gallery--switch.gallery--row .caption {
  bottom: 0;
  opacity: 1;
}
.wp-block.homepage_grow .gallery--one {
  display: grid;
  place-items: center;
}
.wp-block.homepage_grow .gallery--one .gallery__item {
  width: 400%;
  height: 400%;
  filter: brightness(1) hue-rotate(90deg);
}
.wp-block.homepage_grow .gallery--switch.gallery--one .gallery__item {
  width: 100%;
  height: 100%;
  filter: brightness(0.7) hue-rotate(0deg);
}
.wp-block.homepage_grow .gallery--one .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  margin: 100vh 0 0 -50vw;
  display: grid;
  place-items: center;
  color: #fff;
}
.wp-block.homepage_grow .gallery--switch.gallery--one .caption {
  margin-top: -50vh;
}
.wp-block.homepage_grow .gallery--grid {
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(3, auto);
  row-gap: 2.5vw;
  column-gap: 3vw;
}
.wp-block.homepage_grow .gallery--grid .gallery__item {
  height: 33vh;
  width: 33vw;
}
.wp-block.homepage_grow .gallery--switch.gallery--grid {
  gap: 0;
}
.wp-block.homepage_grow .gallery--switch.gallery--grid .gallery__item {
  height: 110vh;
  width: 110vw;
  filter: brightness(0.65);
}
.wp-block.homepage_grow .gallery--grid .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  padding: 0;
  top: 50%;
  left: 50%;
  margin-top: 50vh;
  margin-left: -50vw;
  display: grid;
  place-items: center;
  max-width: none;
  opacity: 0;
}
.wp-block.homepage_grow .gallery--switch.gallery--grid .caption {
  margin-top: -40vh;
  opacity: 1;
}
.wp-block.homepage_grow .gallery--grid .caption p {
  padding: 50vh 30vw 10vh 10vw;
}
.wp-block.homepage_grow .gallery--switch.gallery--grid .caption p {
  margin-top: 0;
}
.wp-block.homepage_grow .gallery--stack {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-content: start;
  gap: 2rem;
  padding: 2rem;
  --offset: 1rem;
}
.wp-block.homepage_grow .gallery--stack .gallery__item {
  border-radius: 1.5vw;
  width: 25vw;
  height: 35vw;
  z-index: 1;
}
.wp-block.homepage_grow .gallery--stack-glass .gallery__item {
  filter: opacity(1);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack .gallery__item {
  grid-area: 1/1/2/2;
}
.wp-block.homepage_grow .gallery--stack .caption {
  position: absolute;
  bottom: 0;
  left: 100vw;
  width: 100vw;
  padding: 5vw;
  color: var(--color-text-alt);
  opacity: 0;
  z-index: 0;
}
.wp-block.homepage_grow .gallery--stack .caption p {
  margin: 0;
}
.wp-block.homepage_grow .gallery--switch.gallery--stack .caption {
  left: 0;
  opacity: 1;
}
.wp-block.homepage_grow .gallery--stack-inverse .gallery__item:nth-child(5) {
  z-index: 2;
}
.wp-block.homepage_grow .gallery--stack-inverse .gallery__item:nth-child(4) {
  z-index: 3;
}
.wp-block.homepage_grow .gallery--stack-inverse .gallery__item:nth-child(3) {
  z-index: 4;
}
.wp-block.homepage_grow .gallery--stack-inverse .gallery__item:nth-child(2) {
  z-index: 5;
}
.wp-block.homepage_grow .gallery--stack-inverse .gallery__item:nth-child(1) {
  z-index: 6;
}
.wp-block.homepage_grow .gallery--switch.gallery--stack .gallery__item:nth-child(2) {
  margin-left: var(--offset);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack .gallery__item:nth-child(3) {
  margin-left: calc(var(--offset) * 2);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack .gallery__item:nth-child(4) {
  margin-left: calc(var(--offset) * 3);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack .gallery__item:nth-child(5) {
  margin-left: calc(var(--offset) * 4);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack .gallery__item:nth-child(6) {
  margin-left: calc(var(--offset) * 5);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack-dark .gallery__item:nth-child(2) {
  filter: brightness(0.8);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack-dark .gallery__item:nth-child(3) {
  filter: brightness(0.7);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack-dark .gallery__item:nth-child(4) {
  filter: brightness(0.6);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack-dark .gallery__item:nth-child(5) {
  filter: brightness(0.5);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack-dark .gallery__item:nth-child(6) {
  filter: brightness(0.4);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack-glass .gallery__item {
  opacity: 0.7;
}
.wp-block.homepage_grow .gallery--switch.gallery--stack-scale .gallery__item:nth-child(2) {
  transform: scale(0.98);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack-scale .gallery__item:nth-child(3) {
  transform: scale(0.96);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack-scale .gallery__item:nth-child(4) {
  transform: scale(0.94);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack-scale .gallery__item:nth-child(5) {
  transform: scale(0.92);
}
.wp-block.homepage_grow .gallery--switch.gallery--stack-scale .gallery__item:nth-child(6) {
  transform: scale(0.9);
}
.wp-block.homepage_grow .gallery--gridtiny {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  width: 300%;
  padding: 0 2vh;
  height: min-content;
  gap: 1vh;
}
.wp-block.homepage_grow .gallery--switch.gallery--gridtiny {
  width: 100%;
  gap: 2vh;
}
.wp-block.homepage_grow .gallery--gridtiny .gallery__item {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  filter: contrast(0.8) saturate(0) brightness(0.6) opacity(1);
}
.wp-block.homepage_grow .gallery--switch.gallery--gridtiny .gallery__item {
  filter: contrast(1) saturate(1) brightness(0.8) opacity(0.8);
}
.wp-block.homepage_grow .gallery--gridtiny .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 50%;
  top: 50%;
  margin: -50vh 0 0 -50vw;
  display: grid;
  place-items: center;
  font-size: clamp(2rem, 8vw, 4rem);
  opacity: 0;
}
.wp-block.homepage_grow .gallery--switch.gallery--gridtiny .caption {
  opacity: 1;
}
.wp-block.homepage_grow .gallery--switch .gallery__item--center {
  height: 100vh;
  width: 100vw;
  aspect-ratio: auto;
  filter: brightness(0.5);
}
.wp-block.homepage_grow .gallery--bento {
  display: grid;
  gap: 1vh;
  grid-template-columns: repeat(3, 32.5vw);
  grid-template-rows: repeat(4, 23vh);
  justify-content: center;
  align-content: center;
}
.wp-block.homepage_grow .gallery--switch.gallery--bento {
  grid-template-columns: repeat(3, 100vw);
  grid-template-rows: repeat(4, 49.5vh);
  gap: 15vh;
}
.wp-block.homepage_grow .gallery--bento .gallery__item:nth-child(1) {
  grid-area: 1/1/3/2;
}
.wp-block.homepage_grow .gallery--bento .gallery__item:nth-child(2) {
  grid-area: 1/2/2/3;
}
.wp-block.homepage_grow .gallery--bento .gallery__item:nth-child(3) {
  grid-area: 2/2/4/3;
}
.wp-block.homepage_grow .gallery--bento .gallery__item:nth-child(4) {
  grid-area: 1/3/3/3;
}
.wp-block.homepage_grow .gallery--bento .gallery__item:nth-child(5) {
  grid-area: 3/1/3/2;
}
.wp-block.homepage_grow .gallery--bento .gallery__item:nth-child(6) {
  grid-area: 3/3/5/4;
}
.wp-block.homepage_grow .gallery--bento .gallery__item:nth-child(7) {
  grid-area: 4/1/5/2;
}
.wp-block.homepage_grow .gallery--bento .gallery__item:nth-child(8) {
  grid-area: 4/2/5/3;
}
.wp-block.homepage_grow .gallery--bento .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  margin: 100vh 0 0 -50vw;
  font-size: clamp(2rem, 10vw, 5rem);
  display: grid;
  place-items: center;
}
.wp-block.homepage_grow .gallery--switch.gallery--bento .caption {
  margin-top: -50vh;
}
.wp-block.homepage_grow .gallery--grid10 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
}
.wp-block.homepage_grow .gallery--switch.gallery--grid10 {
  grid-template-columns: 1fr 300px 1fr;
  grid-template-rows: 1fr 60vh 1fr;
  grid-gap: 0;
}
.wp-block.homepage_grow .gallery--switch.gallery--grid10 .gallery__item {
  grid-area: 2/2/3/3;
}
.wp-block.homepage_grow .gallery--grid10 .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  margin: 100vh 0 0 -50vw;
  display: grid;
  place-items: center;
  font-size: clamp(2rem, 8vw, 6rem);
}
.wp-block.homepage_grow .gallery--switch.gallery--grid10 .caption {
  opacity: 1;
  margin-top: -50vh;
}
@media screen and (min-width: 53em) {
  .wp-block.homepage_grow .frame {
    grid-template-columns: auto auto auto 1fr;
    grid-template-areas: "title prev ... sponsor";
    align-content: space-between;
    justify-items: start;
    grid-gap: 2rem;
  }
  .wp-block.homepage_grow .frame__demos {
    justify-self: end;
  }
  .wp-block.homepage_grow .project--intro {
    grid-template-columns: auto 1fr;
    grid-template-areas: "label-name name" "label-date date" "title title" "label-mission mission";
  }
  .wp-block.homepage_grow .project--details {
    grid-template-areas: "label-default paragraph";
    grid-template-columns: auto auto;
  }
  .wp-block.homepage_grow .project__label {
    text-align: right;
  }
  .wp-block.homepage_grow .project__mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "p1 ..." "... p2";
    column-gap: 2rem;
  }
  .wp-block.homepage_grow .gallery--grid10 {
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-1 {
    grid-area: 1/1;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-2 {
    grid-area: 1/2;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-3 {
    grid-area: 1/4;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-4 {
    grid-area: 1/5;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-5 {
    grid-area: 3/6;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-6 {
    grid-area: 1/7;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-7 {
    grid-area: 1/9;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-8 {
    grid-area: 3/10;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-9 {
    grid-area: 2/8;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-10 {
    grid-area: 4/9;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-11 {
    grid-area: 3/8;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-12 {
    grid-area: 2/2;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-13 {
    grid-area: 3/1;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-14 {
    grid-area: 3/4;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-15 {
    grid-area: 4/3;
  }
  .wp-block.homepage_grow .gallery--grid10:not(.gallery--switch) .pos-16 {
    grid-area: 4/7;
  }
  .wp-block.homepage_grow .gallery--stack .caption {
    bottom: 40%;
    width: 60vw;
    max-width: 800px;
  }
  .wp-block.homepage_grow .gallery--switch.gallery--stack .caption {
    left: 40vw;
  }
  .wp-block.homepage_grow body #cdawrap {
    justify-self: end;
  }
}
