.stages-six-block.alignfull {
  padding-top: 100px;
  padding-bottom: 100px;
}

.stages-six-block .top-side {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.stages-six-block .mark {
  display: flex;
  flex-direction: row;
  gap: 10px;
  background: var(--bg-primary-second);
  border-radius: 100px;
  padding: 10px 20px;
  align-items: center;
  width: fit-content;
  height: fit-content;
}

.stages-six-block .text {
  color: var(--text-primary-main);
  white-space: nowrap;
}

.stages-six-block .icon {
  width: 24px;
  height: 24px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.stages-six-block .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stages-six-block.alignwide .stage-item:not(:first-child) .stage-item__text-wrap {
  background: var(--bg-primary-main);
}

.stages-six-block__wrap {
  display: grid;
  gap: 30px;
  overflow: hidden;
}

.stages-six-block__wrap.column-2 {
  grid-template-columns: repeat(2, 1fr);
}

.stages-six-block__wrap.column-3 {
  grid-template-columns: repeat(3, 1fr);
}

.stages-six-block__wrap.column-4 {
  grid-template-columns: repeat(4, 1fr);
}

.stages-six-block .stage-item__head {
  display: flex;
  align-items: end;
  gap: 15px;
  padding-bottom: 30px;
  position: relative;
}

.stages-six-block .stage-item__head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 30px);
  height: 2px;
  background-color: var(--bg-alt-stroke);
}

.stages-six-block .stage-item__head:after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  bottom: -7px;
  left: 0;
  background: var(--colors-main);
}

.stages-six-block .stage-item__head:not(:last-child) {
  margin-bottom: 30px;
}

.stages-six-block .stage-item__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  color: #1f1f1f;
}

.stages-six-block .stage-item__number {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 50px;
  line-height: 120%;
}

.stages-six-block .stage-item__text,
.stages-six-block .stage-item__text * {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.01em;
  color: var(--text-primary-main);
}

.stages-six-block .stage-item__text-wrap {
  min-height: 260px;
  border-radius: 5px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.stages-six-block .stage-item:not(:first-child) .stage-item__text-wrap {
  background: var(--colors-main);
}

.stages-six-block .stage-item:first-child .stage-item__text-wrap {
  background: var(--colors-main);
}

.stages-six-block .stage-item:first-child .stage-item__text,
.stages-six-block .stage-item:first-child .stage-item__text * {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.01em;
  color: var(--text-alt-main);
}

.stages-six-block .socs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

@media (min-width: 992px) {
  .stages-six-block .stage-item__socials-item:hover {
    background: #38bf63;
  }

  .stages-six-block .stage-item__socials-item:hover img {
    filter: brightness(0) invert(1);
  }
}

@media (max-width: 1240px) {
  .stages-six-block__wrap {
    gap: 15px;
  }

  .stages-six-block .stage-item__head {
    padding-bottom: 15px;
  }

  .stages-six-block .stage-item__head::before {
    width: calc(100% + 15px);
  }

  .stages-six-block .stage-item__text-wrap {
    padding: 15px;
  }
}

@media (max-width: 1025px) {
  .stages-six-block__wrap.column-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 769px) {
  .stages-six-block.alignfull {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .stages-six-block__wrap.column-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 498px) {
  .stages-six-block .stage-item__number {
    font-size: 24px;
  }
  .stages-six-block .stage-item__title {
    /* font-size: 14px; */
  }
  .stages-six-block .stage-item__head {
    margin-bottom: 10px;
    padding-bottom: 10px;
    gap: 10px;
  }
  .stages-six-block .stage-item__head:after {
    width: 10px;
    height: 10px;
    bottom: -4px;
  }

  .stages-six-block__wrap.column-2,
  .stages-six-block__wrap.column-3,
  .stages-six-block__wrap.column-4 {
    grid-template-columns: 1fr;
  }

  .stages-six-block .stage-item__text-wrap {
    min-height: unset;
    padding: 10px;
  }
  .stages-six-block .stage-item__text, .stages-six-block .stage-item__text * {
    font-size: 14px;
  }
  .stages-six-block .stage-item__head:not(:last-child) {
    margin-bottom: 10px;
  }
  .stages-six-block__wrap.column-4 {
    gap: 20px;
  }
}

@media (max-width: 680px) {
    .stages-six-block .mark {
        display: none;
    }
}

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