/*------------------------------*/
/*--Steps----------------*/
/*------------------------------*/
.steps-block {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
}

.the-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.the-step__content {
  padding: 0 1.4rem;
  text-align: center;
}

@media (min-width: 992px) {
  .the-step__symbol-container {
    margin-bottom: 1.2rem;
  }
}

.the-step__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.25rem;
  width: 4.25rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.08);
}

.the-step__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .the-step__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.the-step__paragraph {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
}

.the-step__arrow {
  display: none;
}

@media (min-width: 992px) {
  .the-step__arrow {
    display: block;
    position: absolute;
    top: -9px;
    right: 3px;
    left: auto;
    bottom: 0;
    font-size: 2rem;
    transform: translateX(32px);
    width: 50px;
  }

  .the-step:last-of-type .the-step__arrow {
    display: none;
  }
}
