/* --------------------------------- Main  CSS ------------------------------------ */

/* --------------------------------- reset css ------------------------------------ */

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,
main,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}



/*-------------------------------- Layout (body) ----------------------------------*/

html {
    background-color: #1c1f2a;
}

* {
    padding: 0px;
    margin: 0px;
}

img {
    max-width: 100%;
}

body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 100%;
    color: #000;
    background-color: #ddd;
    max-width: 1366px;
    min-width: 320px;
    margin: auto;
}

h1,
h2,
h3,
h4 {
    color: #6c2577;
}

h1 {
    font-size: 1.4em;
}


a:hover {
    color: #987412;
}
/*----------------------------------- Header ---------------------------------------*/

#header {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    min-width: 320px;
    background-color: #ddd;
    padding: 0.75em;
    font-size: 1.2em;
    margin: auto;
}

.header_img {
    max-width: 36%;
    min-width: 300px;
}

#header_contact_info {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: right;
    text-align: right;
}

.header_contact_text {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: right;
    font-size: 1.1em;
}

.header_contact_text_2 {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 48%;
    color: #6c2577;
    font-size: 1.1em;
    padding-top: 0.75em;
}

#header_2 {
    display: none;
}

#header_contact_info_2 {
    display: none;
}

.social_media_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.social_media_links_img {
    width: 2em;
    -ms-flex-item-align: center;
    align-self: center;
    margin-left: 0.5em;
    margin-bottom: 0em;
}

.contact_icons {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: none;
    width: 1.5em;
    ;
}

/*------------------------------ Header @MaxWidth 780px -------------------------------*/

@media screen and (max-width: 780px) {


    #header {
        display: none;
    }

    #header_2 {
        display: block;
        padding: 0.75em;
    }

    #header_2_img {
        max-width: 60%;
        padding: 0.75em;
    }

    #header_contact_info_2 {
        display: block;
        float: left;
        text-align: left;
        padding-right: 1em;
        padding-bottom: 0.75;
        font-size: 0.90em;
        margin-top: 0.5em;
    }

    .contact_icons {
        float: left;
    }

    .header_contact_text {
        float: none;
        width: auto;
    }

    .social_media_links {
        float: right;
        width: 50%;
    }

    .social_media_links_img {
        float: none;
    }
}


/*------------------------------ Header @MaxWidth 658px -------------------------------*/

@media screen and (max-width: 658px) {
    .social_media_links {
        width: 40%;
    }
}

/*------------------------------ Header @MaxWidth 530px -------------------------------*/

@media screen and (max-width: 530px) {
    .social_media_links {
        width: 26%;
    }
}

/*------------------------------ Header @MaxWidth 430px -------------------------------*/

@media screen and (max-width: 430px) {
    .social_media_links {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        width: 100%
    }

    .social_media_links_img {
        min-width: 1.5em;
        float: left;
        margin-left: 0em;
    }
}

/*------------------------------ Header @MaxWidth 414px -------------------------------*/

@media screen and (max-width: 414px) {
    #header_2 img {
        max-width: 80%;
    }

    #header_contact_info_2 {
        font-size: 0.70em;
        width: 100%;
    }
}






/*---------------------------------- Navigation ------------------------------------*/

#nav {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    min-width: 320px;
    max-width: 1920px;
    background: -webkit-gradient(linear, left top, left bottom, from(#00acaa), to(#075a59));
    background: linear-gradient(#00acaa, #075a59);
    margin: auto;
    color: #fff;
    font-size: 1.3em;
}

#nav ul {
    width: 90%;
    text-align: center;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: auto;
    -webkit-transition: max-height 0.6s;
    transition: max-height 0.6s;
}

#nav ul li {
    display: inline-block;
    font-size: .80em;
    color: #fff;
    padding: 0.3em 0.50em;
    margin: 0px;
}

#nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 0.30em 0.50em;
}

#nav ul li a:hover {
    color: #000;
    background-color: #999;
}

.handle {
    display: none;
}

.nav_icon_container {
    display: inline-block;
    float: right;
    cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
    width: 30px;
    height: 3px;
    background-color: #ddd;
    margin: 3px 0;
}

/*----------------------------- @MaxWidth 780px ------------------------------------*/

