@import url('adapt.css');
/*********** FONT IMPORTS ***********/
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/* font for most text is Raleway, with the exception being H1 tags that are Libre Baskerville */

/* THIS IS WHERE YOU PUT YOUR CLIENT STYLE OVERRIDES FOR COLOR, ETC. */

/* THIS STYLESHEET WILL ONLY HAVE STYLE ATTRIBUTES WITHIN IT. TO APPLY SPECIFIC STYLES TO A CLIENT, MAKE A STYLE.CSS IN THE CLIENT STYLESHEETS DIRECTORY AND ADD IN YOUR DIVS AND CLASSES. IF THERE ARE ANY QUESTIONS, CONTACT A STYLE PERSON FOR ASSISTANCE */

body.webprogram { 
    font-family: "Raleway", sans-serif;
    background-color: #1C2F42;
    background: linear-gradient(180deg, rgba(28, 47, 66, 0.60) -49.19%, #1C2F42 99.91%), 0px -262.301px / 100% 204.732% no-repeat;
}

h1 {    
    color: #1c2f42;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 58px;
    line-height: 1.1;
}

h2 {
    font-size: 50px;
    line-height: 1.2;
}

h3 {
    font-size: 36px;
    line-height: 1.2;
}

h4 {
    font-size: 28px;
    line-height: 1.2;
}

h5 {
    font-size: 20px;
    line-height: 1.4;
}

h6 {
    font-size: 16px;
    line-height: 1.4;
}
a:link, a:visited {
    color: #21384F;
}
a:hover {
    color: #266099;
    text-decoration: underline;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: currentcolor;
    text-decoration-thickness: auto;

}
.content {
    border-radius: 12px; /*typical border radius used throughout site*/
    margin: 30px 20px;
}

body.start .content {
    margin: 60px 20px;
}


.subtitle {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin: 60px 20px 0 20px;
    font-size: x-large;
}
body.affiliatesindex .item {
    font-size: larger;
    margin-top: 1.5em;
}
body.affiliatesindex .sessions {
    margin-left: 1.5em; 
}
body.affiliatesindex .sessions .session {
    margin-bottom: .25em; 
}

.wrap { 
    min-height: 100vh;
}

.logo { 
    width: 180px;
    margin: 40px 0;
}
aside {
    background: linear-gradient(180deg, #183D62 0%, #1C2F42 2.6%);
    min-height: 100vh;
    margin-left: 0px;
}
aside > div {
    max-width: 90%;
    margin: 0 auto;
}

.navigation { 
   margin: 0;
   text-align: center;
}
.navigation li { 
    color: #fff;
    font-size: 16px;
    line-height: 1;
    padding-right: 20px;
    padding-left: 20px;
    transition: all 0.4s;
    padding: 16px !important;
}
.navigation li a, .navigation li a, .navigation li a:link, .navigation li a:visited, .navigation li a:active, .navigation li a:focus {
    color: #fff;
    font-weight: normal;
}

.navigation li a:hover, .navigation li:hover {
    background-color: #21384F;
    font-weight: normal;
}

.contentwrapper {
    display: flex;
}

.container_12 {
    max-width: unset;
    width: unset;
}
.grid_3.pull_9 {
    margin-left: 0px;
    position: fixed;
    top: 0;
    left: 0;
    width:290px;
}

.grid_9.push_3 {
    left: unset;
    flex-grow: 1;
    margin-left: 300px;
}

.persontitle > a{
    text-decoration: underline;
}

/* MEDIA QUERIES */

@media only screen and (max-width: 980px) {
    .logo {
        width: 140px;
        margin: 20px 0;
    }
    html#range_1 .banner {
        width: calc( 100% + 20px);
        height: auto;
    }
    html#range_1 .banner, html#range_1 .banner img {
        width: calc( 100% + 20px);
        height: auto;
    }
    .grid_3.pull_9 {
        width:160px;
    }
    .grid_9.push_3 {
        margin-left: 170px;
    }
}
@media only screen and (max-width: 760px) {
    html#range_0 .banner img {
        display: block;
    }
    html#range_0 .banner {
        background-color: #21384F;
        /* width: calc( 100% + 20px);
        height: auto; */
    }
    .contentwrapper {
        flex-direction: column-reverse;
    }
    .grid_3.pull_9 {
        width:100%;
        position: unset;
    }
    .grid_9.push_3 {
        margin: 0 auto;
        width: 100%;
    }
    aside {
        min-height: unset;
    }
    .navigation {
        display: block !important;
    }
    #sidebar {
        display:none;
    }
}