.workflow {
  padding: 80px 0 0 0;
  background: var(--color-white);
  position: relative;
  margin-bottom: 0;
}
.workflow .workflow-headers .workflow-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}
.workflow .workflow-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
  gap: 0;
}
@media (max-width: 991px) {
  .workflow .workflow-badges {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.workflow .workflow-badges .badge-left {
  background: var(--color-black);
  color: var(--color-white);
  padding: 12px 35px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
.workflow .workflow-badges .badge-right {
  background: var(--primary-color);
  padding: 12px 40px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
.workflow .workflow-badges .connection-line {
  width: 100px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(#b1ff64));
  background: linear-gradient(to right, #000000, #b1ff64);
  margin: 0 -5px;
}
@media (max-width: 991px) {
  .workflow .workflow-badges .connection-line {
    width: 4px;
    height: 30px;
    margin: -5px 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#b1ff64));
    background: linear-gradient(to bottom, #000000, #b1ff64);
  }
}
.workflow .workflow-content {
  padding: 0 60px;
}
.workflow .workflow-content .workflow-left {
  padding: 0;
}
.workflow .workflow-content .workflow-right {
  padding: 0 5%;
}
.workflow .workflow-content .workflow-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.workflow .workflow-content .workflow-step:last-child {
  margin-bottom: 0;
}
.workflow .workflow-content .workflow-step .step-number {
  font-size: 36px;
  font-weight: 250;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: start;
}
.workflow .workflow-content .workflow-step .step-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 32px;
}
.workflow .workflow-content .workflow-step .step-content .step-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}
.workflow .workflow-content .workflow-step .step-content .step-text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.workflow .workflow-content .workflow-step .step-content .phone-interface img {
  width: 100%;
  height: auto;
}
.workflow .workflow-image {
  text-align: center;
}
.workflow .workflow-image img {
  max-width: 100%;
  height: auto;
}