@media screen and (max-width: 480px) {

  .workflow-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-background-color);
    text-align: center;
    padding: 60px 0 60px 0;
  }

  .workflow-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
  }

  .workflow-subheading {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: var(--primary-text-color);
    padding: 30px 20px 3.125rem 20px;
  }

  .workflow-card-section {
    display: flex;
    flex-direction: column;
    background-color: var(--card-background);
    justify-content: center;
    gap: 1.25rem;
  }

  .workflow-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 286px;
    height: 286px;
  }

  .workflow-card-icon {
    height: 96px;
    width: 96px;
    border-radius: 96px;
    background-color: var(--card-background);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
  }

  .workflow-card-title {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
  }

  .workflow-card-description {
    color: var(--primary-text-color);
    font-size: 16px;
    font-weight: 400;
  }

  .card-idea-image {
    height: 50px;
    width: 50px;
  }
}

@media screen and (min-width: 481px) {
  .workflow-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--secondary-background-color);
    text-align: center;
  }

  .workflow-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
  }

  .workflow-subheading {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: var(--primary-text-color);
    padding: 2rem 0 4rem 10px;
  }

  .workflow-subheading-br {
    display: block;
  }

  .workflow-card-section {
    display: flex;
    flex-direction: row;
    background-color: var(--card-background);
    justify-content: center;
    gap: 1.25rem;
  }

  .workflow-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 286px;
    height: 340px;
    background-color: var(--background-color);
    border-radius: 12px;
  }

  .workflow-card-icon {
    height: 96px;
    width: 96px;
    border-radius: 96px;
    background-color: var(--card-background);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
  }

  .workflow-card-title {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
  }

  .workflow-card-description {
    color: var(--primary-text-color);
    font-size: 16px;
    font-weight: 400;
  }

  .card-idea-image {
    height: 50px;
    width: 50px;
  }
}