/*====================================================================================
/Southern Wesleyan University Theme
/Developed by: Isaac Clary
/Copyright 2021-2025
/Date Modified: 8/27/25
/Version: 1.0.0
====================================================================================*/
  
/*====================================================================================
/Navigation
/Two different navigation bars are displayed depedening on the screen size. For
/screens 1024px or smaller, the mobile navigation menu is displayed. For screens
/larger than 1024px the desktop navigation bar is displayed and the mobile hidden.
====================================================================================*/
/*==========================================
/Mobile Navigation
==========================================*/

/*At a max-width of 1024px the mobile navigation is displayed and the desktop navigation is hidden*/
@media screen and (max-width: 1024px) {
    .desktop {
        display: none;
        opacity: 0;
    }
  
    .mobile {
        display: block;
        opacity: 1;
    }
  
 /*========================================*/
  
    .mobile-header {
        background-color: var(--neutral-color-white);
      	border-bottom: 2px solid var(--neutral-color-off-white);
        height: 80px;
        padding: 0;
        width: 100%;
    }
  
  	.logo-container {
      	position: absolute;
        z-index: 1;
    }
  
    .logo-container > a > img {
        max-height: 60px;
        padding: 10px;
        position: relative;
        width: 120px;
    }
  
  	.logo-container > a > img.header-alumni {
        width: 268.81px !important;
    }
  
  	.logo-container > a > img.header-advancement {
        width: 288.81px !important;
    }
      
    .mobile-nav-open {
      	background-color: transparent;
      	border: none;
    	border-radius: unset;
      	box-shadow: none;
        color: var(--primary-color);
        display: unset !important;
      	float: right;
        font-size: 1.75rem;
      	margin: 3px 0 0 0;
        overflow: hidden;
        padding: 21px 10px 21px 15px;
        text-decoration: none;
        transition: 0.5s;
      	width: unset;
    }
  
  	.mobile-nav-open:hover {
      	cursor: pointer;
  	}
  
/*========================================*/
  
    nav.mobile-nav-container {
        background-color: var(--primary-color);
        bottom: 0;
        height: 100%;
        margin: 0;
      	margin-right: -320px;
      	opacity: 0;
        overflow-x: hidden;
        position: fixed;
        right: 0;
        top: 0;
        width: 320px;
        z-index: 1;
    }
  
    .mobile-nav-header {
        background-color: var(--neutral-color-white);
        border-left: 2px solid var(--neutral-color-grey);
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
        height: 74px;
        padding: 3px 10px;
        width: 298px;
        z-index: 2;
    }
  	
  	/*Sets the default style for the search <input> element*/
    #search_term2 {
        border: 1px solid var(--neutral-color-dark-grey) !important;
        border-radius: 2px !important;
        display: block !important;
        float: left !important;
        font-family: BarlowSb !important;
        font-size: 1.3125rem !important;
        line-height: 16px !important;
        margin: 18px 0 !important;
        padding: 5px !important;
        text-decoration: none !important;
        width: 180px !important;
    }
  
  	/*Sets the default style for the submit <button>*/
    #search_go2 {
        background-color: var(--accent-color-blue) !important;
        box-shadow: none !important;
        color: var(--primary-color) !important;
        display: inline-block !important;
        font-size: 1.3125rem !important;
        line-height: 21px !important;
        margin: 18px 0 !important;
        position: relative !important;
        right: -4px !important;
        top: 0px !important;
        width: 40px !important;
    }
  
    .mobile-nav-close {
      	background-color: transparent;
      	border: none;
    	border-radius: unset;
      	box-shadow: none;
        color: var(--primary-color);
        display: inline-block;
        font-size: 2.45rem;
      	margin: 0;
        overflow: hidden;
        padding: 14.25px 10px;
        position: absolute;
        right: 0;
        text-decoration: none;
        top: 3px;
        vertical-align: top;
      	width: unset;
        z-index: 2;
    }
  
  	.mobile-nav-close:hover {
      	cursor: pointer;
  	}
  
    ul.mobile-nav {
        list-style: none;
        text-align: left;
        margin: 0;
        padding: 10px;
    }
  
    ul.mobile-nav > li {
        display: block;
        margin: 10px 0;
    }
  
    ul.mobile-nav > li > details:not([open]) {
        margin-bottom: 10px;
    }
  
    ul.mobile-nav > li > a, ul.mobile-nav > li > details > summary {
        border: 1px solid var(--accent-color-blue);
        border-radius: 2px;
        color: var(--neutral-color-white);
        display: block;
        font-family: WorkSansRg;
        font-size: 1.5rem;
        padding: 9px;
        text-decoration: none;
    }
  
    ul.mobile-nav > li > a:hover, ul.mobile-nav > li > details > summary:hover {
        background-color: var(--neutral-color-white);
        border: none;
        color: var(--primary-color);
        padding: 10px;
    }
  
    details[open] .desktop-subnav-link-a {
        background-color: var(--neutral-color-white);
        color: var(--primary-color);
    }
  
    details:not([open]) .mobile-subnav-link-a::after {
        content: "\f078";
        color: var(--neutral-color-white);
        float: right;
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 16px;
        position: relative;
        top: 6px;
    }
  
    details[open] .mobile-subnav-link-a::after {
        content: "\f077";
        color: var(--netral-color-white);
        float: right;
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 16px;
        position: relative;
        top: 6px;
    }
  
    details:not([open]) .mobile-subnav-link-a:hover::after {
        color: var(--primary-color);
    }
  
/*========================================*/
  
    .mobile-subnav-container {
        display: none;
        height: auto;
        width: auto;
    }
  
  	.mobile-subnav-container h3{
      	display: none;
  	}
  
    .mobile-subnav-container [class*="col-"] {
        width: 100%;
    }
  
    details[open] > .mobile-subnav-container {
        display: block;
    }
  
    ul.subnav {
        list-style: none;
        text-align: left;
        margin: 0;
        padding: 10px;
    }
  
    ul.subnav > li {
        display: block;
    }
  
    ul.subnav > li > a, ul.subnav > li > strong > a, .nav-header-no-link {
        color: var(--neutral-color-white);
        display: block;
        font-family: WorkSansRg;
        font-size: 1rem;
        padding: 10px;
        text-decoration: none;
    }
  
    ul.subnav > li > strong > a {
        font-family: WorkSansBd !important;
    }
  
    ul.subnav > li > a:hover, ul.subnav > li > strong > a:hover {
        background-color: var(--neutral-color-white);
        color: var(--primary-color);
    }
  
/*========================================*/
  
    ul.persona-nav {
        list-style: none;
        margin: 0;
        padding: 10px;
        text-align: center;
    }
  
    ul.persona-nav > li {
        display: inline-flex;
    }
  
    ul.persona-nav > li > a {
        color: var(--neutral-color-white);
        display: block;
        font-family: WorkSansRg;
        font-size: 1rem;
        padding: 10px;
        text-decoration: none;
    }
  
    ul.persona-nav > li > a:hover {
        color: var(--neutral-color-white);
        cursor: pointer;
      	text-decoration: underline;
    }
  
    nav.mobile-nav-container > p {
        padding: 10px;
      	text-align: center;
    }
  
    nav.mobile-nav-container > p > a {
        color: var(--neutral-color-white);
        display: inline-block;
        font-family: WorkSansRg;
        font-size: 1rem;
        padding: 0 10px;
        text-decoration: none;
    }
  
  	nav.mobile-nav-container > p > span {
        color: var(--neutral-color-white);
    }
  
    nav.mobile-nav-container > p > a:hover {
        cursor: pointer;
        text-decoration: underline;
    }
}

@media screen and (max-width: 1199px) {
    nav.mobile-nav-container > p > a {
        font-size: 0.875rem;
    }
}

/*==========================================
/Desktop
==========================================*/

