.steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 24px;
  column-gap: 24px;
  /*@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
        display: flex;
        -ms-flex-wrap: wrap;
        & .item {
            width: calc(100% / @grid-template-columns - ~"@{column-gap}" - 2px);
            margin-right: @column-gap;
            margin-top: @row-gap;
            box-sizing: border-box;
        }
    }*/
  margin: 0 0 24px;
}
.steps.owl-carousel {
  display: block;
}
.steps.owl-carousel > [class*="item"] {
  width: calc(100% / 4 - (3 * 24px / 4) * 1);
  margin-right: 24px;
}
.steps.blue {
  --step-color: #5E8BBA;
}
.steps.orange {
  --step-color: #E76124;
}
.steps .step {
  box-sizing: border-box;
}
.steps .step .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 0 12px;
  border-radius: 16px;
  background-color: var(--step-color, #5E8BBA);
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}
.steps .step .title {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: #1C1C1C;
}
.steps .step p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 18px;
  color: #555555;
}
@media screen and (max-width: 1000px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
    column-gap: 16px;
    /*@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
        display: flex;
        -ms-flex-wrap: wrap;
        & .item {
            width: calc(100% / @grid-template-columns - ~"@{column-gap}" - 2px);
            margin-right: @column-gap;
            margin-top: @row-gap;
            box-sizing: border-box;
        }
    }*/
  }
  .steps.owl-carousel {
    display: block;
  }
  .steps.owl-carousel > [class*="item"] {
    width: calc(100% / 2 - (1 * 16px / 2) * 1);
    margin-right: 16px;
  }
}
