.stages {
  margin: 0 0 40px 0;
}

.stages__tabs {
  display: flex;
  width: 100%;
}

.stages__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;

  color: #333333;
  color: var(--white_text_black);
  font-size: 14px;
  font-weight: bold;

  border: none;
  padding: 0 15px;
}

.stages__tab.stages__tab-active {
  background: #E7ECF1;
}

.stages__box {
  padding: 50px 0 20px;
}

.stages__item {
  display: none;
}

.stages__item.stages__tab-active {
  display: block;
}

.stages__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .stages__tabs {
    flex-direction: column;
  }

  .stages__tab {
    height: 50px;
  }

  .stages__box {
    padding: 30px 0;
  }
}