/*At a min-width of 1025px the mobile navigation is hidden and the desktop navigation is displayed*/
@media screen and (min-width: 1025px) {
    .desktop {
        display: block;
        opacity: 1;
    }
  
    .mobile {
        display: none;
        opacity: 0;
    }
  
    .logo-container {
      	position: absolute;
        z-index: 1;
    }
  
    .logo-container > a > img {
        max-height: 60px;
        padding: 20px 20px 20px 0;
        position: relative;
        width: 120px;
        z-index: 2;
    }
  
  	.logo-container > a > img.header-alumni {
        width: 335.03px !important;
    }
  
  	.logo-container > a > img.header-advancement {
        width: 408.09px !important;
    }
  
/*==========================================
/Persona navigation                             
==========================================*/ 
    nav.persona-nav-container {
        background-color: var(--primary-color);
        overflow: hidden;
      	padding: 0 60px;
    }
  
    ul.persona-nav {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        float: right;
    }
  
    ul.persona-nav > li {
        display: inline-block;
    }
  
    ul.persona-nav > li:nth-last-child(2) {
        margin: 0 20px 0 10px;
    }
  
    ul.persona-nav > li:nth-last-child(2) > span {
        color: var(--neutral-color-white);
        padding: 0 2.5px;
        vertical-align: middle;
    }
  
    ul.persona-nav > li:nth-last-child(2) > a {
        display: inline-block;
        font-size: 0.625rem;
        letter-spacing: 0.5px;
        padding: 17px 2.5px;
    }
  
  	/*Default style for give button*/
  	ul.persona-nav > li.give > a {
		background-color: var(--accent-color-blue);
      	box-shadow: inset 0 0 8px 0 rgb(0 0 0 / 10%);
      	color: var(--primary-color);
      	font-family: WorkSansBd !important;
        margin: 10px 0;
    	padding: 7px 14px;
      	text-decoration: none;
    }
  
  	ul.persona-nav > li.give > a:hover {
      	text-decoration: underline;
    }
  
    ul.persona-nav > li:nth-last-child(2) > a:hover {
        background-color: var(--primary-color);
        text-decoration: underline;
    }
  
    ul.persona-nav > li > a {
        color: var(--neutral-color-white);
        display: block;
        font-family: WorkSansRg;
        font-size: 0.75rem;
        line-height: 12px;
        padding: 17px 10px;
        text-decoration: none;
    }
  
    ul.persona-nav > li > a:hover {
        cursor: pointer;
        text-decoration: underline;
    }
  
/*==========================================
/Main navigation                             
==========================================*/
    nav.desktop-nav-container {
        background-attachment: scroll;
        background-image: url("/Institutions/Southern-Wesleyan-University/images/nav-background.svg");
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: auto;
        border-bottom: 4px solid var(--accent-color-blue);
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        height: 100%;
        overflow: hidden;
        padding: 0 60px;
        width: auto;
    }
  
    ul.desktop-nav {
        display: flex;
        float: right;
        list-style: none;
        margin: 0;
    }
  
    ul.desktop-nav > li {
        display: inline-block;
    }
  
    ul.desktop-nav > li:last-child {
        position: relative;
    }
  
  	ul.desktop-nav > li:last-child button {
      	background-color: transparent;
      	border: none;
    	border-radius: unset;
      	box-shadow: none;
    	display: block;
      	margin: 0;
    	padding: 0;
      	width: unset;
  	}
  
    ul.desktop-nav > li:last-child:hover button > span.fa-search {
        color: var(--primary-color);
      	cursor: pointer;
    }
  
    ul.desktop-nav > li:last-child span.fa-search {
        font-size: 1.25rem;
        line-height: 36px;
        padding: 32px 0 32px 15px;
    }
  
    ul.desktop-nav > li > a, ul.desktop-nav > li > details > summary {
        color: var(--neutral-color-dark-grey);
        display: block;
        font-family: BarlowSb;
        font-size: 1.5rem;
        padding: 38px 15px;
        line-height: 24px;
        text-decoration: none;
        vertical-align: text-bottom;
    }
  
    ul.desktop-nav > li > a:hover, ul.desktop-nav > li > details > summary:hover {
        color: var(--primary-color);
        cursor: pointer;
        text-decoration: underline;
        text-decoration-color: var(--accent-color-blue);
    }
  
    details[open] .desktop-subnav-link-a {
        color: var(--primary-color);
      	text-decoration: underline;
    	text-decoration-color: var(--accent-color-blue);
    }
  
    details:not([open]) .desktop-subnav-link-a::after {
        content: "\f078";
        color: #616161;
        float: right;
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 16px;
        line-height: 28px;
        padding-left: 5px;
    }
  
    details[open] .desktop-subnav-link-a::after {
        content: "\f077";
        color: var(--primary-color);
        float: right;
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 16px;
        line-height: 28px;
        padding-left: 5px;
    }

/*==========================================
/Main sub navigation                             
==========================================*/
    .desktop-subnav-container {
        background-color: var(--primary-color);
        border-bottom: 4px solid var(--accent-color-blue);
        color: var(--neutral-color-white);
        display: block;
        left: 0;
        overflow: hidden;
        padding: 0 20px;
        position: absolute;
        top: 146px;
        width: 100%;
        z-index: 5;
    }
  
  	.desktop-subnav-container h3{
      	padding-left: 10px;
  	}
  
  	div.col-one-half:not(:last-child) > ul.subnav, div.col-one-third:not(:last-child) > ul.subnav {
      	border-right: 2px solid var(--accent-color-blue);
  	}
  
    ul.subnav {
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: left;
    }
  
    ul.subnav > li {
        display: block;
    }
  
    ul.subnav > li > a, ul.subnav > li > strong > a, .nav-header-no-link {
        color: var(--neutral-color-white);
        display: block;
        font-family: WorkSansRg;
        font-size: 1rem;
        padding: 10px;
        text-decoration: none;
        width: 75%;
    }
  
    ul.subnav > li > strong > a, .nav-header-no-link {
        font-family: WorkSansBd !important;
    }
  
    ul.subnav > li > a:hover, ul.subnav > li > strong > a:hover {
        background-color: var(--neutral-color-white);
        border-radius: 2px;
        color: var(--primary-color);
    }
  
    details:not([open]) > .desktop-subnav-container {
        height: 0;
    }
  
    details[open] > .desktop-subnav-container {
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        height: 280px;
        padding: 40px 60px;
    }
  
  	div.h3-space {
      height: 58.5px;
  	}
}

/*Increases the main navigation font size at a min-width of 1200px*/
@media screen and (min-width: 1200px) {
  	.logo-container > a > img {
        max-height: 75px;
        padding: 22.5px 30px 22.5px 0;
        position: relative;
        width: 150px;
        z-index: 2;
    }
  	
    ul.persona-nav > li:nth-last-child(2) > a {
        font-size: 0.75rem;
        padding: 15px 2.5px;
    }
  
    ul.persona-nav > li > a {
        font-size: .875rem;
        line-height: 16px;
        padding: 15px 15px;
    }
  
  	ul.persona-nav > li.give > a {
      	margin: 8px 0;
    }
  	
  	ul.desktop-nav > li > a, ul.desktop-nav > li > details > summary {
        font-size: 1.75rem;
        padding: 46px 20px;
        line-height: 28px;
    }
  
  	ul.desktop-nav > li:last-child span.fa-search{
        font-size: 1.25rem;
        line-height: 36px;
        padding: 42px 0 42px 20px;
    }
  
  	/*ul.desktop-nav > li > a, ul.desktop-nav > li > details > summary {
        color: var(--neutral-color-dark-grey);
        display: block;
        font-family: BarlowSb;
        font-size: 1.5rem;
        padding: 48px 15px;
        line-height: 24px;
        text-decoration: none;
        vertical-align: text-bottom;
    }*/
  
  	div.h3-space {
      height: 63px;
  	}
  
  	.desktop-subnav-container {
        top: 166px;
    }
  
    ul.subnav > li > a, ul.subnav > li > strong > a, .nav-header-no-link {
        font-size: 1.3125rem;
    }
  
  	details[open] > .desktop-subnav-container {
        height: 320px;
    }
  
    .search-bar-container {
    	top:166px;
    }
}

/*==========================================
/Search bar                              
==========================================*/
.search-bar-container {
    background-color: var(--primary-color);
    display: block;
    height: 0;
    overflow: hidden;
    position: absolute;
    transition: height 0.5s ease;
    width: 100%;
    z-index: 1;
}

.search-container {
    margin: 24px auto;
    max-width: 800px;
    position: relative;
    text-align: center;
    width: 100%;
}

