.stages__body {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px 30px
}
.stages__item {
  position: relative;
  border: 1px solid #efefef;
  border-radius: 6px;
  padding: 30px;
  background: #fff linear-gradient(145deg,rgba(229,235,244,.2) 0,rgba(229,235,244,.2) 100%)
}
.stages__item_last {
  display: grid;
  place-items: center
}
.stages__number {
  position: absolute;
  right: 20px;
  top: 0;
  translate: 0 -50%;
  background-color: #30b45b;
  color: #fff;
  border-radius: 3px;
  width: 40px;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  font-weight: 700
}
.stages__img {
  margin-bottom: 25px;
  width: 64px
}
.stages__img img {
  width: 100%;
  height: auto
}
.stages__title-item {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 18px;
  line-height: 145%;
  color: #30b45b
}
.stages__text {
  line-height: 1.6;
  color: #1a1d1f
}
@media (width <= 760px) {
  .page__stages {
    margin-top: 50px
  }
  .stages__body {
    grid-template-columns: 1fr;
    gap: 30px
  }
  .stages__item {
    padding: 20px
  }
  .stages__title-item {
    font-size: 16px
  }
  .stages__text {
    font-size: 15px
  }
}
@media (760px < width <= 940px) {
  .stages__body {
    grid-template-columns: repeat(2,1fr)
  }
}
@media (width <= 47.5em) {
  .stages__item_last {
    padding: 0;
    border: none;
    background: 0 0
  }
}