/** Variables **/
:root {
    --nsu-green: #007A53;
    --nsu-yellow: #F3D03E;
    --nsu-black: #000;
    --nsu-font: 'proxima-nova', Arial, Arial, Helvetica, sans-serif;
}
/** END Variables **/

  /** reset code **/
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,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ul {
    list-style: none;
}

ol {
    margin-left: 1.5rem;
}

ol li::marker {
    font-weight: bold;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong {
    font-weight: bold;
}
em {
    font-style: italic;
}
/** END reset code **/


/** Typography **/
body {
    color: var(--nsu-black);
    font: 1rem var(--nsu-font);
}

a {
    color: var(--nsu-green);
}

a:hover {
    color: var(--nsu-yellow);
    text-decoration: none;
}

h1, h2 {
    color: var(--nsu-green);
    font-weight: 700;
}

h1 {
    font-size: 37px;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    color: var(--nsu-black);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: .25rem;
}

small {
    font-size: 1rem;
}

hr {
    margin: .5rem 0 0;
}

.workday__button {
    background: var(--nsu-green);
    color: #fff;
    box-sizing: border-box;
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    border: 3px solid var(--nsu-green);
    border-radius: 0;
    padding: 10px 15px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .5s ease 0ms;
    text-decoration: none;
    flex-basis: 100%;
    text-align: center;
    max-width: 175px;
}
.workday__button:hover {
    background: var(--nsu-yellow);
    border-color: var(--nsu-yellow);
    color: var(--nsu-black);
}
.workday__button-inverse {
    background: #fff;
    border: 3px solid var(--nsu-green);
    color: var(--nsu-green);
    box-sizing: border-box;
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    border-radius: 0;
    padding: 10px 15px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .5s ease 0ms;
    text-decoration: none;
    margin: .5rem 0 0 0;
    flex-basis: 100%;
    text-align: center;
    max-width: 175px;
}
.workday__button-inverse:hover {
    background: var(--nsu-green);
    color: #fff;
}
.workday__button-secondary {
    background: var(--nsu-yellow);
    border-color: var(--nsu-yellow);
    color: var(--nsu-black);
    box-sizing: border-box;
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    border-width: 3px;
    border-style: solid;
    border-radius: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .5s ease 0ms;
    text-decoration: none;
    border-radius: 0;
    padding: 10px 15px;
    flex-basis: 100%;
    text-align: center;
    max-width: 175px;
}
.workday__button-secondary:hover {
    color: var(--nsu-black);
    background: #f4d557;
    border-color: #f4d557;
}
.workday__button-inverse,
.workday__button-secondary {
    margin: 0 0 0 1rem;
}
@media (min-width: 768px) {
    .workday__button-inverse,
    .workday__button-secondary,
    .workday__button {
        flex-basis: 100%;
    }
    .workday__buttons {
        flex-wrap: nowrap;
    }
}
@media (min-width: 1440px) {
    .workday__button,
    .workday__button-inverse,
    .workday__button-secondary {
        font-size: 18px;
    }
}
/** END Typography **/

/** Grids **/
.workdaycontainer {
    margin: 0 auto;
    max-width: 1320px;
    position: relative;
    padding: 0 2rem;
}

.workdaycontainer-fluid {
    margin: 0 auto;
    width: 100%;
}

.workdayrow {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
/** END Grids **/

/** Mobile Navigation **/
.workdaymobilenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    background-color: var(--nsu-green);
    background-color: rgba(0,122,83,.95);
    overflow-x: hidden;
    transition: 0.5s;
    display: none;
}
.workdaymobilenav__overlay-content {
    position: relative;
    top: 10%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
.workdaymobilenav__overlay-content img {
    max-width: 75px;
}
.workdaymobilenav a {
    padding: 8px;
    text-decoration: none;
    font-size: 1.25rem;
    color: #fff;
    display: block;
    transition: .3s;
    text-transform: uppercase;
    font-weight: bold;
}
.workdaymobilenav a:hover,
.workdaymobilenav a:focus {
    color: var(--nsu-yellow);
}
.workdaymobilenav .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}
.workdaymobilenav__dropdown {
    display: none;
    padding: 1rem 0;
}
.workdaymobilenav .workdaymobilenav__dropdown-link {
    text-transform: none;
    font-weight: normal;
}
.workdaymobilenav__dropdown-header .fa {
    font-size: 1.5rem;
}
@media screen and (max-height: 450px) {
    .workdaymobilenav a {font-size: 20px}
    .workdaymobilenav .closebtn {
      font-size: 40px;
      top: 15px;
      right: 35px;
    }
  }
@media (min-width: 768px) {
    .workdaymobilenav a {
        font-size: 1.75rem;
    }
    .workdaymobilenav__dropdown-header .fa {
        font-size: 2rem;
    }
}
/** END Mobile Navigation **/

/** Alert Banner **/
.workdayheader__alertbanner {
    display: flex;
    justify-content: center;
    background: var(--nsu-yellow);
    color: var(--nsu-black);
    font-weight: bold;
    font-size: 1rem;
    padding: .5rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1;
}
.workdayheader__alertbanner span {
    display: none;
}
.workdayheader__alertbanner a {
    color: var(--nsu-green);
}
.workdayheader__alertbanner a:hover {
    color: var(--nsu-black);
    text-decoration: underline;
}
@media (min-width: 768px) {
    .workdayheader__alertbanner span {
        display: initial;
    }
}
@media (min-width: 1280px) {
    .workdayheader__alertbanner {
        font-size: 1.25rem;
    }
}
/** End Alert Banner **/

/** Navigation **/
.workdayheader {
    align-items: center;
    display: flex;
    justify-content: space-between;
    /*border-bottom: 3px solid var(--nsu-yellow);*/
    position: sticky;
    top: 0;
    overflow: hidden;
    background: #fff;
    z-index: 1;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .55);
}
.workdayheader.alertbannerison {
    top: 40px;
}
.workdayheader__navmenulogo {
    align-items: center;
    display: flex;
    flex-grow: 1;
}
.workdayheader__navmenu {
    cursor: pointer;
    font-size: 3rem;
    height: 84px;
    text-align: center;
    width: 84px;
}
.workdayheader__navmenu-icon {
    color: var(--nsu-black);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
}
.workdayheader__navmenu:hover .workdayheader__navmenu-icon {
    color: var(--nsu-green);
}
.workdayheader__logo {
    display: flex;
    align-items: center;
}
.workdayheader__logo img {
    height: 65px;
    padding: 0 1rem;
    box-sizing: border-box;
}
.workdayheader__logo a {
    text-decoration: none;
    color: var(--nsu-black);
    text-decoration: none;
}
.workdayheader__logo-school {
    color: var(--nsu-black);
    border-left: 1px solid;
    padding-left: 1rem;
    font-size: 1rem;
    /*display: none;*/
    font-weight: bold;
}
.workdayheader__logo .workdayheader__logo-school img {
    padding: 0;
    height: 45px;
}
.workdayheader__nav {
    display: none;
}
.workdayheader__nav-links {
    display: flex;
}
.workdayheader__nav-links li {
    margin-right: 2rem;
}
.workdayheader__nav-links li:last-child {
    margin-right: 1rem;
}
.workdayheader__nav-links a {
    color: var(--nsu-black);
    font-weight: bold;
    text-decoration: none;
}
.workdayheader__nav-links a:hover,
.workdayheader__nav-links a:active {
    color: var(--nsu-green);
}
.workdayheader__nav-links span {
    cursor: pointer;
}
@media (min-width: 1280px) {
    .workdayheader__nav {
        display: initial;
    }
    .workdayheader.alertbannerison {
        top: 45.33px;
    }
}
@media (min-width: 1280px) {
    .workdayheader__navmenu {
        display: none;
    }
    .workdayheader__logo {
        padding: 9.5px 0;
    }
    .workdayheader__logo img {
        padding: 0 1rem 0 2rem;
    }
    .workdayheader__nav-links li:last-child {
        margin-right: 1.5rem;
    }
    .workdayheader__logo-school {
        display: inline-block;
    }
}
@media (min-width: 1600px) {
    .workdayheader__logo-school {
        font-size: 1.5rem;
    }
}
/** END Navigation **/

