/* BASE STYLES */
:root {
    --white: #FFFFFF;
    --black: #010101;
    --purple-800: #170b3b;
    --purple-600: #341948;
    --purple-300: #9388a2;
    --grey-100: #FAFAFA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, a, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Onest", "Segoe UI", "Arial", sans-serif !important;
}

a:hover {
    color: var(--purple-600);
    text-decoration: underline;
}

.text-white a:hover {
    color: white;
}

/* HTML ELEMENTS AND STYLES HEAVILY REUSED*/

.heading--hero {
    font-size: 64px;
    color: #FFFFFF;
    font-weight: bold;
    max-width: 20ch;
}

.heading--section {
    font-size: 56px;
    font-weight: 700;
}

.heading--card {
    font-size: 32px;
    font-weight: 400;
}

.text-eyebrow {
    font-size: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #092D74;
}

.button {
    background: var(--purple-300);
    color: #FFFFFF;
    padding: 18px 24px;
    border-radius: 1px;
    width: fit-content;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    transition: all .4s;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    border: none;
}

.button--dark {
    background: var(--purple-600)
}

.button:hover {
    cursor: pointer;
}

.button--large {
    padding: 18px 72px;
}

.button--underline {
    border-radius: 0;
    color: #59DD71;
    border-bottom: 2px solid #59DD71;
    background: unset;
}

.button--underline:hover {
    color: #FFFFFF;
    border-color: #FFFFFF;
    filter: grayscale(1);
}

.button--white {
    background: white;
    color: #092D74;
}

.text-white {
    color: #ffffff;
}

.text-purple-300 {
    color: var(--purple-300);
}

.underline {
    text-decoration: underline;
}

.text-uppercase {
    text-transform: uppercase;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-normal {
    font-weight: normal;
}

.text-120 {
    font-size: 120px;
}

.text-56 {
    font-size: 56px;
}

.text-48 {
    font-size: 48px;
}

.text-24 {
    font-size: 24px;
}

.text-22 {
    font-size: 22px;
}

.text-18 {
    font-size: 18px;
    line-height: 1.5;
}

.text-14 {
    font-size: 14px;
}

.display-none {
    display: none;
}

.gap-16 {
    gap: 16px;
}

.bg-grey-light {
    background: #fafafa;
}

.bg-purple {
    background: var(--purple-600);
}

.bg-purple-light {
    background: var(--purple-300);
}

.bg-purple-dark {
    background: var(--purple-800);
}

@media screen and (max-width: 1280px) {
    .heading--hero {
        font-size: 48px;
    }

    .heading--section {
        font-size: 32px;
    }

    .button {
        padding: 12px 24px;
    }
}
