.stagesSection .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stagesSection .header .controls {
  display: flex;
  gap: 10px;
}
.stagesSection .header .controls button {
  width: 25px;
  height: 25px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}
.stagesSection .header .controls button svg {
  width: 100%;
  height: 100%;
}
.stagesSection .header .controls button.next svg {
  transform: rotateZ(180deg);
}
.stagesSection .item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stagesSection .item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 20px;
  max-height: 312.5px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}
.stagesSection .accent {
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
  color: var(--secondary-color);
  max-width: 800px;
}

@media (max-width: 800px) {
  .stagesSection .accent {
    max-width: 100%;
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
  }
}/*# sourceMappingURL=stagesSection.css.map */