/** Subnav **/
.workdaysubnavigation {
    display: none;
    background: var(--nsu-green);
    color: #fff;
    border-bottom: .625rem solid var(--nsu-yellow);
}
.workdaysubnavigation__container {
    margin: 0 auto;
    max-width: 1320px;
}
.workdaysubnavigation__menu {
    display: none;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    padding: 1rem 0;
}
.workdaysubnavigation__menu:hover {
    color: #fff;
}
.workdaysubnavigation__links {
    display: none;
    justify-content: space-between;
    flex-wrap: wrap;
}
.workdaysubnavigation__link,
.workdaysubnavigation__dropdown-header {
    box-sizing: border-box;
    color: #fff;
    flex-grow: 1;
    font-size: 1rem;
    font-weight: bold;
    height: 50px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.workdaysubnavigation__link:hover {
    background: var(--nsu-yellow);
    color: var(--nsu-black);
}
.workdaysubnavigation__dropdown {
    position: relative;
    cursor: pointer;
}
.workdaysubnavigation__dropdown:hover {
    color: var(--nsu-black);
}
.workdaysubnavigation__dropdown-content {
    display: none;
    position: absolute;
    background: var(--nsu-green);
    width: 100%;
    z-index: 3;
    left: 0;
    top: 50px;
}
.workdaysubnavigation__dropdown-link {
    float: none;
    color: #fff;
    padding: 1rem .5rem;
    text-decoration: none;
    text-align: center;
    display: block;
    text-transform: none;
}
.workdaysubnavigation__dropdown-link:hover,
.workdaysubnavigation__dropdown-link:active,
.workdaysubnavigation__dropdown-link:focus {
    background: var(--nsu-yellow);
    color: var(--nsu-black);
}
.workdaysubnavigation__dropdown:hover .workdaysubnavigation__dropdown-header {
    color: var(--nsu-black);
}
.workdaysubnavigation__dropdown:hover .workdaysubnavigation__dropdown-content {
    display: block;
    z-index: 2;
}
@media (min-width: 1280px) {
    .workdaysubnavigation {
        display: block;
    }
    .workdaysubnavigation__links {
        display: flex;
    }
    .workdaysubnavigation__link {
        flex-basis: auto;
    }
    .workdaysubnavigation__menu {
        display: none;
    }
}
@media (min-width: 1440px) {
    .workdaysubnavigation__link,
    .workdaysubnavigation__dropdown-header {
        font-size: 1.25rem;
        height: 75px;
    }
    .workdaysubnavigation__dropdown-content {
        top: 75px;
    }
}
/** END Subnav **/

/** workday  Hero **/
.workdayhero {
    position: relative;
    max-height: 375px;
    overflow: hidden;
}
.workdayhero__image img {
    width: 100%;
    height: 375px;
    object-fit: cover;
    object-position: center;
}
.workdayhero__mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, .3);
    top: 0;
}
.workdayhero__caption {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.workdayhero__caption-subtitle {
    color: var(--nsu-yellow);
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 4px 4px rgba(0,0,0, .25);
}
.workdayhero__caption-title {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 4px 4px rgba(0,0,0, .25);
    line-height: 1;
}
@media (min-width: 768px) {
    .workdayhero__caption-subtitle {
        font-size: 3rem;
    }
    .workdayhero__caption-title {
        font-size: 4rem;
    }
}
/** Workday Hero End **/

/** Content Component **/
.workdaycontent__breadcrumbs {
    font-size: 1.25rem;
    margin: 0 0 2rem;
}
.workdaycontent__breadcrumbs a:hover,
.workdaycontent__breadcrumbs a:active {
    color: var(--nsu-yellow);
}
.workdaycontent__breadcrumbs .fa-caret-right {
    color: var(--nsu-yellow);
    margin: 0 .5rem;
}
.workdaycontent__breadcrumbs .workdaycontent__breadcrumbs-link {
    text-decoration: none;
}
.workdaycontent {
    padding: 50px 0;
    position: relative;
    font-size: 1.5rem;
}
.workdaycontent h1 {
    margin: 0 0 1rem;
    color: var(--nsu-green);
}
.workdaycontent h2 {
    margin: 1.5rem 0 .5rem;
    font-size: 2.25rem;
}
.workdaycontent h3 {
    color: #54585A;
    margin-bottom: .5rem;
}
.workdaycontent h4 {
    font-size: 1.5rem;
    color: #54585A;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.workdaycontent p {
    margin-bottom: 1rem;
}
.workdaycontent__decor {
    width: 15pt;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--nsu-yellow);
    height: 55%;
}
.workdaycontainer aside {
    justify-self: center;
    display: none;
}
.workdaycontainer ul {
    margin-bottom: 1rem;
}
.workdaycontainer ul li:before {
    content: url(../img/nsu-bullet.png);
    position: relative;
    top: 5px;
    margin-right: .5rem;
}
.workdaycontainer ul li {
    text-indent: -1rem;
    padding: 0 1rem;
}
.workdaycontent hr {
    margin: 2rem 0;
    background: #d9d9d9;
}
.workdaycontent__twocolumns {
    display: flex;
    justify-content: space-between;
}
.workdaycontent {
    border-top: 6px solid var(--nsu-yellow);
}
@media (min-width: 1280px) {
    .workdaycontainer aside {
        display: block;
        flex-basis: 25%;
    }
    .workdaycontainer main {
        flex-basis: 70%;
    }
}
@media (min-width: 1600px) {
    .workdaycontainer aside {
        position: sticky;
        top: 1rem;
        align-self: start;
    }
}
/** END Content Component **/

