:root {
  --white: white;
  --light-blue: #77cef2;
  --cornflower-blue: #489fd9;
  --light-orange: #f79247;
  --blue: #1f506496;
  --dark-grey: #0f0f0f9c;
  --pale-blue: #77cef28a;
  --transp-w: #ffffff4d;
  --light-grey: #0f0f0f0a;
  --dark-blue: #3d5888;
  --light-orange-2: transparent;
  --grey: #77cef2;
  --gainsboro: #dfe8e4;
  --black: #333;
  --medium-sea-green: #4dbd90;
  --light-slate-gray: #8668ab;
  --dark-orange: #e74c25;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-embed-youtubevideo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

h1 {
  margin-top: 0;
  margin-bottom: 19px;
  font-size: 38px;
  font-weight: 500;
  line-height: 44px;
}

h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 5px;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #f79247;
  border-radius: 3px;
  margin-top: 40px;
  margin-left: 0;
  margin-right: 14px;
  padding: 13px 23px;
  font-family: Roboto Slab, sans-serif;
  text-decoration: none;
  transition: background-color .3s, box-shadow .3s, color .3s;
  display: inline-block;
  box-shadow: 0 2px 1px #0000001f;
}

.button:hover {
  background-color: #489fd9;
}

.button.hollow {
  color: #000;
  text-shadow: none;
  background-color: #0000;
  box-shadow: 0 2px 1px #0000001f, inset 0 0 0 2px #000;
}

.button.hollow:hover {
  color: #fff;
  text-shadow: none;
  background-color: #489fd9;
  box-shadow: 0 2px 1px #0000001f, inset 0 0 0 2px #489fd9;
}

.button.hollow.small {
  border-radius: 3px;
  margin-top: 3px;
  margin-right: 0;
  padding: 10px;
  font-size: 14px;
  display: inline-block;
}

.button.hollow.small.new {
  margin-top: 41px;
}

.button.hollow.white {
  border: .5px solid var(--white);
  box-shadow: 0 2px 1px 0 #ffffff1c, inset 0 0 0 2px var(--white);
  color: var(--white);
}

.button.hollow.white:hover {
  border-style: solid;
  border-color: var(--white);
  background-color: var(--light-blue);
  box-shadow: 0 2px 1px #ffffff1c;
}

.button.in-pricing {
  margin-top: 19px;
  margin-right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
}

.button.space {
  text-align: left;
  margin: 40px auto 20px;
  display: inline-block;
}

.button.space.hide {
  display: none;
}

.button.topspace {
  text-align: center;
  margin-top: 40px;
  margin-left: 325px;
  padding-bottom: 21px;
  display: inline-block;
}

.button.hide {
  display: inline-block;
}

.button.nav {
  margin-top: 12px;
  position: static;
}

.button.small {
  font-size: 14px;
}

.button.assembly {
  margin-left: 10px;
}

.button.page {
  margin-left: 400px;
}

.button.bage {
  text-align: right;
  margin-left: 400px;
}

.logo-text {
  color: #1c1c1c;
  margin-top: 24px;
  font-family: Roboto Slab, sans-serif;
  font-size: 27px;
  font-weight: 500;
}

.logo-text.footer {
  color: #e6eaed;
  margin-top: 0;
  margin-bottom: 19px;
}

.navigation {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 1px #00000021;
}

.nav-link {
  padding: 20px 17px 26px 10px;
  font-size: 14px;
  transition: box-shadow .5s, color .3s;
  position: relative;
  box-shadow: inset 0 3px #0000;
}

.nav-link:hover {
  color: var(--light-orange);
  box-shadow: inset 0 3px #b5b5b580;
}

.nav-link.w--current {
  box-shadow: inset 0 3px 0 0 var(--light-blue);
  color: var(--light-blue);
}

.nav-link.orange, .nav-link.orange:hover {
  color: var(--light-orange);
}

.section {
  padding-top: 70px;
  padding-bottom: 40px;
}

.section.blue {
  background-color: #e3f3fc;
  padding-top: 70px;
  padding-bottom: 40px;
  transform: translate(0);
}

