.simple-key-numbers {
    .key-number {

        .h1 {
            &:after {
                @apply ml-2 inline-block;
                content: '';
                width: 10px;
                height: 10px;
            }
        }

        &:nth-child(odd) {
            .h1 {
                @apply text-primary;

                &:after {
                    @apply bg-primary;
                }
            }
        }

        &:nth-child(even) {
            .h1 {
                @apply text-primary-700;

                &:after {
                    @apply bg-primary-700;
                }
            }
        }
    }
}