/** Workday Update **/
.workday__update-content {
    padding: 1rem 0;
}
.workday__update-content p:first-child {
    margin-top: 2rem;
}
.workday__update-author {
    font-size: 22px;
}
.workday__update-container .workday__update-item {
    border-bottom: 2px solid #ccc;
    padding-bottom: 2rem;
}
.workday__update-container .workday__update-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
/** END Workday Update **/

/** Workday Announcements **/
.workday__announcements {

}
.workday__announcements-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--nsu-black);
    flex-wrap: wrap;
}
.workday__announcements-container > div {
    padding: 1rem;
    text-align: center;
}
.workday__announcements-content {
    flex-basis: 100%;
}
.workday__announcements-content a,
.workday__announcements-content a:hover,
.workday__announcements-content a:active,
.workday__announcements-content a:visited {
    color: var(--nsu-black);
    background: transparent;
    text-decoration: none;
}
.workday__announcements-title {
    flex-basis: 100%;
    background: var(--nsu-yellow);
    font-weight: bold;
}
.workday__announcements-link {
    display: block;
    margin-top: 1.5rem;
    text-align: center;
}
.workday__announcements-container span {
    display: none;
}
.workday__announcements-content .title.active {
    display: block;
}
.workday__announcements-content .title {
    display: none;
}
@media (min-width: 1200px) {
    .workday__announcements-container {
        flex-wrap: nowrap;
    }
    .workday__announcements-container br {
        display: none;
    }
    .workday__announcements-container span {
        display: inline;
    }
    .workday__announcements-content {
        flex-basis: 75%;
    }
    .workday__announcements-title {
        flex-basis: 25%;
    }
}
/** END Workday Announcements **/

