.HeroItem {
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
  overflow: hidden;
  border-radius: 1.563rem;
  background-color: #f8f8f8;
}

@media (max-width: 48rem) {
  .HeroItem {
    flex-direction: column;
  }
}

.HeroItem::before, .HeroItem::after {
  z-index: -1;
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
}

@media (min-width: 48.01rem) {
  .HeroItem::before, .HeroItem::after {
    content: "";
  }
}

.HeroItem::before {
  right: 0;
  bottom: 50%;
  width: 27.063rem;
  background-color: rgba(252, 187, 24, 0.8);
}

.HeroItem::after {
  left: 50%;
  bottom: -50%;
  width: 17.563rem;
  background-color: rgba(0, 171, 227, 0.4);
}

.HeroItem-content {
  display: flex;
  flex-direction: column;
  padding: 4.5rem 2.5rem 4.5rem 5rem;
}

@media (max-width: 48rem) {
  .HeroItem-content {
    padding: 1.5rem;
  }
}

.HeroItem-title {
  font-size: 2.375rem;
  font-weight: 700;
}

.HeroItem-text {
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.HeroItem-btnHolder {
  margin-top: auto;
}

.HeroItem picture img {
  width: 100%;
  height: 100%;
  max-width: 24.375rem;
  object-fit: contain;
}

@media (max-width: 48rem) {
  .HeroItem picture img {
    max-height: 18.75rem;
    max-width: none;
    width: 100%;
    object-fit: cover;
  }
}

/*# sourceMappingURL=hero-item.min.css.map */
