#stepstwo-block .block__title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  font-family: "Vollkorn", sans-serif;
  color: #1C1C1C;
  margin-bottom: 40px;
  text-align: center;
}
#stepstwo-block .steps__holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
#stepstwo-block .step__item {
  position: relative;
}
#stepstwo-block .step__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: calc(100% + 20px);
  height: 2px;
  background-color: #ededed;
  z-index: -1;
}
#stepstwo-block .step__item .item__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  background-color: var(--btn);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 10px;
}
#stepstwo-block .step__item .item__title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  font-family: "Vollkorn", sans-serif;
  color: #1C1C1C;
  margin-bottom: 10px;
}
#stepstwo-block .step__item:last-child:before {
  display: none;
}

@media (max-width: 1025px) {
  #stepstwo-block .steps__holder {
    grid-template-columns: repeat(2, 1fr);
  }
  #stepstwo-block .step__item:before {
    display: none;
  }
}
@media (max-width: 498px) {
  #stepstwo-block .block__title {
    font-size: 25px;
    line-height: 30px;
  }
  #stepstwo-block .steps__holder {
    grid-template-columns: 1fr;
  }
}

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