/** Workday Recent Updates **/
.workday__updatecarousel-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}
.workday__updatecarousel-card {
    border: 3px solid var(--nsu-green);
    padding: 1.5rem;
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 1rem;
}
.workday__updatecarousel-card .title {
    font-weight: bold;
    color: var(--nsu-green);
}
.workday__updatecarousel-card .date {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: .5rem;
}

.workday__updatecarousel-card .text {
    font-size: 18px;
}
@media (min-width: 768px) {
    .workday__updatecarousel-card {
        margin-right: 1rem;
        flex-basis: 40%;
        height: 250px;
    }
}
@media (min-width: 1440px) {
    .workday__updatecarousel-container {
        flex-wrap: nowrap;
    }
    .workday__updatecarousel-card {
        flex-basis: initial;
        margin-bottom: 0;
        max-width: 260px;
    }
}
/** END Workday Recent Updates **/

/** Workday Subnav **/
.workday__subnav {
    background: var(--nsu-green);
    margin: 0;
}
.workday__subnav .workday__subnav-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.workday__subnav .workday__subnav-items > div {
    flex-basis: 100%;
    text-align: center;
    border-left: 2px solid #186e52;
    border-right: 2px solid #186e52;
    border-top: 2px solid #186e52;
}
.workday__subnav .workday__subnav-items > div:last-child {
    border-bottom: 2px solid #186e52;
}
.workday__subnav .workday__subnav-items div a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    width: 100%;
    display: block;
    padding: 1.5rem 0;
}
.workday__subnav .workday__subnav-items div:hover {
    color: var(--nsu-black);
    background: var(--nsu-yellow);
}
.workday__subnav .workday__subnav-items div:hover a {
    color: var(--nsu-black);
}
@media (min-width: 768px) {
    .workday__subnav .workday__subnav-items {
        flex-wrap: nowrap;
    }
    .workday__subnav .workday__subnav-items > div {
        flex-basis: 25%;
        text-align: center;
        border-left: 2px solid #186e52;
        border-right: 0;
        border-top: 0;
    }
    .workday__subnav .workday__subnav-items > div:last-child {
        border-right: 2px solid #186e52;
        border-bottom: 0;
    }
}
/** END Workday Subnav **/

