.fc_simple_banner {
  display: flex;
  position: relative;
}

.fc_simple_banner .banner_inner {
  width: 100%;
  border-radius: 20px;
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  padding: clamp(40px, 5vw, 100px);
}

.fc_simple_banner .banner_inner:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0 auto auto 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    0deg,
    rgba(71, 78, 24, 0.7) 0%,
    rgba(71, 78, 24, 0.7) 100%
  );
  border-radius: 20px;
}

.fc_simple_banner .banner_inner .wp_content {
  max-width: 800px;
}

@media (min-width: 1024px) {
  .fc_simple_banner .banner_inner {
    min-height: 600px;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
  }
}
