.home-problem-5__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}

.home-problem-5__image-wrap {
  position: relative;
}

.home-problem-5__image-wrap img {
  display: block;
  width: 100%;
  border-radius: 22px;
}

.home-problem-5__icon-card {
  position: absolute;
  right: 36px;
  bottom: -54px;
  display: grid;
  place-items: center;
  width: 188px;
  height: 188px;
  border-radius: 22px;
  background: var(--color-background-dark);
  box-shadow: 0 12px 22px rgba(var(--color-primary-rgb), 0.22);
}

.home-problem-5__icon-card svg {
  width: 94px;
  height: 94px;
  color: var(--color-white);
}

.home-problem-5__content {
  padding-bottom: 20px;
}

@media (max-width: 1080px) {
  .home-problem-5__grid {
    grid-template-columns: 1fr;
  }

  .home-problem-5__icon-card {
    right: 24px;
    bottom: 24px;
    width: 180px;
    height: 180px;
  }

  .home-problem-5__icon-card svg {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 767px) {
  .home-problem-5__icon-card {
    position: static;
    margin: 18px auto 0;
  }
}