/** Workday Team Component **/
.workday__team .workday__team-items {
    margin: 2rem 0 0;
    display: flex;
    flex-wrap: wrap;
}
.workday__team .workday__team-item {
    padding: 1.5rem;
    border: 3px solid var(--nsu-green);
    text-align: center;
    flex-basis: 100%;
    margin: 0 .25rem .5rem;
    cursor: pointer;
}
.workday__team .workday__team-item h3,
.workday__team .workday__team-item h4 {
    margin-bottom: 0;
}
.workday__team .workday__team-item h3 {
    color: var(--nsu-black);
    font-weight: bold;
}
.workday__team .workday__team-item h4 {
    color: var(--nsu-black);
    font-weight: normal;
}
.workday__team .workday__team-item a:hover {
    text-decoration: underline;
}
.workday__team .workday__team-item:hover {
    background: var(--nsu-green);
}
.workday__team .workday__team-item:hover h3,
.workday__team .workday__team-item:hover h4,
.workday__team .workday__team-item:hover a {
    color: #fff;
}
@media (min-width: 768px) {
    .workday__team .workday__team-item {
        flex-basis: 19%;
    }
}
/** Workday Team Component END **/

/** Workday Event Component **/
.workday__events-container {
    margin-bottom: 3rem;
    border: 2px solid var(--nsu-green);
    padding: 2rem;
}
.workdaycontent h2.workday__events-year {
    margin: 0;
}
.workdaycontent .workday__event-description p {
    margin-bottom: 0;
}
.workday__event {
    display: flex;
    flex-wrap: wrap;
}
.workday__event-date {
    flex-basis: 100%;
}
.workday__event-description {
    flex-basis: 100%;
}
@media (min-width: 768px) {
    .workday__event-date {
        flex-basis: auto;
        margin-right: 1rem;
    }
    .workday__event-description {
        flex-basis: auto;
    }
}
/** Workday Event Component END **/

/** Workday Accordion **/
.workdaycontent__faq {
    margin: .5rem 0 2rem;
}
.workdaycontent__accordion-button {
    color: var(--nsu-black);
    cursor: pointer;
    padding: 18px 0;
    width: 100%;
    text-align: left;
    transition: .4s;
    font-weight: bold;
    font-size: 1.5rem;
    background: transparent;
    border: 0;
}
.workdaycontent__accordion-button::marker {
    color: var(--nsu-yellow);
}
/*.workdaycontent__accordion-button:before {*/
/*    content: '\02795';*/
/*    font-size: 1.25rem;*/
/*    color: rgba(0, 0, 0, 0);*/
/*    text-shadow: 0 0 var(--nsu-yellow);*/
/*    float: left;*/
/*    margin-right: .75rem;*/
/*}*/
/*.workdaycontent__accordion-button.active:before {*/
/*    content: "\2796";*/
/*}*/
.workdaycontent__accordion-button:hover,
.workdaycontent__accordion-button.active {
    color: var(--nsu-green);
}
/*.workdaycontent__accordion-answer {*/
/*    background: #fff;*/
/*    max-height: 0;*/
/*    overflow: hidden;*/
/*    transition: max-height .2s ease-out;*/
/*}*/
.workdaycontent__accordion-answer p {
    margin: 0;
    font-size: 1.5rem;
}
.workdaycontent__accordion-container details {
    margin-bottom: .5rem;
}
.workdaycontent__accordion-container details:last-child {
    margin-bottom: 0;
}
/** END Workday Accordion **/

/** workday Card Component **/
.workdaycontent__workdays {
    margin-bottom: 4rem;
}
.workdaycontent__workday {
    border: 4px solid var(--nsu-green);
    margin-bottom: 2rem;
}
.workdaycontent__workday:hover {
    border-color: var(--nsu-yellow);
}
.workdaycontent__workday:hover .workdaycontent__workday-title {
    background: var(--nsu-yellow);
    color: var(--nsu-black);
}
.workdaycontent__workday-title {
    background: var(--nsu-green);
    color: #fff;
    padding: .5rem 1rem;
    font-weight: bold;
}
.workdaycontent__workday-body {
    padding: 1rem;
}
.workdaycontent__workday-body p {
    margin-bottom: 1.5rem;
}
.workdaycontent__workday-buttons {
    display: flex;
    flex-wrap: wrap;
}
/** workday Card Component End **/

