.workflow {
  width: 75%;
  height: 100vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  padding-top: 100px;
}

.title-workflow {
  font-size: 5em;
  color: #333;
  opacity: 0.7;
  z-index: 3;
  margin-bottom: 50px;
}

.workflow-boxes {
  width: 100%;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  gap: 10px;

  overflow: hidden;
}

.workflow-box {
  background-color: #ddd;

  width: 300px;
  height: 300px;

  border-radius: 15px;

  opacity: 0;

  transform: translateY(50px);
  transform: scale(0);
  transition: all ease-in-out 0.5s;

  text-align: center;
}

.workflow-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.workflow-title {
  color: #333;
  padding-top: 5px;
}

.workflow-text {
  font-size: 0.9em;
  color: #333;

  padding: 1em;
}

@media only screen and (max-width: 1200px) {
  .workflow {
    width: 90%;
    height: auto;
    padding-top: 50px;
  }

  .title-workflow {
    font-size: 4em;
    margin-bottom: 30px;
  }

  .workflow-boxes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .workflow-box {
    width: 45%;
    height: 250px;
  }
}

@media only screen and (max-width: 767px) {
  .workflow {
    width: 95%;
    padding-top: 30px;
  }

  .title-workflow {
    font-size: 3em;
    margin-bottom: 20px;
  }

  .workflow-boxes {
    flex-direction: column;
    gap: 20px;
  }

  .workflow-box {
    width: 90%;
    height: auto;
    min-height: 200px;
    padding: 15px;
  }

  .workflow-text {
    font-size: 1em;
  }
}
