.projects-projects {
  padding: 150px 0;
}

.projects-project-card {
  margin-bottom: 75px;
  display: flex;
  align-items: center;

  h2 {
    font-size: var(--font-size-huge);
    margin: 0;
  }

  h3 {
    font-size: var(--font-size-medium-large);
    text-transform: uppercase;
    color: var(--color-secondary);
    font-weight: var(--font-weight-regular);
    letter-spacing: 1px;
    margin: 0 0 20px 0;
  }

  p {
    margin: 0;
  }

  &:last-child {
    margin-bottom: 0;
  }

  &:nth-child(2n+1) {
    .projects-project-card-image {
      width: calc(100% / 12 * 6);
    }

    .projects-project-card-text {
      margin-left: calc(100% / 12);
      width: calc(100% / 12 * 5);
    }
  }

  &:nth-child(2n) {
    flex-direction: row-reverse;

    .projects-project-card-image {
      width: calc(100% / 12 * 6);
    }

    .projects-project-card-text {
      margin-right: calc(100% / 12);
      width: calc(100% / 12 * 5);
    }
  }
}