@media screen and (max-width: 780px) {
    #nav ul {
        width: 100%
    }

    #nav ul li {
        display: block;
        width: 100%;
        text-align: left;
        border-style: solid;
        border-color: #fff;
        border-bottom-width: 1px;
        padding: 0px;
    }

    #nav ul li:first-child {
        border-style: solid;
        border-color: #fff;
        border-top-width: 1px;
    }

    #nav ul li:last-child {
        border-bottom-width: 0px;
    }

    #nav ul li a {
        display: inline-block;
        width: 100%;
        padding: .40em 1em;
    }

    .show {
        overflow: hidden;
        max-height: 380px;
    }

    .hide {
        overflow: hidden;
        max-height: 0px;
    }

    .handle {
        display: block;
        font-size: 0.80em;
        color: #fff;
        padding: 0.40em 1em;
        margin: 0px;
        cursor: pointer;
    }


}







/*-------------------------------------- Main --------------------------------------*/

#main {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    min-width: 320px;
    margin: auto;
    background-color: #ddd;
}


.page_divider {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 24px;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#81358d), to(#511a5a));
    background: linear-gradient(#81358d, #511a5a);
    margin-bottom: 1.5em;
}

.page_divider_green {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 24px;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#00acaa), to(#075a59));
    background: linear-gradient(#00acaa, #075a59);
    margin-bottom: 1.5em;
}

.clear_floats {
    clear: both;
}

.spacer_small {
    width: 100%;
    height: 1em;
}

.spacer_medium {
    width: 100%;
    height: 2em;
}

.spacer_large {
    width: 100%;
    height: 4em;
}


/*------------------------------------- Article ------------------------------------*/

article {
    width: 100%;
}

#text_wrap {
    width: 100%;
    padding-bottom: 1em;
    margin: auto;
}







/*------------------------------------ Logo Bar ------------------------------------*/

.logo_bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 80%;
    padding: 0.75em;
    max-width: 1366px;
    margin: auto;
    margin-bottom: 1.5em;
    padding-top: 0.75em;
    padding-bottom: 0.75em;
}