.search-container > p {
    color: var(--neutral-color-white);
    display: inline-block;
    float: left;
    font-size: 1.5rem;
    line-height: 24px;
  	margin-top: 10px;
    padding: 10px 10px 10px 0;
    position: relative;
    top: 4px;
}

form#searchForm, form#searchForm2 {
    border: none;
    position: relative;
    text-align: left;
    width: 100%;
}
form#searchForm2 > fieldset, form#searchForm > fieldset {
    border: none;
    display: block !important;
    font-size: 0;
    max-width: 260px;
}

#search_term, #search_term2 {
    border: 1px solid var(--neutral-color-dark-grey);
    border-radius: 4px;
    color: var(--neutral-color-dark-grey);
    display: block;
    font-family: BarlowSb;
    font-size: 1.5rem;
    margin: 10px 0;
    padding: 10px;
    position: relative;
    width: 518px;
}

.search-bar-open {
    border-bottom: 4px solid var(--accent-color-blue);
    height: 118px;
    transition: height 0.5s ease;
}

#search_go, #search_go2 {
    background-color: var(--accent-color-blue);
    border-radius: 4px;
    color: var(--primary-color);
    display: block;
    font-family: BarlowSb;
    font-size: 1.5rem;
    line-height: 34px;
    margin: 10px 0;
    position: absolute;
    padding: 8px 0;
    right: 0;
    text-align: center;
    text-decoration: none;
    top: 0;
    width: 60px;
}

#search_go2:hover, #search_go:hover {
    background-color: var(--primary-blue);
  	border: 2px solid var(--accent-color-blue);
    box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, 0.1);
  	box-sizing: border-box;
    color: var(--neutral-color-off-white);
    cursor: pointer;
  	padding: 6px 0;
    transition: background-color 0.2s ease-in;
}
  
@media screen and (min-width: 1200px) {
  	.search-bar-container {
      top:166px;
  	}
}
  
@media screen and (max-width: 1099px) {
  	.search-bar-container {
      top:146px;
  	}
}
  
/*==========================================
/Notification bar                              
==========================================*/
  
div#notification-bar {
  	/*background-color: #eac248;*/
  	background-color: var(--accent-color-blue);
  	padding: 0 60px;
  	text-align: center;
  
}
  
@media screen and (min-width: 1200px) {
  	div#notification-bar {
      	padding: 0 60px;
  	}
  
	div#notification-bar > .wide-container > p {
  		margin: 0;
  		padding: 15.75px 0 !important;
	}
}
  
@media screen and (min-width: 1025px) {
  	div#notification-bar {
      	padding: 0 60px;
  	}
  
	div#notification-bar > .wide-container > p {
  		margin: 0;
  		padding: 8px 0;
	}
}
  
@media screen and (max-width: 1024px) {
  	div#notification-bar {
      	padding: 0 60px;
  	}
  
	div#notification-bar > .wide-container > p {
  		margin: 0;
  		padding: 8px 0;
	}
}
  
@media screen and (max-width: 768px) {
  	div#notification-bar {
      	padding: 0 20px;
  	}
}

@media screen and (max-width: 595px) { /*Change back*/
  button#mobile-nav-open.main {
    top:67px !important;
  }
}
  
/*====================================================================================
/Normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
====================================================================================*/

html {
    -webkit-text-size-adjust: 100%;
}
main {
    display: block;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}
a {
    background-color: transparent;
}
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText;
}
fieldset {
  	border: 0;
    padding: 0.35em 0.75em 0.625em;
}
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
details {
    display: block;
}
summary {
    display: list-item;
}
template {
    display: none;
}
[hidden] {
    display: none;
}

/*==========================================
/Default Settings
==========================================*/

/*Sets default values for all html elements*/
:root {
    border: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
	/*All other instances of font-size are based on this default size and use (rem)*/
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-align: left;
  
/*==========================================
/Brand Color Palette
==========================================*/
  	/*Primary color*/
    --primary-color: #21376d;
  	/*Accent color*/
    --accent-color-blue: #48b8e7;
  	/*Neutral colors*/
    --neutral-color-dark-grey: #393939;
  	--neutral-color-medium-grey: #242424;
  	--neutral-color-medium-light-grey: #616161;
    --neutral-color-grey: #f2f2f2; /*#efefef*/
    --neutral-color-off-white: #fafafa;
    --neutral-color-white: #ffffff;
}

/*Sets default values for the body element*/
body {
  
  	/*cursor: url('/_assets/_logos/cursor-ty-warrior.png'), auto;*/	
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  	/*Used for mobile navigation expand transition*/
    transition: 0.5s;
    -webkit-font-smoothing: antialiased;
  	-webkit-text-stroke-width: 0 !important;
}
  
hr {
    box-sizing: content-box;
  	-webkit-box-sizing: content-box;
    height: 2px;
    overflow: visible;
    border: none;
    background-color: var(--neutral-color-grey);
}

/*Changes the :focus outline color for input, select, and textarea elements*/
input:focus, select:focus, textarea:focus {
	outline-color: var(--accent-color-blue);
}

/*Clears the ‘X’ from Internet Explorer */
input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
    display: none;
    height: 0;
    width: 0;
}

/*Clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/*Removes the summary arrow marker*/
details summary::-webkit-details-marker {
    display: none;
}

summary {
    list-style-type: none;
}

/*==========================================
/Accordion
==========================================*/

/*Overrides the default button style*/
button.accordion-button {
    border-bottom: 4px solid var(--neutral-color-grey);
    background-color: var(--neutral-color-off-white);
    box-shadow: none;
    margin: 5px 0;
    padding: 20px;
    text-align: left;
    width: 100%;
}

/*Sets the active and hover state of the accordion*/
.accordion-active,
button.accordion-button:hover {
    background-color: var(--neutral-color-grey);
  	color: var(--primary-color);
    cursor: pointer;
  	text-decoration: underline;
  	text-decoration-color: var(--accent-color-blue);
}

/*Adds a (+) to the right of the accordion*/
.accordion-button:after {
    background-color: var(--primary-color);
    border-radius: 2px;
    content: "\002B";
    color: var(--neutral-color-white);
    float: right;
  	font-family: 'Font Awesome 6 Free';
    font-size: 16px;
    font-weight: 900;
    padding: 6.75px 10px;
}

/*Changes the (+) to a (-) upon clicking the accordion*/
.accordion-active:after {
    content: "\2212";
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    text-align: left;
    transition: max-height 0.5s ease-out;
}

@media screen and (max-width: 768px) {
    button.accordion-button {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        padding: 10px;
    }
  	.accordion-button:after {
    	padding: 2px 6px;
  	}	
}

/*==========================================
/Adjustments
==========================================*/

/*Can be added to an <img> element to center the image*/
.image-align-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.image-align-left {
    display: block;
    margin-left: 0 !important;
    margin-right: auto !important;
}
  
p.indent, p > span.indent {
  	padding-left: 10px;
}
  
/*==========================================
/Blockquote
==========================================*/

/*Sets the default blockquote style*/
blockquote {
    border-left: 4px solid var(--accent-color-blue);
    color: var(--primary-color);
    font-family: SouthernCdSb;
    font-size: 1.75rem;
    line-height: 1.5;
    margin: 20px 0;
    padding: 0 10px;
}

blockquote > p {
  	margin-bottom: 0 !important;
}

@media screen and (max-width: 1199px) {
    blockquote {
        font-size: 1.3125rem;
        margin: 20px 0;
    }
}

@media screen and (max-width: 768px) {
    blockquote {
        font-size: 1.125rem;
        margin: 20px 0;
    }
}

/*==========================================
/Breadcrumbs
==========================================*/

/*Optional. Used within the .page-title-header-container to display breadcrumbs*/
.breadcrumb-container {
    bottom: -17px;
    display: inline-block;
    padding: 17px 20px;
    position: relative;
    width: auto;
}

.breadcrumbs a, .breadcrumbs strong {
    font-family: WorkSansRg !important;
    font-size: 1rem;
    line-height: 1rem;
    padding: 5px;
  	text-decoration: none !important;
}

.breadcrumbs strong {
    color: var(--neutral-color-dark-grey);
    font-family: WorkSansBd !important;
}