/** workday Intro Component **/
.workdaycontent__intro h2 {
    margin: 0 0 .5rem;
}
.workdaycontent__intro-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.workdaycontent__intro-content {
    flex-basis: 100%;
    margin-bottom: 2rem;
}
.workdaycontent__intro-ss {
    flex-basis: 100%;
}
.workdaycontent__ss {
    border: 4px solid var(--nsu-green);
    text-align: center;
    margin-bottom: 2rem;
}
.workdaycontent__ss-title {
    background: var(--nsu-green);
    color: #fff;
    font-weight: bold;
    padding: .5rem 0;
}
.workdaycontent__ss-body {
    font-size: 18px;
}
.workdaycontent__ss-body-line {
    display: flex;
    justify-content: center;
    padding: .5rem 0;
}
.workdaycontent__ss-body-line:last-child {
    display: inline-block;
}
.workdaycontent__ss-body-line:nth-child(odd) {
    background: #f2f2f2;
}
.workdaycontent__ss-body-line .label {
    font-weight: bold;
    margin-right: .5rem;
}
.workdaycontent__ss-body-buttons {
    margin: 1rem 0;
}
.workdaycontent__ss-body-buttons .workday__button,
.workdaycontent__ss-body-buttons .workday__button-secondary {
    padding: 5px 10px;
}
@media (min-width: 1280px) {
    .workdaycontent__intro-content {
        flex-basis: 70%;
    }
    .workdaycontent__intro-ss {
        flex-basis: 25%;
    }
    .workdaycontent__intro-container {
        flex-wrap: nowrap;
    }
}
/** workday Intro Component End **/

/** workday Class Table Component **/
.workdaycontent__classtable {
    border: 4px solid var(--nsu-green);
    text-align: center;
    margin: 2rem 0;
}
.workdaycontent__classtable-title {
    background: var(--nsu-green);
    color: #fff;
    font-weight: bold;
    padding: .5rem 0;
}
.workdaycontent__classtable-row {
    display: flex;
    justify-content: center;
    padding: .5rem 0;
}
.workdaycontent__classtable-row > div {
    padding: .25rem;
}
.workdaycontent__classtable-row .course {
    flex-basis: 20%;
}
.workdaycontent__classtable-row .course-title {
    flex-basis: 60%;
}
.workdaycontent__classtable-row .course-credit {
    flex-basis: 20%;
}
.workdaycontent__classtable-body .workdaycontent__classtable-row:nth-child(odd) {
    background: #f2f2f2;
}
.workdaycontent__classtable-body .workdaycontent__classtable-row:hover {
    background: var(--nsu-yellow);
    color: var(--nsu-black);
}
.workdaycontent__classtable-body .workdaycontent__classtable-row a:hover {
    color: var(--nsu-green);
    text-decoration: underline;
}
@media (min-width: 768px) {
    .workdaycontent__classtable-row .course-title {
        text-align: left;
    }
}
/** END workday Class Table Component **/

/** Workday Support **/
.quicklinks__item-container {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem auto;
}
.quicklinks__item:hover {
    background: var(--nsu-green);
    color: #fff;
}
.quicklinks__item:hover span,
.workdaycontent .quicklinks__item:hover h4 {
    color: #fff;
}
.quicklinks__item {
    text-align: center;
    flex-basis: 35%;
    text-decoration: none;
    display: block;
    border: 3px solid var(--nsu-green);
    padding: 2rem 1rem;
    margin: .5rem;
}
.quicklinks__item span {
    color: var(--nsu-green);
    font-size: 3rem;
    margin-bottom: .5rem;
}
.quicklinks__video-section {
    width: 75%;
}
.workdaycontent .quicklinks__item h4 {
    color: var(--nsu-black);
    margin-bottom: 0;
}
.trainmat__container {
    margin: .5rem 0;
}
.trainmat__item-container {
    display: flex;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap;
}
.trainmat__item {
    flex-basis: 100%;
}
@media (min-width: 768px) {
    .trainmat__item-container {
        flex-wrap: nowrap;
    }
    .trainmat__item {
        flex-basis: 33%;
    }
    .quicklinks__item {
        flex-basis: 25%;
    }
}
/** END Workday Support **/