.logo_bar_img {
    -ms-flex-item-align: center;
    align-self: center;
    width: 15%;
    min-width: 120px;
    border-style: solid;
    border-width: 1px;
    border-color: #000;
    border-radius: 6px;
    margin-bottom: 0.5em;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;/* 16:9 */
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sme_bar{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
    -ms-flex-line-pack: justify;
    align-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 80%;
    padding: 0.75em;
    max-width: 1366px;
    margin: auto;
    margin-bottom: 1em;
    padding-top: 0.75em;
/*    padding-bottom: 0.75em;*/
}

.sme_img{
    width: 60%;
    min-width: 120px;
    margin-bottom: 0.75em;
}

.tia_img{
    width: 30%;
    min-width: 120px;
    margin-bottom: 0.75em;
}

/*--------------------------- Logo Bar @MaxWidth 946px -----------------------------*/

@media screen and (max-width: 946px) {
    .logo_bar{
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-around;
        padding: 0px;
    }
}

/*--------------------------- Logo Bar @MaxWidth 768px -----------------------------*/

@media screen and (max-width: 768px) {

    .logo_bar {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-around;
        padding: 0px;
    }

    .logo_bar img {
        max-width: 18%;
        min-width: 120px;
        margin-bottom: 0.75em;
    } 
    
    .sme_img{
        width: 100%;
    }
    
    .tia_img{
    width: 60%;
    min-width: 120px;
    margin-bottom: 0.75em;
}
}

/*--------------------------- Logo Bar @MaxWidth 640px -----------------------------*/

@media screen and (max-width: 640px) {
    .logo_bar {
        width: 90%;
    }
}




/*------------------------------------- costain ------------------------------------*/

.costain{
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 60%;
    margin: 3em auto;
}

.costain_img{
    display: block;
    width: 80%;
    margin: auto;
}


/*---------------------------- costain @MaxWidth 640px -----------------------------*/

@media screen and (max-width: 640px) {
    .costain{
        width: 90%;
    }
    
    .costain_img{
        width: 100%;
    }
}


/*---------------------------------- testimonials ----------------------------------*/

.testimonial{
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    margin: 3em auto;
    padding: 0.75em;
    border: 1px;
    border-style: solid;
    border-color: #81358d;
    border-radius: 6px;
}

.testimonial_head{
    display: block;
    font-size: 1.8em;
    text-align: center;
    color: #075a59;
    margin: auto;
    padding: 0.75em;
}

.testimonial_sub{
    display: block;
    text-align: left;
    font-size: 1.4em;
    color: #81358d;
    margin-bottom:0.50em;
}
.testimonial_text{
    font-size: 1em;
    text-align: left;
}

.testimonial_text_italic{
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-size: 1em;
    text-align: left;
}

.testimonial_logo{
    display: block;
    width: 20%;
    min-width: 150px;
    border: 1px;
    border-style: solid;
    border-color: #81358d;
    border-radius: 6px;  
}

/*--------------------------- Testimonials @MaxWidth 640px -----------------------------*/

@media screen and (max-width: 640px) {
    .testimonial{
        width: 90%;
    }
}



/*------------------------------------- HomePage -----------------------------------*/

.home_heading {
    display: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 90%;
    margin: auto;
    font-family: 'Roboto', sans-serif;
    color: #075a59;
    font-size: 1.8em;
    text-align: center;
}

.sub_heading {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 90%;
    margin: auto;
    font-family: 'Roboto', sans-serif;
    color: #81358d;
    font-size: 1.5em;
    text-align: center;
}

.home_text {
    width: 80%;
    font-family: 'Roboto', sans-serif;
    color: #000000;
    font-size: 1em;
    text-align: left;
    line-height: 1.65em;
    padding: 0.75em;
    margin: auto;
}

.ti_award_text{
    width: 80%;
    font-family: 'Roboto', sans-serif;
    color: #137a83;
    font-size: 1.4em;
    text-align: left;
    line-height: 1.65em;
    padding: 0.75em;
    margin: auto;
}

.ti_award_text2{
    width: 100%;
    font-family: 'Roboto', sans-serif;
    color: #137a83;
    font-size: 1.4em;
    text-align: left;
    line-height: 1.65em;
    padding: 0.75em;
    padding-left: 0px;
    margin: auto;
}

.headline_green {
    display: block;
    width: 80%;
    font-family: 'Roboto', sans-serif;
    color: #075a59;
    font-size: 1.8em;
    text-align: center;
    margin: auto;
}

.s_r_g_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-size: 1.8em;
    text-align: center;
    margin: auto;
    margin-bottom: 1em;
    background: -webkit-gradient(linear, left top, left bottom, from(#00acaa), to(#075a59));
    background: linear-gradient(#00acaa, #075a59);
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.home_img {
    display: block;
    width: 100%;
    margin: auto;
}

.home_img_2 {
    display: none;
    width: 100%;
    margin: auto;
}

.home_img_3 {
    display: block;
    width: 80%;
    margin: auto;
    border-style: solid;
    border-width: 1px;
    border-color: #000;
    margin-bottom: 1.8em;
}

#slide_container {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    float: left;
    min-width: 320px;
    max-width: 1366px;
    height: auto;
    margin: auto;
    margin-bottom: 1.6em;
}

#slide_container ul li {
    list-style: none;
}

.home_headline {
    display: block;
    width: 80%;
    font-family: 'Roboto', sans-serif;
    color: #075a59;
    font-size: 1.8em;
    text-align: center;
    margin: auto;
}

/*--------------------------- HomePage @MaxWidth 780px -----------------------------*/

@media screen and (max-width: 780px) {
    .s_r_g_text {
        width: 90%;
    }
    .home_image_3 {
        width: 90%;
    }

    #slide_container {
        margin-bottom: 0em;
    }
}



/*--------------------------- HomePage @MaxWidth 658px -----------------------------*/

@media screen and (max-width: 658px) {
    .headline_green {
        display: block;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 90%;
        margin: auto;
        text-align: left;
    }

    .sub_heading {
        text-align: left;
    }

    .home_heading {
        display: block;
        width: 90%;
        text-align: left;
    }

    .home_img {
        display: none;
    }

    .home_img_2 {
        display: block;
    }

    .home_img_3 {
        width: 90%;
    }

    .home_text {
        width: 90%;
    }

    .text_overlay {
        display: none;
    }

    h1 {
        text-align: left;
        padding-left: 0.75em;
    }

    .home_headline {
        width: 90%;
        text-align: left;
    }

}


/*--------------------------- HomePage @MaxWidth 400px -----------------------------*/

@media screen and (max-width: 400px) {
    .s_r_g_text {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}





/*------------------------------------- Skills -------------------------------------*/

.skills_text {
    width: 80%;
    margin: auto;
    font-size: 1em;
    line-height: 1.65em;
    margin-bottom: 1em;
}

.skills_text_cent {
    width: 80%;
    margin: auto;
    font-size: 1em;
    text-align: center;
    line-height: 1.65em;
    margin-bottom: 1em;
}

.skills_img {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin: auto;
    padding-bottom: 1.5em;
}

.skills_img_2 {
    display: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin: auto;
    padding-bottom: 1.5em;
}

.skills_img_med {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    margin: auto;
    margin-bottom: 2em;
}

.skills_img_sml {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 49%;
    min-width: 220px;
}

.skills_img_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 80%;
    margin: auto;
    padding: 0.75em;
}

.skills_subhead {
    display: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
    font-family: 'Roboto', sans-serif;
    color: #81358d;
    font-size: 1.5em;
    text-align: center;
}

.skills_subhead_2 {
    width: 80%;
    margin: auto;
    font-family: 'Roboto', sans-serif;
    color: #81358d;
    font-size: 1.4em;
    text-align: center;
}

.skills_vid {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    margin: auto;
    margin-bottom: 1.2em;
    margin-top: 1.2em;
}

.skills_list {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    margin: auto;
    font-size: 1.2em;
    color: #075a59;
    line-height: 1.6em;
    padding: 0.75em;
}


/*-------------------------- Skills@MaxWidth 974px ---------------------------------*/

@media screen and (max-width: 974px) {
    .skills_text {
        width: 80%;
    }

}

/*-------------------------- Skills@MaxWidth 780px ---------------------------------*/

@media screen and (max-width: 780px) {
    .skills_text {
        width: 90%;
    }

    .skills_text_cent {
        width: 90%;
    }

    .skills_list {
        width: 90%;
    }

    .skills_img_wrap {
        width: 90%;
    }

}

/*-------------------------- Skills@MaxWidth 658px ---------------------------------*/

@media screen and (max-width: 658px) {
    .skills_img {
        display: none;
    }

    .skills_img_2 {
        display: block;
    }

    .skills_img_med {
        width: 90%;
    }

    .skills_img_sml {
        width: 100%;
    }

    .skills_text_cent {
        text-align: left;
    }

    .skills_subhead {
        display: block;
        width: 90%;
        text-align: left;
        padding-bottom: 0.75em;
    }

    .skills_subhead_2 {
        width: 90%;
        text-align: left;
    }

    .skills_vid {
        width: 90%;
    }
}







/*---------------------------------- Lean Academy ----------------------------------*/

.lean_img {
    display: block;
    width: 100%;
    margin: auto;
    margin-bottom: 1em;
}

.lean_img_2 {
    display: none;
    width: 100%;
    margin: auto;
    margin-bottom: 1em;
}

.lean_text {
    width: 80%;
    margin: auto;
    font-size: 1em;
    line-height: 1.65em;
    margin-bottom: 1em;
}

.lean_logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
    width: 80%;
    margin: auto;
}

