.floating-image-with-text__container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-end;
  @media (min-width: 1200px) {
    align-items: flex-end;
  }
  position: relative;
  .floating-image__media-container {
    @media (min-width: 750px) {
      width: calc(40% - 1.5rem);
      padding: 5rem;
    }
    position: relative;
    z-index: 1;
  }
  .floating-image-with-text__content-container {
    position: relative;
    z-index: 1;
    padding: 0 3rem 2rem;
    @media (min-width: 750px) {
      width: calc(60% - 1.5rem);
      padding: 5rem;
    }
    @media (min-width: 1200px) {
      padding-bottom: 10rem;
      max-width: 80%;
    }
  }
}
.floating-image-with-text-section {
  position: relative;
}
.floating-image__icon-wrapper {
  position: absolute;
  left: var(--x-position);
  top: var(--y-position);
}
.floating-image-with-text__container:after {
  content: "";
  height: 60%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(/cdn/shop/files/Rectangle_15.png?v=1735382757);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
