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

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

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

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

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

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

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

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

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

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

#stages-block .stage-item__head:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  bottom: -4px;
  left: 0;
  border-radius: 100%;
  background: var(--hover-main);
}

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

#stages-block .stage-item__head p {
  margin-bottom: 0;
}

#stages-block .stage-item__number {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 42px;
  line-height: 110%;
  color: var(--colors-main);
}

#stages-block .stage-item__text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-primary-main);
}

#stages-block .stage-item__text * {
  color: var(--text-primary-main);
}

#stages-block .stage-item__text p:not(:last-child) {
  margin-bottom: 10px;
}

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

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

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

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

#stages-block .stage-item__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#stages-block .stage-item__socials-item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid transparent;
  background: rgba(240, 240, 229, 0.1);
  backdrop-filter: blur(30px);
  transition: var(--transition);
}

#stages-block .stage-item__socials-item img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}
#stages-block .stage-item__socials-item svg path{
  fill: var(--bg-primary-main);
}
#stages-block .stage-item__socials-item:hover svg path{
  fill: var(--bg-alt-main);
}

@media (min-width: 992px) {
  #stages-block .stage-item__socials-item:hover {
    background: var(--bg-primary-main);
    backdrop-filter: unset;
  }

  #stages-block .stage-item__socials-item:hover img {
    filter: unset;
  }
}

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

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

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

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

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

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

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

@media (max-width: 498px) {

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

  #stages-block .stage-item__text-wrap {
    min-height: 150px;
  }
}

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

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