.lean_logos_img {
    -ms-flex-item-align: center;
    align-self: center;
    width: 26%;
    min-width: 200px;
    border-style: solid;
    border-width: 1px;
    border-color: #000;
    border-radius: 6px;
    background-color: #fff;
    margin-bottom: 1em;
}

.lean_subhead {
    display: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
    font-family: 'Roboto', sans-serif;
    color: #81358d;
    font-size: 1.5em;
    text-align: center;
}

.lean_list {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    padding-left: 0.75em;
    margin: auto;
    color: #511a5a;
    font-size: 1em;
    line-height: 1.65em;
}


/*-------------------------LeanAcademy@MaxWidth 974px-------------------------------*/

@media screen and (max-width: 974px) {
    .lean_logos {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

/*-------------------------LeanAcademy@MaxWidth 780px-------------------------------*/

@media screen and (max-width: 780px) {
    .lean_text {
        width: 90%;
    }

    .lean_subhead {
        width: 90%;
    }

    .lean_list {
        width: 90%;
    }

}

/*-------------------------- Lean@MaxWidth 658px ---------------------------------*/

@media screen and (max-width: 658px) {
    .lean_img {
        display: none;
    }

    .lean_img_2 {
        display: block;
    }

    .lean_subhead {
        display: block;
        text-align: left;
    }
    
    .lean_logo_img{
        width: 90%;
        min-width: 90;
    }
}







/*------------------------------------ Funding --------------------------------------*/

.funding_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    width: 80%;
    margin: auto;
    margin-top: 1em;
    margin-bottom: 3em;
}


.funding_subhead {
    display: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
    font-family: 'Roboto', sans-serif;
    color: #81358d;
    font-size: 1.5em;
    text-align: center;
}

.funding_subhead_2 {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
    font-family: 'Roboto', sans-serif;
    color: #81358d;
    font-size: 1.5em;
    text-align: center;
}

.funding_img {
    display: block;
    width: 100%;
    margin: auto;
    margin-bottom: 1em;
}

.funding_img_2 {
    display: none;
    width: 100%;
    margin: auto;
    margin-bottom: 1em;
}

.funding_img_sml {
    width: 40%;
}

.funding_news {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
    margin-top: 1em;
    margin-bottom: 1em;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1.4em;
    background: -webkit-gradient(linear, left top, left bottom, from(#81358d), to(#511a5a));
    background: linear-gradient(#81358d, #511a5a);
    padding: 0.50em;
}

.funding_vid {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    margin: auto;
    margin-bottom: 1.2em;
}

.funding_list {
    width: 50%;
    font-size: 1.2em;
    line-height: 1.6em;
    padding: 0em 0.75em;
}

.apprentice_logo{
    display: block;
    width: 40%;
    margin: auto;
}

/*-------------------------- Funding@MaxWidth 780px ---------------------------------*/

@media screen and (max-width: 780px) {

    .funding_wrap {
        width: 90%
    }

    .funding_img_sml {
        width: 100%;
    }

    .funding_news {
        width: 90%;
    }

    .funding_list {
        width: 90%;
    }

    .funding_vid {
        width: 90%;
    }
    
    .apprentice_logo{
    width: 60%;
    }
}

/*-------------------------- funding@MaxWidth 658px ---------------------------------*/

@media screen and (max-width: 658px) {
    .funding_subhead {
        display: block;
        width: 90%;
        text-align: left;
    }

    .funding_subhead_2 {
        width: 90%;
        text-align: left;
    }

    .funding_img {
        display: none;
    }

    .funding_img_2 {
        display: block;
    }
    
    .apprentice_logo{
    width: 90%;
    }

}







/*----------------------------------- About ils ------------------------------------*/

.about_img {
    display: block;
    width: 100%;
    margin: auto;
    padding-bottom: 1.5em;
}

.about_img_2 {
    display: none;
    width: 100%;
    margin: auto;
    padding-bottom: 1.5em;
}

.about_subhead {
    display: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
    font-family: 'Roboto', sans-serif;
    color: #81358d;
    font-size: 1.5em;
    text-align: center;
}

.about_text {
    display: block;
    width: 80%;
    font-size: 1em;
    line-height: 1.65em;
    text-align: left;
    margin: auto;
}

.gdpr_guidelines {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
    margin-bottom: 1em;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    text-align: center;
    background: -webkit-gradient(linear, left top, left bottom, from(#81358d), to(#511a5a));
    background: linear-gradient(#81358d, #511a5a);
    padding: 0.50em;
}

/*-------------------------- about@MaxWidth 780px ---------------------------------*/

@media screen and (max-width: 780px) {

    .about_text {
        width: 90%;
    }

    .gdpr_guidelines {
        width: 90%;
    }
}

/*-------------------------- about@MaxWidth 658px ---------------------------------*/

@media screen and (max-width: 658px) {
    .about_img {
        display: none;
    }

    .about_img_2 {
        display: block;
    }

    .about_subhead {
        display: block;
        text-align: left;
        width: 90%;
    }

    .gdpr_guidelines {
        text-align: left;
    }
}








/*-------------------------------------- News --------------------------------------*/

.feed_wrap {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
    text-decoration: none;
}

.feed_wrap ul {
    list-style-type: none;
}

.feed_wrap ul li {
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 1em;
    line-height: 1.65em;
}

.feed_wrap ul li a {
    text-decoration: none;
}

.feed_wrap ul li a:hover {
    color: #987412;
}

.news_subhead {
    display: block;
    font-size: 1.4em;
    color: #511a5a;
    margin-top: 1em;
}

.news_subhead_2 {
    display: block;
    font-size: 1em;
    color: #511a5a;
    margin-top: 1em;
}


.news_subhead_blue {
    display: block;
    font-size: 1.6em;
    color: #071bb7;
    margin-top: 1em;
}

.news_subhead_blue_sml {
    display: block;
    font-size: 1.2em;
    color: #071bb7;
    margin-top: 1em;
}

.ils_news_text{
    font-size: 1em;
    line-height: 1.4em;
}

/*-------------------------- news@MaxWidth 780px ----------------------------------*/

@media screen and (max-width: 780px) {
    .feed_wrap {
        width: 90%;
    }
}






/*-------------------------------------- Links -------------------------------------*/

.links_wrap {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
}

.links_catagory {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
    background: -webkit-gradient(linear, left top, left bottom, from(#81358d), to(#511a5a));
    background: linear-gradient(#81358d, #511a5a);
    text-align: left;
    color: #fff;
    padding: 0.75em;
}

.links_catagory_2 {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
    background: -webkit-gradient(linear, left top, left bottom, from(#00acaa), to(#075a59));
    background: linear-gradient(#00acaa, #075a59);
    text-align: left;
    color: #fff;
    padding: 0.75em;
}

.links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding-top: 0.75em;
    padding-bottom: 0.75em;
    text-align: left;
}

.links_2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding-top: 0.75em;
    padding-bottom: 0.75em;
    text-align: left;
    background-color: #ffffff;
}

.links_text {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    padding-left: 0.25em;
    font-size: 1em;
    line-height: 1.65em;
}

.links a {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 50%;
    text-decoration: none;
    padding-left: 0.25em;
}

.links a:hover {
    color: #987412;
}

.links_2 a {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 50%;
    text-decoration: none;
    padding-left: 0.25em;
}

.links_2 a:hover {
    color: #987412;
}


/*-------------------------- Links@MaxWidth 780px ----------------------------------*/

@media screen and (max-width: 780px) {
    .links_wrap {
        width: 90%;
    }

    .links_catagory {
        width: 90%;
    }

    .links_catagory_2 {
        width: 90%;
    }
}

/*-------------------------- Links@MaxWidth 658px ----------------------------------*/

@media screen and (max-width: 658px) {
    .links_text {
        min-width: 100%;
    }
}







/*------------------------------------- Contact ------------------------------------*/

.form_wrap {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 40%;
    min-width: 320px;
}

.response {
    padding: 6px 12px 24px 0px;
}

.contact_img {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: right;
    width: 60%;
    margin-bottom: 1.5em;
    margin-top: 1.5em;
}

.contact_text {
    display: block;
    width: 80%;
    margin: auto;
    font-size: 1em;
    line-height: 1.65em;
    margin-bottom: 1em;
}

.contact_wrap {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
}

/*--------------------------- Contact@MaxWidth 1040px -----------------------------*/

@media screen and (max-width: 1040px) {
    .contact_img {
        width: 54%;
    }
}

/*--------------------------- Contact@MaxWidth 920px -----------------------------*/

@media screen and (max-width: 920px) {
    .contact_img {
        width: 100%;
    }

}

/*--------------------------- Contact@MaxWidth 780px -----------------------------*/

@media screen and (max-width: 780px) {
    .contact_wrap {
        width: 100%;
    }

    .form_wrap {
        width: 28%;
        float: none;
        margin: auto;
    }

    .contact_text {
        width: 90%;
    }

    .contact_img {
        float: none;
        width: 90%;
        margin: auto;
        padding: 0em;
    }
}

/*--------------------------- Contact@MaxWidth 330px -----------------------------*/

@media screen and (max-width: 330px) {
    .contact_text {
        font-size: 1em;
        max-width: 310px;
    }
}






/*------------------------------------- Footer -------------------------------------*/

#footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    min-width: 320px;
    max-width: 1920px;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#81358d), to(#511a5a));
    background: linear-gradient(#81358d, #511a5a);
    margin: auto;
    padding: 0.5em;
}

.footer_text {
    font-size: 1em;
    padding: 0.75em;
}

.footer_text a{
    font-size: 1em;
    color: #fff;
}

#footer img {
    width: 6%;
}

/*-------------------------- Links@MaxWidth 658px ----------------------------------*/

@media screen and (max-width: 658px){
    .footer_text a{
        text-align: left;
    }
} 
