/* sgtc.cs  */

/*** Universals ***/
*, *::before, *::after {
    box-sizing: border-box;
}

*{
    margin:0;
    padding:0;
    line-height: 1.5;
}

/*** standard html elements **/
body{
    font-family: "Helvetica Neue", sans-serif;
    max-width: 100%;
    overflow-x: hidden;
}

a{
    color:steelblue;
}

h2{
    margin-top: 1rem;
    margin-bottom: 1rem;
    color:steelblue;
}

p{
    padding-left: 0.5rem;
    margin-bottom:0.5rem;
}

ul{
    padding-left: 2rem;
    padding-bottom: 1rem;
}

/*** custom classes **/

.callout{
    width:90%;
    justify-content: center;
}

.copyright {
    font-size:0.75rem;
    font-style: italic;
    padding-bottom: 0.5em;
}

.font-alt-color{
    color:steelblue;
}

.font-def{
    font-size:1rem;
}

.font-def-plus{
    font-size:1.25rem;
}

.font-def-minus {
    font-size:0.75rem;
}

.font-def-minus2 {
    font-size:0.5rem;
}

.header-logo {
    pointer-events: none;
    width:6em;
    height:6em;
    margin-right: 0.5em;
    margin-left: 0.5em;
    align-self: center;
}

.header-title{
    text-align: center;
    margin-right:0.5em;
    align-self: center;
}

.head-shot{
    pointer-events: none;
    float: left;
    margin: 0 1rem 1rem 0;
    height: 10em;
    width: 10em;
    max-width: 240px;
}

.indent2{
    padding-left: 2rem;
}

.subhead-title{
    font-weight: normal;
    width:100%;
    border: 1px solid darkslateblue;
    flex-direction: row;
    text-align: center;
    background-color: cornflowerblue;
    color: ghostwhite;
    padding:0.25em;
}

/*** Primary Wrappers ***************/

.w-0{
    overflow-x: hidden;
    display:flex;
    flex-direction: column;
    height:100dvh;
    width:100%;
    position: relative; /* Establishes positioning context */
}

.w-head{
    position:sticky;
    top:0;
}

.w-L1head {
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    text-align:center;
    background-color: steelblue;
    color: white;
    padding:0.5em;
}

.w-L1subhead{
    display:block;
    align-items:center;
    justify-content: center;
    text-align:center;
    background-color: steelblue;
    color: white;
}

.w-L1main{
    display:flex;
    flex-direction: column;
    flex:1;
    justify-content: space-between;
    padding-bottom:4em;
}

/*** Other Wrappers *****************/

.w-L2main{
    display: flex;
    flex-direction:column;
    text-align: left;
    padding-left:10%;
    padding-right:10%;
}

.w-L3main{
    display: block;
    text-align: left;
}

.w-footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    align-items: center;
    width:100%;
    border: 1px solid darkslateblue;
    color:darkslateblue;
    background-color:white;
    padding-top:0.5rem;
    /*padding-bottom:0.25em; */
}

@media (max-width: 425px) {
    .w-head{
        position:static;
    }
    .header-logo {
        visibility: hidden;
        width:0;
    }
}