.section.main {
  background-color: var(--blue);
  color: #fff;
  text-shadow: 0 1px #0000003b;
  object-fit: cover;
  background-image: url('../images/00820066_Bowerbird_Photography_2019.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
  margin-top: 73px;
}

.section.main.home {
  background-color: var(--dark-grey);
  background-image: linear-gradient(85deg, var(--dark-grey) 45%, #ffffff08 70%), url('../images/01440066_Bowerbird_Photography_2019.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.section.main.impact {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: linear-gradient(to bottom, var(--blue), var(--blue)), url('../images/01440066_Bowerbird_Photography_2019.jpg');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, repeat-x;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  padding-top: 60px;
  display: block;
}

.section.main.usecases {
  background-color: var(--dark-grey);
  background-image: linear-gradient(84deg, var(--dark-grey) 31%, #ffffff0f), url('../images/pexels-gustavo-fring-5621945.jpg');
  object-fit: cover;
  object-position: 50% 50%;
  background-position: 0 0, 50% 30%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 100px;
  position: static;
  overflow: visible;
}

.section.main.usecases.stories {
  background-color: var(--pale-blue);
  background-image: linear-gradient(84deg, var(--blue) 31%, #ffffff0f), url('../images/kenny-eliason-zFSo6bnZJTw-unsplash.jpg');
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.main.donate {
  background-image: linear-gradient(146deg, #000000c4 2%, #77cef257), url('../images/thxsloth.png');
  background-position: 0 0, 20%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  padding-top: 60px;
  padding-bottom: 100px;
}

.section.main.donate.professional-development {
  background-image: linear-gradient(146deg, #000000c4 2%, #77cef257), url('../images/pexels-christina-morillo-1181329.jpg');
  padding-bottom: 60px;
}

.section.main.program {
  background-color: #1f5064ab;
  background-image: linear-gradient(to bottom, var(--dark-grey) 44%, var(--transp-w)), url('../images/jeswin-thomas-tJUjeaNIOZs-unsplash.jpg');
  object-fit: cover;
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding-top: 40px;
  padding-bottom: 40px;
  position: static;
}

.section.main.practice {
  background-color: var(--dark-grey);
  background-image: linear-gradient(#00000080, #00000080), url('../images/pexels-scott-webb-1029614.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.section.grey {
  background-color: var(--light-grey);
}

.section.grey.voice {
  display: block;
}

.section.image {
  color: #fff;
  background-image: url('../images/town.jpg');
  background-position: 50%;
  background-size: cover;
}

.section.footer {
  color: #e4e8eb;
  background-color: #2b2c2e;
  padding-top: 20px;
  padding-bottom: 20px;
}

.section.footer.copyright {
  color: #939596;
  background-color: #1c1d1f;
  padding-top: 19px;
  padding-bottom: 19px;
  font-size: 14px;
}

.section.purple {
  background-color: var(--pale-blue);
  display: block;
}

.section.purple.pricing {
  display: block;
}

.section.purple.pricing.hide {
  display: none;
}

.section.purple.grey {
  background-color: var(--light-grey);
  padding-bottom: 50px;
}

.section.clients {
  background-color: var(--white);
  padding-top: 0;
  padding-bottom: 0;
}

.section.clients.hide {
  display: none;
}

.section.clients.supporters {
  margin-bottom: 60px;
}

.section.press {
  background-color: var(--pale-blue);
  padding-top: 29px;
  padding-bottom: 38px;
}

.section.small {
  background-color: var(--pale-blue);
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
}

.section.small.blue {
  background-color: var(--pale-blue);
}

.section.small.blue.webinar {
  display: none;
}

.section.small.blue.webinar.hide {
  display: none;
  overflow: visible;
}

.section.small.blue.dlguide {
  background-color: var(--dark-blue);
  padding-top: 20px;
  padding-bottom: 10px;
  display: block;
}

.section.small.blue.dlguide.hide {
  display: none;
}

.section.small.blue.stories {
  padding-top: 0;
  padding-bottom: 37px;
}

.section.small.orange {
  background-color: var(--light-orange-2);
}

.section.small.grey {
  background-color: var(--white);
}

.section.hide, .section.copy {
  display: none;
}

.section.narrow {
  padding-top: 10px;
  padding-bottom: 10px;
}

.section.narrow.orange {
  background-color: var(--light-orange);
}

.section.narrow.blue {
  text-align: center;
  margin-top: 20px;
  margin-left: 20px;
  padding-left: 40px;
  display: inline-block;
  overflow: auto;
}

.section.blog {
  background-image: linear-gradient(#0f0f0fc7 30%, #ffffff26), url('../images/00820066_Bowerbird_Photography_2019.jpg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.blog.different-pic {
  background-image: linear-gradient(#0f0f0fc7 30%, #ffffff26), url('../images/naassom-azevedo-Q_Sei-TqSlc-unsplash.jpg');
  background-position: 0 0, 30% 70%;
  padding-bottom: 151px;
}

.slider {
  background-color: #303030;
  height: 360px;
  display: block;
}

.slider.hide {
  display: none;
}

.slide {
  padding-top: 64px;
  padding-bottom: 64px;
}

.slide._1 {
  background-color: #00ad6e;
}

.slide._2 {
  background-color: #00bdd6;
}

.slide._3 {
  background-color: #ccbe00;
}

.main-subtitle {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
}

.footer-slogan {
  color: #939596;
  margin-bottom: 11px;
}

.footer-slogan.hide {
  display: none;
}

.social-icon {
  opacity: .41;
  margin-right: 11px;
  transition: opacity .3s;
}

.social-icon:hover {
  opacity: 1;
}

.footer-title {
  text-transform: uppercase;
  margin-top: 0;
  font-family: Roboto Condensed, sans-serif;
  font-weight: 400;
}

.page-link {
  color: #489fd9;
  border-bottom: 1px solid #0000;
  text-decoration: none;
  transition: color .3s, border .3s;
}

.page-link:hover {
  border-bottom-color: #489fd9;
}

.page-link.in-footer {
  color: #fff;
  font-weight: 300;
  display: block;
}

.page-link.in-footer:hover {
  color: var(--light-orange);
  border-bottom-color: #0000;
}

.page-link.in-footer.donate {
  color: var(--light-orange);
}

.page-link.in-footer.donate:hover {
  color: var(--grey);
}

.page-link.white {
  color: #fff;
  border-bottom-color: #ffffff7d;
}

.page-link.white:hover {
  border-bottom-color: #fff;
}

.newsletter-field {
  float: left;
  background-color: #e8e8e8;
  border: 1px solid #0000;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  width: 60%;
  height: 40px;
}

.newsletter-field:focus {
  border-width: 1px;
  border-color: #09f;
  box-shadow: 0 0 6px #489fd9;
}

.newsletter-button {
  float: left;
  color: #d5d8db;
  background-color: #5f6166;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  width: 40%;
  height: 40px;
  padding-top: 9px;
  padding-bottom: 9px;
  transition: all .5s;
}

.newsletter-button:hover {
  color: #fff;
  background-color: #489fd9;
}

.newsletter-form {
  width: 70%;
}

.newsletter-form.hide, .social-icon-group.hide {
  display: none;
}

.brand-link {
  padding-bottom: 0;
  text-decoration: none;
}

.success-message {
  background-color: #5f6166;
}

.main-heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 38px;
  line-height: 44px;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 20px;
  font-size: 19px;
  font-weight: 300;
  line-height: 22px;
}

.bold-text {
  font-weight: 400;
}

.plan-wrapper {
  clear: both;
  color: #2b2b2b;
  background-color: #fff;
  border-radius: 3px;
  min-height: 300px;
  padding: 17px;
}

.plan-wrapper.blue {
  background-color: var(--pale-blue);
}

.price-point {
  margin-bottom: 8px;
  font-size: 14px;
}

.price-point.strike {
  text-decoration: line-through;
}

.price-accent {
  color: #489fd9;
  letter-spacing: 0;
  font-size: 20px;
}

.addl-feature {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}

.addl-feature.inactive {
  color: #c7c5c5;
  text-decoration: line-through;
}

.divider {
  background-color: #dbdbdb;
  width: 50%;
  height: 1px;
  margin-top: 13px;
  margin-bottom: 12px;
}

.additional-contact {
  text-align: center;
  margin-top: 21px;
}

.feature {
  text-align: left;
}

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

.feature-row {
  margin-bottom: 10px;
  padding-top: 10px;
}

.feature-row.grey {
  background-color: var(--light-grey);
}

.feature-row.right {
  margin-top: 15px;
  padding-top: 20px;
}

.testimonial-slider {
  background-color: #0000;
  height: auto;
  margin-top: 45px;
}

.testimony-slide {
  text-align: center;
  padding-top: 0;
  padding-left: 10%;
  padding-right: 10%;
}

.testimony-text {
  margin-bottom: 21px;
  font-family: Roboto Slab, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 31px;
}

.slide-nav {
  margin-top: 0;
  padding-top: 80px;
  padding-bottom: 0;
  font-size: 10px;
  display: block;
}

.slide-nav.hide {
  display: none;
}

.person {
  border-radius: 100%;
  width: 70px;
  margin-bottom: 13px;
}

.name {
  font-weight: 500;
}

.slider-arrow {
  color: #bdbdbd;
  width: 50px;
  font-size: 32px;
  transition: color .3s;
}

.slider-arrow:hover {
  color: #000;
}

.feature-icon {
  margin-bottom: 12px;
  display: none;
  overflow: visible;
}

.main-feature-group {
  margin-top: 0;
}

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

.small-features-row {
  margin-top: 20px;
  margin-bottom: 40px;
}

.small-features-row.hide {
  display: none;
}

.client-logo {
  object-fit: fill;
  width: 65%;
  max-width: 92%;
  margin-top: 0;
  display: inline-block;
  position: static;
}

.client-logo.small {
  width: 10%;
  max-height: 130px;
  margin-top: 20px;
  margin-left: 10px;
}

.client-logo.medium {
  width: 21%;
  margin-left: 10px;
  margin-right: 10px;
}

.client-logo.buffer {
  margin-top: 40px;
}

.client-logo.custom {
  width: 35%;
  max-width: 35%;
}

.client-logo.custom2 {
  width: 50%;
}

.press-logo {
  opacity: .94;
  width: 16%;
  margin-left: 2%;
  margin-right: 2%;
}

.small-text {
  color: var(--gainsboro);
  text-align: left;
  font-size: 16px;
  font-weight: 300;
}

.div-block {
  justify-content: center;
  display: flex;
}

.logo {
  width: 14%;
  margin-left: 2%;
  margin-right: 2%;
}

.image-2 {
  margin-top: -15px;
  padding-top: 0;
}

.text-block {
  object-fit: fill;
  position: static;
}

.columns {
  padding-top: 0;
  padding-bottom: 0;
}

.column {
  padding-top: 10px;
}

.cards-section {
  background-color: var(--light-grey);
  padding-top: 35px;
  padding-bottom: 40px;
  display: flex;
}

.cards-section.hide {
  display: none;
}

.cards-section.white-back {
  background-color: #0000;
}

.centered-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  flex: 1;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.centered-container.blue {
  background-color: var(--light-blue);
}

.centered-container.hide {
  display: none;
}

.cards-grid-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cards-grid-container.team-cards {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.cards-grid-container.white {
  background-color: var(--white);
}

.cards-grid-container._4column {
  grid-column-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.cards-grid-container.contributors {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.cards-image-mask {
  object-fit: fill;
  border-radius: 0%;
  width: 100%;
  height: 14%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.cards-image-mask.small {
  clear: none;
  text-align: left;
  height: 21%;
  margin-bottom: -80px;
  padding-top: 100%;
  padding-bottom: 0;
  position: relative;
}

.cards-image-mask.narrow {
  width: 70%;
}

.cards-image-mask.press {
  object-fit: fill;
  width: 100%;
  height: 22%;
  overflow: hidden;
}

.cards-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  display: inline-block;
  position: absolute;
  inset: 0%;
}

.cards-image.news {
  width: 96%;
  max-width: 281px;
}

.cards-image.contain {
  object-fit: contain;
}

.gallery {
  padding-top: 20px;
  padding-bottom: 100px;
}

.gallery-grid-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template: "."
                 "."
                 "."
                 / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  margin-top: 40px;
  display: grid;
}

.gallery-grid-container.voices {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: row;
}

.gallery-lightbox {
  position: relative;
  overflow: hidden;
}

.gallery-thumbnail {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.call-to-action {
  padding-top: 100px;
  padding-bottom: 100px;
}

.call-to-action.small {
  padding-top: 40px;
  padding-bottom: 40px;
}

.call-to-action.short {
  padding-top: 0;
  padding-bottom: 60px;
}

.hero {
  align-items: center;
  padding-top: 60px;
  padding-bottom: 100px;
  display: block;
}

.hero.grey {
  background-color: var(--light-grey);
  padding-top: 20px;
  padding-bottom: 0;
}

.hero.grey.hide {
  display: none;
}

.hero.blue {
  background-color: var(--pale-blue);
}

.hero.hide {
  display: none;
}

.flex-container {
  flex-direction: row;
  flex: 1;
  align-items: center;
  display: flex;
}

.hero-image-mask {
  width: 100%;
  margin-left: 40px;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
  flex: 0 .5 auto;
  width: 100%;
  height: 100%;
}

.div-block-2 {
  object-fit: fill;
  justify-content: center;
  align-items: baseline;
  padding-top: 10px;
  display: flex;
  position: static;
}

.feature-section-1 {
  margin-bottom: 40px;
  padding-top: 10px;
  padding-bottom: 0;
  display: block;
  transform: translate(0);
}

.feature-section-1.grey {
  background-color: var(--light-grey);
  margin-bottom: 40px;
  padding-top: 15px;
  padding-bottom: 0;
  display: block;
}

.feature-section-1.grey.donate.hide, .feature-section-1.grey.hide {
  display: none;
}

.feature-section-1.blue {
  background-color: #77cef238;
}

.feature-section-1.dense {
  padding-top: 60px;
  padding-bottom: 60px;
}

.feature-section-1.small {
  background-color: var(--pale-blue);
  padding-top: 40px;
  padding-bottom: 72px;
}

.feature-image-mask {
  width: 100%;
  margin-right: 40px;
}

.feature-image-mask.image-right {
  margin-left: 40px;
  margin-right: 0;
}

.feature-image {
  box-shadow: 1px 1px 3px 0 var(--dark-grey);
  outline-offset: 0px;
  object-fit: contain;
  object-position: 50% 50%;
  outline: .4px #333;
  width: 100%;
  height: 100%;
  padding-top: 20px;
}

.hero-overlay {
  color: #fff;
  background-image: linear-gradient(#0009, #0009), url('../images/LPS-Hayward.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 90vh;
  max-height: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.hero-overlay.supporters {
  background-image: linear-gradient(#0009, #0009);
}

.hero-overlay.smallhero {
  background-image: linear-gradient(#0000, #0000), url('../images/pexels-min-an-853168.jpg');
  height: 70vh;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-overlay.smallhero.hide {
  display: none;
}

.hero-overlay.smallhero.about-us {
  background-image: linear-gradient(to bottom, var(--dark-grey), var(--dark-grey)), url('../images/pexels-min-an-853168.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.hero-overlay.narrow {
  background-image: linear-gradient(to top, var(--dark-grey) 21%, var(--transp-w) 83%), url('../images/LPS-Hayward.jpg');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  justify-content: center;
  align-items: center;
  max-height: 400px;
  padding-top: 0;
  padding-bottom: 0;
}

.gallery-2 {
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}

.gallery-2.hide {
  display: none;
}

.grid {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "Area";
}

.team-cards {
  margin-top: 40px;
}

.team-cards.hide {
  display: none;
}

.team-cards.contributors {
  margin-bottom: 100px;
}

.cards-section-2 {
  background-color: var(--white);
  background-image: linear-gradient(to bottom, var(--white), var(--white)), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  -webkit-text-fill-color: inherit;
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  background-attachment: scroll, fixed;
  background-clip: border-box;
  padding-top: 60px;
  padding-bottom: 100px;
}

.cards-section-2.grey {
  background-color: var(--light-grey);
}

.cards-section-2.growth {
  padding-bottom: 20px;
}

.cards-section-2.growth.hide {
  display: none;
}

.cards-section-2.featured {
  padding-top: 20px;
}

.cards-section-2.featured.grey {
  padding-top: 40px;
  padding-bottom: 20px;
}

.main-content {
  padding-top: 100px;
  padding-bottom: 100px;
  font-size: 16px;
}

.main-content.video {
  padding-top: 65px;
  padding-bottom: 40px;
}

.rich-text-block, .heading, .heading-2, .heading-3 {
  text-align: center;
}

.block-quote {
  margin-top: 10px;
  font-size: 20px;
}

.block-quote-2 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 20px;
}

.image-3 {
  margin-top: 0;
}

.image-4 {
  margin-top: 40px;
  transition: opacity .2s;
  transform: translate(0);
}

.image-5 {
  margin-top: 45px;
  position: static;
}

.cards-grid-container-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cards-grid-container-2.twocolumn {
  grid-template-columns: 1fr 1fr;
}

.cards-image-2 {
  object-fit: contain;
  object-position: 50% 50%;
  width: 100%;
  max-width: none;
  display: inline-block;
  position: absolute;
  inset: 0%;
}

.cards-image-2.small {
  width: 70%;
  height: 73%;
  margin-left: 40px;
  position: absolute;
  inset: 0%;
}

.div-block-3 {
  clear: none;
  position: relative;
  inset: 0% auto auto 0%;
}

.container {
  clear: none;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  padding-top: 20px;
  display: block;
  position: static;
}

.center {
  text-align: center;
  margin-top: 60px;
}

.grid-2 {
  background-color: #77cef221;
  grid-template: "."
                 "."
                 "."
                 "."
                 "."
                 / .75fr .5fr .5fr .5fr 1fr;
}

.grid-2.orange {
  background-color: #f7924721;
}

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

.grid-3 {
  grid-template: ". ."
                 ". ."
                 ". ."
                 "Area ."
                 ". Area-2"
                 / 1fr 1fr 1fr;
}

.supporters {
  margin-top: 60px;
}

.cards-image-mask-2 {
  border-radius: 0%;
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.cards-image-mask-2._2column {
  padding-top: 75%;
}

.cards-image-3 {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cards-image-3._2column {
  height: 80%;
}

.usage {
  margin-top: 20px;
}

.schoollogo {
  object-fit: fill;
  margin-left: 20px;
  margin-right: 20px;
}

.schoollogo.small {
  max-height: 88px;
}

.schoollogo.medium {
  width: 175px;
}

.button-2 {
  margin-top: 20px;
}

.heading-5 {
  margin-top: 100px;
  font-size: 35px;
}

.heading-5.center {
  text-align: center;
  margin-left: auto;
}

.heading-5.space {
  margin-left: 100px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.button-3 {
  margin-top: 20px;
}

.heading-6, .image-7 {
  margin-top: 40px;
}

.contact-form {
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-form.hide {
  display: none;
}

.contact-form.google {
  justify-content: center;
  padding-top: 10px;
  display: flex;
}

.contact-form-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.bold-text-2 {
  letter-spacing: 0;
}

.block-quote-3 {
  font-size: 20px;
}

.right-arrow, .left-arrow, .slide-nav-2 {
  display: none;
}

.grid-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  margin-right: 60px;
  padding-left: 60px;
  display: grid;
}

.grid-4.spce {
  margin-top: 20px;
}

.image-8 {
  max-height: 90px;
}

.mask {
  background-color: var(--white);
  object-fit: fill;
  max-height: 100px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.space {
  margin-top: 40px;
}

.slider-2 {
  background-color: var(--white);
  display: inline;
}

.rich-text-block-2 {
  color: #000;
  text-align: center;
  margin-top: 20px;
}

.text-block-2 {
  color: var(--light-orange);
  text-align: center;
}

.text-block-3 {
  align-items: center;
  display: block;
}

.text-block-3.orange {
  background-color: #0000;
}

.cards-grid-container-3 {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  margin-top: 20px;
  display: grid;
}

.hero-overlay-2 {
  color: #fff;
  background-image: linear-gradient(#00000061, #00000061), url('../images/Photo_on_5-8-19_at_10.48_AM1.jpeg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 90vh;
  max-height: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.hero-overlay-2.narrow {
  background-image: linear-gradient(#1f5064eb, #77cef226), url('../images/00820066_Bowerbird_Photography_2019.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  height: 400px;
  max-height: none;
  padding-bottom: 100px;
  display: block;
}

.hero-overlay-2.narrow.news {
  background-image: linear-gradient(#1f5064eb, #77cef226), url('../images/ThxIcon.png');
  background-position: 0 0, 0 70%;
}

.hero-overlay-2.narrow.sel-resources {
  background-image: linear-gradient(#1f5064eb, #77cef226), url('../images/cdc-8LITuYkZRIo-unsplash.jpg');
  background-position: 0 0, 0 -50px;
  background-size: auto, cover;
}

.hero-overlay-2.narrow.picture {
  background-image: linear-gradient(#1f5064eb, #77cef226), url('../images/pexels-matheus-bertelli-3856035.jpg');
}

.heading-8 {
  color: var(--light-orange);
  text-align: center;
  font-size: 25px;
}

.section-2 {
  outline-offset: 0px;
  outline: 3px #333;
  padding-top: 0;
  padding-bottom: 0;
}

.icon {
  max-width: 300px;
}

.embed {
  justify-content: center;
  margin-bottom: auto;
  margin-right: 5px;
  padding-right: 0;
  display: block;
}

.main-content-2 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-span {
  -webkit-text-fill-color: transparent;
  object-fit: fill;
  background-color: #0f0f0f;
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 3px;
}

.text-span.orange:hover {
  background-color: var(--light-orange);
}

.grid-5 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "."
                       "Area";
}

.paragraph-small {
  text-align: left;
  font-size: 14px;
}

.heading-9, .paragraph-2 {
  display: none;
}

.grid-6 {
  grid-column-gap: 15px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-flow: column;
  justify-items: stretch;
}

.blue {
  background-color: var(--pale-blue);
}

.youtube {
  position: relative;
}

.embednarrow {
  margin-left: 150px;
  margin-right: 150px;
  padding-left: 40px;
  padding-right: 40px;
}

.narrow {
  padding-right: 140px;
}

.image-9, .image-10 {
  float: right;
}

.bold-text-3 {
  float: left;
}

.paragraph-3 {
  margin-bottom: 20px;
}

.heading-10 {
  text-align: center;
  margin-top: 140px;
}

.hide {
  display: none;
}

.bold-text-4, .bold-text-5, .bold-text-6, .bold-text-7 {
  font-weight: 400;
}

.paragraph-4 {
  margin-bottom: 0;
}

.buffer {
  margin-bottom: 40px;
}

.grid-7 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.paragraph-5 {
  text-align: left;
  overflow: scroll;
}

.heading-11 {
  text-align: left;
  margin-bottom: 10px;
}

.image-11 {
  object-fit: fill;
  width: 200px;
  min-width: auto;
}

.image-12 {
  object-fit: cover;
  width: 220px;
  height: 220px;
  overflow: hidden;
}

.contributors-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: ". . . ."
                 ". . . Area"
                 "Area-2 . . ."
                 "Area-3 . . ."
                 / 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: flex;
}

.contributor-image {
  object-fit: cover;
  width: 175px;
  height: 175px;
}

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

.link {
  text-align: left;
}

.link:hover {
  background-color: var(--blue);
}

.text-block-4 {
  font-size: 12px;
}

.text-block-5 {
  font-size: 11px;
}

.footer-text {
  color: #cbcecf;
  font-size: 12px;
}

.text-block-6 {
  color: #e4e4e4;
}

.social-icon {
  opacity: 1;
  color: var(--white);
  margin-right: 10px;
  padding-left: 0;
}

.div-block-5 {
  padding-top: 10px;
}

.cards-section-3 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.cards-section-3.five {
  background-color: var(--light-grey);
  padding-bottom: 40px;
}

.postwrapper {
  box-shadow: 2px 2px 5px 0 var(--light-grey);
  background-image: linear-gradient(#fff, #fff);
  border: 1px solid #b2b6b4;
  border-radius: 7px;
  margin-bottom: 20px;
  padding: 20px;
}

.image-13 {
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 0;
}

.container-2 {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

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

.postsummary {
  margin-bottom: 0;
  padding-top: 10px;
  font-weight: 300;
  display: inline;
}

.postimage {
  object-fit: fill;
  position: static;
}

.postheader {
  margin-bottom: 10px;
  font-weight: 400;
}

.body {
  background-image: linear-gradient(#f0f0f0, #f0f0f0);
}

.paragraph-7 {
  color: var(--white);
  font-size: 20px;
  font-weight: 300;
}

.post-info {
  padding-top: 5px;
}

.readmorelink {
  color: var(--cornflower-blue);
  padding-left: 8px;
  text-decoration: underline;
  display: inline;
}

.readmorelink:hover {
  color: var(--light-orange);
}

.readmorelink:active {
  color: var(--dark-blue);
}

.readmorelink:visited {
  color: var(--cornflower-blue);
  font-weight: 300;
}

.text-block-7 {
  padding-top: 5px;
}

.blogimage {
  color: #fff;
  background-image: linear-gradient(#0009, #0009), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 90vh;
  max-height: 780px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.body-copy {
  text-align: left;
  margin-top: 20px;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
}

.section-3 {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin-top: 10px;
  margin-bottom: 40px;
}

.blog-title {
  text-align: left;
  margin-top: 20px;
  font-weight: 400;
}

.body-2 {
  background-color: #0000;
}

.div-block-6 {
  margin-top: 20px;
}

.text-block-8 {
  text-align: left;
  font-weight: 300;
}

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

.centered-container-2 {
  text-align: center;
  flex: 1;
}

.hero-overlay-3 {
  color: #fff;
  background-image: url('../images/LPS-Hayward.jpg'), linear-gradient(#0009, #0009), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 0 0, 50%;
  background-size: cover, auto, auto;
  justify-content: center;
  align-items: center;
  height: 90vh;
  max-height: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.hero-overlay-3.short {
  background-image: url('../images/LPS-Hayward.jpg'), linear-gradient(#0000, #0000), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%, 0 0, 50%;
  background-attachment: scroll, scroll, scroll;
  height: 74vh;
}

.heading-13 {
  margin-top: 20px;
}

.paragraph-9 {
  margin-bottom: 10px;
}

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

.date {
  color: #888787;
  margin-bottom: 10px;
  font-style: normal;
}

.bold-text-8, .heading-14, .heading-15, .heading-16 {
  text-align: left;
}

.bold-text-9 {
  text-align: center;
  display: block;
}

.heading-17 {
  text-align: left;
  font-size: 25px;
}

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

.div-block-7 {
  padding-top: 20px;
}

.text-block-9 {
  margin-left: 100px;
}

.heading-19 {
  margin-top: -50px;
  margin-bottom: 20px;
}

.heading-20 {
  padding-left: 20px;
  font-size: 22px;
}

.heading-21 {
  text-align: left;
  margin-left: 85px;
  padding-left: 0;
  font-size: 38px;
}

.text-block-10 {
  margin-left: 85px;
  padding-left: 0;
  font-size: 20px;
  font-weight: 300;
  display: block;
}

.text-span-2 {
  border: 1px #000;
  box-shadow: 1px 1px 3px #000;
}

.block-quote-4 {
  box-shadow: 1px 1px 3px 0 var(--pale-blue);
  opacity: 1;
  outline-offset: 0px;
  mix-blend-mode: darken;
  outline: 1px #333;
}

.text-block-11 {
  border: 1px solid var(--blue);
  box-shadow: 0 1px 3px 0 var(--dark-grey);
  outline-color: var(--dark-grey);
  outline-offset: 3px;
  object-fit: fill;
  outline-width: .5px;
  outline-style: none;
  width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  font-weight: 300;
  display: block;
}

.image-14 {
  margin-top: 20px;
}

.image-15 {
  text-align: center;
  border: 1px solid #0000;
  margin-top: 20px;
}

.link-block {
  font-family: Roboto, sans-serif;
}

.text-block-12 {
  text-align: center;
  position: relative;
  overflow: scroll;
}

.button-5 {
  border: 1px none var(--dark-blue);
  background-color: var(--grey);
  text-align: center;
  object-fit: fill;
  border-radius: 5px;
  margin-left: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.container-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template: "Area"
                 "."
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-16 {
  margin-top: 10px;
}

.text-block-13 {
  font-size: 60px;
  line-height: 30px;
  display: inline;
}

.bold-text-10 {
  text-align: center;
  justify-content: center;
  margin-top: 60px;
  font-size: 22px;
  display: flex;
}

.text-block-14 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 20px;
}

.image-17 {
  outline-offset: 0px;
  outline: 3px solid #333;
  padding: 20px 60px;
}

.slide-3 {
  background-image: url('../images/Screen-Shot-2022-09-23-at-5.19.48-PM.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  position: sticky;
}

.grid-8 {
  grid-template-columns: minmax(200px, 1fr) 1fr;
  grid-template-areas: "Area";
}

.column-5 {
  outline-offset: 0px;
  outline: 3px #333;
}

.image-18 {
  border: 1px none var(--blue);
  box-shadow: 1px 1px 3px 0 var(--dark-grey);
  outline-color: var(--blue);
  outline-offset: 0px;
  outline-width: .4px;
  outline-style: none;
  transition: opacity .2s;
  transform: translate(0);
}

.image-19 {
  box-shadow: 1px 1px 3px 0 var(--dark-grey);
  outline-offset: 0px;
  outline: .4px #333;
  margin-top: 0;
  padding-top: 0;
  transition: opacity .2s;
  transform: translate(0);
}

.image-20 {
  box-shadow: 1px 1px 3px 0 var(--dark-grey);
  outline-offset: 0px;
  outline: .3px #333;
  margin-top: 25px;
}

.image-21 {
  box-shadow: 1px 1px 3px 0 var(--dark-grey);
  outline-offset: 0px;
  outline: .4px #333;
  margin-top: 10px;
}

.image-22 {
  box-shadow: 1px 1px 3px 0 var(--dark-grey);
  outline-offset: 0px;
  outline: .4px #333;
  margin-top: -10px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.image-23 {
  padding-top: 40px;
  transition: opacity .2s;
}

.bold-text-11 {
  font-size: 0;
}

.heading-22 {
  margin-top: 75px;
}

.column-6 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.image-24 {
  margin-top: -83px;
}

.heading-23 {
  color: #0f0f0f;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 40px;
}

.text-block-15 {
  border: 1px solid var(--cornflower-blue);
  box-shadow: 1px 1px 3px 0 var(--dark-grey);
  margin-top: 20px;
  padding: 10px;
}

.heading-24 {
  margin-top: -41px;
}

.heading-25 {
  margin-top: 40px;
}

.column-7 {
  margin-top: 60px;
}

.image-25 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.dropdown-link {
  background-color: var(--white);
  font-size: 14px;
}

.dropdown-link:hover {
  color: var(--light-orange);
}

.dropdown-link-2 {
  background-color: var(--white);
  font-size: 14px;
}

.dropdown-link-2:hover {
  color: var(--light-orange);
}

.dropdown-link-3 {
  background-color: var(--white);
  font-size: 14px;
}

.dropdown-link-3:hover {
  color: var(--light-orange);
}

.dropdown-link-4 {
  background-color: var(--white);
  color: var(--black);
  font-size: 14px;
}

.dropdown-link-4:hover {
  color: var(--light-orange);
}

.dropdown-link-4.w--current {
  transition: opacity .2s;
}

.dropdown {
  background-color: var(--white);
  font-size: 14px;
}

.dropdown:hover {
  color: var(--light-orange);
}

.dropdown.dropdown.w--current {
  color: var(--black);
}

.dropdown.dropdown.w--current:hover {
  color: var(--light-orange);
}

.heading-26 {
  margin-top: 70px;
}

.heading-27 {
  font-size: 25px;
}

.heading-28 {
  font-size: 30px;
}

.heading-29 {
  font-size: 27px;
}

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

.video-3 {
  transition: opacity .2s;
}

.heading-30 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.image-26 {
  margin-top: 0;
}

.heading-31 {
  margin-top: 60px;
  margin-bottom: 40px;
}

.image-27 {
  padding: 40px;
}

.container-4 {
  padding-left: 81px;
}

.dropdown-toggle, .dropdown-toggle-2 {
  padding-left: 10px;
}

.column-8 {
  padding-bottom: 3px;
}

.heading-32 {
  margin-top: -51px;
}

.heading-33 {
  margin-top: -35px;
}

.dropdown-link-5, .dropdown-link-6, .dropdown-link-7 {
  font-size: 14px;
}

.heading-34 {
  margin-top: 40px;
}

.heading-35 {
  margin-top: 60px;
  padding-left: 100px;
}

.paragraph-11 {
  margin-left: 100px;
  font-size: 20px;
  font-weight: 300;
}

.grid-9 {
  margin-bottom: 100px;
}

.link-block-2 {
  background-image: url('../images/Screen-Shot-2022-09-29-at-11.49.25-AM.png');
  background-position: 0 0;
  background-size: contain;
}

.link-block-2:hover {
  background-color: var(--dark-grey);
}

.link-block-3 {
  background-image: url('../images/Screen-Shot-2022-09-29-at-11.54.24-AM.png');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: contain;
}

.grid-10 {
  grid-template-columns: 1fr minmax(200px, 1fr);
}

.link-block-4 {
  background-image: url('../images/Screen-Shot-2022-09-29-at-11.49.25-AM.png');
  background-position: 0 0;
  background-size: auto;
}

.image-28 {
  border: 1px solid var(--blue);
  margin-top: 40px;
  padding: 10px;
}

.image-29 {
  border: 1px solid var(--blue);
  outline-offset: 0px;
  outline: 3px #00e;
  margin-top: 40px;
  padding: 10px;
}

.image-30 {
  border: 1px solid var(--blue);
  margin-top: 40px;
  margin-left: 0;
  padding: 10px;
}

.image-31 {
  border: 1px solid var(--blue);
  margin-top: 40px;
  padding: 10px;
}

.column-9 {
  margin-top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.column-10 {
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.image-32 {
  border: 1px solid var(--blue);
  margin-top: 20px;
  padding: 10px;
}

.image-33, .image-34, .image-35, .image-36, .image-37 {
  border: 1px solid var(--blue);
  margin-top: 40px;
  padding: 10px;
}

.container-5 {
  padding-left: 100px;
}

.div-block-8 {
  background-image: linear-gradient(#ffffff17, #ffffff17), linear-gradient(#0000, #0000);
}

.column-11 {
  background-color: #0000;
}

.text-block-16 {
  color: #0000;
  margin-top: 40px;
  margin-bottom: 60px;
}

.text-block-17, .text-block-18, .text-block-19 {
  text-align: center;
  margin-bottom: 20px;
}

.image-38 {
  box-shadow: 1px 1px 3px #000;
}

.image-39 {
  box-shadow: 1px 1px 3px 0 var(--dark-grey);
  transform: translate(0);
}

.image-40 {
  box-shadow: 1px 1px 3px 0 var(--dark-grey);
}

.image-41 {
  box-shadow: 1px 1px 3px 0 var(--dark-grey);
  margin-bottom: 60px;
}

.text-block-20 {
  color: #0000;
  margin-bottom: 40px;
}

.column-12 {
  margin-top: 32px;
  padding-top: 10px;
}

.text-block-21 {
  border: 1px none var(--dark-blue);
  color: var(--dark-blue);
  text-align: center;
  border-radius: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 0;
  font-size: 25px;
}

.bold-text-13 {
  color: var(--light-orange);
}

.image-42 {
  margin-top: 40px;
}

.image-43 {
  margin-top: 20px;
}

.dropdown-link-8, .dropdown-link-8.w--current {
  color: var(--black);
}

.columns-2 {
  margin-left: -152px;
}

.heading-36 {
  color: #0000;
}

.image-44, .image-45 {
  margin-top: 40px;
}

.heading-37, .heading-38 {
  margin-top: 40px;
  font-size: 28px;
}

.button-6 {
  text-align: center;
  object-fit: fill;
}

.paragraph-12 {
  margin-left: 10px;
}

.image-46 {
  text-align: center;
  display: inline-block;
}

.heading-39 {
  margin-top: 40px;
}

.dropdown-link-9 {
  font-size: 14px;
  transition: opacity .2s;
}

.statheader {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.heading-40 {
  color: #fff;
  text-align: center;
}

.container-6 {
  margin-top: 20px;
}

@media screen and (max-width: 991px) {
  .button.hollow.white {
    margin-top: 10px;
  }

  .button.in-pricing {
    font-size: 14px;
    line-height: 18px;
  }

  .button.topspace {
    margin-top: 20px;
    padding-bottom: 19px;
    display: block;
  }

  .nav-link {
    color: #fff;
    padding: 18px 0;
  }

  .nav-link:hover {
    box-shadow: inset 0 3px #0000;
  }

  .nav-link.w--current {
    box-shadow: inset 0 1px #0000;
  }

  .nav-link.menu {
    color: #000;
    padding: 22px 17px;
    font-size: 30px;
  }

  .nav-link.menu.w--open {
    color: #fff;
    background-color: #2b2c2e;
  }

  .section {
    padding-bottom: 40px;
  }

  .section.main.usecases {
    padding-top: 70px;
    padding-bottom: 0;
  }

  .section.main.donate {
    background-position: 0 0, 90%;
  }

  .nav-menu {
    background-color: #2b2c2e;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .main-feature-group {
    margin-top: 0;
  }

  .main-image {
    margin-top: 49px;
  }

  .client-logo {
    width: 75%;
  }

  .cards-grid-container {
    grid-column-gap: 20px;
  }

  .cards-image-mask.small {
    margin-bottom: 0;
  }

  .gallery-grid-container {
    align-self: stretch;
  }

  .hero-image-mask.center {
    margin-left: auto;
  }

  .hero-image.badge {
    margin-left: 0;
  }

  .feature-image {
    object-fit: contain;
  }

  .cards-section-2 {
    padding-bottom: 60px;
  }

  .cards-grid-container-2 {
    grid-column-gap: 20px;
  }

  .center {
    margin-top: 10px;
  }

  .video-2 {
    margin-top: 100px;
  }

  .cards-grid-container-3 {
    grid-column-gap: 20px;
  }

  .embed {
    margin-right: 0;
    display: block;
  }

  .list-item {
    padding-bottom: 20px;
  }

  .grid-7 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contributor-image {
    object-fit: cover;
  }

  .icon-image {
    object-fit: contain;
    width: 200px;
    height: 200px;
  }

  .paragraph-6 {
    margin-right: 0;
  }

  .div-block-4 {
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    margin-bottom: 8px;
  }

  .logo-text {
    margin-top: 15px;
  }

  .nav-link.menu {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .section {
    text-align: center;
    padding-top: 43px;
    padding-bottom: 43px;
  }

  .section.main {
    margin-top: 51px;
  }

  .section.main.home {
    background-image: linear-gradient(#00000080, #00000080), url('../images/01440066_Bowerbird_Photography_2019.jpg');
    background-position: 0 0, 0 0;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
  }

  .section.main.usecases {
    background-image: linear-gradient(#0000009c, #0000009c), url('../images/00880066_Bowerbird_Photography_2019.jpg');
    background-position: 0 0, 50% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .nav-menu {
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-title {
    margin-top: 35px;
  }

  .newsletter-form {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .section-subtitle {
    margin-bottom: 44px;
  }

  .plan-wrapper {
    margin-bottom: 34px;
    margin-left: 5%;
    margin-right: 5%;
  }

  .divider {
    width: 100%;
  }

  .feature {
    text-align: center;
    margin-bottom: 32px;
  }

  .feature-row.right {
    direction: ltr;
  }

  .feature-icon {
    margin-bottom: 4px;
  }

  .main-feature-group {
    margin-top: 0;
    margin-bottom: 34px;
  }

  .client-logo {
    width: 65%;
  }

  .cards-section {
    padding: 40px 20px;
  }

  .cards-grid-container {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    align-self: stretch;
    max-width: none;
  }

  .cards-grid-container.team-cards {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
    margin-left: 10px;
    margin-right: 10px;
  }

  .cards-grid-container._4column {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .cards-grid-container.contributors {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 0;
  }

  .cards-image-mask {
    height: 50%;
    padding-top: 50%;
  }

  .cards-image-mask.small {
    object-fit: fill;
    width: 50%;
    position: relative;
    overflow: visible;
  }

  .cards-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
    padding-left: 0;
  }

  .gallery {
    padding: 40px 20px;
  }

  .gallery-grid-container {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .gallery-grid-container.voices {
    grid-template-columns: 1fr 1fr;
    margin-left: 10px;
    margin-right: 10px;
  }

  .call-to-action, .hero {
    padding: 40px 20px;
  }

  .flex-container {
    flex-direction: column;
  }

  .hero-image-mask {
    order: -1;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-image {
    object-fit: contain;
  }

  .hero-image.badge {
    width: 80%;
    margin-left: 40px;
  }

  .feature-section-1 {
    padding: 40px 20px;
  }

  .feature-image-mask {
    margin-right: 0;
  }

  .feature-image-mask.image-right {
    margin-top: 20px;
  }

  .feature-image {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
  }

  .feature-image.tall {
    max-width: 70%;
    display: block;
  }

  .hero-overlay {
    padding: 40px 20px;
  }

  .hero-overlay.smallhero {
    height: 64vh;
  }

  .gallery-2, .cards-section-2, .main-content {
    padding: 40px 20px;
  }

  .cards-grid-container-2 {
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row dense;
    align-self: stretch;
    max-width: none;
  }

  .cards-image-2 {
    padding-left: 25%;
    padding-right: 25%;
  }

  .grid-3 {
    grid-column-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .button-2 {
    margin-bottom: 20px;
  }

  .contact-form {
    padding: 40px 20px;
  }

  .column-2 {
    clear: none;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: nowrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
  }

  .video-2 {
    margin-top: 20px;
  }

  .cards-grid-container-3 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    align-self: stretch;
    max-width: none;
  }

  .hero-overlay-2 {
    padding: 40px 20px;
  }

  .embed {
    justify-content: flex-start;
    margin-left: 40px;
    margin-right: 40px;
    display: block;
  }

  .main-content-2 {
    padding: 40px 20px;
  }

  .embednarrow {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .image-10 {
    display: inline-block;
  }

  .heading-10 {
    margin-top: 0;
  }

  .grid-7 {
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: 10px;
    margin-right: 10px;
  }

  .contributors-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-left: 10px;
    margin-right: 10px;
  }

  .icon-image {
    clear: none;
    object-fit: contain;
    width: 250px;
    height: 250px;
    position: static;
    overflow: hidden;
  }

  .cards-section-3, .blogimage {
    padding: 40px 20px;
  }

  .body-copy {
    margin-left: 20px;
    margin-right: 20px;
  }

  .hero-overlay-3 {
    padding: 40px 20px;
  }

  .heading-19 {
    margin-top: auto;
  }
}

@media screen and (max-width: 479px) {
  .button.hollow.white {
    margin-top: 10px;
  }

  .button.space {
    margin-top: 0;
  }

  .section.main.home {
    background-image: linear-gradient(#38333387, #38333387), url('../images/01440066_Bowerbird_Photography_2019.jpg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .section.main.usecases {
    background-image: linear-gradient(#00000096, #00000096), url('../images/00880066_Bowerbird_Photography_2019.jpg');
    background-position: 0 0, 75%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .section.main.donate {
    background-image: linear-gradient(146deg, #000000c4 2%, #77cef257), url('../images/thxsloth.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, 400px;
    background-attachment: scroll, scroll;
  }

  .newsletter-button {
    font-size: 13px;
  }

  .client-logo {
    object-fit: fill;
    width: 100%;
  }

  .press-logo {
    width: 28%;
  }

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

  .centered-container.info {
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
  }

  .cards-grid-container {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cards-grid-container.team-cards {
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-left: 10px;
    margin-right: 10px;
  }

  .cards-grid-container._4column {
    grid-template-columns: 1fr;
  }

  .cards-grid-container.contributors {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
  }

  .cards-image-mask {
    padding-top: 50%;
  }

  .cards-image {
    width: 100%;
    height: 100%;
    padding-left: 0;
  }

  .gallery-grid-container {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-grid-container.voices {
    grid-template-columns: 1fr;
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero-image.badge {
    margin-left: 20px;
  }

  .hero-overlay.smallhero {
    height: 100vh;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .image-3, .image-4 {
    margin-top: 10px;
  }

  .image-5 {
    margin-top: 0;
  }

  .cards-grid-container-2 {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cards-image-2 {
    padding-left: 25%;
    padding-right: 25%;
  }

  .grid-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .column-3 {
    object-fit: fill;
  }

  .grid-4 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    margin-right: 0;
    padding-left: 0;
  }

  .image-8 {
    object-fit: fill;
    max-height: 90px;
    display: inline-block;
  }

  .mask {
    max-height: none;
    overflow: hidden;
  }

  .heading-7 {
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .cards-grid-container-3 {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .embed {
    margin-left: 0;
    margin-right: 0;
  }

  .embednarrow {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .image-10 {
    position: static;
  }

  .heading-10 {
    margin-top: 0;
  }

  .paragraph-4 {
    margin-bottom: 0;
  }

  .grid-7 {
    grid-template-columns: 1fr 1fr;
    margin-left: 10px;
    margin-right: 10px;
  }

  .contributors-grid {
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: 10px;
    margin-right: 10px;
  }

  .contributor-image {
    height: 100px;
  }

  .body-copy {
    margin-left: 20px;
    margin-right: 20px;
  }

  .centered-container-2 {
    text-align: left;
  }

  .image-47 {
    overflow: clip;
  }
}

#w-node-ce2646b1-b17f-342d-4e46-47bb779b5e84-779b5e7f, #w-node-ce2646b1-b17f-342d-4e46-47bb779b5e85-779b5e7f, #w-node-ce2646b1-b17f-342d-4e46-47bb779b5e86-779b5e7f, #w-node-ce2646b1-b17f-342d-4e46-47bb779b5e87-779b5e7f, #w-node-_994ceb7c-4563-f79d-0295-9f67dc316518-779b5e7f, #w-node-_7d7b6b3d-7bd4-f7b6-bf3b-b0380a9c2d23-779b5e7f {
  place-self: center;
}

#w-node-ce2646b1-b17f-342d-4e46-47bb779b5e89-779b5e7f {
  justify-self: center;
}

#w-node-ce2646b1-b17f-342d-4e46-47bb779b5e8a-779b5e7f {
  grid-area: 2 / 2 / 3 / 3;
  place-self: center;
}

#w-node-dc63761f-d368-f899-f7fc-310c4ed484f2-779b5e7f {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center;
}

#w-node-_2210b710-ee5b-d511-e7cb-247ac683f88d-779b5e7f {
  place-self: auto center;
}

#w-node-_0df63d0e-95a7-42ca-7913-c5827930b00a-779b5e7f {
  grid-area: Area-2;
}

#w-node-_9827425e-400d-041e-15da-a802f806a470-766f35e0 {
  align-self: auto;
}

#w-node-cfd4c1e2-29e5-1088-d04e-990ed425d27a-9f6f35f4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9827425e-400d-041e-15da-a802f806a470-326f360f, #w-node-_9a19accf-1607-c73a-7ffc-bc5cc2879d7e-326f360f {
  align-self: auto;
}

#w-node-d8daa8f4-ebfc-6b8d-e98d-b93f93fd6494-ef6f3615 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e2a60316-ef83-88ac-282c-4ba69a7003b5-ef6f3615, #w-node-_7edb3c10-64e9-3a65-563d-87ecefd65f24-ef6f3615, #w-node-d2ac9d14-a961-9319-fa5f-9dd9fdeb4ae3-ef6f3615, #w-node-_18fb2122-ace8-ebd4-edc2-e828d1e9c5d5-ef6f3615 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_796e161d-a4fc-0cd7-3aab-4d63277ffe0f-ef6f3615 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_269e4a66-4e8a-131d-6d2d-9cbffbca38f9-ef6f3615 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_9cdb80c7-ac41-1433-c7b7-afacca58c207-ef6f3615 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_201a9b0a-9e8f-2423-2fd3-3c0f6610a9d0-ef6f3615, #w-node-_201a9b0a-9e8f-2423-2fd3-3c0f6610a9d2-ef6f3615, #w-node-_201a9b0a-9e8f-2423-2fd3-3c0f6610a9d4-ef6f3615 {
  place-self: center;
}

#w-node-_201a9b0a-9e8f-2423-2fd3-3c0f6610a9d6-ef6f3615 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center;
}

#w-node-d11cebb9-8dbe-0f7f-44f4-ce3d43bc8029-ef6f3615, #w-node-d11cebb9-8dbe-0f7f-44f4-ce3d43bc802b-ef6f3615, #w-node-d11cebb9-8dbe-0f7f-44f4-ce3d43bc802d-ef6f3615 {
  place-self: center;
}

#w-node-d11cebb9-8dbe-0f7f-44f4-ce3d43bc802f-ef6f3615 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center;
}

#w-node-_38f14d8c-3677-8a77-1d95-84f0256d2b32-686f3617, #w-node-_38f14d8c-3677-8a77-1d95-84f0256d2b34-686f3617, #w-node-_38f14d8c-3677-8a77-1d95-84f0256d2b36-686f3617 {
  place-self: center;
}

#w-node-_38f14d8c-3677-8a77-1d95-84f0256d2b38-686f3617 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center;
}

#w-node-_38f14d8c-3677-8a77-1d95-84f0256d2b3c-686f3617, #w-node-_38f14d8c-3677-8a77-1d95-84f0256d2b3e-686f3617, #w-node-_38f14d8c-3677-8a77-1d95-84f0256d2b40-686f3617 {
  place-self: center;
}

#w-node-_38f14d8c-3677-8a77-1d95-84f0256d2b42-686f3617 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center;
}

#w-node-cfd4c1e2-29e5-1088-d04e-990ed425d27a-ff2c6d94 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 767px) {
  #w-node-ca8d2e36-0a13-6186-efff-002b7051101e-676f35ba, #w-node-ca8d2e36-0a13-6186-efff-002b70511020-676f35ba, #w-node-ca8d2e36-0a13-6186-efff-002b70511025-676f35ba {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ca8d2e36-0a13-6186-efff-002b70511027-676f35ba {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_9827425e-400d-041e-15da-a802f806a475-766f35e0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9827425e-400d-041e-15da-a802f806a47c-766f35e0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-ca8d2e36-0a13-6186-efff-002b7051101e-766f35e0, #w-node-ca8d2e36-0a13-6186-efff-002b70511020-766f35e0, #w-node-ca8d2e36-0a13-6186-efff-002b70511025-766f35e0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ca8d2e36-0a13-6186-efff-002b70511027-766f35e0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-a6ab5183-0001-e706-93ab-db663e4564d6-326f360e, #w-node-a6ab5183-0001-e706-93ab-db663e4564d8-326f360e, #w-node-a6ab5183-0001-e706-93ab-db663e4564dd-326f360e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a6ab5183-0001-e706-93ab-db663e4564df-326f360e {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-e1a5e373-f75e-c54b-5322-ca6a42447b94-326f360e, #w-node-e1a5e373-f75e-c54b-5322-ca6a42447b97-326f360e, #w-node-_9827425e-400d-041e-15da-a802f806a475-326f360f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9827425e-400d-041e-15da-a802f806a47c-326f360f {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_9a19accf-1607-c73a-7ffc-bc5cc2879d81-326f360f, #w-node-_9a19accf-1607-c73a-7ffc-bc5cc2879d83-326f360f, #w-node-_9a19accf-1607-c73a-7ffc-bc5cc2879d88-326f360f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9a19accf-1607-c73a-7ffc-bc5cc2879d8a-326f360f {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-ca8d2e36-0a13-6186-efff-002b7051101e-326f360f, #w-node-ca8d2e36-0a13-6186-efff-002b70511020-326f360f, #w-node-ca8d2e36-0a13-6186-efff-002b70511025-326f360f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ca8d2e36-0a13-6186-efff-002b70511027-326f360f {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-ca8d2e36-0a13-6186-efff-002b7051101e-0d6f3613, #w-node-ca8d2e36-0a13-6186-efff-002b70511020-0d6f3613, #w-node-ca8d2e36-0a13-6186-efff-002b70511025-0d6f3613 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ca8d2e36-0a13-6186-efff-002b70511027-0d6f3613 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-ca8d2e36-0a13-6186-efff-002b7051101e-ef6f3615, #w-node-ca8d2e36-0a13-6186-efff-002b70511020-ef6f3615, #w-node-ca8d2e36-0a13-6186-efff-002b70511025-ef6f3615 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ca8d2e36-0a13-6186-efff-002b70511027-ef6f3615 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_9ee64ddf-8bde-b04a-98f3-6ac0191ee811-ef6f3615, #w-node-_9ee64ddf-8bde-b04a-98f3-6ac0191ee813-ef6f3615, #w-node-_9ee64ddf-8bde-b04a-98f3-6ac0191ee818-ef6f3615 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9ee64ddf-8bde-b04a-98f3-6ac0191ee81a-ef6f3615 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_3569b641-a08b-1386-7555-34759f094b96-ef6f3615 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3569b641-a08b-1386-7555-34759f094b98-ef6f3615 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_9049061d-980e-6603-57a8-e1adaf79a905-ef6f3615 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9049061d-980e-6603-57a8-e1adaf79a907-ef6f3615 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-ca8d2e36-0a13-6186-efff-002b7051101e-686f3617, #w-node-ca8d2e36-0a13-6186-efff-002b70511020-686f3617, #w-node-ca8d2e36-0a13-6186-efff-002b70511025-686f3617 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ca8d2e36-0a13-6186-efff-002b70511027-686f3617 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ca8d2e36-0a13-6186-efff-002b70511014-676f35ba, #w-node-ca8d2e36-0a13-6186-efff-002b7051101b-676f35ba, #w-node-ca8d2e36-0a13-6186-efff-002b70511022-676f35ba {
    grid-column: span 1 / span 1;
  }

  #w-node-ce2646b1-b17f-342d-4e46-47bb779b5e84-779b5e7f {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-ce2646b1-b17f-342d-4e46-47bb779b5e85-779b5e7f, #w-node-ce2646b1-b17f-342d-4e46-47bb779b5e86-779b5e7f, #w-node-ce2646b1-b17f-342d-4e46-47bb779b5e87-779b5e7f, #w-node-ce2646b1-b17f-342d-4e46-47bb779b5e8a-779b5e7f {
    align-self: center;
  }

  #w-node-dc63761f-d368-f899-f7fc-310c4ed484f2-779b5e7f {
    grid-area: 1 / 1 / 1 / 1;
    align-self: center;
  }

  #w-node-_2210b710-ee5b-d511-e7cb-247ac683f88d-779b5e7f {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto center;
  }

  #w-node-_9827425e-400d-041e-15da-a802f806a469-766f35e0, #w-node-_9827425e-400d-041e-15da-a802f806a470-766f35e0, #w-node-_9827425e-400d-041e-15da-a802f806a477-766f35e0, #w-node-ca8d2e36-0a13-6186-efff-002b70511014-766f35e0, #w-node-ca8d2e36-0a13-6186-efff-002b7051101b-766f35e0, #w-node-ca8d2e36-0a13-6186-efff-002b70511022-766f35e0 {
    grid-column: span 1 / span 1;
  }

  #w-node-f35a758f-d279-2e55-01fc-7ae7c4cdaf8d-9f6f35f4, #w-node-f35a758f-d279-2e55-01fc-7ae7c4cdaf91-9f6f35f4, #w-node-f35a758f-d279-2e55-01fc-7ae7c4cdaf95-9f6f35f4, #w-node-_0610eec9-e903-271c-2eaa-9c3615fe27ae-9f6f35f4, #w-node-_903e6da0-1e68-6e0f-7e8a-60c5e4505f27-9f6f35f4, #w-node-f35a758f-d279-2e55-01fc-7ae7c4cdaf99-9f6f35f4 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a6ab5183-0001-e706-93ab-db663e4564cc-326f360e, #w-node-a6ab5183-0001-e706-93ab-db663e4564d3-326f360e, #w-node-a6ab5183-0001-e706-93ab-db663e4564da-326f360e, #w-node-e1a5e373-f75e-c54b-5322-ca6a42447b91-326f360e, #w-node-_9827425e-400d-041e-15da-a802f806a469-326f360f, #w-node-_9827425e-400d-041e-15da-a802f806a470-326f360f, #w-node-_9827425e-400d-041e-15da-a802f806a477-326f360f, #w-node-_9a19accf-1607-c73a-7ffc-bc5cc2879d77-326f360f, #w-node-_9a19accf-1607-c73a-7ffc-bc5cc2879d7e-326f360f, #w-node-_9a19accf-1607-c73a-7ffc-bc5cc2879d85-326f360f, #w-node-ca8d2e36-0a13-6186-efff-002b70511014-326f360f, #w-node-ca8d2e36-0a13-6186-efff-002b7051101b-326f360f, #w-node-ca8d2e36-0a13-6186-efff-002b70511022-326f360f, #w-node-ca8d2e36-0a13-6186-efff-002b70511014-0d6f3613, #w-node-ca8d2e36-0a13-6186-efff-002b7051101b-0d6f3613, #w-node-ca8d2e36-0a13-6186-efff-002b70511022-0d6f3613, #w-node-ca8d2e36-0a13-6186-efff-002b70511014-ef6f3615, #w-node-ca8d2e36-0a13-6186-efff-002b7051101b-ef6f3615, #w-node-ca8d2e36-0a13-6186-efff-002b70511022-ef6f3615, #w-node-_9ee64ddf-8bde-b04a-98f3-6ac0191ee807-ef6f3615, #w-node-_9ee64ddf-8bde-b04a-98f3-6ac0191ee80e-ef6f3615, #w-node-_9ee64ddf-8bde-b04a-98f3-6ac0191ee815-ef6f3615, #w-node-_3569b641-a08b-1386-7555-34759f094b93-ef6f3615, #w-node-_9049061d-980e-6603-57a8-e1adaf79a902-ef6f3615, #w-node-ca8d2e36-0a13-6186-efff-002b70511014-686f3617, #w-node-ca8d2e36-0a13-6186-efff-002b7051101b-686f3617, #w-node-ca8d2e36-0a13-6186-efff-002b70511022-686f3617 {
    grid-column: span 1 / span 1;
  }

  #w-node-f35a758f-d279-2e55-01fc-7ae7c4cdaf8d-ff2c6d94, #w-node-f35a758f-d279-2e55-01fc-7ae7c4cdaf91-ff2c6d94, #w-node-f35a758f-d279-2e55-01fc-7ae7c4cdaf95-ff2c6d94, #w-node-_0610eec9-e903-271c-2eaa-9c3615fe27ae-ff2c6d94, #w-node-_903e6da0-1e68-6e0f-7e8a-60c5e4505f27-ff2c6d94, #w-node-f35a758f-d279-2e55-01fc-7ae7c4cdaf99-ff2c6d94 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


