:root {
    --primary-color: #263F91;
    --secondary-color: #5BBA47;
    --text-color: black;
    --header-text: white;
    --link-active: #77C568;
    --key-bullet: #ffafb0;
    --link-visited: #009AED;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

h1, footer, header, label, p, div, span {
    font-family: 'Lato', Helvetica, sans-serif;
}
a {
    color: var(--primary-color);
}

a:visited {
    color: var(--link-visited);
}
header a:visited {
    color: var(--header-text)
}

footer a,
header a {
    color: var(--header-text);
    text-decoration: none;
}
a:focus,
a:hover {
    color: var(--secondary-color);
}

header a:hover {
    color: var(--link-visited);
}

.footer-content-container{
    padding: 10px;
    font-size: .7rem;
}

footer,
header {
    width: 100%;
    max-width: 100%;
    padding: 0;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--header-text);
}



.footer-contact {
    text-align: right;
}

footer {
    height: 85px;
    position: fixed;
    bottom: 0;
}

.contact {
    font-weight: 600;
}

.footer-email {
    text-decoration: underline;
}

.navigation {
    padding: 10px;
}

.header-logo{
    width: 100px;
}

.header-links {
    font-size: .8rem;
}

.title {
    font-size: 1.2rem;
    font-weight: 600;
    width: 300px;
}

.border-right {
    border-right: solid 1px white;
}

.link-div {
    padding: 7px 10px;
    /*width: 120px;*/
}

img {
    max-width: calc(100vw - 60px);
    max-height: calc(100vh - 60px);
}

ol {
    list-style-type: none;
    counter-reset: custom-counter;
    padding-left: 2rem;
}

li {
  position: relative; /* Needed for positioning the ::before element */
  margin-bottom: 0.5em; /* Add some spacing between list items */
}

li::before {
    content: counter(custom-counter, upper-alpha);
    counter-increment: custom-counter;
    position: absolute;
    left: -2em;
    top: 0;
    background-color: var(--key-bullet);
    color: black;
    padding: 0.2em;
    border-radius: 50%;
    min-width: 1.35em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

h2 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 10px 10px 0;
}

.report-key h2 {
    padding: 10px 10px 0;
}

h3 {
    color: black;
    font-weight: 600;
}

.flex-row{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.flex-row-wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flex-column{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}
.program-img-container,
.home-links-container{
    justify-content: space-between;
    padding-top: 30px;
    width: 100%;
}

.home-images{

}

.gap-15{
    gap: 15px;
}

.gap-20{
    gap: 20px;
}

.gap-25{
    gap: 25px;
}

.content-container{
    padding: 30px 30px 100px;
    min-height: calc(100vh - 195px);
    max-width: calc(100vw - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.space-between{
    justify-content: space-between;
}

h1,
.center{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.home-links-container a{
    text-decoration: none;
}

@media screen and (max-width: 948px){
    .program-img-content-container,
    .navigation,
    .top-content-container{
        flex-wrap: wrap;
    }
    header {
        height: 100px;
    }
    .home-images.stock img,
    img.program-house{
        width: unset;
    }
}

.space-evenly{
    justify-content: space-evenly;
}

.report-key{
    width: 350px;

}

.program-logo{
    width: 175px;
}

li, p {
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.form-container {
    border: solid var(--primary-color) 1px;
    padding: 20px;
}

label {
    font-size: .7rem;
}

select,
input{
    border-color: lightgray;
    border-style: solid;
    height: 20px;
}

button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    height: 30px;
    width: 150px;
}

.questions {
    padding: 20px;
    max-width: 1172px;
}

.indented {
    margin-left: 40px;
}
.score-contact,
.assessor-contact {
    max-width: 1172px;
    width: 1172px;
}

.score-contact img,
.assessor-contact img,
form {
    min-width: 50%;
}
.index-labeling,
.report-remember-container img {
    padding-top: 60px;
}

header a.active:visited,
header a.active {
    color: var(--link-active);
}
.program-content-container {
     margin-top: -20px;
}