/** workday Outline Component **/
.workdaycontent__outline {
    padding: 50px 0 100px;
    background: url(../img/nsu-texture.svg) no-repeat var(--nsu-green) left center;
    color: #fff;
    background-size: cover;
    appearance: none;
    text-align: center;
    margin-bottom: 2rem;
}
.workdaycontent__outline-title {
    font-size: 40px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: bold;
}
.workdaycontent__outline-title span {
    color: var(--nsu-yellow);
}
.workdaycontent__outline-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.workdaycontent__outline-links li {
    list-style: none;
    flex-basis: 100%;
}
.workdaycontent__outline-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
.workdaycontent__outline-links li:before {
    content: url(../img/nsu-bullet.png);
    position: relative;
    top: 5px;
    margin-right: .5rem;
}
.workdaycontent__outline-links li .divider {
    margin: 0 1.5rem;
    display: none;
}
.workdaycontent__outline-links li a:hover {
    color: var(--nsu-yellow);
}
.workdaycontent__questions-section {
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .workdaycontent__outline {
        background-size: contain;
    }
}
@media (min-width: 1600px) {
    .progamcontent__outline-links {
        flex-wrap: nowrap;
    }
    .workdaycontent__outline-links li {
        flex-basis: auto;
    }
    .workdaycontent__outline-links li .divider {
        display: inline-block;
    }
    .workdaycontent__outline-links li:before {
        display: none;
    }
}
/** workday Outline Component End **/

/** workday Sidebar **/
.workday__sidebar {
    color: var(--nsu-black);
    margin-bottom: 3rem;
}
.workday__sidebar:last-child {
    margin-bottom: 0;
}
.workday__sidebar-title {
    border-bottom: 1px solid;
    padding-bottom: .5rem;
    margin-bottom: 1rem;
}
.workday__sidebar-social {
    margin-top: .5rem;
}
.workday__sidebar-social .fa-brands {
    font-size: 1.75rem;
    color: var(--nsu-black);
}
.workday__sidebar-social .fa-brands:hover {
    color: var(--nsu-green);
}
.workday__body-links a {
    display: block;
}
/** workday Sidebar END **/

/** Workday Project Management **/
.workday__slide a {
    text-decoration: none;
}
.workday__slide img {
    border: 2px solid #ccc;
    padding: 1rem;
    margin: 1rem 0;
    box-sizing: border-box;
}
.workdaycontent__accordion-button.alternate {
    background: #eee;
    margin-bottom: .5rem;
}
.workdaycontent__accordion-button.alternate::marker {
    color: transparent;
}
.workdaycontent__accordion-answer.alternate {
    ul {
        margin: 1rem;
    }
}
/** Workday Project Management **/

/** Workday Timeline **/
.workday__timeline {
    background: url(../img/nsu-texture.svg) no-repeat var(--nsu-green);
    background-size: cover;
    color: #fff;
}
.workday__timeline h2 {
    color: #fff;
}
.workday__timeline-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.workday__timeline-item {
    border: 1px solid rgba(255, 255, 255, .32);
    text-align: center;
    padding: 2rem .5rem;
    font-size: 2rem;
    font-weight: bold;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 170px;
    margin-bottom: 1rem;
    background: #006646;
}
.workday__timeline-item > div {
    flex-basis: 100%;
}
.workday__timeline-subtitle {
    font-size: 1.5rem;
    color: var(--nsu-yellow);
}
.workday__timeline-title {
    line-height: 1;
}
.workday__timeline-item.active {
    background: var(--nsu-yellow);
    color: var(--nsu-black);
}
.workday__timeline-item.active .workday__timeline-subtitle {
    color: var(--nsu-green);
}
.workday__timeline-item.checked {
    opacity: .75
}
.workday__timeline-icon {
    flex-basis: 100%;
    max-width: 50px;
}
.workday__timeline-link {
    color: #fff;
    font-weight: bold;
    display: block;
    margin-top: 1.5rem;
    text-align: center;
}
@media (min-width: 768px) {
    .workday__timeline-item {
        flex-basis: 29%;
        margin-right: .5rem;
        margin-bottom: .5rem;
    }
}
@media (min-width: 1024px) {
    .workday__timeline {
        background-size: contain;
    }
}
@media (min-width: 1200px) {
    .workday__timeline-container {
        flex-wrap: nowrap;
    }
    .workday__timeline-item {
        flex-basis: 19%;
        margin-bottom: 0;
    }
}
/** END Workday Timeline **/