@media screen and (max-width: 1199px){
  	.breadcrumb-container {
        bottom: 0;
    }
  
    .breadcrumbs a {
        padding: 10px 5px;
    }
}

@media screen and (max-width: 768px){
    .breadcrumb-container {
        bottom: 0;
        padding: 10px;
    }
    
    .breadcrumbs a, .breadcrumbs strong {
        font-size: .75rem;
    }
}

/*==========================================
/Buttons
==========================================*/

/*Sets the default button style*/
button {
    border: none;
    border-radius: 4px;
  	font-family: BarlowSb;
    font-size: 1.5rem;
    margin: 10px 0;
  	padding: 0;
}

button > a {
    box-sizing: border-box;
  	-webkit-box-sizing: border-box;
    color: inherit;
    display: block;
    margin: 0 auto;
    padding: 12px 10px;
    text-decoration: none;
}
  
a.button {
  	box-sizing: border-box;
  	-webkit-box-sizing: border-box;
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
    display: block;
  	font-family: BarlowSb;
    font-size: 1.5rem;
    margin: 10px 0;
  	max-width: 300px;
  	padding: 12px 10px;
  	text-align: center;
  	text-decoration: none !important;
  	width: 100%
}
  
a.button:hover {
  	text-decoration: none;
}

/*Can be added to a <button> element to make the button larger*/
.button-large {
  	max-width: 400px !important;
  	width:100% !important;
}

/*Can be added to a <button> element to make the button smaller*/
.button-small, a.button-small {
    font-size: 1.5rem;
    margin: 10px 0;
    max-width: 180px;
    width: 60%;
}

.button-small > a, a.button-small{
    padding: 7px 0;
}

.button-blue, .button-blue-2 {
    background-color: var(--accent-color-blue);
    color: var(--primary-color);
}

.button-dark {
    background-color: var(--primary-color);
    color: var(--neutral-color-white);
}

.button-white {
    background-color: var(--neutral-color-white);
    color: var(--primary-color);
}
  
.button-no-style {
	background-color: transparent;
  	border-radius: none;
    box-shadow: none;
  	color: var(--primary-color);
}

.button-blue:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--accent-color-blue);
    color: var(--neutral-color-white);
}

.button-blue-2:hover {
    background-color: var(--neutral-color-white);
    border: 2px solid var(--accent-color-blue);
    color: var(--primary-color);
}

.button-dark:hover {
    background-color: var(--neutral-color-white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.button-white:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--neutral-color-white);
    color: var(--neutral-color-white);
}

.button-blue-2:hover, .button-blue:hover, .button-dark:hover, .button-white:hover {
    box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.1s ease-in;
}

/*Changes the button background color to transparent*/
.parallax-background-image > .wide-container button:hover, .responsive-background-image > .wide-container button[class*="button-"]:hover {
  	background-color: transparent !important;
}
  
.parallax-background-image > .wide-container .accordion-active, .parallax-background-image > .wide-container button.accordion-button:hover {
    background-color: var(--neutral-color-grey) !important;
}

.button-blue-2:hover > a, .button-blue:hover > a, .button-dark:hover > a, .button-white:hover > a, a.button-blue-2:hover, a.button-blue:hover, a.button-dark:hover, a.button-white:hover {
    padding: 10px;
  	text-decoration: none;
}

.button-small:hover > a, a.button-small:hover{
    padding: 5px 0 !important;
}

.button-col > button, .button-col > a.button {
    display: block;
    margin: 20px auto;
}

/*Sets the default style for a button row with three buttons*/
.button-row {
    text-align: center;
}

.button-row > button, .button-row > a.button {
  	display: inline-block;
    margin: 0 2%;
  	width: 28.33%
}

div.row-container.button-row > div > button, div.row-container.button-row > div > a.button {
  	margin-left: auto;
    margin-right: auto;
  	max-width: 320px;
    width: 100%;
}

.button-row-uncentered > div > button, .button-row-uncentered > div > a.button {
  	margin-left: 0;
}

@media screen and (max-width: 1024px) {
  
    .button-col > button, .button-col > a.button {
        display: block;
        margin: 10px auto;
        max-width: 300px;
        width: 75%;
    }
  	#mobile-give-button {
    	margin-left: auto;
    	margin-right: auto;
      	max-width: 300px;
        width: 75%;
  	}
}

/*Changes the default button style on mobile devices*/
@media screen and (max-width: 768px) {
    button, .button-large, a.button {
        margin-left: auto;
        margin-right: auto;
    }
  
  	.button-row > div > button, .button-row > div > a.button {
  		margin: 5px auto;
    }
  
  	.button-row-uncentered > div > button, .button-row-uncentered > div > a.button  {
  		margin: 5px auto;
	}
  
    .button-small {
        font-size: 1rem;
    }
  
    .button-row > button, .button-row > a.button {
        display: block;
        margin: 10px auto;
        width: 75%;
    }
}

/*==========================================
/Columns
==========================================*/

/*Clears floated elements that are after the columns*/
.row-container::after {
    clear: both;
    content: "";
    display: block;
}

/*Can be added with .row-container to vertically center content*/
.row-container.row-vertical-center {
    display: flex;
    align-items: center;
}
  
.flex-row-container {
  	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
    padding: 0;
}

/*Sets the default style for all column sizes*/
[class*="col-"] {
    height: auto;
    float: left;
    overflow: hidden;
}
 
  	/*Five column layout*/
    .col-one-fifth {
        width: 18.4%;
        margin-left: auto;
        margin-right: auto;
    }
  
    .col-one-fifth:not(:last-child) {
        margin-right: 2%;
    }
  
  	/*Four column layout*/
    .col-one-fourth {
        width: 23.5%;
        margin-left: auto;
        margin-right: auto;
    }
  
    .col-one-fourth:not(:last-child) {
        margin-right: 2%;
    }
  
  	/*Three column layout*/
  
    .col-one-third {
        width: 32%;
    }
  
    .col-one-third:not(:nth-child(3n)) {
      	margin-left: 0;
        margin-right: 2%;
    }
  
  	.col-two-thirds {
        width: 64%;
        margin-left: 0;
        margin-right: 4%;
    }
  
  	/*Removes the margin of the adjacent .col-one-third element*/
    .col-two-thirds + .col-one-third {
        width: 32%;
        margin-left: auto;
        margin-right: 0;
    }
  	
  	 /*Removes the margin of the adjacent .col-two-thirds element*/
    .col-one-third + .col-two-thirds {
        margin-left: 2%;
        margin-right: 0
    }
  	
  	/*Two column layout*/
    .col-one-half {
        width: 48%;
    }
  
    .col-one-half:not(:last-child) {
        margin-right: 4%;
    }
  
@media screen and (max-width: 1024px) {
    .row-container.mobile-collapse > .col-one-fourth {
      	width: 48%;
  	}
}

