.workflow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 96px 24px;
  background: var(--white);
  text-align: center;
  gap: 96px;
}

.workflow-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 100%;
  max-width: 1280px;
}

.workflow-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  gap: 24px;
}

@media (max-width: 600px) {
  .workflow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0 1rem;
  }
}

.workflow .workflow-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--gray-12);
  max-width: 800px;
  line-height: 1.4;
  margin-bottom: 21px;
}

.workflow .workflow-text p {
  font-size: 21px;
  font-weight: 500;
  text-align: left;
  color: var(--gray-11);
  max-width: 700px;
  line-height: 1.4;
}

.workflow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  width: 100%;
  padding: 0;
  border-radius: 28px;
  gap: 48px;
  background: var(--gray-2);
}

.pd-top {
  padding-top: 48px;
}

.pd-bottom {
  padding-bottom: 48px;
}

.workflow-item-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 8px;
}

.workflow-item-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-12);
  max-width: 400px;
  text-align: center;
}

.workflow-item-text p {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-11);
  max-width: 400px;
  text-align: center;
}

.workflow-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  height: 384px;
  background: var(--gray-4);
}

.br-top {
  border-radius: 28px 28px 0 0;
}

.br-bottom {
  border-radius: 0 0 28px 28px;
}

.up-arrows {
  background-image: url("../images/arrows-up.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.down-arrows {
  background-image: url("../images/arrows-down.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
