/* .entry-body #flow{
  color: #4d4d4d;
} */
.flow-lead {
  line-height: 2.5;
}

.flow-steps {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  padding-bottom: 40px;
  position: relative;
}

.flow-step:last-child {
  padding-bottom: 0;
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50px;
  top: 60px;
  bottom: 0;
  width: 1px;
  background: #666666;
}

.flow-step__col1 {
  flex: 0 0 100px;
  margin-right: 60px;
}

.flow-step__col2 {
  flex: 1 1 auto;
  margin-right: 80px;
}

.flow-step__col3 {
  flex: 0 0 270px;
}

.flow-step__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  letter-spacing: 0.1em;
}

.flow-step__label-number {
  width: 38px;
  height: 38px;
  border-radius: 50vh;
  background: #4d4d4d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 0;
}

.flow-step__title {
  margin: 0 0 18px;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.flow-step__text {
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.flow-step__image {
  margin: 0;
}

.flow-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .flow-step {
    flex-wrap: wrap;
    gap: 20px;
  }

  .flow-step__col1 {
    margin-right: 40px;
    order: 1;
  }

  .flow-step__col2 {
    flex: 1 1 320px;
    margin-right: 0;
    order: 3;
    padding-left: 163px;
  }

  .flow-step__col3 {
    flex: 1 1 280px;
    order: 2;
  }

  .flow-step:not(:last-child)::after {
    left: 50px;
    top: 60px;
    bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .flow-steps {
    margin-top: 50px;
    gap: 28px;
  }

  .flow-step {
    /* flex-direction: column; */
    gap: 15px;
  }

  .flow-step__col1 {
    margin-right: 0;
    flex: 0 0 90px;
  }

  .flow-step__col2 {
    padding-left: 105px;
  }

  .flow-step__col3 {
    margin: 0;
    flex: 1 1 calc(100% - 105px);
  }

  .flow-step__label {
    font-size: 18px;
  }

  .flow-step__label-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .flow-step__title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .flow-step:not(:last-child)::after {
    left: 70px;
  }
}