.stages .stages-list {
  margin-bottom: 20px;
  display: grid;
  gap: 70px 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  position: relative;
}
.stages .stages-list__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stages .stages-list__heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stages .stages-list__icon {
  width: clamp(2.5rem, 1.818rem + 3.41vw, 4.375rem);
  height: clamp(2.5rem, 1.818rem + 3.41vw, 4.375rem);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--accent);
}
.stages .stages-list__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.stages .line {
  position: relative;
  display: grid;
  gap: 25px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.stages .line:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: var(--primary);
}
.stages .line .point {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
}
@media (max-width: 1199.98px) {
  .stages .line {
    display: none;
  }
  .stages .stages-list {
    gap: 20px;
  }
}

@media (max-width: 996px) {
  .stages .stages-list__item {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .stages .stages__description {
    width: 100%;
  }
}

/*# sourceMappingURL=block.css.map */
