.align-self-end { align-self: end; } .align-self-start { align-self: start; } .align-self-center { align-self: center; } .d-flex { display: flex; } .flex-column { flex-direction: column; } .flex-row { flex-direction: row; } .text-center { text-align: center; } .row { display: flex; flex-direction: row; gap: 2rem; @include break-on(xs, down) { flex-direction: column; } } .col { display: flex; flex-direction: column; flex: 1 1 50%; }