.stages-block {
  background-color: var(--bgDark);
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
}

.stages-block__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 37.1%;
  height: 100%;
  object-fit: contain;
  object-position: bottom left;
  z-index: 0;
}

.stages-block .container {
  position: relative;
  z-index: 1;
}

.stages-block__wrap {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 30px;
}

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

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

.stages-block__image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.stages-block__image:after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.stages-block__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stages-block .stage-item {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 25px;
  min-height: 270px;
}

.stages-block .stage-item__number {
  width: fit-content;
  min-width: 50px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--primary);
  text-align: center;
  color: var(--card);
}

.stages-block .stage-item__number:not(:last-child) {
  margin-bottom: 20px;
}

.stages-block .stage-item__title {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  font-weight: 700;
		  color: var(--text) !important;

}

.stages-block .stage-item__title:not(:last-child) {
  margin-bottom: 10px;
		  color: var(--text) !important;

}

.stages-block .stage-item__text {
  color: var(--text);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.stages-block__btn {
  position: relative;
  background: var(--primary);
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 30px 90px;
  cursor: pointer;
}

.stages-block__btn-title {
  color: var(--card);
}

.stages-block__btn-title:not(:last-child) {
  margin-bottom: 10px;
}

.stages-block__btn-text {
  color: var(--card);
}

.stages-block__btn-arrow {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border-radius: 5px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: all .3s ease-in;
}

.stages-block__btn-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: all .3s ease-in;
}

@media (min-width: 992px) {
  .stages-block__btn:hover .stages-block__btn-arrow {
    background-color: var(--hover);
  }

  .stages-block__btn:hover .stages-block__btn-arrow svg {
    color: var(--card);
  }
}

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

  .stages-block .stage-item {
    padding: 20px 15px;
    min-height: 250px;
  }

  .stages-block__btn {
    padding: 20px 15px 60px;
  }

  .stages-block__btn-arrow {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }

  .stages-block__bg {
    display: none;
  }
}

@media (max-width: 1025px) {

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

@media (max-width: 992px) {
  .stages-block {
    padding: 40px 0;
  }
}

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

  .stages-block__btn-title {
    font-size: 18px;
  }
}

@media (max-width: 498px) {
  .stages-block__wrap {
    grid-auto-rows: inherit;
  }

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

  .stages-block .stage-item {
    min-height: auto;
  }

  .stages-block .stage-item__decor {
    display: none;
  }

  .stages-block__image {
    order: 1;
  }

  .stages-block__btn {
    order: 2;
  }
}

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