/* Basic Styles */
html {
    font-family: Source Sans Pro;
    font-size: 16px;
    color: #333333;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1 {
    color: #0A133A;
    font-weight: bold;
    font-size: 60px;
    padding-bottom: 16px;
}

h2 {
    font-weight: bold;
    font-size: 30px;
    padding-bottom: 16px;
}

p {
    font-size: 16px;
}

a {
    text-decoration: none;
}

/* Stuff used on all/most pages */

header {
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
    padding: 0 40px;
}

.header-link-list {
    display: flex;
    align-items: center;
    column-gap: 30px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0;
}

.header-link-list a {
    text-decoration: none;
    color: #333333;
}

#banner-container {
    max-height: 430px;
    overflow: hidden;
    display: flex;
}

#banner-container img {
    width: 100%;
    justify-content: center;
    object-fit: cover;
}

#breadcrumb-container {
    width: 100%;
    min-height: 45px;
    padding-left: 40px;
    border-bottom: 1px solid #DDDDDD;
    border-top: 1px solid #DDDDDD;
    display: flex;
    align-items: center;
    color: #324C4E;
}

#breadcrumb-container a {
    color: #324C4E;
    text-decoration: none;
}

#layout-container {
    padding-bottom: 45px;
}

footer {
    margin-top: auto;
    color: #FFFFFF;
    background-color: #324C4E;
    border-top: 6px solid #729180;
    padding: 40px;
    min-height: 200px;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 150px;
}

.footer-epi-section {
    display: flex;
    flex-direction: column;
}

.italic {
    font-style: italic;
}

/* Elemental Blocks */

.element {
    padding-top: 30px;
    padding-bottom: 30px;;
}

.pirbright__elementalblocks__colorcontentblock {
    padding-top: 0;
    padding-bottom: 15px;
}

.content-element {
    padding-left: 40px;
    padding-right: 40px;
}

.content-element__content { /* see responsive.css for responsive sizing */
    flex: 0 0 auto;
    width: fit-content;
}

.content-element__linkblock {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex: 0 0 auto;
    gap: 40px;
    /* width: 100%; */
}

.content-element__linkblock a {
    max-width: 400px;
    text-decoration: none;
}

.linkblock-large {
    display: flex;
    flex-direction: column;
    flex-basis: 0;
    flex-grow: 1;
}

.linkblock-vlist {
    display: flex;
    flex-direction: column;
    flex-basis: 0;
    flex-grow: 1;
    align-items: stretch;
    gap: 40px;
    font-weight: bold;
    font-size: 30px;
}

.linkblock-darkgreen {
    background-color: #324C4E;
    padding: 15px;
    border-top: 5px solid #8EAE81;
    color: #FFFFFF;
    flex-basis: 0;
    flex-grow: 1;
}

.bg-lightgreen {
    background-color: #8EAE81;
}

.bg-white {
    background-color: #FFFFFF;
}

.bg-white h2 {
    color: #0A133A;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
}

.bg-white p {
    color: #333333;
    padding-left: 16px;
    padding-right: 16px;
}

.content-element.bg-lightgreen {
    padding: 40px;
} 

.list-container {
    gap: 35px;
}

.column-container {
    gap: 70px;
}

.column-container .content-object-container {
    max-width: 400px;
}

.list-container .content-object-container img {
    margin-right: 35px;
}



