:root {
    --csub-yellow: #ffc629;
    --csub-blue: rgba(0, 35, 95, 0.67);
    --csub-blue-solid: rgba(0, 35, 95, 1.0);
    --csub-lightblue: #2E5cd0;
    --csub-grey: rgba(35, 35, 35, 0.67);
}

.section-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 10%;
    
}

.col-sm {
    flex: 0 1 auto;
    width: 400px;
    height: 300px;
    text-align: center;
    font-size: 2em;
    padding: 10px;
    margin: 10px;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* background-color: rgba(0, 35, 95, 0.1); */
    border: solid 4px rgba(0, 0, 0, 0);
    border-radius: 4px;
}

.col-sm:hover {
    border: solid 4px var(--csub-blue);
    border-radius: 4px;
}

.col-sm:hover > div{
    display: block;
}

.section {
    /* border: solid 1px rgba(0, 35, 95, 0.9);
    border-radius: 10px; */
    margin: 10px;
}

.section-header {
    text-align: center;
    font-size: 2em;
}

.project-label {
    /* display: none; */
    font-size: 0.6em;
    background-color: var(--csub-blue);
    backdrop-filter: blur(5px);
    color: var(--csub-yellow);
    position: relative;
    top: 10%;
    left: 50%;
    -ms-transform: translate(-50%, -10%);
    transform: translate(-50%, -10%);

    -moz-box-shadow: 1px 2px 3px var(--csub-blue);
    -webkit-box-shadow: 1px 2px 3px var(--csub-blue);
    box-shadow: 0px 0px 25px var(--csub-blue);

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px; 
    padding: 2px;
}

.project-info {
    display: block;
    font-size: 0.75em;
    color: #fff;
    background-color: var(--csub-grey);
    position: relative;
    top: 0%;
    left: 50%;
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);

    -moz-box-shadow: 1px 2px 3px var(--csub-grey);
    -webkit-box-shadow: 1px 2px 3px var(--csub-grey);
    box-shadow: 0px 0px 25px var(--csub-grey);

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px; 
    padding: 2px;
}

.project-info > a {
    color: #fff;
    text-decoration: none;
}

.project-label > a {
    color: var(--csub-yellow);
}

.older_expos_title {
    text-decoration: underline;
    color: var(--csub-yellow);
    background: none!important;
    border: none;
    color: var(--csub-yellow);
    font-size: 1em;
    cursor: pointer;
}

#project-quicklinks {
    display: flex;
    justify-content:space-evenly;
}

h3 {
	padding-left: 1em !important;
}
h4 {
	padding-left: 2em;
}
ol, ul {
	padding-left: 4em;
}