@media screen and (max-width: 768px) {
    .row-container.row-vertical-center {
        display: block;
    }
  
    [class*="col-"] {
        width: 100%;
    }
  
  	.row-container.mobile-collapse > .col-one-fourth {
      	width: 48%;
  	}
  
    .col-one-third + .col-two-thirds, .col-two-thirds + .col-one-third {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}
  
/*Collapses multiple column layout to one column on smaller devices*/
@media screen and (max-width: 425px) {
    .row-container.mobile-collapse > .col-one-fourth {
      	width: 100%;
  	}
}

/*==========================================
/Containers
==========================================*/

/*Dark blue background for use with .section-container*/
.dark-background {
    background-color: var(--primary-color);
    color: var(--neutral-color-white) !important;
}

/*Blue gradient background for use with .section-container*/
.gradient-background {
    background: linear-gradient(125deg, #21376d 31%, #004d90 93%);
    color: var(--neutral-color-white) !important;
}

/*Changes the h2 and h3 color to white*/ 
.dark-background h2, .dark-background h3, .gradient-background h2, .gradient-background h3 {
    color: var(--neutral-color-white) !important;
}

/*Light background for use with .section-container*/
.light-background {
    background-color: var(--neutral-color-white);
    color: var(--neutral-color-dark-grey);
}

/*Off-white background for use with .section-container*/
.light-background-off-white {
    background-color: var(--neutral-color-off-white);
    color: var(--neutral-color-dark-grey);
}

/*Changes the h2 and h3 color to the primary blue*/ 
.light-background h2, .light-background h3, .light-background-off-white h2, .light-background-off-white h3 {
    color: var(--primary-color);
}

/*Sets the default style for a large section of content*/
.section-container {
  	color: var(--neutral-color-dark-grey);
    margin: 0;
    padding: 80px 60px;
}

.section-container.light-background-off-white .accordion-button {
  	background-color: var(--neutral-color-white);
}
  
.section-container.light-background-off-white .accordion-button:hover {
  	background-color: var(--neutral-color-grey);
}
  
/*Sets the paragraph width to 75% for .section-container to improve readability*/
@media screen and (min-width: 1200px) {
    .section-container .wide-container > p, .section-container .wide-container > h2, .section-container .wide-container > h3, .section-container .wide-container > blockquote {
        max-width: 75%;
    }
  
    .section-container .wide-container > .accordion-content, .section-container .wide-container > button.accordion-button {
        width: 75% !important;
    }
  
  	.section-container .wide-container > .accordion-content {
        box-sizing: border-box;
      	-webkit-box-sizing: border-box;
    }
}

@media screen and (max-width: 1199px) {
  	/*Sets the paragraph width to 100% in .section-container on smaller screens*/
    .section-container .wide-container > p {
        max-width: 100%;
    }
    .section-container .wide-container > .accordion-content, .section-container .wide-container > button.accordion-button {
        width: 90% !important;
    }
}

/*Optional, can be used to make a block of content stand out*/
.content-container {
    background-color: var(--primary-color);
    border-left: 10px solid var(--accent-color-blue);
    color: var(--neutral-color-white) !important;
    margin: 20px 0;
    padding: 20px;
}

/*Changes the h2 and h3 color to white*/ 
.content-container > h2, .content-container > h3 {
    color: var(--neutral-color-white);
}

/*Optional, can be used around a block of text*/
.text-container {
    background-color: var(--neutral-color-grey);
    margin: 0;
    padding: 40px;
}

/*Changes the h2 and h3 color to the primary blue*/ 
.text-container > h2, .text-container > h3 {
    color: var(--primary-color);
}

/*Used after .section-container to set the container max-width*/
.wide-container {
    margin: 0 auto;
    max-width: 1400px;
}

.wide-container > h3 {
    margin: 20px 0 10px 0;
}

@media screen and (max-width: 768px) {
    .section-container, .text-container {
        padding: 20px;
    }
  
  	.content-container, .text-container {
        margin: 10px 0;
    }
  
    .section-container .wide-container > button.accordion-button {
        width: 100% !important;
    }
}

/*==========================================
/Footer
==========================================*/

/*Sets the default style for the footer*/
footer {
    background-color: var(--neutral-color-medium-grey);
    margin: 0;
    padding: 0;
    width: 100%;
}

/*Sets the default style for the top section of the footer*/
.footer-container {
    height: auto;
    overflow: hidden;
    padding: 60px 60px 40px 60px;
}

.button-back-to-top-container {
    position: relative;
}

/*Sets the default style for the Back to Top button*/
.button-back-to-top {
    background-color: var(--neutral-color-dark-grey);
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    color: var(--neutral-color-off-white);
    display: block;
    float: right;
    margin: 0;
    margin-top: -60px;
    padding: 5px 0;
    position: relative;
    right: -50px;
    width: 160px !important;
}

.button-back-to-top:hover {
    background-color: #2e2e2e;
    color: var(--neutral-color-off-white);
    cursor: pointer;
}

/*Sets the footer text to white*/
.footer-container p.h3,
.footer-container p {
    color: var(--neutral-color-white);
    text-align: center;
}
  
.footer-container p.h3 {
    font-size: 1.75rem;
}

/*Sets the default style for the footer logo*/
.footer-logo {
    display: block;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 180px;
    width: 50%;
}

/*Sets the default style for the footer social icons*/
.footer-container p > a > span {
    color: var(--neutral-color-white);
    font-size: 2.25rem;
    padding: 0 5px;
    position: relative;
    top: 4px;
}

.footer-container p > a > span:hover {
    color: var(--neutral-color-grey);
    cursor: pointer;
}

.footer-link-container {
    background-color: var(--neutral-color-dark-grey);
}

.footer-links > ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.footer-links > ul > li {
    display: inline-block;
}

.footer-links > ul > li > a {
    color: var(--neutral-color-off-white);
    display: block;
    font-family: WorkSansRg;
    font-size: .875rem;
    line-height: 1.5;
    margin: 0;
    padding: 15px 20px;
    text-decoration: none;
}

.footer-links > ul > li > p {
    color: var(--neutral-color-off-white);
    display: block;
    font-family: WorkSansRg;
    font-size: .875rem;
  	line-height: 1.5;
    margin: 0;
    padding: 15px 20px;
    text-decoration: none;
}

.footer-links > ul > li > a:hover {
    background-color: #2e2e2e;
    cursor: pointer;
}

.notice-of-nondescrimination {
    padding: 20px 60px;
}

.notice-of-nondescrimination p {
    color: var(--neutral-color-off-white);
  	font-family: WorkSansRg;
    font-size: .75rem;
}

@media screen and (max-width: 1199px) {
  	.footer-container .col-one-third {
      	width: 30.66%;
  	}
  
    .footer-container p {
        font-size: 1em;
    }
  
    ul.footer-links > li > a, ul.footer-links > li > p {
        font-size: 0.75rem;
    }
  
  	.notice-of-nondescrimination p {
     	font-size: .75rem; 
  	}
}
  
@media screen and (max-width: 1024px) {
  	.footer-container p.h3 {
    	font-size: 1.5rem;
	}
}

@media screen and (max-width: 960px) {
  	.footer-container .col-one-third {
      	width: 100%;
  	}
  
    .button-back-to-top {
        font-size: 1.1875rem;
    }
  
    ul.footer-links > li {
        display: inline-flex;
    }
  
    ul.footer-links > li > a, ul.footer-links > li > p {
        font-size: 0.75rem;
        padding: 10px;
    }
  
    .notice-of-nondescrimination {
        padding: 10px;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        padding: 40px 10px 20px 10px;
    }
  
    .footer-logo {
        max-width: 140px;
    }
  
  	.footer-container h3 {
    	font-size: 1.1875rem;
	}
  
    .button-back-to-top {
        margin-top: -40px;
        right: 0;
        width: 120px !important;
    }
}

/*==========================================
/Images
==========================================*/

/*Removes the margin that display:inline adds to the <img> element*/
img {
    display: block;
}

/*Sets the default style for a responsive header images*/
img.header-image {
    height: auto;
    margin: 0;
    width: 100%;
}

/*Sets the default style for a respsonive images*/
img.responsive-image {
    height: auto;
  	margin: 10px auto;
  	max-width: fit-content;
    width: 100%;
}

/*Sets the default style for badges/awards*/
img.badge {
    height: auto;
    max-width: 140px;
    width: 95%;
}

/*Used with .section-container to set the default style for a responsive background images*/
.responsive-background-image {
    background-attachment: scroll;
    background-image: url("");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--neutral-color-white);
    height: 100%;
}

/*Used with .section-container to set the default style for parallax background images*/
.parallax-background-image {
    background-attachment: fixed;
    background-image: url("");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

/*Sets the default style for the page title header container that overlays the header image or video*/
.page-title-header-container {
    margin: 10px auto;
    max-width: 1400px;
    position: relative;
	z-index: -9;
}

/*Sets the default style for the page title header*/
.page-title-header {
    background-color: var(--primary-color);
    border-left: 10px solid var(--accent-color-blue);
    display: inline-block;
    height: auto;
    left: 0;
    margin-right: -4px;
	width: 84%;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.page-title-header > h1 {
    color: var(--neutral-color-white);
    text-align: left;
}

@media screen and (max-width: 1199px) {
    .page-title-header {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    img.badge {
        max-width: 100px;
        width: 50%;
    }
  
    .page-title-header-container {
        margin-bottom: -40px;
        top: -40px;
    }
  
    .page-title-header {
        border-left: 4px solid var(--accent-color-blue);
        max-width: 75%;
        padding: 10px;
    }
}

@media screen and (max-width: 425px) {
  	img.responsive-image {
    	height: auto;
      	margin: 10px auto;
    	max-width: 300px;
    	width: 100%;
	}
  
    .page-title-header-container {
        margin-bottom: -4px;
        top: -4px;
    }
  
    .page-title-header {
        margin-right: 0;
        max-width: 100%;
        min-width: 0;
    }
}

/*==========================================
/Image Banners
==========================================*/

/*Sets the default style for the image banners*/
.banner-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
    padding: 0;
}

.banner {
    background-color: var(--netral-color-off-white);
    color: var(--netral-color-white);
    display: inline-block;
    height: auto;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.banner > img {
    height: auto;
    width: 100%;
    z-index: -1;
}

.banner-info-container {
    background-color: var(--primary-color);
    bottom: 0;
    height: 66px;
    left: 0;
    overflow: hidden;
    padding: 20px;
    position: absolute;
    right: 0;
    top: auto;
    z-index: 1;
}

.banner:hover .banner-info-container {
    background-color: rgba(33, 55, 109, 0.9);
    cursor: pointer;
    height: 100%;
    top: 0;
}

.banner:hover img {
    filter: blur(8px);
}

.banner-info-container > h3 {
    color: var(--neutral-color-white);
  	font-size: 2.25rem;
}
  
.banner-info-container > h3 > span {
  	float: right;
  	font-size: 1.5rem;
  	position: relative;
    top: 14px;
}

.banner-info-container > p {
    color: var(--neutral-color-white);
    border-top: 2px solid var(--accent-color-blue);
    margin: 34px 0 20px 0;
    padding: 10px 0;
}

a.banner-no-image {
	border-radius: 4px;  
}

.list-2 > .banner {
    width: 50%;
}

.list-3 > .banner {
    width: 33.33%;
}
  
.list-3-margin > .banner, .list-3-margin > .banner-no-image {
  	margin-left:.50%;
  	margin-right:.50%;
  	margin-bottom: 10px;
  	width: 32.33%;
}

.list-4 > .banner {
    width: 25%;
}

.list-4-margin > .banner, .list-4-margin > .banner-no-image {
  	margin-bottom: 10px;
    width: 24.25%;
}

.list-4-margin > .banner:not(:last-child) {
    margin-right: 1%;
}

.list-4-margin > .banner-no-image {
	margin-left:.375%;
  	margin-right:.375%;
}

.list-5 > .banner {
    width: 20%;
}

/*Optional, .small can be added with .banner when using .list-3 or more to decrease font sizes*/
.small h3 {
    font-size: 1.3125rem;
    line-height: 21px !important;
}
  
.small .banner-info-container > h3 > span {
  	float: right;
  	font-size: 1rem;
  	position: relative;
    top: 4px;
}

.small p {
    font-size: 0.75rem;
    margin: 20px 0 20px 0;
}

.small .banner-info-container {
    padding: 10px;
    height: 41px;
}

@media screen and (max-width: 1199px) {
    .banner-info-container {
        height: 52px;
    }
  
    .banner-info-container > h3 {
      	font-size: 1.5rem;
        line-height: 32px;
    }
  
  	.banner-info-container > h3 > span {
  		float: right;
  		font-size: 1.5rem;
  		position: relative;
    	top: 6px;
	}
}
  
@media screen and (max-width: 1024px) {
	.list-4 > .banner {
    	width: 50%;
	}  
}

@media screen and (max-width: 768px) {
    .banner, .banner-no-image {
        width: 100% !important;
        margin: 0 !important;
    }
  
    .banner-container {
        flex-direction: column;
        margin: 0 auto;
      	max-width: 546px;
        width: 100%;
    }
  
    .banner-info-container {
        height: 41px;
    }
  
    .banner-info-container > h3 {
        line-height: 21px;
    }
  
    .banner-info-container > p {
        color: var(--neutral-color-white);
        font-size: inherit;
    }
  
    .small h3 {
        font-size: 1.3125rem;
        line-height: 21px !important;
    }
  	.list-3-margin > .banner, .list-3-margin > .banner-no-image, .list-4-margin > .banner, .list-4-margin > .banner-no-image {
      	margin-bottom: 10px !important;
  	}
}

@media screen and (max-width: 425px) {
    .banner, .banner-no-image {
        width: 100% !important;
        margin: 0 !important;
    }
  
    .banner-container {
        flex-direction: column;
        margin: 0;
        width: 100%;
    }
  
    .banner-info-container {
        height: 41px;
        padding: 10px;
    }
  
    .banner-info-container > h3 {
      	font-size: 1.3125rem;
        line-height: 21px;
    }
  
  	.banner-info-container > h3 > span {
  		float: right;
  		font-size: 1rem;
  		position: relative;
    	top: 4px;
	}
}

/*==========================================
/Table
==========================================*/

/*Sets the default table style*/
table {
    color: var(--neutral-color-dark-grey);
    border: none;
    height: auto;
    margin: 10px 0;
    text-align: left;
    width: 100%;
}
  
table.three-fourths {
  	width: 75%;
}

table tr th {
    background-color: var(--neutral-color-off-white);
    border-bottom: 2px solid var(--neutral-color-grey);
    padding: 10px;
}

table tr td {
    padding: 10px;
}

table, td, th {
    border-collapse: collapse;
}

tr:nth-child(even) {
    background-color: var(--neutral-color-white);
}

tr:nth-child(odd) {
    background-color: var(--neutral-color-off-white);
}
  
@media screen and (max-width: 1199px) {
  	table.three-fourths {
      	width: 100%;
  	}
}

/*Outline table                           */
/*========================================*/

/*Add the .outline class to tables used on dark backgrounds*/
table.outline {
    background-color: transparent !important;
    height: auto;
    margin: 10px 0;
    text-align: left;
    width: 100%;
}
table.outline tr th {
    background-color: transparent !important;
    border-bottom: 2px solid var(--neutral-color-white);
    color: var(--neutral-color-white);
}

table.outline tr td {
    color: var(--neutral-color-white);
    border-bottom: 2px solid var(--neutral-color-white);
}

/*Removes the alternating row background color*/
table.outline tr:nth-child(even),
table.outline tr:nth-child(odd) {
    background-color: transparent !important;
}

/*==========================================
/Tabs
==========================================*/

.tabs {
    background-color: var(--neutral-color-off-white);
    border-radius: 4px;
    margin: 10px 0 0 0;
    overflow: hidden;
}

.tabs > button {
    background-color: var(--neutral-color-off-white);
    box-shadow: none;
  	color: var(--neutral-color-dark-grey);
    display: flex;
    float: left;
    font-size: 1.75rem;
    margin: 0;
    max-width: 300px;
    padding: 20px;
    width: 25%;
}

.tab-content {
  	background-color: var(--neutral-color-grey);
    display: none;
    padding: 40px;
}
  
.section-container.dark-background .tab-content, .section-container.gradient-background .tab-content {
  	background-color: transparent !important;
}

.tab-active, .tabs > button:hover {
  	background-color: #efefef !important;
  	color: var(--primary-color) !important;
  	cursor: pointer;
    text-decoration: underline;
    text-decoration-color: var(--accent-color-blue);
}

@media screen and (max-width: 768px) {
    .tabs > button {
        clear: both;
      	max-width: unset;
        padding: 10px;
        width: 100%;
    }
}

/*==========================================
/Media and Video
==========================================*/

.responsive-media, .responsive-video {
  	height: 0;
  	overflow: hidden;
  	position: relative;
    padding-bottom: 56.25%;
  
}

.responsive-media > embed, .responsive-video > iframe {
    border-radius: 4px;
  	/*Display: block; is used to remove the default 4px right margin*/
    height: 100%;
  	left: 0;
  	margin: 10px 0;
  	position: absolute;
  	top: 0;
    width: 100%;
}

video {
  	/*Display: block; is used to remove the default 4px right margin*/
    border: 0;
    display: block;
    height: 100%;
}

/*Added to the <video> element to make the header video responsive*/
video.background-video {
    height: auto;
    position: relative;
  	width: 100%;
    z-index: -999;
}

/*==========================================
/Background Video Container
==========================================*/

/*Add this container around .background-video to display a responsive image or text overlay*/
.background-video-container {
    position: relative;
    text-align: center;
}

/*For use with .backgound-video only. Sets the default style for the play-pause button*/
.button-play-pause {
    background-color: rgba(36, 36, 36, 0.5);
    border: none;
    bottom: 0;
    box-shadow: none;
    color: var(--neutral-color-white);
    margin: 10px;
    padding: 5px 10px;
    position: absolute;
    right: 0;
    width: auto;
    z-index: 2;
}

/*Sets the default hover style for the play-pause button*/
.button-play-pause:hover {
    background-color: rgba(36, 36, 36, 0.75);
    cursor: pointer;
}

/*Adds a pause icon to the play-pause button*/
.button-play-pause::after {
    content: "\f28b";
    float: right;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    line-height: 32px;
    padding-left: 5px;
}

/*Used with a JS script that changes the pause icon to a play icon upon clicking the button*/
.button-play-pause-active::after {
    content: "\f144";
}

@media screen and (max-width: 768px) {
  
    .button-play-pause {
        margin: 5px 0;
    }
  
    .button-play-pause::after {
        font-size: 0.75em;
        line-height: 24px;
        position: relative;
        top: 2px;
    }
}

/*==========================================
/Date & Event Cards
==========================================*/

.event-card h3 {
    color: var(--primary-color) !important;
}

.date-card {
    border: 1px solid var(--neutral-color-grey);
    max-height: 100px;
    max-width: 100px;
    text-align: center;
    width: 95%;
}

.date-card > .month {
    background-color: var(--primary-color);
    color: var(--neutral-color-white);
}

.date-card > .month > p {
    line-height: 30px;
    margin: 0 !important;
}

.date-card > .day {
    background-color: var(--neutral-color-white);
    height: 70px;
}

.date-card > .day > p {
    color: var(--primary-color);
    font-size: 2.25rem;
    line-height: 70px;
    margin: 0 !important;
}

.event-date {
    color: var(--neutral-color-dark-grey);
  	font-family: WorkSansLt;
}

@media screen and (max-width: 768px) {
    .row-container.event-card:nth-last-of-type(-n + 2) {
        display: none;
    }
  
    .date-card {
        max-height: 60px;
        max-width: 60px;
    }
  
    .date-card > .month > p {
        font-size: inherit;
        line-height: 20px;
    }
  
    .date-card > .day > p {
        font-size: inherit;
        line-height: 40px;
    }
}

.news-card h3 {
    color: var(--primary-color) !important;
}

.news-card > div > p {
    display: -webkit-box;
    height: auto;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
  
p#pagination {
	background-color: var(--neutral-color-off-white);
}
  
p#pagination > a {
  	display: inline-block;
  	padding: 10px;
}

p#pagination > a#current {
  	background-color: var(--primary-color);
  	color: var(--neutral-color-white);
}

@media screen and (max-width: 768px) {
    .news-card > div > img {
        max-width: 50%;
    }
}

/*====================================================================================
/Southern Wesleyan University Fonts
====================================================================================*/

/*Semibold*/
@font-face {
    font-family: BarlowSb;
  	font-weight: 600;
    src: url(/Institutions/Southern-Wesleyan-University/styles/fonts/barlow-semibold.woff2) format('woff2'),
         url(/Institutions/Southern-Wesleyan-University/styles/fonts/barlow-semibold.woff) format('woff'),
  		 url(/Institutions/Southern-Wesleyan-University/styles/fonts/barlow-semibold.ttf) format('truetype');
    font-display: block;
}

/*==========================================
/Southern font designed by: Josh Mayfield
/Copyright 2022-2025
==========================================*/

/*Condensed bold*/
@font-face {
    font-family: SouthernCdBd;
  	font-weight: 700;
    src: url(/Institutions/Southern-Wesleyan-University/styles/fonts/Southern-CdBd.woff2) format('woff2');
    font-display: block;
}

/*Condensed semibold*/
@font-face {
    font-family: SouthernCdSb;
    font-weight: 600;
    src: url(/Institutions/Southern-Wesleyan-University/styles/fonts/Southern-CdSB.woff2) format('woff2');
    font-display: block;
}

/*========================================*/

/*Bold*/
@font-face {
    font-family: WorkSansBd;
  	font-weight: 700;
    src: url(/Institutions/Southern-Wesleyan-University/styles/fonts/work-sans-bold.woff2) format('woff2'),
      	 url(/Institutions/Southern-Wesleyan-University/styles/fonts/work-sans-bold.woff) format('woff'),
      	 url(/Institutions/Southern-Wesleyan-University/styles/fonts/work-sans-bold.ttf) format('truetype');
    font-display: block;
}

/*Light*/
@font-face {
    font-family: WorkSansLt;
  	font-weight: 300;
    src: url(/Institutions/Southern-Wesleyan-University/styles/fonts/work-sans-light.woff2) format('woff2'),
         url(/Institutions/Southern-Wesleyan-University/styles/fonts/work-sans-light.woff) format('woff'),
      	 url(/Institutions/Southern-Wesleyan-University/styles/fonts/work-sans-light.ttf) format('truetype');
    font-display: block;
}

/*Regular*/
@font-face {
    font-family: WorkSansRg;
  	font-weight: 400;
    src: url(/Institutions/Southern-Wesleyan-University/styles/fonts/work-sans-regular.woff2) format('woff2'),
      	 url(/Institutions/Southern-Wesleyan-University/styles/fonts/work-sans-regular.woff) format('woff'),
      	 url(/Institutions/Southern-Wesleyan-University/styles/fonts/work-sans-regular.ttf) format('truetype');
    font-display: block;
}

/*========================================*/

.section-container li,
p, td {/*Trying 19px font size, was 21px (1.3125rem)*/
    font-family: WorkSansRg;
    font-size: 1.1875rem;
    line-height: 1.5;
    margin: 20px 0;
}

li b, li strong, p b, p strong {
    font-size: inherit;
    font-family: WorkSansBd;
    line-height: inherit;
}
  
ul, ol {
    padding-inline-start: 0;
}

.section-container > .wide-container > ul, .section-container > .wide-container > ol {
  	margin: 0;
  	padding-inline-start: 0;
  	width: 75%;
}

.section-container .accordion-content ul, .section-container .accordion-content ol {
  	padding-inline-start: 0;
  	width: 100%;
}

.section-container ul ul, .section-container ol ol {
  	padding-inline-start: 0;
  	width: 100%;
}  
  
.section-container li {
    margin-left: 30px;
}

a {
    color: #004d90;
 	text-decoration: none;
}
  
.main-content a:not(.button) {
  	font-family: WorkSansBd;
    text-decoration: underline;
}

a:hover, a:focus {
  	cursor: pointer;
    text-decoration: underline;
}
  
.gradient-background p > a, .content-container p > a {
  	color: var(--neutral-color-white); 
 	text-decoration: underline;
}

/*==========================================
/Headers
==========================================*/

h1, h2, h3, .h3 {
  	margin: 10px 0;
    text-align: left;
}

h2, h3, .h3 {
    color: var(--primary-color);
}

/*Sets the default style for <h1> elements*/
h1 {
    font-family: BarlowSb;
    font-size: 4.5rem;
    line-height: 4.5rem;
    margin: 10px 0;
}

/*Sets the default style for <caption> and <h2> elements*/
caption, h2 {
    font-family: SouthernCdBd;
    font-size: 3rem;
  	font-weight: 700;
}

h2 > a {
    color: inherit;
    font-family: WorkSansRg;
    font-size: 1.1875rem;
    vertical-align: middle;
}

h2 > a::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    padding-left: 10px;
    position: relative;
    top: -2px;
}

h2 > a:hover {
    cursor: pointer;
}

h3 > a {
    color: inherit;
  	font-family: inherit !important;
  	text-decoration: none !important;
}

h3, .h3 {
    font-family: BarlowSb;
    font-size: 2.25rem;
}
  
h4, .h4 {
  	font-family: BarlowSb;
    font-size: 1.75rem;
}
  
th {
  	font-family: BarlowSb;
    font-size: 1.5rem;
}

@media screen and (max-width: 1199px) {
    .section-container li,
    p, td {
        font-size: 1rem;
    }
  
  	.section-container ul, .section-container ol {
  		width: 100%;
	}
  
    h1 {
        font-size: 3.5rem;
      	line-height: 3.5rem;
    }
  
    caption, h2 {
        font-size: 2.625rem;
    }
  
    h3, .h3 {
        font-size: 2rem;
    }
  
  	h4, .h4 {
        font-size: 1.5rem;
    }
  
  	.tabs > button, button.accordion-button {
      	font-size: 1.5rem;
    }
  
}

@media screen and (max-width: 768px) {
    .section-container li,
    p, td {
        font-size: 1rem;
        line-height: 1.5;
    }
  
    h1 {
        font-size: 3rem;
    }
  
    caption, h2 {
        font-size: 2rem;
    }
  
    h2 > a {
        font-size: 0.875rem;
        line-height: 1.5;
    }
  
    h3, .h3 {
        font-size: 1.75em;
    }
  
  	h4, .h4 {
        font-size: 1.25rem;
    }
  
  	th {
  		font-family: BarlowSb;
    	font-size: 1.1875rem;
	}
  
  	.tabs > button, button.accordion-button {
      	font-size: 1.1875rem;
    }
}

@media screen and (max-width: 425px) {
    .section-container li {
        margin: 0 0 0 20px;
    }

    caption, h2 {
        font-size: 2rem;
    }
  
    h3, .h3 {
        font-size: 1.75rem;
    }
  
  	h4, .h4 {
        font-size: 1.25rem;
    }
  
  	.tabs > button, button.accordion-button {
      	font-size: 1.1875rem;
    }
}

@media screen and (max-width: 768px) {
    img.logo-step-into {
        max-width: 300px !important;
    }
}

/*====================================================================================
Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com
License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
Copyright 2022 Fonticons, Inc.
==================================================================================== */
.fa {
  	font-family: var(--fa-style-family, "Font Awesome 6 Free");
  	font-weight: var(--fa-style, 900); 
}

.fa, .fa-classic, .fa-sharp, .fas, .fa-solid, .far, .fa-regular, .fab, .fa-brands {
  	-moz-osx-font-smoothing: grayscale;
  	-webkit-font-smoothing: antialiased;
  	display: var(--fa-display, inline-block);
  	font-style: normal;
  	font-variant: normal;
  	line-height: 1;
  	text-rendering: auto; }

.fas, .fa-classic, .fa-solid, .far, .fa-regular {
  	font-family: 'Font Awesome 6 Free'; 
}

.fa-address-book::before {
  	content: "\f2b9"; 
}

.fa-arrow-right::before {
   	content: "\f061";
}
  
.fa-arrow-right-to-bracket::before {
    content: "\f090";
}
  
.fa-award::before {
    content: "\f559";
}

.fa-bars::before {
 	content: "\f0c9"; 
}

.fa-book::before {
  	content: "\f02d"; 
}

.fa-briefcase::before {
  	content: "\f0b1"; 
}

.fa-calculator::before {
  	content: "\f1ec";
}

.fa-calendar::before {
  	content: "\f133"; 
}

.fa-calendar-days::before {
  	content: "\f073"; 
}

.fa-calendar-week::before {
  	content: "\f784";
}

.fa-chevron-left::before {
  	content: "\f053"; 
}

.fa-chevron-right::before {
  	content: "\f054"; 
}
  
.fa-circle-dollar-to-slot::before {
  content: "\f4b9"; 
}

.fa-dollar-sign::before {
  	content: "\24";
}
  
.fa-file-lines::before {
  	content: "\f15c";
}
  
.fa-handshake-angle::before {
  content: "\f4c4"; 
}

.fa-laptop::before {
  	content: "\f109"; 
}	

.fa-list-check::before {
    content: "\f0ae";
}

.fa-map-location-dot::before {
  	content: "\f5a0"; 
}
 
.fa-newspaper::before {
  content: "\f1ea"; 
 }
  
.fa-people-group::before {
  content: "\e533"; 
 }

.fa-search::before {
  	content: "\f002"; 
}

.fa-times::before {
  	content: "\f00d"; 
}

.fa-facebook-square:before, .fa-square-facebook:before {
  	content: "\f082"; 
}

.fa-instagram-square:before, .fa-square-instagram:before  {
  	content: "\e055"; 
}

.fa-linkedin:before {
  	content: "\f08c"; 
}

.fa-twitter-square:before, .fa-square-twitter:before {
  	content: "\e61a"; 
}

.fa-youtube-square:before, .fa-square-youtube:before {
  	content: "\f431"; 
}
  
.fa-utensils::before {
  content: "\f2e7"; }

/*========================================*/

.fab, .fa-brands {
  	font-family: 'Font Awesome 6 Brands';
  	font-weight: 400; 
}

:root, :host {
  	--fa-style-family-brands: 'Font Awesome 6 Brands';
  	--fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; 
}

@font-face {
  	font-family: 'Font Awesome 6 Brands';
  	font-style: normal;
  	font-weight: 400;
  	font-display: block;
  	src: url("/Institutions/Southern-Wesleyan-University/styles/fonts/fa-brands-400.woff2") format("woff2"), 
      	 url("/Institutions/Southern-Wesleyan-University/styles/fonts/fa-brands-400.ttf") format("truetype"); 
}

/*========================================*/

.far, .fa-regular {
  	font-weight: 400; 
}

:root, :host {
  	--fa-style-family-classic: 'Font Awesome 6 Free';
  	--fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; }

@font-face {
  	font-family: 'Font Awesome 6 Free';
  	font-style: normal;
  	font-weight: 400;
  	font-display: block;
  	src: url("/Institutions/Southern-Wesleyan-University/styles/fonts/fa-regular-400.woff2") format("woff2"),
         url("/Institutions/Southern-Wesleyan-University/styles/fonts/fa-regular-400.ttf") format("truetype"); 
}

/*========================================*/

.fas, .fa-solid {
  	font-weight: 900; 
}

:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; }

