:root {
    --navy: #061629;
    --navy-ink: #081d33;
    --text: #0b0b0b;
    --muted: #7d8696;
    --maxw: 1100px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.5;
}

h2 {
    font-size: 24px;
    line-height: normal;
    margin: 8px 0 0;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    line-height: normal;
    font-weight: 500;
}

h4 {
    font-size: 44px;
    line-height: normal;
    margin: 8px 0 0;
    font-weight: 700;
}

.nav {
    width: 100%;
    background: linear-gradient(0deg, var(--navy-ink), var(--navy));
    color: #fff;
    font-weight: 400;
}

.nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-group {
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: .4px;
}

.brand-mark {
    height: 32px;
    width: auto;
    display: block;
    border-radius: 0;
    background: transparent;
}

.navlinks {
    display: flex;
    gap: 36px;
    margin-left: 0;
}

.navlinks a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    opacity: .95;
    font-weight: 500;
}

.navlinks a:hover {
    opacity: 1;
    text-decoration: underline
}

.right-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-logo img {
    height: 19px;
    width: auto;
    /* reduced by ~35% total */
    display: block;
}

.page {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 48px 24px 72px;
    text-align: center;
}

.mainContent {
    max-width: var(--maxw);
    text-align: left;
}

.eyebrow {
    margin-top: 36px;
    font-size: 22px;
    color: #000;
    font-weight: 600;
}

@media (max-width:720px) {
    .nav-inner {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .navlinks {
        gap: 20px;
        flex-wrap: wrap;
    }

    .right-logo {
        margin-top: 10px;
    }

    .eyebrow {
        font-size: 18px
    }
}