@charset "UTF-8";
/* Required files */
/****************************************************************** Site Name: Author: Stylesheet: Variables Here is where we declare all our variables like colors, fonts, base values, and defaults. We want to make sure this file ONLY contains variables that way our files don't get all messy. No one likes a mess. ******************************************************************/
/********************* COLORS Need help w/ choosing your colors? Try this site out: http://0to255.com/ *********************/
/* Here's a great tutorial on how to use color variables properly: http://sachagreif.com/sass-color-variables/ */
/* Measurements */
/** * This site creates whitespace by pushing objects down. Add this * class to objects when you want space between its neighbor. */
/* @include transition(all 0.2s ease-in-out);
 */
/* @include css-gradient(#dfdfdf,#f8f8f8);
 */
/* @include border-radius(3px, 3px, 3px, 3px);
 */
/* @include flex(direction);
 */
/** * Feed in a string to set mobile breakpoint styles. Strings that * relate to breakpoints are defined ./_variables.scss. * * @param String * @param String - default: 'min' */
/* Typical styles for images that cover the entire container w/o repeating */
/** * Calculate the REM value. * * @param String - ex: 12px * @return String - ex: 1rem */
/** * Calculate the font size and line height in REM units. * * @param String - ex: 12px * @param Int - default: 1.2 */
 .mobile-only {
	 visibility: visible;
	 position: relative;
}
 @media screen and (min-width: 1030px) {
	 .mobile-only {
		 visibility: hidden !important;
		 position: absolute !important;
	}
}
 @media screen and (max-width: 1029px) {
	 .desktop-only {
		 visibility: hidden !important;
		 position: absolute !important;
	}
}
 .alignleft {
	 display: inline;
	 float: left;
	 margin-right: 1.5em;
}
 .alignright {
	 display: inline;
	 float: right;
	 margin-left: 1.5em;
}
 .aligncenter {
	 clear: both;
	 display: block;
	 margin-left: auto;
	 margin-right: auto;
}
 .nostyle--link {
	 color: inherit;
	 text-decoration: none;
}
 .fullwidth {
	 width: calc(100% + (1.25rem * 2)) !important;
	 transform: translateX(calc(1.25rem * -1)) !important;
}
 @media only screen and (min-width: 1030px) {
	 .fullwidth {
		 width: calc(100% + (2.5rem * 2)) !important;
		 transform: translateX(calc(2.5rem * -1)) !important;
	}
}
/** * This site creates whitespace by pushing objects down. Add this * class to objects when you want space between its neighbor. */
 .push {
	 margin-bottom: 3.5rem !important;
}
 @media only screen and (min-width: 1030px) {
	 .push {
		 margin-bottom: 7.5rem !important;
	}
}
/** * Add an arrow after all links. */
 .red-arrows a {
	 color: #000 !important;
	 text-decoration: none !important;
}
 .red-arrows a:hover {
	 text-decoration: underline !important;
}
 .red-arrows a::after {
	 content: "";
	 padding-left: 8px;
	 position: relative;
	 font-family: "Font Awesome 5 Free";
	 font-weight: 400;
	 font-size: inherit;
	 color: #CD1041 !important;
	 display: inline-block;
	 text-decoration: none;
}
 .shadow::after {
	 content: "";
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background: rgba(0, 0, 0, 0.15);
	 pointer-events: none;
}
/* Global stuff */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document ========================================================================== */
/** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */
 html {
	 scroll-behavior: smooth; /* SCSU - This ensures a consistent scrolling effect */
	 line-height: 1.15;
	/* 1 */
	 -webkit-text-size-adjust: 100%;
	/* 2 */
}
/* Sections ========================================================================== */
/** * Remove the margin in all browsers. */
 body {
	 margin: 0;
}
/** * Render the `main` element consistently in IE. */
 main {
	 display: block;
}
/** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */
 h1 {
	 font-size: 2em;
	 margin: 0.67em 0;
}
/* Grouping content ========================================================================== */
/** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */
 hr {
	 box-sizing: content-box;
	/* 1 */
	 height: 0;
	/* 1 */
	 overflow: visible;
	/* 2 */
}
/** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */
 pre {
	 font-family: monospace, monospace;
	/* 1 */
	 font-size: 1em;
	/* 2 */
}
/* Text-level semantics ========================================================================== */
/** * Remove the gray background on active links in IE 10. */
 a {
	 background-color: transparent;
}
/** * 1. Remove the bottom border in Chrome 57- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
 abbr[title] {
	 border-bottom: none;
	/* 1 */
	 text-decoration: underline;
	/* 2 */
	 text-decoration: underline dotted;
	/* 2 */
}
/** * Add the correct font weight in Chrome, Edge, and Safari. */
 b, strong {
	 font-weight: bolder;
}
/** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */
 code, kbd, samp {
	 font-family: monospace, monospace;
	/* 1 */
	 font-size: 1em;
	/* 2 */
}
/** * Add the correct font size in all browsers. */
 small {
	 font-size: 80%;
}
/** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */
 sub, sup {
	 font-size: 75%;
	 line-height: 0;
	 position: relative;
	 vertical-align: baseline;
}
 sub {
	 bottom: -0.25em;
}
 sup {
	 top: -0.5em;
}
/* Embedded content ========================================================================== */
/** * Remove the border on images inside links in IE 10. */
 img {
	 border-style: none;
}
/* Forms ========================================================================== */
/** * 1. Change the font styles in all browsers. * 2. Remove the margin in Firefox and Safari. */
 button, input, optgroup, select, textarea {
	 font-family: inherit;
	/* 1 */
	 font-size: 100%;
	/* 1 */
	 line-height: 1.15;
	/* 1 */
	 margin: 0;
	/* 2 */
}
/** * Show the overflow in IE. * 1. Show the overflow in Edge. */
 button, input {
	/* 1 */
	 overflow: visible;
}
/** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */
 button, select {
	/* 1 */
	 text-transform: none;
}
/** * Correct the inability to style clickable types in iOS and Safari. */
 button, [type=button], [type=reset], [type=submit] {
	 -webkit-appearance: button;
}
/** * Remove the inner border and padding in Firefox. */
 button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
	 border-style: none;
	 padding: 0;
}
/** * Restore the focus styles unset by the previous rule. */
 button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
	 outline: 1px dotted ButtonText;
}
/** * Correct the padding in Firefox. */
 fieldset {
	 padding: 0.35em 0.75em 0.625em;
}
/** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */
 legend {
	 box-sizing: border-box;
	/* 1 */
	 color: inherit;
	/* 2 */
	 display: table;
	/* 1 */
	 max-width: 100%;
	/* 1 */
	 padding: 0;
	/* 3 */
	 white-space: normal;
	/* 1 */
}
/** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */
 progress {
	 vertical-align: baseline;
}
/** * Remove the default vertical scrollbar in IE 10+. */
 textarea {
	 overflow: auto;
}
/** * 1. Add the correct box sizing in IE 10. * 2. Remove the padding in IE 10. */
 [type=checkbox], [type=radio] {
	 box-sizing: border-box;
	/* 1 */
	 padding: 0;
	/* 2 */
}
/** * Correct the cursor style of increment and decrement buttons in Chrome. */
 [type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
	 height: auto;
}
/** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */
 [type=search] {
	 -webkit-appearance: textfield;
	/* 1 */
	 outline-offset: -2px;
	/* 2 */
}
/** * Remove the inner padding in Chrome and Safari on macOS. */
 [type=search]::-webkit-search-decoration {
	 -webkit-appearance: none;
}
/** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */
 ::-webkit-file-upload-button {
	 -webkit-appearance: button;
	/* 1 */
	 font: inherit;
	/* 2 */
}
/* Interactive ========================================================================== */
/* * Add the correct display in Edge, IE 10+, and Firefox. */
 details {
	 display: block;
}
/* * Add the correct display in all browsers. */
 summary {
	 display: list-item;
}
/* Misc ========================================================================== */
/** * Add the correct display in IE 10+. */
 template {
	 display: none;
}
/** * Add the correct display in IE 10. */
 [hidden] {
	 display: none;
}
/****************************************************************** Site Name: Author: Stylesheet: Typography Need to import a font or set of icons for your site? Drop them in here or just use this to establish your typographical grid. Or not. Do whatever you want to...GOSH! Helpful Articles: http://trentwalton.com/2012/06/19/fluid-type/ http://ia.net/blog/responsive-typography-the-basics/ http://alistapart.com/column/responsive-typography-is-a-physical-discipline ******************************************************************/
/* Ligatures and Hyphenation */
 p {
	/*-ms-word-wrap: break-word;
	 word-break: break-word;
	 //non-standart css for webkit word-wrap: break-word;
	*/
	 -webkit-hyphens: none;
	 -moz-hyphens: none;
	 hyphens: none;
	/* -webkit-hyphenate-before: 2;
	 -webkit-hyphenate-after: 3;
	 hyphenate-lines: 3;
	 */
	/* -webkit-font-feature-settings: "liga", "dlig";
	 -moz-font-feature-settings: "liga=1, dlig=1";
	 -ms-font-feature-settings: "liga", "dlig";
	 -o-font-feature-settings: "liga", "dlig";
	 font-feature-settings: "liga", "dlig";
	 */
}
 body, button, input, select, optgroup, textarea {
	 color: #7b838b;
	 font-family: "roboto", sans-serif;
	 font-size: 16px;
	 font-size: 1rem;
	 line-height: 1.5;
}
 h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	 font-family: "roboto", sans-serif;
	 clear: left;
	 margin-top: 1.5rem;
	 margin-bottom: 0.5rem;
	 color: #000;
	 line-height: 1;
	 font-weight: bold;
	 letter-spacing: -0.32px;
}
 h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	 margin-top: 0;
}
 h1, .h1 {
	 font-size: 56px;
	 font-size: 3.5rem;
	 letter-spacing: -0.56px;
	 letter-spacing: -0.035rem;
}
 h2, .h2 {
	 font-size: 40px;
	 font-size: 2.5rem;
	 line-height: 2.5rem;
	 letter-spacing: -0.4px;
	 letter-spacing: -0.025rem;
	 margin: 3rem 0 1.5rem;
}
 @media only screen and (min-width: 1030px) {
	 h2, .h2 {
		 font-size: 36px;
		 font-size: 2.25rem;
		 line-height: 2.625rem;
	}
}
 h2:first-of-type, .h2:first-of-type {
	 margin-top: 0;
}
 h2.large, .h2.large {
	 font-size: 32px;
	 font-size: 2rem;
	 line-height: 2.5rem;
	 color: #687882;
	 max-width: 800px;
	 width: 100%;
	 text-transform: none;
	 text-align: center;
	 padding: 0 1.25rem;
	 margin: 0 auto;
	 margin-bottom: 3.5rem !important;
}
 @media only screen and (min-width: 1030px) {
	 h2.large, .h2.large {
		 margin-bottom: 7.5rem !important;
	}
}
 @media only screen and (min-width: 1030px) {
	 h2.large, .h2.large {
		 font-size: 48px;
		 font-size: 3rem;
		 line-height: 3.5rem;
	}
}
 h3, .h3 {
	 font-size: 32px;
	 font-size: 2rem;
	 line-height: 2.375rem;
	 letter-spacing: -0.4px;
	 letter-spacing: -0.025rem;
	 margin: 3rem 0 1rem;
}
 h4, .h4 {
	 font-size: 24px;
	 font-size: 1.5rem;
	 line-height: 2rem;
	 letter-spacing: -0.24px;
	 letter-spacing: -0.015rem;
}
 h5, .h5 {
	 font-size: 20px;
	 font-size: 1.25rem;
	 line-height: 1.125rem;
	 letter-spacing: 1.6px;
	 letter-spacing: 0.1rem;
}
 h6, .h6 {
	 font-size: 16px;
	 font-size: 1rem;
	 line-height: 1rem;
	 letter-spacing: 1.6px;
	 letter-spacing: 0.1rem;
}
 p {
	 margin: 0 0 1.5rem;
}
 p:last-child {
	 margin-bottom: 0;
}
 dfn, cite, em, i {
	 font-style: italic;
}
 blockquote {
	 margin: 0 1.5rem;
}
 address {
	 margin: 0 0 1.5rem;
}
 pre {
	 background: #eee;
	 font-family: "Courier 10 Pitch", Courier, monospace;
	 font-size: 15px;
	 font-size: 0.9375rem;
	 line-height: 1.6;
	 margin-bottom: 1.6rem;
	 max-width: 100%;
	 overflow: auto;
	 padding: 1.6rem;
}
 code, kbd, tt, var {
	 font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	 font-size: 15px;
	 font-size: 0.9375rem;
}
 abbr, acronym {
	 border-bottom: 1px dotted #666;
	 cursor: help;
}
 mark, ins {
	 background: #fff9c0;
	 text-decoration: none;
}
 big {
	 font-size: 125%;
}
 .link-btn-black, .link-btn-white, .link-btn, .black-btn, .red-btn, .long-button, input[type=submit], input[type=button], input[type=reset], .outline-btn-white, .outline-btn-red, button {
	 display: inline-block;
	 position: relative;
	 font-family: "interstate-condensed", sans-serif;
	 font-size: 0.9rem;
	 letter-spacing: 1.6px;
	 font-weight: bold;
	 text-decoration: none !important;
	 text-align: center;
	 text-transform: uppercase;
	 color: #fff;
	 background: #CD1041;
	 border-radius: 4px;
	 padding: 0.7em 1.825em;
	 cursor: pointer;
	 vertical-align: middle;
	 clear: both;
	 -webkit-transition: all 0.14s ease-in-out;
	 -moz-transition: all 0.14s ease-in-out;
	 -ms-transition: all 0.14s ease-in-out;
	 -o-transition: all 0.14s ease-in-out;
	 transition: all 0.14s ease-in-out;
	 width: 100%;
	 margin-bottom: 1rem;
	 margin-right: 1rem;
}
 @media only screen and (min-width: 768px) {
	 .link-btn-black, .link-btn-white, .link-btn, .black-btn, .red-btn, .long-button, input[type=submit], input[type=button], input[type=reset], .outline-btn-white, .outline-btn-red, button {
		 width: auto;
	}
}
 .link-btn-black:hover, .link-btn-white:hover, .link-btn:hover, .black-btn:hover, .red-btn:hover, .long-button:hover, input[type=submit]:hover, input[type=button]:hover, input[type=reset]:hover, .outline-btn-white:hover, .outline-btn-red:hover, button:hover, .link-btn-black:focus, .link-btn-white:focus, .link-btn:focus, .black-btn:focus, .red-btn:focus, .long-button:focus, input[type=submit]:focus, input[type=button]:focus, input[type=reset]:focus, .outline-btn-white:focus, .outline-btn-red:focus, button:focus {
	 color: #fff;
	 text-decoration: none;
}
 .alt.link-btn-black, .alt.link-btn-white, .alt.link-btn, .alt.black-btn, .alt.red-btn, .alt.long-button, input.alt[type=submit], input.alt[type=button], input.alt[type=reset], .alt.outline-btn-white, .alt.outline-btn-red, button.alt {
	 background-color: #FFC425 !important;
	 color: #CD1041 !important;
}
 button {
	 border: none;
}
 .outline-btn-red {
	 background-color: transparent;
	 border-radius: 0;
	 border: 1px solid #fff;
	 color: #fff !important;
}
 .outline-btn-red:hover, .outline-btn-red:focus, .outline-btn-red:active {
	 border: 1px solid #CD1041;
	 background-color: #CD1041;
	 color: #fff !important;
}
 .outline-btn-white {
	 background-color: transparent;
	 border-radius: 0;
	 border: 1px solid #fff;
	 color: #fff !important;
	 margin: 0;
}
 .outline-btn-white:hover, .outline-btn-white:focus, .outline-btn-white:active {
	 border: 1px solid #fff;
	 background-color: #fff;
	 color: #CD1041 !important;
}
 .red-btn, .long-button, input[type=submit], input[type=button], input[type=reset] {
	 background-color: #CD1041;
	 border-radius: 0;
	 border: none;
	 color: #fff !important;
}
 .red-btn:hover, .red-btn:focus, .red-btn:active, .long-button:hover, .long-button:focus, .long-button:active, input[type=submit]:hover, input[type=submit]:focus, input[type=submit]:active, input[type=button]:hover, input[type=button]:focus, input[type=button]:active, input[type=reset]:hover, input[type=reset]:focus, input[type=reset]:active {
	 background-color: #000 !important;
}
 input[type=submit] {
	 padding: 0.7rem 5rem;
}
 .black-btn {
	 background-color: #000;
	 border-radius: 0;
	 border: none;
	 color: #fff !important;
}
 .black-btn:hover, .black-btn:focus, .black-btn:active {
	 background-color: #333333;
}
 .link-btn {
	 background-color: transparent;
	 border-radius: 0;
	 border: none;
	 color: #CD1041 !important;
	 padding: 0;
	 font-size: 1rem;
	 letter-spacing: 0.05rem;
	 margin-right: 0;
	 margin-bottom: 0;
	 width: auto;
	 text-align: left;
}
 .link-btn:hover, .link-btn:focus, .link-btn:active {
	 background-color: transparent;
	 text-decoration: underline !important;
}
 .link-btn::after {
	 content: ">";
	 display: inline-block;
	 padding-left: 5px;
	 color: inherit;
}
 .link-btn-white {
	 background-color: transparent;
	 border-radius: 0;
	 border: none;
	 color: #fff !important;
	 padding: 0;
	 font-size: 1rem;
	 letter-spacing: 0.05rem;
	 margin-right: 0;
	 margin-bottom: 0;
	 width: auto;
}
 .link-btn-white:hover, .link-btn-white:focus, .link-btn-white:active {
	 background-color: transparent;
	 text-decoration: underline !important;
}
 .link-btn-white::after {
	 content: ">";
	 display: inline-block;
	 padding-left: 5px;
	 color: inherit;
}
 .link-btn-black {
	 background-color: transparent;
	 border-radius: 0;
	 border: none;
	 color: #000 !important;
	 padding: 0;
	 font-size: 1rem;
	 letter-spacing: 0.05rem;
	 margin-right: 0;
	 margin-bottom: 0;
	 width: auto;
}
 .link-btn-black:hover, .link-btn-black:focus, .link-btn-black:active {
	 background-color: transparent;
	 text-decoration: underline !important;
}
 .link-btn-black::after {
	 content: ">";
	 display: inline-block;
	 padding-left: 5px;
	 color: inherit;
}
/** * Image buttons with background image and text over top as * seen in the mega-menu drop-downs. */
 .img-btn-group {
	 display: flex;
	 flex-direction: row;
	 margin-top: 30px;
}
 @media only screen and (min-width: 1030px) {
	 .img-btn-group {
		 flex-direction: column;
		 margin-top: 0;
	}
}
 .img-btn-group > .img-btn {
	 flex: 0 0 30%;
	 margin-right: calc(10% / 2);
}
 .img-btn-group > .img-btn:last-of-type {
	 margin-right: 0;
}
 @media only screen and (min-width: 1030px) {
	 .img-btn-group > .img-btn {
		 flex: 1 1 100%;
	}
}
 .sidebar .img-btn-group {
	 margin-top: 30px;
	 flex-direction: column;
	 align-items: center;
	 z-index: 1;
}
 .sidebar .img-btn-group > .img-btn {
	 margin-right: 0;
	 margin-bottom: 20px;
	 padding: 15px !important;
	 font-size: 0.875rem !important;
	 width: 100%;
	 text-transform: uppercase;
}
 .sidebar .img-btn-group > .img-btn:hover {
	 text-decoration: none;
}
 @media only screen and (min-width: 1030px) {
	 .sidebar .img-btn-group > .img-btn {
		 width: 100%;
	}
}
 .img-btn {
	 border-radius: 8px;
	 display: flex !important;
	 justify-content: center;
	 align-items: center;
	 text-align: center;
	 background: black url(https://i.picsum.photos/id/1006/536/354.jpg?hmac=ncYtqoODg4szzI4ei4-8wZ8u255SdZVqYe_IaPMXmIE) center;
	 background-repeat: repeat;
	 background-size: auto;
	 color: #fff !important;
	 padding: 8px 0 !important;
	 line-height: 1;
	 background-size: cover;
	 background-repeat: no-repeat;
	 position: relative;
	 font-size: 0.75rem !important;
}
 @media only screen and (min-width: 768px) {
	 .img-btn {
		 border-radius: 16px;
		 white-space: nowrap;
		 padding: 32px !important;
		 margin: 0 auto 20px auto;
		 width: 100%;
		 font-size: 1.125rem !important;
	}
}
 .img-btn:after {
	 display: block;
	 content: "";
	 background: black;
	 opacity: 0.48;
	 border-radius: 8px;
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
}
 @media only screen and (min-width: 768px) {
	 .img-btn:after {
		 border-radius: 16px;
	}
}
 .img-btn > span {
	 position: relative;
	 z-index: 1;
}
 .img-btn:hover:after {
	 opacity: 0.2;
}
/** | ----------------------------------------------------------------------------- | Social media buttons | ----------------------------------------------------------------------------- */
 .social-media-btn {
	 border-radius: 5px;
	 background: #495057;
	 font-family: "interstate-condensed", sans-serif;
	 font-size: 0.9rem;
	 letter-spacing: 1.6px;
	 font-weight: bold;
	 text-decoration: none !important;
	 vertical-align: middle;
	 -webkit-transition: all 0.14s ease-in-out;
	 -moz-transition: all 0.14s ease-in-out;
	 -ms-transition: all 0.14s ease-in-out;
	 -o-transition: all 0.14s ease-in-out;
	 transition: all 0.14s ease-in-out;
	 color: white !important;
	 padding: 10px 10px 10px 50px;
	 display: inline-block;
	 margin: 7px 14px 7px 0;
	 cursor: pointer;
	 width: 100%;
	 position: relative; /* SCSU - Positioning override for general-content class */
}
 @media only screen and (min-width: 768px) {
	 .social-media-btn {
		 width: auto;
	}
}
 .social-media-btn:hover {
	 background: #92A0AE;
}
 .social-media-btn i {
	 position: absolute;
	 transform: translateY(-50%);
	 top: 50%;
	 left: 10px;
	 font-size: 1.875rem;
}
/****************************************************************** Site Name: Author: Stylesheet: Form Styles We put all the form and button styles in here to setup a consistent look. If we need to customize them, we can do this in the main stylesheets and just override them. Easy Peasy. You're gonna see a few data-uri thingies down there. If you're not sure what they are, check this link out: http://css-tricks.com/data-uris/ If you want to create your own, use this helpful link: http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/ ******************************************************************/
 input[type=button], input[type=reset], input[type=submit] {
	/* Styles set in /scss/modules/buttons.scss */
}
 button:hover, input[type=button]:hover, input[type=reset]:hover, input[type=submit]:hover, .button:hover, .more-link:hover {
	 cursor: pointer;
	 background: #CD1041;
	 text-decoration: none;
}
 button:active, button:focus, input[type=button]:active, input[type=button]:focus, input[type=reset]:active, input[type=reset]:focus, input[type=submit]:active, input[type=submit]:focus, .button:active, .button:focus, .more-link:active, .more-link:focus {
	 text-decoration: none;
	 outline: none;
}
 input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=number], input[type=tel], input[type=range], input[type=date], input[type=month], input[type=week], input[type=time], input[type=datetime], input[type=datetime-local], input[type=color], select, textarea {
	 display: block;
	 width: 100%;
	 border: none;
	 border-radius: 0;
	 padding: 0.655em 1.5em;
	 background: #ededed;
	 color: #333333;
}
 input[type=text]:focus, input[type=email]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=range]:focus, input[type=date]:focus, input[type=month]:focus, input[type=week]:focus, input[type=time]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=color]:focus, select:focus, textarea:focus {
	 border-color: #8f4ec7;
	 outline: none;
}
 select {
	 height: 45px;
}
 textarea {
	 width: 100%;
}
/* SCSU - Label style removed for phase 1 launch */
/* label {
	 font-size: 15px;
	 font-size: 0.9375rem;
	 margin: 0;
	 line-height: 1;
	 display: inline-block;
	 position: absolute;
	 top: 50%;
	 transform: translateY(-50%);
	 left: 1.5rem;
	 z-index: 1;
	 pointer-events: none;
	 transition: all 100ms ease-out;
}
 */
 form > * {
	 margin-bottom: 1.875rem;
}
 form > *:last-child {
	 margin-bottom: 0;
}
 input[type=checkbox], input[type=radio] {
	 display: inline-block;
	 margin-right: 0.5em;
}
input[type=radio] + input[type=radio] {
	 margin-left: 1em;
}
 input[type=checkbox] + label, input[type=radio] + label {
	 display: inline;
}
 fieldset {
	 padding: 1.5rem 2.5rem;
	 border: 2px solid #ebeef1;
}
 fieldset legend {
	 font-size: 26px;
	 font-size: 1.625rem;
	 color: #2c3847;
	 padding: 0 0.5em;
	 font-weight: 500;
}
/** | ------------------------------------------------------------------------------ | Form wrapper stuffs | ------------------------------------------------------------------------------ */
 .form, form {
	 font-family: inherit;
	 padding: 2.5rem 0;
}
 .form__input-wrapper.filled label, form__input-wrapper.filled label {
	 top: -10px;
	 left: 10px;
	 font-size: 12px;
	 font-size: 0.75rem;
}
 .form__input-wrapper--textarea label, form__input-wrapper--textarea label {
	 top: 1.5rem;
}
 .form__select::after, form__select::after {
	 content: "";
	 font-family: "Font Awesome 5 Free";
	 font-size: 20px;
	 font-size: 1.25rem;
	 font-weight: bold;
	 line-height: 1;
	 position: absolute;
	 top: 50%;
	 transform: translateY(-60%);
	 right: 10px;
	 color: #000;
}
 .form__helper, form__helper {
	 font-style: italic;
	 font-size: 13px;
	 font-size: 0.8125rem;
}
/* necessary for responsive table */
 .table-wrapper {
	 overflow-x: scroll;
	 -ms-overflow-style: none;
	 scrollbar-width: none;
}
 .table-wrapper::-webkit-scrollbar {
	 display: none;
}
 table {
	 max-width: 100%;
	 width: 100%;
	 margin-bottom: 1.5rem;
	 border-collapse: collapse;
	 border-spacing: 0;
}
/* SCSU: Need to populate a horizontal scrollbar on tables for small screens */
@media only screen and (max-width: 768px) {
	 table {
		 width: -moz-fit-content;
		 max-width: fit-content;
		 overflow-x: auto;
		 display: block;
		 height: auto !important;
	 }
}
 table th, table td {
	 padding: 0.47rem;
	 text-align: left;
	 border-top: 1px solid #b8b8b8;
}
 table tr th:first-child {
	 text-align: left;
}
 table th {
	 font-weight: bold;
	 vertical-align: bottom;
}
 table td {
	 vertical-align: top;
}
 table tr:first-child th, table tr:first-child td {
	 border-top: 0;
}
 table tr:last-child th, table tr:last-child td {
	 border-bottom: 1px solid #b8b8b8;
}
 table tbody + tbody {
	 border-top: 2px solid #b8b8b8;
}
 .table-condensed th, .table-condensed td {
	 padding: 0.29rem;
}
 .table-bordered {
	 border: 1px solid #b8b8b8;
	 border-collapse: separate;
	 *border-collapse: collapsed;
	 border-radius: 0.47rem;
}
 .table-bordered th + th, .table-bordered td + td, .table-bordered th + td, .table-bordered td + th {
	 border-left: 1px solid #b8b8b8;
}
 .table-bordered thead:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child td {
	 border-top: 0;
}
 .table-bordered thead:first-child tr:first-child th:first-child, .table-bordered tbody:first-child tr:first-child td:first-child {
	 border-radius: 0.47rem 0 0 0;
}
 .table-bordered thead:first-child tr:first-child th:last-child, .table-bordered tbody:first-child tr:first-child td:last-child {
	 border-radius: 0 0.47rem 0 0;
}
 .table-bordered thead:last-child tr:last-child th:first-child, .table-bordered tbody:last-child tr:last-child td:first-child {
	 border-radius: 0 0 0 0.47rem;
}
 .table-bordered thead:last-child tr:last-child th:last-child, .table-bordered tbody:last-child tr:last-child td:last-child {
	 border-radius: 0 0 0.47rem 0;
}
/* SCSU: The box-sizing property is set to border-box for all elements */
 * {
	 box-sizing: border-box;
}
/* SCSU: Relative positioning is applied to all elements EXCEPT for the below */
 *:not(.sidebar__inner, .search-modal *, p, .right-area, .sectionContent *, .section-toggle, h2, .general-content, .general-content *) {
	 position: relative;
}
 body {
	 min-width: 320px;
	 font-size: 1rem;
	 overflow-x: hidden;
}
 @media only screen and (max-width: 1029px) {
	 body.locked {
		 overflow: hidden;
	}
}
 body > div.content {
	 color: #333333;
}
 body > div.content > div.landing {
	 padding: 0 1.25rem;
}
 @media only screen and (min-width: 1030px) {
	 body > div.content > div.landing {
		 padding: 0 2.5rem;
	}
}
 embed, iframe, object {
	 max-width: 100%;
}
 img {
	 max-width: 100%;
}
 a {
	 text-decoration: underline;
}
 a:hover {
	 text-decoration: none;
}
 ul li, ol li {
	 line-height: 1.8rem;
}
 ul ul, ol ul {
	 list-style-type: disc;
}
/*-------------------------------------------------------------- # Accessibility --------------------------------------------------------------*/
/* Text meant only for screen readers. */
 .screen-reader-text {
	 border: 0;
	 clip: rect(1px, 1px, 1px, 1px);
	 -webkit-clip-path: inset(50%);
	 clip-path: inset(50%);
	 height: 1px;
	 margin: -1px;
	 overflow: hidden;
	 padding: 0;
	 position: absolute !important;
	 width: 1px;
	 word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
 .screen-reader-text:focus {
	 background-color: #f1f1f1;
	 border-radius: 3px;
	 -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	 box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	 clip: auto !important;
	 -webkit-clip-path: none;
	 clip-path: none;
	 color: #21759b;
	 display: block;
	 font-size: 15px;
	 font-size: 0.9375rem;
	 font-weight: bold;
	 height: auto;
	 left: 5px;
	 line-height: normal;
	 padding: 15px 23px 14px;
	 text-decoration: none;
	 top: 5px;
	 width: auto;
	 z-index: 100000;
	/* Above WP toolbar. */
}
/* Do not show the outline on the skip link target. */
 #content[tabindex="-1"]:focus {
	 outline: 0;
}
/* Partials */
 .footer {
	 background: #000;
	 padding: 50px 20px;
	 color: #fff;
}
 .footer a {
	 color: #fff;
	 text-decoration: none;
}
 .footer a:hover, .footer a:active, .footer a:focus {
	 text-decoration: underline;
}
 .footer ul {
	 list-style-type: none;
	 margin: 0;
	 padding: 0;
}
 .footer li {
	 margin-top: 0;
	 margin-bottom: 5px;
}
 .footer__top {
	 display: flex;
	 flex-direction: column;
}
 @media only screen and (min-width: 768px) {
	 .footer__top {
		 flex-direction: row;
		 justify-content: space-between;
	}
}
 .footer__top > div {
	 flex: 0 0 calc(100% / 3);
	 margin-bottom: 50px;
}
 @media only screen and (min-width: 1030px) {
	 .footer__top > div {
		 margin-bottom: 0;
	}
}
 .footer__logo {
	 display: flex;
	 align-items: flex-start;
	 line-height: 20px;
}
 @media screen and (min-width: 768px) and (max-width: 1030px) {
	 .footer__logo {
		 flex-direction: column;
	}
}
 .footer__logo img {
	 width: 100%;
	 max-width: 90px;
	 margin-right: 20px;
}
 @media screen and (min-width: 768px) and (max-width: 1030px) {
	 .footer__logo img {
		 margin-bottom: 20px;
	}
}
 .footer__about {
	 font-size: 14px;
	 font-size: 0.875rem;
	 line-height: 1.25rem;
}
 .footer__about strong {
	 font-size: 16px;
	 font-size: 1rem;
}
 .footer__about a {
	 text-decoration: underline;
}
 .footer__about a:hover {
	 text-decoration: none;
}
 .footer__copyright {
	 text-align: center;
}
 @media only screen and (min-width: 1030px) {
	 .footer__copyright {
		 margin-top: 50px;
	}
}
 .footer__copyright a {
	 text-decoration: underline;
}
 .footer__copyright a:hover {
	 text-decoration: none;
}
 .site-header {
	 width: 100%;
	 margin: 0 auto;
	 background-color: #000;
	 border-bottom: 0;
	 display: -webkit-box;
	 display: -ms-flexbox;
	 display: flex;
	 justify-content: space-between;
	 flex-wrap: wrap;
	 position: sticky;
	 top: 0;
	 z-index: 30;
	 transition: top 250ms ease-out;
}
 @media only screen and (min-width: 1030px) {
	 .site-header.scroll-up {
		 top: 44px;
	}
}
 .site-header .content {
	 display: flex;
	 -webkit-align-items: center;
	 align-items: center;
	 width: 100%;
	 padding: 0.875rem 1.5625rem;
}
/*-------------------------------------------------------------- # Site Branding / Title --------------------------------------------------------------*/
 .site-branding {
	 display: -webkit-box;
	 display: -ms-flexbox;
	 display: flex;
	 align-items: center;
	 flex: 0 1 auto;
	 z-index: 6;
	 align-self: center;
}
 .site-branding .custom-logo-link + .site-title {
	 margin-left: 0.625rem;
}
 .site-branding {
	 transform: translateY(0);
	 transition: transform 250ms ease-out;
}
 .site-branding .custom-logo-link img {
	 max-width: 300px;
	 width: 100%;
}
 @media only screen and (min-width: 1030px) {
	 .scroll-up .site-branding {
		 transform: translateY(-20px);
	}
}
 .site-title {
	 font-size: 27px;
	 font-size: 1.6875rem;
	 font-family: "PT Serif", serif;
	 font-weight: 700;
	 margin: 0;
	 line-height: 1;
}
 .site-title a {
	 color: #2c3847;
}
 .site-title a:hover {
	 text-decoration: none;
}
 .site-title a:focus, .site-title a:active {
	 text-decoration: none;
	 outline: none;
}
 .site-description {
	 font-family: "Work Sans", sans-serif;
	 font-size: 13px;
	 font-size: 0.8125rem;
	 margin: 0;
	 display: none;
}
/* Make sure logo link wraps around logo image. */
 .custom-logo-link {
	 display: inline-block;
}
/*-------------------------------------------------------------- # Main Navigation --------------------------------------------------------------*/
 .main-navigation {
	 display: -webkit-box;
	 display: -ms-flexbox;
	 display: flex;
	 -webkit-box-pack: end;
	 -ms-flex-pack: end;
	 justify-content: flex-end;
}
 .main-navigation-wrapper {
	 display: -webkit-box;
	 display: -ms-flexbox;
	 display: flex;
	 align-items: center;
	 flex: 1 1 auto;
	 justify-content: flex-end;
}
 @media only screen and (min-width: 1030px) {
	 .main-navigation-wrapper {
		 width: 83%;
	}
}
 .primary-menu-more {
	 display: none;
}
 .primary-menu-more .primary-menu-more-toggle {
	 padding: 0;
	 background: transparent;
	 border: 0;
	 color: inherit;
	 height: 54px;
	 width: 50px;
	 font-size: 25px;
	 font-size: 1.5625rem;
}
 .primary-menu-more .primary-menu-more-toggle.is-empty {
	 display: none;
}
 .primary-menu-more .primary-menu-more-toggle svg {
	 margin-top: 5px;
	 width: 24px;
	 height: 24px;
	 fill: #2c3847;
}
/*-------------------------------------------------------------- # Clearings --------------------------------------------------------------*/
 .clear:before, .clear:after, .site-header:before, .site-header:after {
	 content: "";
	 display: table;
	 table-layout: fixed;
}
 .clear:after, .site-header:after, .site-content:after {
	 clear: both;
}
/*-------------------------------------------------------------- # Utility nav at top of screen --------------------------------------------------------------*/
 .secondary_menus {
	 font-family: "roboto", sans-serif;
	 background: #000;
	 font-size: 12px;
	 font-size: 0.75rem;
	 line-height: 1.3;
	 color: #fff;
	 display: -webkit-flex;
	 display: -moz-flex;
	 display: -ms-flexbox;
	 display: -o-flex;
	 display: flex;
	 -webkit-flex-direction: row;
	 -moz-flex-direction: row;
	 -ms-flex-direction: row;
	 -o-flex-direction: row;
	 flex-direction: row;
	 -webkit-justify-content: center;
	 justify-content: center;
	 align-items: center;
	 -webkit-justify-content: space-between;
	 justify-content: space-between;
	 margin: 0 auto;
	 width: 100%;
	 display: none;
	 z-index: 31;
}
 .secondary_menus .content {
	 width: 100%;
	 margin: 0 auto;
	 padding: 0 2.5rem;
	 display: flex;
}
 .secondary_menus ul {
	 list-style: none;
	 margin: 0;
	 padding-left: 0;
}
 .secondary_menus ul ul {
	 color: #fff;
	 background: #1f2124;
	 border: 1px solid #4d4d4d;
	 float: left;
	 position: absolute;
	 top: 120%;
	 visibility: hidden;
	 opacity: 0;
	 z-index: 99999;
	 padding-top: 1.25rem;
	 padding-bottom: 1.25rem;
	 padding-left: 0;
	 -webkit-box-shadow: 2px 5px 43px 0 rgba(138, 164, 181, 0.28);
	 box-shadow: 2px 5px 43px 0 rgba(138, 164, 181, 0.28);
}
 .secondary_menus ul ul.toleft {
	 right: 0;
	 left: auto;
}
 .secondary_menus li {
	 width: auto;
	 float: left;
	 position: relative;
	 margin: 0;
	 padding: 0;
}
 .secondary_menus a {
	 display: block;
	 text-decoration: none;
	 padding: 0.5rem 0.875rem;
	 color: #fff;
	 font-weight: 500;
	 letter-spacing: -0.35px;
}
 .secondary_menus a:hover {
	 text-decoration: none;
}
 @media screen and (min-width: 1030px) and (max-width: 1090px) {
	 .secondary_menus a {
		 padding: 0.5rem 0.6rem;
	}
}
 .secondary_menus .menu-item-has-children {
	 position: relative;
	 background-color: #CD1041;
}
 .secondary_menus .menu-item-has-children > a {
	 padding-right: 0.875rem;
	 color: white;
	 padding: 0.45rem 0.875rem;
}
 .secondary_menus .menu-item-has-children > a:after {
	 font-family: "Font Awesome 5 Free";
	 content: "";
	 font-size: 0.75rem !important;
	 font-weight: bold;
	 transform: rotate(90deg);
	 display: inline-block;
	 margin-left: 10px;
	 color: inherit;
}
 .secondary_menus ul ul .menu-item-has-children > a {
	 padding-right: 2.75rem;
	 position: relative;
}
 .secondary_menus ul ul .menu-item-has-children > a:after {
	 position: absolute;
	 right: 2.25rem;
	 top: 1rem;
}
 .secondary_menus ul ul .menu-item-has-children:hover > a:after {
	 -webkit-transform: rotate(-90deg);
	 -ms-transform: rotate(-90deg);
	 transform: rotate(-90deg);
}
 .secondary_menus ul ul li a {
	 padding-right: 0.875rem;
	 padding: 0.75rem 0.875rem;
}
 .secondary_header {
	 z-index: 3;
}
 .secondary_menus ul li:hover > ul, .secondary_menus ul li:focus-within > ul, .secondary_menus ul li.focus > ul {
	 visibility: visible;
	 opacity: 1;
	 top: 100%;
}
/*-------------------------------------------------------------- ## Menus --------------------------------------------------------------*/
 .menu {
	 list-style: none;
	 padding-left: 0;
}
 .menu li {
	 margin: 0;
}
 .menu-headline-wrapper {
	 display: none;
}
 .main-navigation {
	 font-family: "interstate-compressed", sans-serif;
	 font-weight: bold;
	 line-height: 1.3;
	 color: #2c3847;
	 font-size: 20px;
	 font-size: 1.25rem;
}
 @media only screen and (min-width: 1030px) {
	 .main-navigation {
		 width: 100%;
	}
}
 .main-navigation button {
	 margin-bottom: 0;
}
 .main-navigation .nav-menu li {
	 margin: 0;
	 padding: 0;
	 color: #fff;
}
 .main-navigation .nav-menu li > span {
	 padding: 1rem 1.25rem;
	 font-family: "interstate-condensed", sans-serif;
	 letter-spacing: -0.35px;
	 font-size: 18px;
	 font-size: 1.125rem;
	 font-weight: 500;
	 text-transform: uppercase;
	 display: block;
}
 .main-navigation ul {
	 display: none;
	 list-style: none;
	 margin: 0;
	 padding-left: 0;
	 width: 100%;
}
 .main-navigation ul:after {
	 display: table;
	 clear: both;
	 content: "";
}
 .main-navigation ul ul {
	 padding-left: 0;
	 font-size: 17px;
	 font-size: 1.0625rem;
	 color: #7b838b;
}
 .main-navigation ul ul li {
	 border-bottom: 0;
}
 @media only screen and (min-width: 1030px) {
	 .main-navigation ul ul {
		 display: flex;
		 flex-direction: column;
	}
}
 .main-navigation ul ul.toleft {
	 right: 0;
	 left: auto;
}
 .main-navigation ul ul ul {
	 left: 100%;
}
 .main-navigation ul ul ul.toleft {
	 right: 100%;
	 left: auto;
}
 .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
	 top: 25%;
}
 .main-navigation ul ul a {
	 color: inherit;
}
 .main-navigation ul ul .menu-item-has-children > a {
	 padding-right: 2.75rem;
	 position: relative;
}
 .main-navigation ul ul .menu-item-has-children > a:after {
	 position: absolute;
	 right: 2.25rem;
	 top: 1rem;
}
 .main-navigation ul ul .menu-item-has-children:hover > a:after {
	 -webkit-transform: rotate(-90deg);
	 -ms-transform: rotate(-90deg);
	 transform: rotate(-90deg);
}
 .main-navigation ul li:hover > ul, .main-navigation ul li:focus-within ul, .main-navigation ul li.focus > ul, .main-navigation ul li:hover > .sub-menu-wrap, .main-navigation ul li:focus-within .sub-menu-wrap, .main-navigation ul li.focus > .sub-menu-wrap {
	 display: block;
}
 .main-navigation ul li.menu-item-has-children:hover > a:before, .main-navigation ul li.menu-item-has-children:focus-within > a:before, .main-navigation ul li.menu-item-has-children.focus > a:before {
	 visibility: visible;
	 opacity: 1;
}
 .main-navigation li {
	 width: 100%;
}
 .main-navigation li:hover > a, .main-navigation li.focus > a {
	 color: #8f4ec7;
}
 .main-navigation a {
	 display: block;
	 text-decoration: none;
	 padding: 1rem 1.25rem;
	 color: #fff !important;
	 font-weight: 500;
	 letter-spacing: -0.35px;
}
 .main-navigation .current_page_item > a, .main-navigation .current-menu-item > a, .main-navigation .current_page_ancestor > a, .main-navigation .current-menu-ancestor > a {
	 text-decoration: underline;
}
 .main-navigation .menu-item-has-children {
	 position: relative;
}
 .main-navigation .menu-item-has-children.toggled-on .sub-menu-wrap {
	 display: block !important;
}
 .main-navigation .menu-item-has-children > button.dropdown-toggle {
	 color: #CD1041;
	 transform: rotate(-90deg);
	 width: auto;
}
 .main-navigation .menu-item-has-children > button.dropdown-toggle.toggled-on {
	 transform: rotate(-180deg);
}
 .main-navigation .menu-item-has-children > button.dropdown-toggle:focus, .main-navigation .menu-item-has-children > button.dropdown-toggle:active {
	 color: #CD1041;
}
 .main-navigation .menu-item-has-children > a {
	 padding-right: 2.5rem;
	 color: #fff;
}
 .main-navigation .menu-item-has-children > a:after {
	 display: none;
	 content: "";
	 font-size: 12px;
	 font-size: 0.75rem;
	 margin-left: 10px;
	 color: #CD1041;
	 font-family: "Font Awesome 5 Free";
}
 .primary-menu-wrapper {
	 position: fixed;
	 top: 0;
	 left: 0;
	 right: 0;
	 margin-top: 55px;
	 height: calc(100vh - 51px);
	 overflow: hidden;
	 z-index: -10;
	 padding: 0rem 1.5625rem;
	 pointer-events: none;
}
 @media only screen and (min-width: 1030px) {
	 .primary-menu-wrapper {
		 width: 100%;
	}
}
 .main-navigation-wrapper .primary-menu-wrapper:after {
	 background-color: #CD1041;
	 opacity: 1;
}
 .main-navigation-wrapper .main-navigation li:hover a {
	 color: #FFC425;
}
 .main-navigation-wrapper .main-navigation .menu-item-has-children > a {
	 padding: 16px 0;
}
 .main-navigation-wrapper .main-navigation .nav-menu li {
	 border-bottom: 1px solid #4d4d4d;
}
 .main-navigation-wrapper .main-navigation a {
	 color: #FFC425;
	 text-transform: uppercase;
	 font-weight: bold;
	 font-size: 22px;
	 font-size: 1.375rem;
	 padding: 8px 0;
	 font-family: "interstate-condensed", sans-serif;
	 -webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}
 .main-navigation-wrapper .main-navigation a:hover {
	 color: white;
}
 @media only screen and (min-width: 1030px) {
	 .main-navigation-wrapper .main-navigation a {
		 padding: 12px 0;
	}
}
 .main-navigation-wrapper .mobile_utility {
	 z-index: 1;
	 position: relative;
}
 .main-navigation-wrapper .mobile_utility a {
	 font-family: "roboto", sans-serif;
	 font-weight: 500;
	 text-transform: none;
	 letter-spacing: 0;
}
 .main-navigation-wrapper .mobile_utility .util-menu {
	 margin-top: 25px;
}
 .main-navigation-wrapper .mobile_utility .util-menu.resource_menu .menu-item-has-children {
	 width: auto;
	 position: relative;
	 padding-right: 0.875rem;
	 color: #fff;
	 margin-top: 30px;
	 padding-right: 0;
}
 .main-navigation-wrapper .mobile_utility .util-menu.resource_menu .menu-item-has-children > a {
	 background-color: #CD1041;
	 display: inline-block;
	 text-decoration: none;
	 padding: 0.5rem 0.875rem;
	 color: #fff;
	 font-weight: 500;
	 letter-spacing: -0.35px;
	 white-space: nowrap;
}
 .main-navigation-wrapper .mobile_utility .util-menu.resource_menu .menu-item-has-children .sub-menu {
	 display: flex !important;
	 flex-direction: column;
	 padding: 8px 14px;
	 background: #000;
	 width: calc(100vw - 50px);
}
 @media only screen and (min-width: 375px) {
	 .main-navigation-wrapper .mobile_utility .util-menu.resource_menu .menu-item-has-children .sub-menu {
		 flex-direction: row;
	}
}
 .main-navigation-wrapper .mobile_utility .util-menu.resource_menu .menu-item-has-children .dropdown-toggle {
	 display: none;
}
 .main-navigation-wrapper .mobile_utility ul {
	 display: flex !important;
	 flex-wrap: wrap;
}
 .main-navigation-wrapper .mobile_utility ul li {
	 width: 100%;
	 margin-right: 0;
}
 @media only screen and (min-width: 375px) {
	 .main-navigation-wrapper .mobile_utility ul li {
		 width: 50%;
	}
}
 .main-navigation-wrapper .mobile_utility ul li a {
	 font-size: 16px;
	 font-size: 1rem;
}
 .main-navigation-wrapper .mobile_utility ul li ul {
	 display: none !important;
}
 .primary-menu-wrapper .primary-menu-container {
	 display: flex;
	 justify-content: center;
	 z-index: 1;
}
 @media only screen and (min-width: 1030px) {
	 .primary-menu-wrapper .primary-menu-container {
		 width: 100%;
	}
}
 .primary-menu-wrapper .menu {
	 z-index: 1;
	 opacity: 0;
	 display: block;
}
 @media only screen and (min-width: 1030px) {
	 .primary-menu-wrapper .menu {
		 width: 100%;
		 display: flex;
		 justify-content: flex-end;
	}
}
 .primary-menu-wrapper .mobile-search-form-wrapper {
	 margin: 2.5rem auto 0;
	 z-index: 1;
	 position: relative;
	 opacity: 0;
}
 .primary-menu-wrapper .mobile-search-form-wrapper .search-form {
	 background: #fff;
	 border: 2px solid #ebeef1;
}
 .primary-menu-wrapper .mobile-search-form-wrapper .search-form input {
	 background: transparent;
}
 .primary-menu-wrapper .dropdown-toggle {
	 position: absolute;
	 right: 0;
	 top: 0;
	 padding: 1.325em 0.875em;
	 background: transparent;
	 color: #2c3847;
}
 .primary-menu-wrapper .dropdown-toggle span {
	 display: block;
}
 .primary-menu-wrapper .dropdown-toggle.toggled-on span {
	 -webkit-transform: rotate(180deg);
	 -ms-transform: rotate(180deg);
	 transform: rotate(180deg);
}
 @media only screen and (max-width: 1029px) {
	 .main-navigation.toggled .primary-menu-wrapper {
		 margin-top: 55px;
		 padding-bottom: 30px;
		 z-index: 5;
		 border-top: 5px solid #CD1041;
		 -webkit-transform: none;
		 -ms-transform: none;
		 transform: none;
		 overflow-x: hidden;
		 overflow-y: auto;
		 background-color: #1f2124;
		 pointer-events: auto;
		 -ms-overflow-style: none;
		 scrollbar-width: none;
	}
	 .main-navigation.toggled .primary-menu-wrapper::-webkit-scrollbar {
		 display: none;
	}
	 .main-navigation.toggled .primary-menu-wrapper .menu, .main-navigation.toggled .mobile_utility .util-menu:before {
		 opacity: 1;
	}
	 .main-navigation.toggled .primary-menu-wrapper .mobile-search-form-wrapper {
		 opacity: 1;
	}
	 .main-navigation.toggled .primary-menu-wrapper ul .sub-menu-wrap {
		 display: none;
		 background-color: #1f2124;
		 padding: 12px 16px;
	}
	 .main-navigation.toggled .primary-menu-wrapper ul .sub-menu-wrap li {
		 border-bottom: 0;
	}
	 .main-navigation.toggled .primary-menu-wrapper ul .sub-menu-wrap li a {
		 color: white;
		 font-size: 16px;
		 font-size: 1rem;
		 font-weight: normal;
	}
	 .main-navigation.toggled .primary-menu-wrapper ul .sub-menu-wrap.toggled-on {
		 display: block;
	}
	 .learn-more {
		 position: relative;
		 box-sizing: border-box;
	}
}
 .menu-toggle .lnr-cross {
	 display: none;
}
 .menu-toggle[aria-expanded=true] .lnr-cross {
	 display: block;
}
 .menu-toggle[aria-expanded=true] .lnr-menu {
	 display: none;
}
/* Small menu. */
 @media only screen and (max-width: 1029px) {
	 .menu-toggle, .main-navigation.toggled ul {
		 display: block;
	}
}
 .main-navigation .img-btn-group {
	 display: none;
}
 @media screen and (min-width: 1030px) {
	 .main-navigation .img-btn-group {
		 display: flex;
	}
}
 .main-navigation.toggled .menu-toggle:before {
	 content: "CLOSE";
}
 .main-navigation.toggled .menu-toggle .fa-bars {
	 display: none;
}
 .main-navigation.toggled .menu-toggle .fa-times {
	 display: block;
}
 .main-navigation.toggled .img-btn-group {
	 display: flex;
	 flex-direction: column;
}
 @media only screen and (min-width: 768px) {
	 .main-navigation.toggled .img-btn-group {
		 flex-direction: row;
	}
}
 .main-navigation.toggled .img-btn-group .img-btn {
	 padding: 17px 0 !important;
	 font-size: 16px !important;
	 font-weight: bold;
	 width: 220px;
	 margin: 0 auto 20px;
}
 .search-toggle {
	 border: none;
	 margin: 0;
	 width: 2.5rem;
}
 .search-toggle.small {
	 width: 64px;
}
 @media only screen and (min-width: 768px) {
	 .search-toggle.small {
		 width: auto;
	}
}
 .search-toggle.small:before {
	 content: "SEARCH";
	 color: #fff;
	 font-size: 13px;
	 font-size: 0.8125rem;
	 font-family: "roboto-condensed", sans-serif;
	 font-weight: 700;
	 letter-spacing: 0px;
	 margin-right: 5px;
}
 .search-toggle.small i {
	 font-weight: bold;
	 font-size: 14px;
	 font-size: 0.875rem;
	 transform: rotateY(180deg);
	 color: #CD1041;
}
 .search-toggle.small .fa-times {
	 display: none;
}
 .search-toggle.small.opened:before {
	 content: "CLOSE";
}
 .search-toggle.small.opened .fa-search {
	 display: none;
}
 .search-toggle.small.opened .fa-times {
	 display: block;
}
 .menu-toggle {
	 background: transparent;
	 color: #fff;
	 padding: 0;
	 z-index: 11;
	 font-size: 24px;
	 font-size: 1.5rem;
	 display: flex;
	 align-items: center;
}
 .menu-toggle i {
	 font-weight: bold;
	 font-size: 14px;
	 font-size: 0.875rem;
	 color: #CD1041;
}
 .menu-toggle .fa-times {
	 display: none;
}
 .menu-toggle:before {
	 content: "MENU";
	 color: #fff;
	 font-size: 13px;
	 font-size: 0.8125rem;
	 font-family: "roboto-condensed", sans-serif;
	 font-weight: 700;
	 letter-spacing: 0px;
	 margin-right: 5px;
}
 .menu-toggle:hover {
	 background: transparent;
}
 @media only screen and (min-width: 768px) {
	/*-------------------------------------------------------------- ## Menus --------------------------------------------------------------*/
	 .menu {
		 list-style: none;
	}
	 .menu li {
		 margin-right: 12px;
	}
	 .menu li:last-child {
		 margin-right: 0px;
	}
	 .secondary_menus .utility_menu {
		 margin-left: auto;
	}
	 .secondary_menus .menu li {
		 margin-right: 0;
	}
	 .secondary_menus .menu li.menu-item-has-children {
		 margin-right: 12px;
	}
	 .secondary_menus .menu li.menu-item-has-children:last-child {
		 margin-right: 0;
	}
	 .secondary_menus .menu li a:hover {
		 text-decoration: underline;
	}
	 .main-navigation-wrapper .sub-menu-wrap {
		 width: auto;
		 top: 100%;
	}
	 .main-navigation-wrapper .sub-menu-wrap.wide {
		 max-width: 845;
	}
	 .main-navigation-wrapper .sub-menu-wrap.wider {
		 max-width: 1200px;
	}
	 .main-navigation-wrapper .cat-wrap .b-buttons-group__button_1 {
		 font-size: 14px;
		 font-size: 0.875rem;
	}
	 .main-navigation-wrapper .hidden-links a:before {
		 display: none;
	}
	 .main-navigation-wrapper .hidden-links .sub-menu-wrap {
		 display: none;
	}
	 .main-navigation-wrapper .hidden-links li {
		 float: none;
	}
	 .main-navigation-wrapper .hidden-links li > a {
		 padding: 0.5rem 1.25rem;
		 color: #CD1041 !important;
	}
}
 @media only screen and (min-width: 1030px) {
	/*-------------------------------------------------------------- ## Menus --------------------------------------------------------------*/
	 .secondary_menus ul li.menu-item-has-children > ul {
		 width: calc(100% + 35%);
	}
	 .secondary_menus ul li.menu-item-has-children > ul li {
		 margin-bottom: 8px;
	}
	 .secondary_menus ul li.menu-item-has-children > ul a {
		 line-height: 1.3rem;
		 padding: 0 1.3rem;
	}
	 .main-navigation ul {
		 width: auto;
	}
	 .main-navigation ul li > ul, .main-navigation ul .sub-menu-wrap {
		 color: #2c3847;
		 background: #fff;
		 float: left;
		 position: absolute;
		 display: none;
		 z-index: 99999;
		 padding-top: 1.25rem;
		 padding-bottom: 1.25rem;
		 padding-left: 0;
		 -webkit-box-shadow: 2px 5px 43px 0 rgba(138, 164, 181, 0.28);
		 box-shadow: 2px 5px 43px 0 rgba(138, 164, 181, 0.28);
	}
	 .main-navigation ul li:last-of-type > .sub-menu-wrap {
		 left: auto;
	}
	 .main-navigation ul li > .sub-menu-wrap {
		 background-color: transparent;
		 padding: 0;
		 left: 50%;
		 float: none;
		 box-shadow: none;
		 transform: translateX(-50%);
		 z-index: 10;
	}
	 .main-navigation ul li > .sub-menu-wrap::before {
		 content: "";
		 background: #000;
		 width: 100%;
		 height: 14px;
		 position: relative;
		 display: block;
	}
	 .main-navigation ul li > .sub-menu-wrap .menu-content {
		 background-color: #1f2124;
		 padding: 45px;
		 border-bottom: 2px solid #000;
		 border-left: 1px solid #000;
		 border-right: 1px solid #000;
	}
	 .main-navigation ul li > .sub-menu-wrap .menu-content::after {
		 content: "";
		 position: absolute;
		 top: 0;
		 left: 0;
		 width: 100%;
		 height: 6px;
		 background-color: #CD1041;
		 z-index: 10;
	}
	 .main-navigation ul li > .sub-menu-wrap .sub-menu-wrap {
		 padding: 0.75rem;
		 display: none;
	}
	 .main-navigation ul li > .sub-menu-wrap .sub-menu-wrap ul:before {
		 display: none;
	}
	 .main-navigation ul li > .sub-menu-wrap .sub-menu li, .main-navigation ul li > .sub-menu-wrap .sub-menu a {
		 color: white !important;
		 text-transform: none;
	}
	 .main-navigation ul li > .sub-menu-wrap .sub-menu li {
		 padding-right: 0.5rem;
	}
	 .main-navigation ul li > .sub-menu-wrap .sub-menu a {
		 line-height: 1.3rem;
	}
	 .main-navigation ul li > .sub-menu-wrap .menu-content > ul a {
		 padding: 0.5rem 0;
		 font-size: 16px;
		 font-size: 1rem;
		 font-family: "roboto", sans-serif;
		 font-weight: normal;
	}
	 .main-navigation ul li > .sub-menu-wrap .menu-content > ul a::after {
		 content: "";
		 display: inline-block;
		 text-decoration: none;
		 opacity: 0;
		 color: #CD1041;
		 font-family: "Font Awesome 5 Free";
		 font-weight: bold;
		 font-size: 10px;
		 font-size: 0.625rem;
		 padding-left: 10px;
		 line-height: 1;
	}
	 .main-navigation ul li > .sub-menu-wrap .menu-content > ul a:hover {
		 text-decoration: underline;
	}
	 .main-navigation ul li > .sub-menu-wrap .menu-content > ul a:hover::after {
		 opacity: 1;
	}
	 .main-navigation ul li > .sub-menu-wrap .menu-content {
		 position: relative;
		 display: flex;
	}
	 .main-navigation ul li > .sub-menu-wrap .menu-content .menu-headline-wrapper {
		 display: block;
		 min-width: 255px;
		 margin-right: 30px;
	}
	 .main-navigation ul li > .sub-menu-wrap .menu-content h2 {
		 color: white;
		 font-size: 36px;
		 font-size: 2.25rem;
		 font-family: "roboto", sans-serif;
		 margin-bottom: 20px;
	}
	 .main-navigation ul li > .sub-menu-wrap .menu-content .cat-wrap .b-buttons-group__button_1 {
		 padding: 0.5em 2em;
		 font-weight: bold;
		 display: inline-block;
	}
	 .main-navigation .current_page_item > a, .main-navigation .current-menu-item > a, .main-navigation .current_page_ancestor > a, .main-navigation .current-menu-ancestor > a {
		 color: #8f4ec7;
	}
	 .main-navigation ul ul ul {
		 top: 0;
	}
	 .main-navigation ul ul a {
		 width: 230px;
		 padding: 0.75rem 2rem;
	}
	 .main-navigation li {
		 width: auto;
		 float: left;
		 position: relative;
	}
	 .main-navigation .menu-item-has-children > a {
		 padding-right: 1.25rem;
		 position: relative;
	}
	 .main-navigation .menu-item-has-children > a:before {
		 content: "";
		 position: absolute;
		 bottom: -14px;
		 transform: translateX(-50%);
		 left: 50%;
		 width: 0;
		 height: 0;
		 border-left: 10px solid transparent;
		 border-right: 10px solid transparent;
		 border-bottom: 10px solid #CD1041;
		 visibility: hidden;
		 opacity: 0;
		 z-index: 11;
	}
	 .primary-menu-wrapper {
		 overflow: visible;
		 padding: 0;
		 z-index: 10;
		 height: initial;
		 -webkit-transform: none;
		 -ms-transform: none;
		 transform: none;
		 position: static;
		 top: initial;
		 background: transparent;
		 min-height: auto;
		 pointer-events: auto;
	}
	 .primary-menu-wrapper:after {
		 display: none;
	}
	 .primary-menu-wrapper .primary-menu-container {
		 display: block;
	}
	 .primary-menu-wrapper .menu {
		 opacity: 1;
		 max-width: none;
	}
	 .primary-menu-wrapper .mobile-search-form-wrapper {
		 display: none;
	}
	 .primary-menu-wrapper .dropdown-toggle {
		 display: none;
	}
	 .main-navigation.toggled .primary-menu-wrapper ul .sub-menu-wrap {
		 display: block;
		 position: absolute;
		 right: 0;
	}
	 .menu-toggle {
		 display: none;
	}
	 .main-navigation ul {
		 display: block;
	}
	/*-------------------------------------------------------------- # Main Navigation (again for some reason...) --------------------------------------------------------------*/
	 .main-navigation-wrapper {
		 position: relative;
	}
	 .main-navigation-wrapper .mobile_utility {
		 display: none !important;
	}
	 .main-navigation-wrapper .main-navigation .menu-item-has-children {
		 position: relative;
	}
	 .main-navigation-wrapper .main-navigation .menu-item-has-children > a {
		 padding: 1rem 1.25rem;
	}
	 .main-navigation-wrapper .main-navigation .nav-menu li {
		 border-bottom: none;
	}
	 .main-navigation-wrapper .main-navigation li:hover > a {
		 color: #fff;
	}
	 .main-navigation-wrapper .main-navigation li > a {
		 padding: 1rem 1.25rem;
		 color: #fff;
		 font-weight: 500;
		 font-size: 18px;
		 font-size: 1.125rem;
		 text-transform: uppercase;
	}
	 .main-navigation-wrapper .main-navigation li > a::after {
		 font-weight: bold;
	}
	 .main-navigation-wrapper .main-navigation .menu-item-has-children > a::after {
		 font-family: "Font Awesome 5 Free";
		 content: "";
		 position: absolute;
		 right: -5px;
		 top: 44%;
		 -webkit-transform: translateX(-50%);
		 transform: translateX(-50%);
		 width: 0;
		 height: 0;
		 transform: rotate(90deg);
		 display: block;
	}
	 .primary-menu-wrapper {
		 margin-top: 0;
		 display: -webkit-box;
		 display: -ms-flexbox;
		 display: flex;
		 -webkit-box-align: center;
		 -ms-flex-align: center;
		 align-items: center;
	}
	 .primary-menu-more {
		 display: block;
	}
	 .secondary_menus {
		 display: flex;
		 position: sticky;
		 top: -44px;
		 transition: top 250ms ease-out;
	}
	 .secondary_menus.scroll-up {
		 top: 0px;
	}
	 .secondary_header {
		 display: block;
	}
	 .secondary_header .wrapper {
		 padding: 0 1.5625rem;
		 margin: 0 auto;
	}
	 .secondary_header ul {
		 display: flex;
		 margin: 0;
		 position: relative;
		 color: white;
		 font-size: 13px;
		 font-size: 0.8125rem;
	}
	 .secondary_header ul li a {
		 color: white;
		 font-size: 13px;
		 font-size: 0.8125rem;
		 padding: 0.65rem 0;
		 display: block;
	}
	 .secondary_header ul li a:hover {
		 text-decoration: none;
		 opacity: 0.8;
	}
	 .secondary_header ul li.right {
		 margin: 0;
	}
	 .secondary_header ul li.right.first {
		 margin-left: auto;
		 border-left: 1px solid #36227c;
	}
	 .secondary_header ul li.right a {
		 padding: 0.5rem 1rem;
		 text-transform: uppercase;
		 border-right: 1px solid #36227c;
		 font-family: "interstate-condensed", sans-serif;
		 font-size: 16px;
		 font-size: 1rem;
	}
}
/*-------------------------------------------------------------- # Masthead --------------------------------------------------------------*/
 .masthead {
	 background: #ffd200;
	 color: #000;
	 padding: 15px 1.25rem;
	 font-size: 14px;
	 font-size: 0.875rem;
	 z-index: 30;
}
 @media only screen and (min-width: 1030px) {
	 .masthead {
		 padding: 15px 2.5rem;
		 font-size: 16px;
		 font-size: 1rem;
	}
}
 .masthead__inner {
	 display: flex;
	 flex-direction: row;
}
 .masthead i {
	 margin-right: 15px;
	 top: 5px;
}
 .connect {
	 background: #ededed;
	 padding: 50px 20px;
	 width: 100%;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 flex-direction: column;
}
 .connect h2 {
	 font-family: "roboto-condensed", sans-serif;
	 font-weight: bold;
	 font-size: 20px;
	 font-size: 1.25rem;
	 width: auto;
	 margin-bottom: 25px;
}
 .connect ul {
	 list-style-type: none;
	 margin: 0;
	 padding: 0;
	 display: flex;
	 flex-wrap: wrap;
}
 @media only screen and (min-width: 1030px) {
	 .connect ul {
		 flex-wrap: nowrap;
	}
}
 .connect li {
	 margin: 0 0 15px 15px;
	 flex: 1 1 auto;
}
 .connect li:first-of-type {
	 margin-left: 0;
}
 @media only screen and (min-width: 1030px) {
	 .connect li {
		 margin: 0 0 0 20px;
	}
}
 .connect a {
	 text-decoration: none;
	 padding: 5px;
}
 .connect a:hover i {
	 color: #CD1041;
}
 .connect i {
	 font-size: 32px;
	 font-size: 2rem;
	 color: #000;
}
 .sidebar {
	 background: #1f2124;
	 color: #fff;
	 padding: 20px 0;
	 order: 2;
	 position: fixed;
	 left: -100%;
	 transition: left 250ms ease-out;
	 z-index: 20;
	 box-shadow: 1px 0 10px rgba(0, 0, 0, 0.5);
}
 @media only screen and (min-width: 1030px) {
	 .sidebar {
		 padding: 0;
		 align-self: start;
		 position: sticky;
		 top: 85px;
		 transition: top 250ms ease-out;
		 order: 1;
		 box-shadow: none;
	}
}
 @media only screen and (max-width: 600px) {
	 .sidebar {
		 max-width:300px;
	}
}
 .sidebar::after {
	 content: "";
	 font-family: "Font Awesome 5 Free";
	 font-weight: bold;
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 width: 100%;
	 height: 50px;
	 background: linear-gradient(0deg, #1f2124 0%, #1f2124 75%, rgba(31, 33, 36, 0) 100%);
	 z-index: 10;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 opacity: 1;
	 transition: opacity 250ms ease-out;
}
 .sidebar--visible {
	 left: 0;
}
 .sidebar--visible .sidebar__close-trigger {
	 opacity: 1;
	 transition: opacity 250ms ease-out 250ms;
}
 .sidebar--scroll-max::after {
	 opacity: 0;
}
 @media only screen and (min-width: 1030px) {
	 .sidebar.scroll-up {
		 top: 132px;
	}
	 .sidebar.scroll-up .sidebar__inner {
		 height: calc(100vh - 133px);
	}
}
 .sidebar__inner {
	 overflow-y: scroll;
	 height: calc(100vh - 82px);
	 -ms-overflow-style: none;
	 scrollbar-width: none;
	 padding: 0 20px;
}
 .sidebar__inner::-webkit-scrollbar {
	 display: none;
}
 @media only screen and (min-width: 1030px) {
	 .sidebar__inner {
		 transition: height 250ms ease-out;
		 padding: 30px;
	}
}
 .sidebar__title {
	 font-family: "interstate-condensed", sans-serif;
	 font-weight: 500;
	 font-size: 22px;
	 font-size: 1.375rem;
	 line-height: 1.625rem;
	 color: inherit;
	 text-transform: uppercase;
}
 .sidebar__title a:hover {
	 text-decoration: none;
	 color: #ccc;
	 cursor: pointer;
}
 .sidebar__nav i {
	 position: absolute;
	 right: 0;
	 top: 5px;
	 z-index: 1;
	 transition: transform 100ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
 @media only screen and (min-width: 1030px) {
	 .sidebar__nav i {
		 right: -15px;
	}
}
 .sidebar__nav i.fa-chevron-right:before {
	 cursor: pointer;
}
 .sidebar__close-trigger {
	 position: absolute;
	 top: 20px;
	 right: 10px;
	/* KD changed from -30px to work on mobile */
	 opacity: 0;
	 transition: opacity 250ms ease-out;
	 width: auto;
}
 @media only screen and (min-width: 1030px) {
	 .sidebar__close-trigger {
		 display: none;
	}
}
 .sidebar__close-trigger::after {
	 display: none;
}
 .sidebar ul {
	 list-style-type: none;
	 margin: 0;
	 padding: 0;
}
 .sidebar ul .sidebar__sub-nav {
	 opacity: 0;
	 display: none;
	 padding-left: 20px;
	 margin: 10px 0;
}
 .sidebar ul .sidebar__sub-nav li.current-page > a::before {
	 left: -40px;
}
 @media only screen and (min-width: 1030px) {
	 .sidebar ul .sidebar__sub-nav li.current-page > a::before {
		 left: -50px;
	}
}
 .sidebar ul .sidebar__sub-nav .sidebar__sub-nav li.current-page > a::before {
	 left: -60px;
}
 @media only screen and (min-width: 1030px) {
	 .sidebar ul .sidebar__sub-nav .sidebar__sub-nav li.current-page > a::before {
		 left: -70px;
	}
}
 .sidebar li {
	 margin: 16px 0;
}
 .sidebar li:first-of-type {
	 margin-top: 0;
}
 .sidebar li:last-of-type {
	 margin-bottom: 0;
}
 .sidebar li.expanded > .sidebar__sub-nav {
	 opacity: 1;
	 display: block;
}
 .sidebar li.expanded > i {
	 transform: rotate(90deg);
}
 .sidebar li.current-page > a::before {
	 content: "";
	 width: 3px;
	 height: 100%;
	 background: #CD1041;
	 position: absolute;
	 left: -20px;
	 top: 0;
}
 @media only screen and (min-width: 1030px) {
	 .sidebar li.current-page > a::before {
		 left: -30px;
	}
}
 .sidebar a {
	 display: block;
	 width: 100%;
	 padding: 0 20px 0 0;
	/* KD - changed from 0 for arrow and X spacing */
	 text-decoration: none;
	 color: inherit;
	 line-height: 1.4rem;
}
 .sidebar a:hover {
	 text-decoration: underline;
}
 .sidebar a.sidebar__back {
	 background: #272B31;
	 display: block;
	 color: #cccccc;
	 margin: 10px 0;
	 padding: 8px 0;
	 left: -20px;
	 width: calc(100% + 40px);
}
 @media only screen and (min-width: 1030px) {
	 .sidebar a.sidebar__back {
		 width: calc(100% + 60px);
		 left: -30px;
	}
}
 .sidebar a.sidebar__back:hover span {
	 text-decoration: underline;
}
 .sidebar a.sidebar__back span {
	 left: 20px;
	 display: inline-block;
	 width: calc(100% - 30px);
}
 @media only screen and (min-width: 1030px) {
	 .sidebar a.sidebar__back span {
		 left: 30px;
		 width: calc(100% - 40px);
	}
}
 .sidebar a.sidebar__back i {
	 right: auto;
	 transform: translate(5px, -50%);
	 top: 50%;
	 display: inline-block;
	 position: absolute;
}
 .sidebar__separator {
	 border-top: 1px dotted #ededed;
	 margin-top: 0.875rem !important;
	 padding-top: 0.875rem !important;
}
/* Templates */
 .page {
	 order: 1;
	/** | ---------------------------------------------------------------------- | Various HTML element overrides within the .page wrapper | ---------------------------------------------------------------------- */
}
 @media only screen and (min-width: 1030px) {
	 .page {
		 order: 2;
	}
}
 .page h1, .page h2, .page h3, .page h4, .page h5, .page h6, .page p, .page ul, .page ol, .page dl, .page embed {
	 max-width: 1200px;
}
 .page a {
	 color: #CD1041;
}
 .page h2 {
	 color: #CD1041;
}
 .page h3 {
	 color: #333333;
}
 .page__content {
	 padding: 50px 20px;
}
 @media only screen and (min-width: 1030px) {
	 .page__content {
		 padding: 68px 68px;
	}
}
.page__content > div:not(.hero), .page__content > section:not(.hero) {
	 margin-bottom: 3.5rem;
	 /* SCSU - Change from 7.5rem to 3.5rem to decrease spacing */
}
 .page__content > div:not(.hero):last-of-type, .page__content > section:not(.hero):last-of-type {
	 margin-bottom: 0 !important;
}
/* SCSU - Applies padding to all except area directly below banner header */
.general-content:not(.page__content > .general-content) {
	 padding: 3.5rem 0;
}
/* SCSU - Need static positioning to ensure all links work in floated columns */
 .page__content > div:not(.hero):last-of-type {
     position: static;
 }
 .page .fullwidth {
	 width: calc(100% + (20px * 2)) !important;
	 transform: translateX(calc(20px * -1)) !important;
}
 @media only screen and (min-width: 1030px) {
	 .page .fullwidth {
		 width: calc(100% + (68px * 2)) !important;
		 transform: translateX(calc(68px * -1)) !important;
	}
	 .learn-more.fullwidth {
		 width: calc(100% + (82px * 2)) !important;
	}
}
 @media only screen and (min-width: 1030px) {
	 .page .related-content {
		 padding-left: 68px;
	}
}
 @media only screen and (min-width: 1030px) {
	 .page .related-content__menu {
		 justify-content: flex-start;
	}
}
 @media only screen and (min-width: 1030px) {
	 .page .stats {
		 padding: 2.5rem 68px;
	}
}
 .landing h1, .landing h2, .landing h3, .landing h4, .landing h5, .landing h6, .landing p, .landing ul, .landing ol, .landing dl, .landing embed {
	 max-width: 1200px;
}
 .landing > div:not(.hero), .landing > section:not(.hero) {
	 margin-bottom: 3.5rem !important;
}
 @media only screen and (min-width: 1030px) {
	 .landing > div:not(.hero), .landing > section:not(.hero) {
		 margin-bottom: 7.5rem !important;
	}
}
 .landing > div:not(.hero):last-of-type, .landing > section:not(.hero):last-of-type {
	 margin-bottom: 0 !important;
}
/* Components */
 .accreditation {
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 flex-direction: column;
	 max-width: 800px;
	 margin: 0 auto;
	 padding: 2.5rem 1.25rem;
	 text-align: center;
}
 @media only screen and (min-width: 768px) {
	 .accreditation {
		 flex-direction: row;
		 text-align: left;
	}
}
 @media only screen and (min-width: 1030px) {
	 .accreditation {
		 padding: 2.5rem 0;
	}
}
 .accreditation img {
	 margin: 0 0 40px 0;
}
 @media only screen and (min-width: 768px) {
	 .accreditation img {
		 margin: 0 40px 0 0;
		 flex: 0 0 30%;
	}
}
 @media only screen and (min-width: 768px) {
	 .accreditation > div {
		 flex: 0 0 calc(70% - 40px);
	}
}
 .accreditation__title {
	 color: #CD1041;
	 font-size: 26px;
	 font-size: 1.625rem;
	 line-height: 30px;
	 margin-bottom: 20px;
}
 @media only screen and (min-width: 768px) {
	 .accreditation__title {
		 font-size: 32px;
		 font-size: 2rem;
		 line-height: 36px;
	}
}
 .blockquote {
	 background-repeat: no-repeat;
	 background-size: cover;
	 background-position: center;
	 background-color: #000;
	/* a11y - overlay text might get dinged on rating w/o this */
	 width: 100%;
	 margin: 0;
	 background-color: #CD1041;
	 color: #fff;
	 text-align: center;
}
 .blockquote::after {
	 content: "";
	 display: block;
	 background-repeat: no-repeat;
	 background-size: cover;
	 background-position: center;
	 background-color: #000;
	/* a11y - overlay text might get dinged on rating w/o this */
	 background-color: #CD1041;
	 background-blend-mode: multiply;
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 pointer-events: none;
	 opacity: 0.28;
}
 .blockquote a {
	 color: #fff;
}
 .blockquote blockquote {
	 margin: 0;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 padding: 140px 20px 190px;
	 z-index: 1;
}
 @media only screen and (min-width: 1030px) {
	 .blockquote blockquote {
		 padding: 170px 20px 210px;
	}
}
 .blockquote blockquote::before, .blockquote blockquote::after {
	 content: "";
	 background: transparent url("https://wwwdev.campus.stcloudstate.edu/_scsu2021/_files/img/blockquote.png") center no-repeat;
	 background-size: contain;
	 width: 47px;
	 height: 37px;
	 position: absolute;
	 left: 50%;
	 transform: translateX(-50%);
}
 .blockquote blockquote::before {
	 top: 77px;
	 transform: translateX(-50%) rotate(180deg);
}
 .blockquote blockquote::after {
	 bottom: 77px;
}
 .blockquote blockquote p {
	 max-width: 620px;
	 width: 100%;
	 font-weight: bold;
	 font-size: 20px;
	 font-size: 1.25rem;
	 line-height: 28px;
}
 @media only screen and (min-width: 1030px) {
	 .blockquote blockquote p {
		 font-size: 24px;
		 font-size: 1.5rem;
		 line-height: 36px;
	}
}
 .blockquote blockquote p::before {
	 content: "“";
}
 .blockquote blockquote p::after {
	 content: "”";
}
 .blockquote figcaption {
	 color: inherit;
	 z-index: 1;
	 font-family: "interstate-condensed", sans-serif;
	 font-size: 14px;
	 font-size: 0.875rem;
	 line-height: 20px;
	 position: absolute;
	 bottom: 145px;
	 left: 50%;
	 transform: translateX(-50%);
	 width: 100%;
	 max-width: 600px;
	 padding: 0 20px;
}
 @media only screen and (min-width: 1030px) {
	 .blockquote figcaption {
		 font-size: 20px;
		 font-size: 1.25rem;
		 line-height: 28px;
		 bottom: 160px;
	}
}
 .carousel {
	 width: 100%;
	 overflow: hidden;
	/** * Slick slider specifics */
}
 .carousel a {
	 color: white;
	 text-decoration: underline;
}
 .carousel a:hover {
	 text-decoration: none;
}
 .carousel__slide {
	 height: 100%;
}
 @media only screen and (min-width: 768px) {
	 .carousel__slide::after {
		 content: "";
		 position: absolute;
		 top: 0;
		 left: 0;
		 width: 100%;
		 height: 100%;
		 background: rgba(0, 0, 0, 0.15);
		 pointer-events: none;
		 background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 45%);
	}
}
 .carousel__slide p {
	 padding: 30px 20px;
	 background: #ededed;
}
 @media only screen and (min-width: 768px) {
	 .carousel__slide p {
		 background: transparent;
		 position: absolute;
		 bottom: 60px;
		 left: 50%;
		 transform: translateX(-50%);
		 width: 100%;
		 max-width: 800px;
		 padding: 0 30px;
		 color: #fff;
		 z-index: 1;
	}
}
 .carousel .slick-list, .carousel .slick-track {
	 height: 100%;
}
 .carousel .slick-dots {
	 top: calc(56.25% - 50px);
	 bottom: auto;
}
 @media only screen and (min-width: 375px) {
	 .carousel .slick-dots {
		 top: calc(56.25% - 30px);
	}
}
 @media only screen and (min-width: 768px) {
	 .carousel .slick-dots {
		 bottom: 25px;
		 top: auto;
	}
}
 @media only screen and (min-width: 1030px) {
	 .carousel .slick-dots {
		 left: 50%;
		 transform: translateX(-50%);
	}
}
 .carousel .slick-dots li {
	 width: 10px;
	 height: 10px;
}
 .carousel .slick-dots li button::before {
	 margin: 0;
}
 .carousel .slick-dots li button .slick-dot-icon {
	 color: white;
}
 .carousel .slick-dots li button .slick-dot-icon::before {
	 content: "";
	 border: 1px solid white;
	 border-radius: 50%;
	 height: 5px;
	 width: 5px;
}
 .carousel .slick-dots li.slick-active button .slick-dot-icon {
	 color: white;
}
 .carousel .slick-dots li.slick-active button .slick-dot-icon::before {
	 margin-top: 0;
	 margin-left: 0;
	 color: white;
}
 .carousel .slick-prev, .carousel .slick-next {
	 top: 25%;
}
 @media only screen and (min-width: 375px) {
	 .carousel .slick-prev, .carousel .slick-next {
		 top: 30%;
	}
}
 @media only screen and (min-width: 768px) {
	 .carousel .slick-prev, .carousel .slick-next {
		 top: 50%;
	}
}
 .carousel .slick-prev:hover, .carousel .slick-next:hover {
	 background: transparent;
}
 .carousel .slick-prev:focus, .carousel .slick-next:focus {
	 top: 25%;
}
 @media only screen and (min-width: 375px) {
	 .carousel .slick-prev:focus, .carousel .slick-next:focus {
		 top: 30%;
	}
}
 @media only screen and (min-width: 768px) {
	 .carousel .slick-prev:focus, .carousel .slick-next:focus {
		 top: 50%;
	}
}
 .carousel .slick-next {
	 right: 6%;
}
 .carousel .slick-next .slick-next-icon {
	 font-family: "Font Awesome 5 Free";
	 font-weight: bold;
	 font-size: 50px;
	 line-height: 1;
	 color: white;
	 opacity: 1;
}
 .carousel .slick-next .slick-next-icon::before {
	 content: "";
}
 .carousel .slick-next:focus .slick-next-icon {
	 color: white;
	 font-size: 50px;
}
 .carousel .slick-prev {
	 left: 6%;
	 z-index: 1;
}
 .carousel .slick-prev .slick-prev-icon {
	 font-family: "Font Awesome 5 Free";
	 font-weight: bold;
	 font-size: 50px;
	 line-height: 1;
	 color: white;
	 opacity: 1;
}
 .carousel .slick-prev .slick-prev-icon::before {
	 content: "";
}
 .carousel .slick-prev:focus .slick-prev-icon {
	 color: white;
	 font-size: 50px;
}
 .headline {
	 background: #CD1041;
	 color: #fff;
	 overflow: hidden;
}
 @media only screen and (min-width: 1030px) {
	 .headline {
		 display: flex;
		 align-items: stretch;
	}
}
 @media only screen and (min-width: 1030px) {
	 .headline > div {
		 flex: 0 0 50%;
	}
}
 .headline > div:first-of-type {
	 padding: 82px 20px;
}
 @media only screen and (min-width: 1030px) {
	 .headline > div:first-of-type {
		 padding: 82px 68px;
	}
}
 .headline > div:last-of-type > div {
	 background-repeat: no-repeat;
	 background-size: cover;
	 background-position: top center;
	 background-color: #000;
	/* a11y - overlay text might get dinged on rating w/o this */
	 width: 100%;
	 position: absolute;
	 top: 0;
	 right: 0;
	 height: 100%;
	 max-width: 600px;
}
 .headline__title {
	 text-transform: uppercase;
	 font-size: 40px;
	 font-size: 2.5rem;
	 font-family: "interstate-condensed", sans-serif;
	 font-weight: 500;
	 line-height: 40px;
	 color: inherit;
	 margin-top: 1rem;
}
 .headline__eyebrow {
	 font-size: 14px;
	 font-size: 0.875rem;
}
 .headline__sublinks {
	 list-style-type: none;
	 margin: 2rem 0 0 0;
	 padding: 0 !important;
	 display: flex;
	 flex-direction: column;
	 justify-content: flex-start;
}
 @media only screen and (min-width: 375px) {
	 .headline__sublinks {
		 flex-direction: row;
		 flex-wrap: wrap;
	}
}
 .headline__sublinks li {
	 margin: 0 0 1rem;
}
 @media only screen and (min-width: 375px) {
	 .headline__sublinks li {
		 margin: 0 1rem 1rem 0;
	}
}
 .headline__sublinks i {
	 margin-right: 5px;
}
 .headline__sublinks a {
	 color: #fff;
}
 .headline__sidebar-toggle {
	 position: relative;
	 top: 20px;
	 left: 20px;
	 z-index: 1;
	 width: auto;
}
 @media only screen and (min-width: 1030px) {
	 .headline__sidebar-toggle {
		 display: none;
	}
}
 .headline__sidebar-toggle::after {
	 display: none;
}
 .faculty-staff {
	 display: flex;
	 flex-direction: column;
	 align-items: stretch;
	 color: #333333;
}
 @media only screen and (min-width: 1280px) {
	 .faculty-staff {
		 flex-direction: row;
		 flex-wrap: wrap;
	}
}
 .faculty-staff h2, .faculty-staff h3 {
	 color: #000;
	 font-size: 20px;
	 font-size: 1.25rem;
	 line-height: 24px;
	 margin: 0 0 1rem;
}
 .faculty-staff ul {
	 list-style-type: none;
	 margin: 0 0 1rem;
	 padding: 0;
}
 .faculty-staff li {
	 margin-bottom: 0;
	 line-height: 1.4rem;
}
 .faculty-staff p {
	 line-height: 1.4rem;
}
 .faculty-staff__item {
	 background: #ededed;
	 color: #333333;
	 flex: 0 0 100%;
	 display: flex;
	 flex-direction: column;
	 padding: 1.5rem;
	 margin: 0 0 1.5rem;
}
 @media only screen and (min-width: 768px) {
	 .faculty-staff__item {
		 flex-direction: row;
	}
}
 @media only screen and (min-width: 1280px) {
	 .faculty-staff__item {
		 flex: 0 0 calc(50% - 1.5rem);
		 margin: 0 1.5rem 1.5rem 0;
		 padding: 0;
	}
	 .faculty-staff__item img {
		 padding: 1.5rem 0 0 1.5rem;
		 margin-right: 0;
	}
	 .faculty-staff__content {
		 padding: 1.5rem;
	}
	 .faculty-staff__item:nth-child(even) {
		 margin-right: 0;
	}
}
 .faculty-staff__image {
	 width: 100%;
	 margin: 0 0 1.5rem 0;
	 width: 100px;
	 height: 100px;
}
 @media only screen and (min-width: 768px) {
	 .faculty-staff__image {
		 width: 100px;
		 height: 100px;
		 flex: 0 0 100px;
		 margin: 0 1.5rem 0 0;
	}
}
 .faculty-staff__content {
	 flex: 0 1 auto;
}
 .faculty-staff__contact {
	 margin-top: 20px;
}
 .faculty-staff__contact .nostyle--link {
	 color: #333333;
}
 .feature-cards > div {
	 background-repeat: no-repeat;
	 background-size: cover;
	 background-position: center;
	 background-color: #000;
	/* a11y - overlay text might get dinged on rating w/o this */
	 background-color: transparent;
	 background-size: 104%;
	 height: 100vw;
	 display: flex;
	 flex-direction: column;
	 justify-content: flex-end;
	 align-items: center;
	 padding: 0 20px 20px;
	 color: #fff;
	 transition: background-size 250ms ease-out;
}
 @media only screen and (min-width: 768px) {
	 .feature-cards > div {
		 height: 50vw;
	}
}
 @media only screen and (min-width: 1030px) {
	 .feature-cards > div {
		 height: calc(100vw / 3);
	}
}
 .feature-cards > div::after {
	 content: "";
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background: rgba(0, 0, 0, 0.15);
	 pointer-events: none;
	 background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 65%);
}
 .feature-cards > div:hover {
	 background-size: 110%;
	 transition: background-size 1200ms ease-out;
}
 .feature-cards > div:hover span {
	 text-decoration: underline;
}
 .feature-cards > div > * {
	 z-index: 1;
}
 .feature-cards > div > div {
	 text-align: center;
	 width: 100%;
	 max-width: 80%;
}
 .feature-cards p {
	 margin-bottom: 0.5rem;
}
 .feature-cards span {
	 text-decoration: none;
	 text-transform: uppercase;
	 font-family: "roboto-condensed", sans-serif;
	 font-weight: 700;
	 font-size: 12px;
	 font-size: 0.75rem;
}
 .feature-cards a {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 z-index: 1;
}
 .feature-cards__title {
	 font-family: "roboto", sans-serif;
	 font-weight: 700;
	 font-size: 24px;
	 font-size: 1.5rem;
	 color: inherit;
	 text-transform: uppercase;
	 margin-bottom: 0.5rem;
}
 .feature-grid {
	 width: 100%;
	 padding: 5rem 1.25rem 2.5rem;
	 color: #000;
}
 @media only screen and (min-width: 1030px) {
	 .feature-grid {
		 padding: 5rem 68px 2.5rem;
	}
}
 .feature-grid::before {
	 content: "";
	 background: #C4D2D6;
	 width: 100%;
	 height: 100%;
	 position: absolute;
	 top: 0;
	 left: 0;
}
 .feature-grid__title {
	 font-family: "roboto-condensed", sans-serif;
	 font-weight: 700;
	 font-size: 24px;
	 font-size: 1.5rem;
	 line-height: 30px;
	 color: #000 !important;
	 text-transform: uppercase;
	 width: 100%;
	 text-align: center;
	 margin-left: auto;
	 margin-right: auto;
	 margin-bottom: 3rem;
	 position: relative;
	 /*SCSU - Add relative positioning*/
}
 @media only screen and (min-width: 1030px) {
	 .feature-grid__title {
		 font-size: 32px;
		 font-size: 2rem;
		 line-height: 38px;
	}
}
 .feature-grid__more {
	 width: 100%;
	 text-align: center;
	 margin: 2rem auto 0;
}
 @media only screen and (min-width: 768px) {
	 .feature-grid__more {
		 margin: 3rem auto 0;
	}
}
 .feature-grid__more a {
	 color: #000;
	 text-decoration: none;
	 text-transform: uppercase;
	 font-family: "interstate-condensed", sans-serif;
	 font-size: 20px;
	 font-size: 1.25rem;
}
 .feature-grid__more a::after {
	 content: ">";
	 display: inline-block;
	 padding-left: 5px;
	 color: inherit;
}
 .feature-grid__more a:hover {
	 text-decoration: underline;
}
 .feature-grid__items {
	 display: flex;
	 flex-direction: column;
}
 @media only screen and (min-width: 768px) {
	 .feature-grid__items {
		 flex-direction: row;
	}
}
 .feature-grid__item {
	 flex: 0 0 100%;
	 margin: 0 0 3rem;
	 text-decoration: none;
}
 @media only screen and (min-width: 768px) {
	 .feature-grid__item {
		 flex: 0 0 calc((100% / 3) - 1rem);
		 margin: 0 1.5rem 0 0;
	}
	 .feature-grid__item:nth-child(3n) {
		 margin-right: 0;
	}
}
 .feature-grid__item img {
	 margin-bottom: 20px;
}
 .feature-grid__item strong {
	 font-size: 20px;
	 font-size: 1.25rem;
	 line-height: 24px;
	 margin-bottom: 40px;
	/* make space for the <span> tag galavanting as an anchor */
	 display: block;
	 color: #000;
	 text-decoration: none;
}
 .feature-grid__item span {
	 position: absolute;
	 bottom: 0;
	 left: 0;
}
 .feature-grid__item:hover span {
	 text-decoration: underline !important;
}
 .feature-photo {
	 width: 100%;
	 padding-top: calc(100vw * 1.5);
}
 @media only screen and (min-width: 1030px) {
	 .feature-photo {
		 padding-top: calc(100vw / 3);
	}
}
 .feature-photo__background-image {
	 width: 100%;
	 height: 100%;
	 left: 0;
	 top: 0;
	 position: absolute;
	 object-fit: cover;
	 overflow: hidden;
}
 .feature-photo__background-image img {
	 object-fit: cover;
}
 @media screen and (min-width: 768px) and (max-width: 1030px) {
	 .feature-photo__background-image img {
		 height: 100%;
	}
}
 .feature-photo > div {
	 position: absolute;
	 left: 50%;
	 bottom: 50px;
	 transform: translateX(-50%);
	 display: flex;
	 flex-direction: column;
	 width: calc(100% - 40px);
}
 @media only screen and (min-width: 768px) {
	 .feature-photo > div {
		 width: auto;
	}
}
 @media only screen and (min-width: 1030px) {
	 .feature-photo > div {
		 top: 50%;
		 right: 50px;
		 left: auto;
		 bottom: auto;
		 transform: translate(-50%, -50%);
	}
}
 .feature-photo a {
	 margin-bottom: 10px;
	 white-space: nowrap;
}
 .full-screen-cta {
	 width: 100%;
	 display: flex;
	 flex-direction: column;
}
 @media only screen and (min-width: 768px) {
	 .full-screen-cta {
		 display: flex;
		 align-items: flex-end;
		 justify-content: flex-end;
		 padding-top: calc(100% - 55px);
		 height: 0;
	}
}
 @media only screen and (min-width: 768px) {
	 .full-screen-cta:after {
		 content: "";
		 position: absolute;
		 top: 0;
		 left: 0;
		 width: 100%;
		 height: 100%;
		 background: rgba(0, 0, 0, 0.15);
		 pointer-events: none;
	}
}
 .full-screen-cta button {
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%);
	 border-radius: 50%;
	 width: 86px;
	 height: 86px;
	 background: #CD1041;
	 padding: 0;
	 z-index: 1;
}
 .full-screen-cta button:hover {
	 background: #9e0c32;
}
 .full-screen-cta button i {
	 line-height: 1;
	 font-size: 40px;
	 font-size: 2.5rem;
	 left: 5px;
}
 .full-screen-cta__content {
	 z-index: 1;
	 color: #fff;
	 text-align: center;
	 padding: 1.25rem;
	 background: #A6B0B7;
	 display: block;
	 transform: translateY(-10px);
}
 @media only screen and (min-width: 768px) {
	 .full-screen-cta__content {
		 padding: 0 1.25rem 5rem;
		 background: transparent;
		 margin: 0 auto;
		 max-width: 680px;
		 transform: none;
	}
}
 @media only screen and (min-width: 1030px) {
	 .full-screen-cta__content {
		 padding: 0 2.5rem 5rem;
		 background: transparent;
	}
}
 .full-screen-cta__title {
	 color: #fff;
	 font-size: 24px;
	 font-size: 1.5rem;
	 line-height: 30px;
	 margin-bottom: 5px;
}
 .full-screen-cta__background-image {
	 width: 100%;
	 overflow: hidden;
}
 @media only screen and (min-width: 768px) {
	 .full-screen-cta__background-image {
		 left: 0;
		 top: 0;
		 position: absolute;
		 height: 100%;
	}
}
 .full-screen-cta__background-image img {
	 object-fit: cover;
	 width: 100%;
	 height: 100%;
	s 
}
 .video-modal {
	 position: fixed;
	 top: 0;
	 left: 0;
	 width: 100vw;
	 height: 100vh;
	 padding: 2rem;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 opacity: 0;
	 pointer-events: none;
	 transition: opacity 250ms ease-out;
	 z-index: 100;
	 background: rgba(0, 0, 0, 0.8);
}
 @media only screen and (min-width: 768px) {
	 .video-modal {
		 padding: 5rem;
	}
}
 .video-modal__inner {
	 background: #fff;
	 padding: 1rem;
	 width: 100%;
	 border-radius: 0.25rem;
}
 @media only screen and (min-width: 768px) {
	 .video-modal__inner {
		 padding: 2rem;
	}
}
 .video-modal__video {
	 width: 100%;
	 height: 0;
	 padding-bottom: 56.25%;
}
 .video-modal__video iframe {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
}
 .video-modal__close {
	 position: absolute;
	 background: #fff;
	 font-size: 20px;
	 font-size: 1.25rem;
}
 @media only screen and (max-width: 767px) {
	 .video-modal__close {
		 border-radius: 50%;
		 width: 40px;
		 height: 40px;
		 display: flex;
		 justify-content: center;
		 align-items: center;
		 top: -1rem;
		 right: -1rem;
	}
	 .video-modal__close:focus, .video-modal__close:active, .video-modal__close:hover {
		 background: #fff;
		 text-deocration: none !important;
	}
	 .video-modal__close:focus, .video-modal__close:active {
		 outline: 1px dotted;
	}
	 .right-area {
		 margin-bottom: 1em !important;
	}
}
 @media only screen and (min-width: 768px) {
	 .video-modal__close {
		 top: 0.3125rem;
		 right: 0.625rem;
	}
}
 .video-modal__close::after {
	 display: none;
}
 .video-modal--open {
	 opacity: 1;
	 pointer-events: auto;
}
 .hero {
	 width: 100%;
	 z-index: 1;
	/* ensure shadows overlap neighbors */
	/** * The hero overhangs its neighbor on desktop. The component * that follows the hero will need extra padding on top. */
	/** |--------------------------------------------------------------- | Image links |--------------------------------------------------------------- */
	/** |--------------------------------------------------------------- | Quick links (secondary landing page) |--------------------------------------------------------------- */
	/** |--------------------------------------------------------------- | Variations on the parent here |--------------------------------------------------------------- */
}
 @media only screen and (min-width: 1030px) {
	 .hero + div, .hero + section {
		 padding-top: calc(2.5rem + 100px);
	}
}
 .hero__top {
	 padding-top: calc(85% - 55px);
	 height: 0;
	 width: 100%;
	 display: flex;
	 align-items: flex-end;
}
 @media only screen and (min-width: 1030px) {
	 .hero__top {
		 display: block;
	}
}
 .hero__top:after {
	 content: "";
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background: rgba(0, 0, 0, 0.15);
	 pointer-events: none;
}
 .hero__bottom {
	 width: 100%;
	 padding: 0 1.25rem 1.25rem;
	 background: #CD1041;
}
 @media only screen and (min-width: 1030px) {
	 .hero__bottom {
		 padding: 0;
		 background: transparent;
		 position: absolute;
		 bottom: 0;
	}
}
 .hero__background-image {
	 width: 100%;
	 height: 100%;
	 left: 0;
	 top: 0;
	 position: absolute;
	 object-fit: cover;
	 overflow: hidden;
}
 .hero__background-image img {
	 object-fit: cover;
	 width: 100%;
	 height: 100%;
}
 .hero__cta {
	 padding: 0 1.25rem 100px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 flex-direction: column;
	 width: 100%;
	 z-index: 1;
}
 @media only screen and (min-width: 1030px) {
	 .hero__cta {
		 position: absolute;
		 top: 50%;
		 transform: translateY(-50%);
		 right: 0;
		 padding: 0 2.5rem;
		 max-width: 700px;
	}
}
 @media only screen and (min-width: 1030px) {
	 .hero__cta--bottom {
		 top: 75%;
	}
}
 .hero__title {
	 text-align: center;
	 color: #fff;
	 font-family: "interstate-condensed", sans-serif;
	 font-weight: 500;
	 font-size: 38px;
	 font-size: 2.375rem;
	 line-height: 2.81rem;
	 margin-bottom: 0;
	 text-shadow: 0px 0px 10px #000;
}
 @media only screen and (min-width: 768px) {
	 .hero__title {
		 font-size: 76px;
		 font-size: 4.75rem;
		 line-height: 5.75rem;
	}
}
 .hero__title > span {
	 color: #CD1041;
	 font-style: italic;
}
 .hero__subtitle {
	 color: #fff;
	 text-align: center;
	 margin-bottom: 20px;
}
 .hero__subtitle a {
	 color: white;
	 text-decoration: underline;
}
 .hero__subtitle a:hover {
	 text-decoration: none;
}
 .hero__image-links {
	 transform: translateY(-8%);
}
 @media only screen and (min-width: 1030px) {
	 .hero__image-links {
		 transform: translateY(25%);
		 position: absolute;
		 width: 100%;
		 bottom: 0;
		 z-index: 1;
	}
}
 .hero__image-link {
	 display: flex;
	 box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3);
	 overflow: hidden;
	 text-decoration: none;
}
 @media only screen and (min-width: 1030px) {
	 .hero__image-link {
		 box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.2);
	}
}
 .hero__image-link picture {
	 flex: 0 0 45%;
	 width: 100%;
	 overflow: hidden;
	/* Chrome bug where rendering on animation overflows parent container */
}
 .hero__image-link img {
	 position: absolute;
	 object-fit: cover;
	 height: 100%;
	 width: 100%;
	 transform: scale(1.04);
	 transition: transform 250ms ease-out;
}
 .hero__image-link > div {
	 flex: 0 0 55%;
	 display: flex;
	 flex-direction: column;
	 align-items: flex-start;
	 padding: 20px 15px;
	 background: #687882;
}
 .hero__image-link > div span {
	 color: #000;
	 font-family: "roboto-condensed", sans-serif;
	 font-weight: 700;
	 text-transform: uppercase;
	 font-size: 10px;
	 font-size: 0.625rem;
	 margin-bottom: 5px;
}
 .hero__image-link > div h2 {
	 color: #fff;
	 text-transform: none;
	 font-family: "roboto", sans-serif;
	 font-weight: 700;
	 font-size: 15px;
	 font-size: 0.9375rem;
	 line-height: 1.125rem;
	 margin: 0 0 40px 0;
}
 @media only screen and (min-width: 375px) {
	 .hero__image-link > div h2 {
		 font-size: 18px;
		 font-size: 1.125rem;
		 line-height: 1.375rem;
	}
}
 @media screen and (min-width: 768px) and (max-width: 1030px) {
	 .hero__image-link > div h2 {
		 font-size: 0.7375rem;
		 line-height: 1rem;
	}
}
 @media only screen and (min-width: 1030px) and (max-width: 1280px) {
	 .hero__image-link > div h2 {
		 font-size: 1rem;
		 line-height: 1rem;
	}
}
 @media only screen and (min-width: 1280px) and (max-width: 1480px) {
	 .hero__image-link > div h2 {
		 font-size: 0.9rem;
		 line-height: 1rem;
	}
}
 .hero__image-link > div strong {
	 text-transform: uppercase;
	 color: #fff;
	 font-family: "roboto-condensed", sans-serif;
	 font-weight: 700;
	 font-size: 12px;
	 font-size: 0.75rem;
	 position: absolute;
	 bottom: 20px;
	 left: 15px;
}
 .hero__image-link:hover h2, .hero__image-link:focus h2 {
	 text-decoration: underline;
}
 .hero__image-link:hover strong, .hero__image-link:focus strong {
	 text-decoration: underline;
}
 .hero__image-link:hover img, .hero__image-link:focus img {
	 transform: scale(1.1);
	 transition: transform 1200ms ease-out;
}
 .hero__quick-links {
	 background: #CD1041;
	 width: 100%;
	 top: 10px;
}
 @media only screen and (min-width: 1030px) {
	 .hero__quick-links {
		 width: calc(100% - 60px);
		 top: auto;
		 position: absolute;
		 left: 50%;
		 transform: translate(-50%, -50%);
	}
}
 .hero__quick-links ul {
	 list-style-type: none;
	 margin: 0 0 10px 0;
	 padding: 0;
	 display: flex;
	 flex-direction: column;
	 display: none;
	 max-width: none;
}
 @media only screen and (min-width: 1030px) {
	 .hero__quick-links ul {
		 padding: 30px 60px;
		 flex-wrap: wrap;
		 flex-direction: row;
		 display: flex;
		 justify-content: center;
		 margin: 0;
	}
}
 .hero__quick-links li {
	 text-align: center;
}
 @media only screen and (min-width: 1030px) {
	 .hero__quick-links li {
		 display: inline-block;
		 margin: 0 40px 0 0;
		 line-height: 24px;
	}
}
 .hero__quick-links a {
	 color: #fff;
	 text-decoration: none;
}
 @media only screen and (min-width: 1030px) {
	 .hero__quick-links a {
		 line-height: 34px;
	}
}
 .hero__quick-links a:hover, .hero__quick-links a:focus {
	 text-decoration: underline;
}
 .hero__quick-links-trigger {
	 text-transform: uppercase;
	 text-align: center;
	 width: 100%;
	 margin-bottom: 0;
}
 .hero__quick-links-trigger:hover {
	 background: transparent;
}
 .hero__quick-links-trigger i {
	 margin-left: 10px;
	 color: white;
}
 .hero__quick-links-trigger i.fa-bars {
	 display: inline-block;
}
 .hero__quick-links-trigger i.fa-times {
	 display: none;
	 margin-left: 13px;
}
 .hero__quick-links.open ul {
	 display: block;
}
 .hero__quick-links.open i.fa-bars {
	 display: none;
}
 .hero__quick-links.open i.fa-times {
	 display: inline-block;
}
 .hero--invert .hero__title {
	 color: #1f2124;
}
 .hero--invert .hero__subtitle {
	 color: #1f2124;
}
 .hero--invert button {
	 color: #1f2124;
	 border-color: #1f2124;
}
 .hero--invert button:hover, .hero--invert button:focus, .hero--invert button:active {
	 border-color: #1f2124;
	 background-color: #1f2124;
	 color: #fff;
}
 .image-cta {
	 padding: 2.5rem 0;
	/** * Push the image to the right side and CTA to the left. */
}
 @media only screen and (min-width: 768px) {
	 .image-cta {
		 padding: 2.5rem 1.25rem;
	}
}
 @media only screen and (min-width: 1030px) {
	 .image-cta {
		 padding: 2.5rem 2.5rem;
	}
}
 .image-cta__title {
	 color: #CD1041;
	 font-size: 26px;
	 font-size: 1.625rem;
	 line-height: 2rem;
}
 @media only screen and (min-width: 1030px) {
	 .image-cta__title {
		 font-size: 32px;
		 font-size: 2rem;
		 line-height: 2.25rem;
	}
}
 .image-cta__content {
	 padding: 0 1.25rem;
}
 @media only screen and (min-width: 768px) {
	 .image-cta__content {
		 padding: 8rem 0;
	}
}
 .image-cta__image {
	 height: calc(100vw * .5625);
}
 @media only screen and (min-width: 768px) {
	 .image-cta__image {
		 height: auto;
	}
}
 .image-cta__background-image {
	 width: 100%;
	 height: 100%;
	 left: 0;
	 top: 0;
	 position: absolute;
	 object-fit: cover;
	 overflow: hidden;
}
 .image-cta__background-image img {
	 object-fit: cover;
	 width: 100%;
}
 @media only screen and (min-width: 768px) {
	 .image-cta__background-image img {
		 height: 100%;
	}
}
 @media only screen and (min-width: 768px) {
	 .image-cta--image-right .image-cta__image {
		 order: 2;
	}
	 .image-cta--image-right .image-cta__content {
		 order: 1;
	}
}
 .image-grid {
	 width: 100%;
	 padding: 2.5rem 1.25rem;
	 color: #fff;
	 overflow: hidden;
}
 @media only screen and (min-width: 1030px) {
	 .image-grid {
		 padding: 2.5rem 2.5rem;
	}
}
 .image-grid::before {
	 content: "";
	 position: absolute;
	 background: #CD1041;
	 width: 100vw;
	 height: 100%;
	 bottom: 0;
}
 @media only screen and (min-width: 1030px) {
	 .image-grid::before {
		 height: 75%;
		 top: 50%;
		 bottom: auto;
		 transform: translateY(-50%);
	}
}
 .image-grid a {
	 color: #fff !important;
}
 .image-grid p {
	 font-weight: bold;
	 font-size: 24px;
	 font-size: 1.5rem;
	 line-height: 2rem;
}
 @media only screen and (min-width: 1030px) {
	 .image-grid__content {
		 padding: 5rem 0;
		 display: flex;
		 flex-direction: column;
		 align-items: flex-start;
		 justify-content: center;
	}
}
 .image-grid__images {
	 display: flex;
	 flex-wrap: wrap;
}
 .image-grid__images img {
	 flex: 0 0 50%;
	 width: 50%;
}
 .image-grid--single .image-grid__images img {
	 flex: 0 0 100%;
	 width: 100%;
}
 .learn-more {
	 width: 100%;
	 background: #ededed;
	 padding: 2.5rem 1.25rem;
	 clear:both;
}
 @media only screen and (min-width: 1030px) {
	 .learn-more {
		 padding: 2.5rem 4.2rem;
		 clear:both;
	}
}
 .learn-more__title {
	 font-family: "roboto-condensed", sans-serif;
	 font-weight: 700;
	 color: #000 !important;
	 text-transform: uppercase;
	 text-align: center;
	 width: 100%;
	 max-width: 600px;
	 margin: 2.5rem auto;
}
 .learn-more__items h3 {
	 color: #000;
	 font-size: 24px;
	 font-size: 1.5rem;
	 line-height: 1.75rem;
}
 .learn-more__items p {
	 color: #333333;
}
 .learn-more__items > .link-btn {
	 position: absolute;
	 bottom: 1.5rem;
}
 .learn-more__item {
	 width: 100%;
	 background: #fff;
	 margin: 0 0 1.5rem;
	 padding: 1.5rem 1.5rem 3.5rem;
	 text-decoration: none;
	 color: #000;
}
 .learn-more__item a:first-child {
	 color: #000000;
}
/* SCSU - Added for improved style of Header links */
/* .learn-more__items a h3 {
	 color: #000000;
	 text-decoration: underline;
}
 */
