.text-primary {
    color: var(--azamara-blue) !important;
    fill: var(--azamara-blue) !important;
}

.text-secondary {
    color: var(--dusk) !important;
    fill: var(--dusk) !important;
}

.text-light {
    color: var(--pure-white) !important;
    fill: var(--pure-white) !important;
}

.text-dark {
    color: var(--night-sky) !important;
    fill: var(--night-sky) !important;
}

.text-eyebrow {
    font-style: normal;
    font-weight: 420;
    font-size: 18px;

    line-height: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    color: var(--dusk);

    user-select: none;
}

.text-keep-new-lines {
    white-space: pre-line;
}

.text-capitalize {
    text-transform: capitalize;
}

h1 {
    font-style: normal;
    font-weight: 420;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0.025em;
}

h2 {
    font-style: normal;
    font-weight: 420;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.05em;
}

h3 {
    font-style: normal;
    font-weight: 420;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.025em;

    margin-bottom: 16px;
}

p {
    font-weight: 390;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
}

/* -sm breakpoint */
@media (min-width: 576px) {

}

/* -md breakpoint */
@media (min-width: 768px) {

}

/* -lg breakpoint*/
@media (min-width: 992px) {
    h1 {
        font-size: 48px;
        line-height: 60px;
    }

    h2 {
        font-size: 30px;
        line-height: 38px;
    }

    p {
        font-weight: 390;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.05em;
    }
}

/* -xl breakpoint */
@media (min-width: 1200px) {

}

/* -xxl breakpoint */
@media (min-width: 1400px) {

}