:root {
/* Insight Blue */
--colorInsightBlue: #0032CD;

/* Sky Blue */
--colorSkyBlue: #649BFF;

/* System Teal */
--colorSystemTeal: #25798E;

/* Signal Orange */
--colorSignalOrange: #FF5F1B;

/* Vital Red */
--colorVitalRed: #FE1439;

/* Mind Blue */
--colorMindBlue: #B4DCF0;
}

*, body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Noto Sans', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5em;
}
body {
    position: relative;
    margin: 0;
    padding: 0;
}
.wrapper {
    margin: 0 auto;
    max-width: 1024px;
    padding: 0 1em;
}
b,
strong {
    font-weight: 600;
}
header {
    background-color: var(--colorInsightBlue);
    padding: 3em 0 2.5em 0;
    margin-bottom: 3em;
}
img {
    display: inline-block;
    height: auto;
    max-width: 100%;
    width: 100%;
}
footer {
    border-top: 1px solid var(--colorMindBlue);
    padding-top: 1.5em;
    margin: 3em 0 0 0;
    position: relative;
}
.helix {
  background: url("../img/Helix_Mindblue_q.png") center top no-repeat;
  background-size: cover;
  height: 100px;
  margin-top: -2em;
}
h1,
h2,
h3 {
    color: var(--colorInsightBlue);
    font-weight: 800;
}
h1 {
    color: white;
    margin: 0;
        text-align: center;
}
h3 {
    font-weight: 600;
}
p + h3 {
    margin-top: 2em;
}
header::after {
    content: "";
    z-index: -1;
    width: 100%;
    height: 66%;
    background-size: contain;
    background: url("../img/Helix_Mindblue.svg") center center no-repeat;
    position: absolute;
    transform: rotate(90deg) scale(1);
    top: -550px;
}
li {
    margin-bottom: 1.5em;
}
ul {
    max-width: 50em;
}
.grid {
    align-items: center;
    display: grid;
    column-gap: 5em;
    row-gap: 1em;
}
header img {
    max-width: 400px;
}
.contact {
    border-top: 1px solid var(--colorMindBlue);
    padding-top: 1.5em;
    margin: 3em 0;
}
.contact .grid {
    align-items: start;
}
.funding {
    padding-top: 2em;
    border-top: 1px solid var(--colorMindBlue);
    column-gap: 0;
    position: relative;
}
.funding img {
    max-width: 400px;
}
.funding img:first-child {
    max-width: 380px;
}
.partners {
    margin-bottom: 1em;
}
.partners a:first-child {
    padding: 1em 0;
}
.partners a:nth-child(2) {
    padding: 2em 1em;
}
.partners a:last-child {
    padding-top: 20px;
}
.partners a:last-child img {
    object-fit: cover;
    transform: scale(1.3);
}
a {
    color: var(--colorInsightBlue);
    text-decoration: underline;
}
a:focus, a:hover {
    color: var(--colorVitalRed);
}
.item {
    background: rgba(225,225,225,1);
    margin: 1px;
    padding: 0.45em 0.55em 0.3em 0.55em;
}
.item:nth-of-type(even) {
    background: rgba(210,210,210,1);
}
@media only screen and (max-width: 720px) {
    header img {
        max-width: 250px;
    }
    .partners a {
        max-width: 300px;
    }
    header::after {
        opacity: 0.75;
    }
}
@media only screen and (min-width: 720px) {
    header {
        margin-bottom: 13em;
    }
    h1 {
        font-size: 3em;
    }
    h2 {
        font-size: 2em;
    }
    .two_col {
        grid-template-columns: 1fr 1fr;
    }
    .three_col {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .funding {
        justify-items: center;
    }
    .helix {
        height: 20vw;
        margin-top: -5em;
    }
}