.investment-case {
  display: flex;
  flex-wrap: wrap;
  padding: auto;
  gap: 2rem;
}
.investment-case .case {
  width: 100%;
  display: flex;
  gap: 2rem;
  background: #f2f2f2;
  padding: 3rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #213077 0%, #091bff 100%);
  position: relative !important;
  overflow: auto;
}
.investment-case .case:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./../../../assets/images/theme/gradient-bg-twirl.jpg") center/cover no-repeat;
  opacity: 0.5;
  mix-blend-mode: color-burn;
  pointer-events: none;
  z-index: 0;
}
.investment-case .case > * {
  z-index: 9;
  position: relative;
}
.investment-case .case .icon {
  background: #FF6D00;
  border-radius: 16px;
  min-width: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.investment-case .case .icon img {
  width: 30px;
}
.investment-case .case .content h4 {
  color: white;
}
.investment-case .case .content p {
  font-size: var(--wp--preset--font-size--font-18);
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 1024px) {
  .investment-case .case {
    width: calc(50% - 2rem);
  }
}/*# sourceMappingURL=block-investment-case.css.map */