@font-face {
  	font-family: 'Font Awesome 6 Free';
  	font-style: normal;
  	font-weight: 900;
  	font-display: block;
  	src: url("/Institutions/Southern-Wesleyan-University/styles/fonts/fa-solid-900.woff2") format("woff2"), 
      	 url("/Institutions/Southern-Wesleyan-University/styles/fonts/fa-solid-900.ttf") format("truetype"); 
}

/*========================================*/

@font-face {
  	font-family: 'FontAwesome';
  	font-display: block;
  	src: url("/Institutions/Southern-Wesleyan-University/styles/fonts/fa-regular-400.woff2") format("woff2"), 
      	 url("/Institutions/Southern-Wesleyan-University/styles/fonts/fa-regular-400.ttf") format("truetype");
  	unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C, F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; 
}

/*====================================================================================
/Scroll Animations
====================================================================================*/
.scroll-reveal {
    position: relative;
    opacity: 0;
}

.scroll-reveal.scroll-active {
    opacity: 1;
}

.scroll-active.fade-in-left {
    animation: fade-in-left 875ms ease-out;
}

.scroll-active.fade-in-right {
    animation: fade-in-right 875ms ease-out;
}

.scroll-active.fade-in-bottom {
    animation: fade-in-bottom 875ms ease-out;
}

@media screen and (min-width: 768px) {
    .scroll-active.typewriter-effect {
        animation: typewriter 3s steps(40, end), blinking-cursor 1.5s step-end 3s infinite;
        border-right: 4px solid #04b4e4;
        margin: 0 auto;
        overflow: hidden;
        padding-right: 0;
        white-space: nowrap;
    }
  
    .typewriter-container {
        display: inline-flex;
        justify-content: left;
    }
}

@media screen and (max-width: 768px) {
 	.scroll-reveal {
    	position: relative;
    	opacity: 1;
	}   
}

@keyframes fade-in-left {
    0% {
        transform: translateX(-80px);
    }
  
    100% {
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    0% {
        transform: translateX(80px);
    }
  
    100% {
        transform: translateX(0);
    }
}

@keyframes fade-in-bottom {
    0% {
        transform: translateY(40px);
    }
  
    100% {
        transform: translateY(0);
    }
}

@keyframes typewriter {
    0% {
        width: 0;
    }
  
    100% {
        width: 100%;
    }
}

@keyframes blinking-cursor {
    from,
    to {
        border-color: transparent;
    }
  
    50% {
        border-color: #04b4e4;
    }
}