.none {
    display: none;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.gap-05 {
    gap: .5rem;
}

.gap-075 {
    gap: .75rem;
}

.gap-25 {
    gap: 2.5rem;
}

.uppercase {
    text-transform: uppercase;
}

.mobile {
    display: none;
}

@media (width < 37.5rem) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}