

/*============= FUNCTIONS ===============*/
/*============= MIXINS ===============*/
#steps__block {
  padding: 80px 0;
  position: relative;
}
#steps__block .steps__holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
#steps__block .steps__holder .step__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#steps__block .steps__holder .step__item .top__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 45px;
}
#steps__block .steps__holder .step__item .top__item .number {
  font-size: calc(0.01375 * 100vw + 15.6px);
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  color: var(--accent);
}
#steps__block .steps__holder .step__item .top__item .icon {
  width: 42px;
  height: 42px;
  border-radius: 100%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#steps__block .steps__holder .step__item .top__item .icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
#steps__block .steps__holder .step__item span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--head);
}
#steps__block .steps__holder .step__item .desc p {
  font-size: calc(0.00125 * 100vw + 13.6px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  margin: 0;
}
#steps__block .steps__holder .step__item .desc ul li,
#steps__block .steps__holder .step__item .desc ol li {
  font-size: calc(0.00125 * 100vw + 13.6px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
}
#steps__block .steps__holder .step__item .desc ul li::marker,
#steps__block .steps__holder .step__item .desc ol li::marker {
  color: var(--text);
}
#steps__block .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#steps__block .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  #steps__block {
    padding: 40px 0;
  }
}
@media (max-width: 800px) {
  #steps__block .steps__holder {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 500px) {
  #steps__block .steps__holder {
    grid-template-columns: 100%;
    gap: 30px;
  }
  #steps__block .steps__holder .step__item {
    gap: 5px;
  }
}/*# sourceMappingURL=block.css.map */