.stages-block-2__title {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
}
.stages-block-2__title:not(:last-child) {
  margin-bottom: clamp(20px, calc(1.25vw + 16px), 40px);
}
.stages-block-2__title-value {
  text-align: center;
}
.stages-block-2__title-caption {
  position: absolute;
  top: clamp(-20px, calc(0.8125vw + -22.6px), -7px);
  right: clamp(-74px, calc(-1.5vw + -45.2px), -50px);
  background: var(--secondary);
  transform: rotate(11deg);
  border-radius: 6px;
  padding: 7px 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(12px, calc(0.125vw + 11.6px), 14px);
  line-height: 100%;
  color: var(--color, var(--main-text-primary));
  --color: var(--head-primary);
}
.stages-block-2__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, calc(0.9375vw + 12px), 30px);
  grid-auto-rows: 1fr;
}
.stages-block-2 .stage-item {
  background: var(--head-secondary);
  border-radius: 20px;
  padding: clamp(20px, calc(1.25vw + 16px), 40px);
  position: relative;
}
.stages-block-2 .stage-item > * {
  position: relative;
  z-index: 1;
}
.stages-block-2 .stage-item__number {
  position: absolute;
  top: 10px;
  right: 10px;
  --color: var(--background-secondary);
}
.stages-block-2 .stage-item__title:not(:last-child) {
  margin-bottom: clamp(15px, calc(0.625vw + 13px), 25px);
}
.stages-block-2 .last-item {
  background-color: var(--primary);
  border-radius: 20px;
  padding: clamp(20px, calc(1.875vw + 14px), 50px);
  --color: var(--head-secondary);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, calc(0.625vw + 8px), 20px);
}
.stages-block-2 .last-item__bottom {
  margin-top: auto;
}
.stages-block-2 .last-item__bottom-text:not(:last-child) {
  margin-bottom: clamp(10px, calc(0.3125vw + 9px), 15px);
}
.stages-block-2 .last-item__human {
  display: flex;
  align-items: center;
  gap: clamp(5px, calc(0.3125vw + 4px), 10px);
}
.stages-block-2 .last-item__human:not(:last-child) {
  margin-bottom: clamp(10px, calc(0.625vw + 8px), 20px);
}
.stages-block-2 .last-item__human-image {
  width: clamp(40px, calc(0.625vw + 38px), 50px);
  height: clamp(40px, calc(0.625vw + 38px), 50px);
  position: relative;
}
.stages-block-2 .last-item__human-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  overflow: hidden;
}
.stages-block-2 .last-item__human-image::after {
  content: "";
  width: clamp(6px, calc(0.125vw + 5.6px), 8px);
  height: clamp(6px, calc(0.125vw + 5.6px), 8px);
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--green);
  border: 1px solid var(--primary);
}
.stages-block-2 .last-item__human-phone {
  color: var(--head-secondary);
}

@media (max-width: 1025px) {
  .stages-block-2__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .stages-block-2__title {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 5px;
  }
  .stages-block-2__title-caption {
    position: static;
    transform: none;
  }
}
@media (max-width: 769px) {
  .stages-block-2__wrap {
    grid-template-columns: 1fr;
    grid-auto-rows: inherit;
  }
}/*# sourceMappingURL=block.css.map */