:root {
    /* Brand Colors - Purple Palette */
    --brand-purple-7: #421a75;
    /* AAA */
    --brand-purple-6: #5f00b7;
    /* AA, AAA 18pt+ */
    --brand-purple-5: #8c1aff;
    /* AA, AAA 18pt+ */
    --brand-purple-4: #b58efb;
    /* AAA */
    --brand-purple-3: #d5c2ff;
    /* AAA */
    --brand-purple-2: #eae0ff;
    /* AAA */
    --brand-purple-1: #f5f0ff;
    /* AAA */

    /* Neutral Colors */
    --brand-black: #000000;
    --brand-white: #ffffff;
    --brand-grey-1: #f5f5f5;
    --brand-grey-2: #ebebeb;
    --brand-grey-3: #d7d7d7;

    /* Typography */
    --font-primary: 'Instrument Sans', Arial, sans-serif;

    /* Layout */
    --level0-height: 40px;
    --header-height: 80px;
    --main-nav-height: 60px;
    --container-max-width: 1200px;
}

body {
    margin: 0;
    font-family: var(--font-primary);
}

.header-section {
    background: #fff;
    padding: 3rem 0;
}

.container {
    box-sizing: border-box;
    max-width: 1176px;
    width: 100%;
    height: 86px;
    align-items: center;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar {
    background-color: var(--brand-purple-7);
    padding: 0px 20px;
}

.navbar-container {
    box-sizing: border-box;
    height: 56px;
    max-width: 1176px;
    width: 100%;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    text-align: center;
}

.nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    line-height: 1.5;
}

.navbar-container a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 1rem;
}

.navbar-container a:hover {
    background-color: var(--brand-purple-2);
    color: var(--brand-purple-7);
}

.main-content {
    display: flex;
    margin: 20px 0;
    height: 100%;
}

.center-column {
    box-sizing: border-box;
    max-width: 1176px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 35px;
}

.intro-text {
    max-width: 1176px;
    width: 100%;
    height: auto;
    text-align: left;
    color: #313131;
    border-bottom: 2px solid;
    border-color: #ddd;
}

.intro-text h2 {
    line-height: 1.5;
    font-size: 2rem;
}

.intro-text p {
    line-height: 1.5;
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.spacer {
    max-width: 1176px;
    width: 100%;
    padding: 20px;
}

.content-link {
    width: 48%;
    margin-bottom: 20px;
    background-color: var(--brand-purple-1);
    border: 3px solid transparent;
    border-left: 3px solid #421a75;
    padding: 40px 20px;
    box-sizing: border-box;
    position: relative;
}

.content-link span {
    text-align: left;
    color: var(--brand-purple-7);
    font-weight: bold;
    font-size: 1.25rem;
    text-decoration: underline;
}

.content-link:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.2s;
    border-radius: 5px;
    border: 3px solid;
    border-color: #421a75;
}

.content-link::after {
    content: "";
    position: absolute;
    width: 1em;
    height: 0.75em;
    right: 1em;
    top: 50%;
    background: url(arrow-black.svg) no-repeat;
    background-position: center;
    transform: rotate(90deg);
}


.content-box-soon {
    width: 48%;
    margin-bottom: 20px;
    background-color: #ecf9fb;
    padding: 40px 20px;
    box-sizing: border-box;
}

.content-box-soon a {
    text-align: left;
    color: #000000;
    font-weight: bold;
}

.center-column h3 {
    font-size: 1.5rem;
    width: 100%;
    text-align: left;
    margin: 30px 0px;
    color: #000000;
}

.home {
    width: 100%;
}

.home a {
    text-align: right;
    color: #000000;
    float: right;
}

.home a:hover {
    text-align: right;
    color: #000000;
    float: right;
    text-decoration: none;
}