.stagesSection .content .list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.stagesSection .content .list .item {
  width: calc(33.33% - 13.3333333333px - 60px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  background-color: var(--five);
}
.stagesSection .content .list .item p {
  color: var(--troy);
}
.stagesSection .content .list .item img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.stagesSection .content .list .item h3 {
  color: var(--harakiri);
}

@media (max-width: 850px) {
  .stagesSection .content .list {
    display: flex;
    flex-direction: column;
  }
  .stagesSection .content .list .item {
    width: calc(100% - 60px);
    padding: 30px;
    height: -moz-fit-content;
    height: fit-content;
    gap: 20px;
  }
}/*# sourceMappingURL=stagesSection.css.map */