/** Why Workday **/
.workday__why-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.workday__why-content {
    flex-basis: 100%;
    margin-bottom: 2rem;
}
.workday__why-image {
    max-width: 450px;
    flex-basis: 100%;
}
@media (min-width: 1200px) {
    .workday__why-container {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .workday__why-content {
        flex-basis: 60%;
        margin-bottom: 0;
    }
    .workday__why-image {
        flex-basis: 40%;
    }
}
/** End Why Workday **/

/** Workday Contact **/
.workday__contact {
    text-align: center;
}
.workday__contact-box {
    border: 3px solid var(--nsu-green);
    padding: 2rem;
}
.workday__contact-box h2 {
    margin-top: 0;
}
/** END Workday Contact **/

/** Workday Component **/
.workday__components {
    background: url(../img/nsu-texture.svg) no-repeat var(--nsu-green);
    background-size: cover;
}
.workday__components h2 {
    color: #fff;
    margin: 0 0 2rem;
}
.workday__components-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.workday__components-item {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    max-width: 500px;
}
/*.workday__components-item > div {*/
/*    flex-basis: 50%;*/
/*}*/
.workday__components-image {
    flex-basis: 25%;
    max-height: 300px;
}
.workday__components-image img {
    object-fit: cover;
    height: 100%;
}
.workday__components-content {
    background: #fff;
    padding: 1rem 2rem;
    flex-grow: 1;
    flex-basis: 50%;
}
.workday__components-content h3 {
    font-size: 1.5rem;
    color: var(--nsu-black);
}
.workday__components-content p {
    font-size: 18px;
}
@media (min-width: 1024px) {
    .workday__components {
        background-size: contain;
    }
    .workday__components-container {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .workday__components-item {
        flex-basis: 32%;
        margin-bottom: 0;
    }
    .workday__components-image {
        flex-basis: 50%;
    }
}
/** END Workday Component **/

/** Footer Component **/
footer {
    background: #f2f2f2;
    border-bottom: 6px solid var(--nsu-yellow);
    color: #54585A;
    padding: 2rem 0;
}
.footer__container {
    display: flex;
    flex-wrap: wrap;
}
.footer__container a {
    color: #54585A;
    text-decoration: none;
}
.footer__container a:hover {
    color: var(--nsu-green);
}
.footer__info {
    flex: 0 0 100%;
    margin-bottom: 1rem;
}
.footer__info-logo {
    margin-bottom: 1rem;
    max-height: 75px;
}
.footer__info-phone {
    font-weight: bold;
}
.footer__info-social {
    margin-top: 1rem;
}
.footer__info-social .fa-brands {
    font-size: 2rem;
}
.footer__links {
    display: flex;
    flex: 0 0 100%;
    flex-wrap: wrap;
}
.footer__links > div {
    flex-grow: 1;
    margin-bottom: 1rem;
}
.footer__links-title {
    font-weight: bold;
}
.footer__links a {
    display: block;
}
@media (min-width: 768px) {
    footer {
        font-size: 18px;
    }
    .footer__info {
        flex: 0 0 35%;
        margin-bottom: 0;
    }
    .footer__links {
        flex: 0 0 65%;
    }
    .footer__links > div {
        margin-bottom: 0;
    }
}
/** END Footer Component **/

/** Utilities **/
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mt-1 {
    margin-top: 1rem !important;
}
.mb-1 {
    margin-bottom: 1rem !important;
}
.mt-2 {
    margin-top: 2rem !important;
}
.mb-2 {
    margin-bottom: 2rem !important;
}
.d-block {
    display: block;
}
.text-center {
    text-align: center !important;
}
.iframe_container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.text-color-yellow {
    color: var(--nsu-yellow) !important;
}
.text-color-black {
    color: var(--nsu-black) !important;
}
.text-color-green {
    color: var(--nsu-green) !important;
}
.text-decoration-none {
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
.section-padding {
    padding: 50px 0;
}
.section-padding h2 {
    margin-top: 0;
}
.section-padding-bottom {
    padding: 0 0 50px;
}
.section-padding-top {
    padding: 50px 0 0;
}
/** Utilites End **/
