.stages-block__title {
  text-align: center;
  text-wrap: balance;
}
.stages-block__title:not(:last-child) {
  margin-bottom: 12px;
}
.stages-block__subtitle {
  text-align: center;
  text-wrap: balance;
}
.stages-block__subtitle:not(:last-child) {
  margin-bottom: 48px;
}
.stages-block__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stages-block .card-stage {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-radius: 32px;
  padding: 30px;
  background: var(--fon-card, #fff);
}
.stages-block .card-stage:nth-child(even) {
  flex-direction: row-reverse;
}
.stages-block .card-stage__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 450px;
  width: 40%;
}
.stages-block .card-stage__counter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  padding: 14.5px;
  line-height: 1;
  border: 0.5px solid var(--card-stroke);
  border-radius: 20px;
  flex-shrink: 0;
}
.stages-block .card-stage__title span {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--elementy-primary);
}
.stages-block .card-stage__title-icon {
  width: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.stages-block .card-stage__img {
  max-width: 620px;
  width: 56%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--fon-bg);
  cursor: pointer;
}
.stages-block .card-stage__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media (max-width: 991px) {
  .stages-block__subtitle:not(:last-child) {
    margin-bottom: 24px;
  }
  .stages-block__items {
    gap: 16px;
  }
  .stages-block .card-stage {
    flex-direction: column !important;
    gap: 20px;
    padding: 30px 25px;
  }
  .stages-block .card-stage__info {
    align-items: center;
    flex-direction: row;
    max-width: unset;
    width: 100%;
  }
  .stages-block .card-stage__img {
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .stages-block__items {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .stages-block__subtitle:not(:last-child) {
    margin-bottom: 12px;
  }
  .stages-block .card-stage {
    gap: 12px;
    padding: 15px;
    border-radius: 24px;
  }
  .stages-block .card-stage__info {
    flex-direction: column;
    align-items: unset;
  }
  .stages-block .card-stage__title-icon {
    width: 24px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .stages-block .card-stage__img {
    border-radius: 10px;
  }
}/*# sourceMappingURL=block.css.map */