
.single-column-full-image-block {
  position: relative;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
.single-column-full-image-block .section__shell {
  position: relative;
  background: var(--color--primary);
}
.single-column-full-image-block .section__content .image-wrapper {
  position: relative;
  overflow: visible;
  text-align: center;
  width: 100%;
  height: 211px;
}
.single-column-full-image-block .section__content .image-wrapper img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
.single-column-full-image-block .section__content .image-wrapper .image-overlay{
  position: absolute;
  top: 0px;
  left: 0;
  height: 211px;
  width: 100%;
  background: rgba(118,188,33,0.9);
}
.single-column-full-image-block .section__content .image-wrapper .image-overlay .image-overlay-inner{
  height: 100%;
  width: 100%;
  max-width: var(--width--section-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color--primary);
  font-family: var(--font-family);
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 68.75em) {
  .single-column-full-image-block .section__content .image-wrapper .image-overlay .image-overlay-inner{
    padding-left: 0px;
    padding-right: 0px;
  }
}
.single-column-full-image-block .section__content .image-wrapper .image-overlay .section__heading {
  color: var(--color--white);
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 25px;
  line-height: 1;
  border-bottom: 2px solid var(--color--white);
  padding-bottom: 1rem
}
.single-column-full-image-block .section__content .image-wrapper .image-overlay .section__content p {
  color: var(--color--white);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  max-width: 798px;
  text-align: left;
  padding-top: 0.5rem;
}

/** Mobile Design Overrides **/
@media (min-width: 650px) {
  .single-column-full-image-block .section__content .image-wrapper .image-overlay .section__heading {
    font-size: 45px;
  }

  .single-column-full-image-block .section__content .image-wrapper .image-overlay .section__content p {
    font-size: 25px;
  }
}

/* @media (max-width: 1030px) {
  .single-column-full-image-block .section__content .image-wrapper .image-overlay{
    bottom: 2rem;
    height: auto;
    max-width: 90%;
    padding: 1rem 1rem !important;
  }
  .single-column-full-image-block .section__content .image-wrapper .image-overlay .section__heading {
    font-size: 20px;
    line-height: 1.5;
  }
  .single-column-full-image-block .section__content .image-wrapper .image-overlay .section__content p {
    font-size: 12px !important;
    line-height: 1.5;
  }
} */