/* SCSU - Added for improved style of Header links */
/* .learn-more__items a:hover h3 {
	 color: #cc0000;
	 text-decoration: none;
}
 */
 @media only screen and (min-width: 768px) {
	 .learn-more__item {
		 width: calc(50% - 1.5rem);
		 margin: 0 1.5rem 1.5rem 0;
	}
	 .learn-more__item:nth-child(even) {
		 margin-right: 0;
	}
}
 @media only screen and (min-width: 1030px) {
	 .learn-more__item {
		 width: calc((100% / 3) - 1.5rem);
	}
	 .learn-more__item:nth-child(even) {
		 margin-right: 1.5rem;
	}
	 .learn-more__item:nth-child(3n) {
		 margin-right: 0;
	}
}
 @media only screen and (min-width: 768px) {
	 .learn-more__item:nth-child(even) {
		 margin-right: 0;
	}
}
 .learn-more__item:hover > link-btn, .learn-more__item:focus > .link-btn {
	 text-decoration: underline !important;
}
 .media-btns {
	 display: flex;
	 flex-direction: column;
	 justify-content: flex-start;
}
 .media-btns img {
	 width: 57px;
	 height: 57px;
	 margin-right: 1rem;
}
 .media-btns strong {
	 font-family: "roboto-condensed", sans-serif;
	 font-weight: 700;
	 font-size: 18px;
	 font-size: 1.125rem;
	 line-height: 1.25rem;
	 align-self: center;
	 text-transform: uppercase;
	 color: #000;
	 padding: 0 10px 0 0;
}
 .media-btns a {
	 border: 1px solid #C4D2D6;
	 text-decoration: none;
}
 .media-btns a:hover strong, .media-btns a:focus strong {
	 text-decoration: underline;
}
 .media-btns__btn {
	 flex: 1 1 100%;
	 display: flex;
	 align-items: stretch;
	 margin-bottom: 1rem;
}
 .media-btns__btn:last-of-type {
	 margin-bottom: 0;
}
 .right-sidebar {
	 margin-top: 1rem;
}
 @media only screen and (min-width: 1030px) {
	 .column-border {
		 border-right: 1px solid #C4D2D6;
		 padding-right: 2rem;
	}
}
 .news-events {
	 padding: 0;
}
 @media only screen and (min-width: 1030px) {
	 .news-events {
		 margin-bottom: calc(7.5rem + 40px) !important;
	}
}
 .news-events a {
	 font-weight: 700;
	 color: #000;
	 text-decoration: none;
	 font-size: 16px;
	 font-size: 1rem;
}
 @media only screen and (min-width: 1030px) {
	 .news-events a {
		 font-size: 14px;
		 font-size: 0.875rem;
	}
}
 .news-events a:hover {
	 text-decoration: underline;
}
 .news-events ul {
	 margin: 0;
	 padding: 0;
	 list-style-type: none;
}
 .news-events li {
	 margin: 0;
	 padding: 15px 0;
	 border-bottom: 1px solid #A6B0B7;
	 overflow: hidden;
}
 .news-events li::after {
	 display: none;
	 content: "";
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 width: 100%;
	 height: 15px;
	 pointer-events: none;
	 background: white;
	 z-index: 1;
}
 @media only screen and (min-width: 1030px) {
	 .news-events li::after {
		 display: block;
	}
}
 .news-events li a {
	 display: flex;
	 align-items: flex-start;
	 line-height: 1.1875rem;
}
 .news-events li .news-events__date {
	 display: block;
	 border: 4px solid #CD1041;
	 border-top-width: 4px;
	 border-radius: 2px;
	 border-top-width: 18px;
	 padding: 15px 6px;
	 font-family: "interstate-compressed", sans-serif;
	 font-weight: 700;
	 font-size: 34px;
	 font-size: 2.125rem;
	 text-align: center;
	 margin-right: 10px;
	 max-width: 80px;
	 width: 100%;
	 z-index: 2;
}
 .news-events li span:not(.news-events__date) {
	 flex: 0 1 75%;
}
 .news-events li img {
	 flex: 0 1 auto;
	 margin-right: 10px;
	 max-width: 80px;
	 z-index: 2;
}
 .news-events__title {
	 font-family: "roboto-condensed", sans-serif;
	 font-weight: 700;
	 color: #000;
	 font-size: 20px;
	 font-size: 1.25rem;
	 border-bottom: 1px solid #000;
	 padding-bottom: 10px;
	 margin-bottom: 0;
	 text-transform: uppercase;
}
 @media only screen and (min-width: 1030px) {
	 .news-events__title {
		 font-size: 24px;
		 font-size: 1.5rem;
		 margin-bottom: 10px;
	}
}
 .news-events__news {
	 margin-bottom: 50px;
}
 @media only screen and (min-width: 1030px) {
	 .news-events__news {
		 margin-bottom: 0;
	}
}
 .news-events__news > a {
	 color: #CD1041;
	 text-transform: uppercase;
	 display: block;
	 margin-top: 20px;
}
 @media only screen and (min-width: 1030px) {
	 .news-events__news > a {
		 position: absolute;
		 bottom: -40px;
		 left: 0;
	}
}
 @media only screen and (min-width: 1030px) {
	 .news-events__news li img {
		 flex: 0 1 30%;
	}
}
 .news-events__feature {
	 padding: 25px 0;
	 border-bottom: 1px solid #A6B0B7;
}
 @media only screen and (min-width: 1030px) {
	 .news-events__feature {
		 padding: 15px 0;
	}
}
 .news-events__feature a:hover {
	 text-decoration: underline;
}
 .news-events__feature p {
	 font-size: 20px;
	 font-size: 1.25rem;
	 display: block;
	 margin: 15px 0;
}
 @media only screen and (min-width: 1030px) {
	 .news-events__feature p {
		 font-size: 24px;
		 font-size: 1.5rem;
	}
}
 .news-events__feature span {
	 color: #687882;
	 font-weight: normal;
	 display: inline-block;
}
 .news-events__events > a {
	 color: #CD1041;
	 text-transform: uppercase;
	 display: block;
	 margin-top: 20px;
}
 @media only screen and (min-width: 1030px) {
	 .news-events__events > a {
		 position: absolute;
		 bottom: -40px;
		 left: 0;
	}
}
 @media only screen and (min-width: 1030px) {
	 .news-events__events li {
		 padding-bottom: 16px;
	}
}
 @media only screen and (min-width: 1030px) {
	 .news-events__events li .news-events__date {
		 flex: 0 1 20%;
	}
}
 .program-finder {
	 background: transparent;
}
 @media only screen and (min-width: 1030px) {
	 .program-finder {
		 padding: 2.5rem 2.5rem;
	}
	 .program-finder ul {
		 height: 100%;
	}
	 .program-finder ul li {
		 display: flex;
		 justify-content: center;
		 align-items: center;
	}
	 .program-finder ul a {
		 height: 100%;
		 padding: 1em;
		 display: flex;
		 justify-content: flex-start;
		 align-items: center;
	}
}
 .program-finder > div > div[class*=mobile] {
	 display: flex;
	 justify-content: center;
	 order: 3;
	 width: calc(100% - 40px);
	 margin: auto;
}
 @media only screen and (min-width: 768px) {
	 .program-finder > div > div[class*=mobile] {
		 width: auto;
	}
}
 .program-finder ul {
	 list-style-type: none;
	 margin: 0;
	 padding: 0;
	 display: flex;
	 flex-direction: column;
	 flex-wrap: nowrap;
	 width: 100%;
	 max-width: none;
	 background-size: cover;
	 background-repeat: no-repeat;
}
 @media only screen and (min-width: 1030px) {
	 .program-finder ul {
		 flex-direction: row;
		 flex-wrap: wrap;
	}
}
 .program-finder ul li {
	 margin: 0;
	 padding: 0;
	 flex: 0 0 100%;
	 border-bottom: 1px solid #A6B0B7;
	 z-index: 1;
}
 @media only screen and (min-width: 1030px) {
	 .program-finder ul li {
		 flex: 0 0 50%;
	}
}
 @media only screen and (min-width: 1030px) {
	 .program-finder ul li:nth-child(odd) {
		 border-right: 1px solid #A6B0B7;
	}
}
 .program-finder ul a {
	 background: transparent;
	 padding: 16px 1.25rem;
	 display: block;
	 width: 100%;
	 color: #fff;
	 text-decoration: none;
	 font-family: "roboto", sans-serif;
	 font-weight: 700;
	 font-size: 16px;
	 font-size: 1rem;
	 text-shadow: 0px 0px 3px #000;
}
 @media only screen and (min-width: 1030px) {
	 .program-finder ul a {
		 padding: 1.5rem 2.5rem;
	}
}
 .program-finder ul a:hover {
	 background: #CD1041;
	 text-shadow: 0px 0px 1px #cd1041;
}
 .program-finder form {
	 margin: 0;
	 margin-bottom: 1.875rem;
	 padding: 0;
}
 .program-finder form i {
	 position: absolute;
	 left: 10px;
	 top: 50%;
	 transform: translateY(-50%) rotateY(180deg);
}
 .program-finder form input[type=text] {
	 border: none;
	 background: #C4D2D6;
	 color: #333333;
	 padding-left: 34px;
	 margin-bottom: 0;
}
 @media only screen and (min-width: 1030px) {
	 .program-finder form input[type=text] {
		 min-width: 320px;
	}
}
 .program-finder form input[type=text]::placeholder {
	 color: #333333;
	 opacity: 1;
}
 .program-finder__links {
	 order: 2;
	 margin-bottom: 50px;
}
 @media only screen and (min-width: 1030px) {
	 .program-finder__links {
		 margin-bottom: 0;
		 order: 1;
	}
}
 .program-finder__title {
	 font-family: "roboto", sans-serif;
	 font-weight: 700;
	 font-size: 28px;
	 font-size: 1.75rem;
	 color: #CD1041;
	 text-transform: none;
	 line-height: 36px;
}
 @media only screen and (min-width: 1030px) {
	 .program-finder__title {
		 font-size: 32px;
		 font-size: 2rem;
	}
}
 .program-finder__cta {
	 order: 1;
	 margin: 20px;
}
 @media only screen and (min-width: 1030px) {
	 .program-finder__cta {
		 order: 2;
		 padding: 0;
		 margin-bottom: 0;
		 display: flex;
		 flex-direction: column;
		 justify-content: center;
		 align-items: flex-start;
		 height: 100%;
	}
}
 .program-finder__background-image {
	 width: 100%;
	 height: 100%;
	 left: 0;
	 top: 0;
	 position: absolute;
	 object-fit: cover;
	 overflow: hidden;
}
 .program-finder__background-image::after {
	 content: "";
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background: rgba(0, 0, 0, 0.15);
	 pointer-events: none;
	 background: rgba(0, 0, 0, 0.4);
}
 .program-finder__background-image img {
	 object-fit: cover;
}
 @media only screen and (min-width: 768px) {
	 .program-finder__background-image img {
		 height: 100%;
		 width: 100%;
	}
}
 .related-content {
	 background: #687882;
	 color: #fff;
}
 .related-content a {
	 color: #fff;
	 text-decoration: underline;
}
 .related-content a:hover {
	 text-decoratin: none;
}
 .related-content ul {
	 list-style-type: none;
	 margin: 0;
	 padding: 0;
}
 .related-content li {
	 width: 100%;
}
 .related-content li:hover i {
	 right: 10px;
}
 .related-content li i {
	 position: absolute;
	 right: 0;
	 top: 15px;
	 pointer-events: none;
	 transition: all 250ms ease-out;
}
 .related-content li a {
	 display: block;
	 width: 100%;
	 font-family: "roboto", sans-serif;
	 font-weight: 700;
	 font-size: 16px;
	 font-size: 1rem;
	 text-decoration: none;
	 padding: 8px 25px 8px 0;
	 color: inherit;
	 border-bottom: 1px solid #A6B0B7;
	 background: transparent;
	 transition: all 250ms ease-out;
}
 .related-content li a:hover {
	 border-color: #fff;
	 background: #CD1041;
	 text-indent: 10px;
}
 .related-content__title {
	 color: #fff !important;
	 font-family: "roboto", sans-serif;
	 font-weight: 700;
	 font-size: 28px;
	 font-size: 1.75rem;
	 text-transform: none;
}
 @media only screen and (min-width: 1030px) {
	 .related-content__title {
		 font-size: 32px;
		 font-size: 2rem;
	}
}
 .related-content__menu {
	 padding: 50px 1.25rem;
	 display: flex;
	 align-items: center;
	 justify-content: center;
}
 @media only screen and (min-width: 1030px) {
	 .related-content__menu {
		 padding: 50px 0;
	}
}
 @media only screen and (min-width: 1030px) {
	 .related-content__menu > div {
		 width: 80%;
	}
}
 .related-content__image {
	 display: none;
}
 @media only screen and (min-width: 1030px) {
	 .related-content__image {
		 display: block;
		 background-repeat: no-repeat;
		 background-size: cover;
		 background-position: center;
		 background-color: #000;
		/* a11y - overlay text might get dinged on rating w/o this */
	}
}
 .search-modal {
	 position: fixed;
	/*top: 55px;
	*/
	 bottom: auto;
	 width: 100%;
	 height: 100%;
	 z-index: 15;
	 background: #1f2124;
	 display: none;
	 pointer-events: none;
	 transition: top 250ms ease-out;
	 z-index: 29;
}
 @media only screen and (min-width: 1030px) {
	 .search-modal {
		 top: 82px;
		 height: 100%;
	}
}
 @media only screen and (min-width: 1030px) {
	 .search-modal.scroll-up {
		 top: 113px;
		 height: 100%;
	}
}
 .search-modal.opened {
	 display: block;
	 pointer-events: auto;
}
 .search-modal.opened .search-form-wrapper {
	 display: block;
}
 .search-modal .search-form-wrapper {
	 width: 100%;
	 display: none;
}
 .search-modal .search-form {
	 border: 0;
	 margin: 50px auto 0;
	 width: 90%;
}
 .search-modal .search-form input {
	 border: 0;
	 width: 100%;
}
 .search-modal .search-form label {
	 margin: 0;
	 display: block;
}
 .search-modal .search-form .search-submit {
	 color: #fff;
	 font-size: 10px;
	 font-size: 0.625rem;
	 font-family: "roboto-condensed", sans-serif;
	 background: transparent;
	 vertical-align: middle;
	 display: inline-block;
	 white-space: nowrap;
	 position: absolute;
	 right: 5%;
	 top: 100px;
	 padding: 0;
	 width: auto;
	 margin: 0;
	 cursor: pointer;
}
 .search-modal .search-form .search-submit i {
	 color: #CD1041;
	 padding-left: 5px;
	 font-size: 12px;
	 transform: rotateY(180deg);
	 cursor: pointer;
}
 .search-modal .search-form .search-field {
	 background: transparent;
	 border: 0;
	 font-family: "roboto", sans-serif;
	 color: #d1d3d4;
	 line-height: 1.2;
	 font-size: 18px;
	 text-align: left;
	 border-bottom: 1px solid #d1d3d4;
	 padding: 0 80px 10px 0;
}
 .search-modal .search-form .search-field:focus::-webkit-input-placeholder, .search-modal .search-form .search-field:focus::-moz-placeholder, .search-modal .search-form .search-field:focus::-ms-input-placeholder, .search-modal .search-form .search-field:focus::placeholder {
	 opacity: 0.5;
}
 .search-modal .search-form .search-field::-webkit-input-placeholder, .search-modal .search-form .search-field::-moz-placeholder, .search-modal .search-form .search-field::-ms-input-placeholder, .search-modal .search-form .search-field::placeholder {
	 opacity: 1;
}
 .close-search-modal {
	 padding: 0;
	 position: absolute;
	 top: 2.5rem;
	 right: 2.5rem;
	 background: transparent;
	 color: #2c3847;
	 font-size: 28px;
	 font-size: 1.75rem;
}
 .close-search-modal:hover {
	 background: transparent;
	 color: #8f4ec7;
}
 .close-search-modal:focus {
	 outline: thin dotted;
}
 .search-toggle {
	 display: none;
	 background: transparent;
	 color: #7b838b;
	 font-size: 20px;
	 font-size: 1.25rem;
	 padding: 0.5em;
	 margin-left: 1.25rem;
}
 @media only screen and (min-width: 1030px) {
	 .search-toggle {
		 display: block;
	}
}
 .search-toggle.small {
	 display: flex;
	 align-items: center;
	 padding: 0;
	 margin-right: 1rem;
}
 @media only screen and (min-width: 1030px) {
	 .search-toggle.small {
		 display: none;
	}
}
 .search-toggle:focus {
	 outline: thin dotted;
}
 .search-toggle i {
	 color: #CD1041;
	 transform: rotateY(180deg);
	 font-size: 14px;
}
 .search-toggle .fa-times {
	 display: none;
}
 .search-toggle.opened .fa-times {
	 display: block;
}
 .search-toggle.opened .fa-search {
	 display: none;
}
 .search-toggle:hover {
	 background: transparent;
	 color: #8f4ec7;
}
/** * Class names taken from https://www.stcloudstate.edu/hbs/departments-programs.aspx * * JavaScript recreated to approximate what is seen on the page above. */
 .section-toggle {
	 max-width: 1200px;
	 display: flow-root; /* SCSU - Allows toggles to float on pages with the right-area and align-right columns */
}
 .section-toggle h3.section {
	 background: #C4D2D6;
	 border: 1px solid #C4D2D6;
	 width: 100%;
	 padding: 15px 45px;
	 margin-top: 12px;
	 margin-bottom: 0;
	 cursor: pointer;
	 font-size: 20px;
	 font-size: 1.25rem;
	 line-height: 26px;
	 clear: both;
}
 .section-toggle h3.section:hover {
	 background: #FFFFFF;
	 border: 1px solid #C4D2D6;
}
 .section-toggle h3.section:first-of-type {
	 margin-top: 0;
}
 .section-toggle h3.section::before {
	 content: "";
	 position: absolute;
	 left: 12px;
	 top: 50%;
	 transform: translateY(-50%);
	 display: block;
	 font-family: "Font Awesome 5 Free";
	 font-size: 20px;
	 font-size: 1.25rem;
	 font-weight: bold;
}
 .section-toggle h3.section.active::before {
	 content: "";
}
 .section-toggle .sectionContent {
	 display: none;
	 padding: 20px;
	 border: 1px solid #C4D2D6;
	 border-top: none;
	 overflow: auto;
}
 .section-toggle .sectionContent.active {
	 display: block;
}
 .section-toggle .right-area p {
	 margin: 0;
}
 .section-toggle .right-area a.long-button {
	 margin: 0 10px 10px 0;
	 width: 100%;
}
 @media only screen and (min-width: 768px) {
	 .section-toggle .right-area a.long-button {
		 width: auto;
	}
}
 @media only screen and (min-width: 768px) {
	 .section-toggle .right-area {
		 border-left: 1px dashed #c3c3ae;
		 width: 38%;
		 float: right;
		 margin: 0px 0px 1em 2%;
		 padding-left: 2%;
		 overflow: auto;
	}
}
 .section-toggle .right-area + h2, .section-toggle .right-area + h3, .section-toggle .right-area + h4, .section-toggle .right-area + h5, .section-toggle .right-area + h6 {
	 margin-top: 3rem;
}
 @media only screen and (min-width: 768px) {
	 .section-toggle .right-area + h2, .section-toggle .right-area + h3, .section-toggle .right-area + h4, .section-toggle .right-area + h5, .section-toggle .right-area + h6 {
		 margin-top: inherit;
	}
}
 .spotlight {
	 width: 100%;
	 padding: 2.5rem 1.25rem;
	 color: #000;
	 background: #ededed;
}
 @media only screen and (min-width: 1030px) {
	 .spotlight {
		 padding: 2.5rem 2.5rem;
	}
}
 .spotlight__title {
	 font-family: "roboto-condensed", sans-serif;
	 font-weight: 700;
	 font-size: 32px;
	 font-size: 2rem;
	 line-height: 2.375rem;
	 width: 100%;
	 text-align: center;
	 text-transform: uppercase;
	 margin-bottom: 40px;
	 margin-left: auto;
	 margin-right: auto;
}
 .spotlight__items--single {
	 display: flex;
	 justify-content: center;
}
 @media only screen and (min-width: 768px) {
	 .spotlight__items--single .spotlight__item {
		 width: 70%;
	}
}
 @media only screen and (min-width: 1030px) {
	 .spotlight__items--single .spotlight__item picture {
		 width: 20%;
	}
}
 .spotlight__item {
	 width: 100%;
	 background: #fff;
	 display: flex;
	 flex-direction: column;
	 margin: 0 0 2rem;
	 color: #333333;
}
 @media only screen and (min-width: 768px) {
	 .spotlight__item {
		 width: calc(50% - 2rem);
		 margin: 0 2rem 2rem 0;
	}
}
 @media only screen and (min-width: 1030px) {
	 .spotlight__item {
		 flex-direction: row;
		 padding: 20px;
	}
}
 @media only screen and (min-width: 768px) {
	 .spotlight__item:nth-child(even) {
		 margin-right: 0;
	}
}
 .spotlight__item picture {
	 flex: 0 0 auto;
}
 @media only screen and (min-width: 1030px) {
	 .spotlight__item picture {
		 width: 30%;
	}
}
 .spotlight__item-content {
	 padding: 40px 20px;
}
 @media only screen and (min-width: 1030px) {
	 .spotlight__item-content {
		 padding: 0 0 0 30px;
	}
}
 .spotlight__item-title {
	 font-size: 20px;
	 font-size: 1.25rem;
	 line-height: 1.625rem;
	 display: block;
	 margin-bottom: 12px;
}
 .spotlight__item-title + .spotlight__item-eyebrow {
	 margin-top: -7px;
	 margin-bottom: 14px;
}
 .spotlight__item-eyebrow {
	 font-size: 14px;
	 font-size: 0.875rem;
	 line-height: 1rem;
	 color: #687882;
	 display: block;
}
 .stats {
	 width: 100%;
	 background: #CD1041;
	 padding: 2.5rem 1.25rem;
	 color: #fff;
}
 @media only screen and (min-width: 1030px) {
	 .stats {
		 padding: 2.5rem 2.5rem;
	}
}
 .stats::after {
	 content: "";
	 display: block;
	 background-repeat: no-repeat;
	 background-size: cover;
	 background-position: center;
	 background-color: #000;
	/* a11y - overlay text might get dinged on rating w/o this */
	 background-color: #CD1041;
	 background-blend-mode: multiply;
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 pointer-events: none;
	 opacity: 0.28;
}
 .stats a {
	 color: #fff;
	 text-decoration: underline;
}
 .stats a:hover {
	 text-decoration: none;
}
 .stats a[class*=btn] {
	 display: inline-block;
	 margin-top: 2rem;
}
 .stats__title {
	 font-family: "roboto", sans-serif;
	 font-weight: 700;
	 font-size: 26px;
	 font-size: 1.625rem;
	 line-height: 2rem;
	 color: #fff !important;
	 margin-bottom: 2rem;
	 text-transform: none;
}
 @media only screen and (min-width: 1030px) {
	 .stats__title {
		 font-size: 32px;
		 font-size: 2rem;
		 line-height: 2.375rem;
	}
}
 .stats__blocks {
	 order: 2;
	 z-index: 1;
}
 @media only screen and (min-width: 1030px) {
	 .stats__blocks {
		 order: 1;
	}
}
 .stats__block {
	 margin-bottom: 20px;
	 text-align: center;
	 /* SCSU - Centered text */
}
.stats__block > div {
	 width: 100%;
	 height: 80px;
	 display: flex;
	 align-items: flex-end;
	 justify-content: center;
	/* SCSU - Changed from flex-start to justify-content */
	 margin-bottom: 20px;
}
 @media only screen and (min-width: 1030px) {
	 .stats__block > div {
		 height: 100px;
	}
}
 .stats__block > div span {
	 font-family: "interstate-compressed", sans-serif;
	 font-family: 700;
	 font-size: 65px;
	 font-size: 4.0625rem;
	 line-height: 0.8;
}
 @media only screen and (min-width: 1030px) {
	 .stats__block > div span {
		 font-size: 80px;
		 font-size: 5rem;
	}
}
 .stats__copy {
	 order: 1;
	 margin-bottom: 40px;
	 z-index: 1;
}
 @media only screen and (min-width: 1030px) {
	 .stats__copy {
		 order: 2;
		 margin: 0;
	}
}
 .two-col-copy {
	 padding: 2.5rem 0;
	 margin: 0 auto;
	 max-width: 850px;
}
 @media only screen and (min-width: 1030px) {
	 .two-col-copy {
		 padding: 2.5rem 0;
	}
}
 .two-col-copy__title {
	 color: #CD1041;
}
 @media only screen and (min-width: 768px) {
	 .two-col-copy p {
		 columns: 2;
		 column-gap: 3rem;
	}
}
/* Make printing pages nice and tidy */
 @media print {
	 * {
		 background: transparent !important;
		 color: black !important;
		 text-shadow: none !important;
		 filter: none !important;
		 -ms-filter: none !important;
	}
	 a, a:visited {
		 color: #444 !important;
		 text-decoration: underline;
	}
	 .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
		 content: "";
	}
	 pre, blockquote {
		 border: 1px solid #999;
		 page-break-inside: avoid;
	}
	 thead {
		 display: table-header-group;
	}
	 tr, img {
		 page-break-inside: avoid;
	}
	 img {
		 max-width: 100% !important;
	}
	 @page {
		 margin: 0.5cm;
	}
	 p, h2, h3 {
		 orphans: 3;
		 widows: 3;
	}
	 h2, h3 {
		 page-break-after: avoid;
	}
	 .sidebar, .page-navigation, .wp-prev-next, .respond-form, nav {
		 display: none;
	}
}