@charset "UTF-8";
/* CSS Document */

/* @font-face {
font-family: "Montserrat";
src: url("../css/fonts/Montserrat-VariableFont_wght.ttf");
}
@font-face {
font-family: "Montserrat-Bold";
src: url("../css/fonts/Montserrat-Bold.ttf");
}
@font-face {
font-family: "Montserrat-SemiBold";
src: url("../css/fonts/Montserrat-SemiBold.ttf");
} */

@import url("https://use.typekit.net/igx3xps.css");

* {
	-webkit-font-smoothing: antialiased;
}
:root {
	--body-bg-color: #ffffff;
	--theme-primary-color: #092e6e;
	--theme-magazine-blue: #092e6e;
	--theme-audience-blue: #2d4d83;
	--theme-light-blue: #51627e;
	--theme-alt-blue: #3386cd;
	--theme-secondary-color: #c60e3b;
	--white: #ffffff;
	--light-gray: #e6e5e5;
	--dark-gray: #69625b;
	--darker-gray: #2d2a26;
	--black: #000000;
	--light-background: #efefef;
	--uhd-gray-dark: #545252;
	--slant-overlay-stripe-width: 30%;
	--slant-overlay-stripe-width-mobile: 0%;
	--slant-overlay-stripe-angle-desktop: 110deg;
	--slant-overlay-stripe-angle-mobile: 180deg;
}
html,
body {
	overflow-x: hidden;
}

body {
	font-family: "Montserrat", Tahoma, sans-serif;
	background-color: var(--body-bg-color);
}
@media screen and (min-width: 1921px) {
    html {
        background: #333;
    }
    body {
        background: var(--white);
        margin: 0 auto;
        max-width: 1920px;
    }
}

.bg-light-gray {
	background-color: var(--light-gray);
}
.bg-light-blue {
	background-color: var(--theme-light-blue);
}
.bg-audience-blue {
	background-color: var(--theme-audience-blue);
}
/* header	*/
#skiptocontent a:focus { background-color: var(--theme-secondary-color); color:#ffffff; }
.header {
	padding: 17px 0 0;
	background-color: var(--light-background);
	color: var(--theme-primary-color);
}
.top-links {
	display: inline;
	list-style: none;
	font-size: 1em;
}
.top-links li {
	margin: 5px 10px;
	display: inline;
	font-weight: bold;
}
.top-links li a {
	text-decoration: none;
	color: var(--theme-primary-color);
}
.top-links li a:hover {
	color: var(--theme-light-blue);
}

.top-links-mobile {
	list-style: none;
	font-size: 1em;
	padding-left: 0;
	margin: 20px 15px 0 0;
	text-align: center;
}
.top-links-mobile li {
	font-weight: bold;
	padding: 0.5rem 0;
}
.top-links-mobile li:hover {
	background-color: #ffffff;
}
.top-links-mobile li a {
	text-decoration: none;

	color: #ffffff;
}
.top-links-mobile li:hover a {
	color: var(--theme-primary-color);
}
.bold-secondary {
	color: var(--theme-secondary-color);
	font-weight: bold;
}
.navbar {
	background-color: var(--theme-primary-color);
/* 	border-bottom: 6px solid var(--theme-secondary-color); */
	padding-top: 0;
	padding-bottom: 0;
}
.navbar-nav {
	display: flex;
	width: 100%;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: -4px;
	list-style: none;
	align-items: center;
	justify-content: space-around;
}
.navbar-nav li {
	text-align: center;
}
.navbar-nav li a {
	font-weight: 700;
	color: var(--white);
}

.navbar-nav li a:hover,
.navbar-nav li a:focus {
	background-color: #fff;
	color: var(--theme-primary-color);
}
.dropdown-menu div.title {
	font-size: 1.5em;
}
.dropdown-menu .col-megamenu li {
	font-size: 0.875em;
	font-weight: bold;
	text-align: left;
}
.dropdown-menu .col-megamenu li a {
	color: var(--theme-secondary-color);
	text-decoration: none;
}
.dropdown-menu .col-megamenu a:hover {
	color: var(--theme-light-blue);
}

img.logo {
	max-width: 100%;
}

.navbar-toggler {
	padding: 0.25rem 0.75rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	color: var(--white);
}

.dropdown {
	position: static;
	width: 100%;
}
.dropdown-toggle {
	white-space: nowrap;
}
.dropdown-menu.show {
	width: 100%;
	padding: 30px 38px;
}
.dropdown-toggle::after {
	content: unset;
}

.list-links li ~ li {
	font-weight: normal;
	border-top: 1px solid #95989a;
	padding: 5px 0 5px 0;
}
.list-links li {
	padding: 5px 0 5px 0;
}

@media (max-width: 991px) {
	.navbar.fixed-top .navbar-collapse,
	.navbar.sticky-top .navbar-collapse {
		overflow-y: auto;
		max-height: 90vh;
		margin-top: 10px;
	}
	.magazine-card-image {
		/*		 height: 280px; */
	}
}

/* main	*/
main {
	background-color: var(--white);
}

a { 
	color: var(--theme-primary-color);
}

.btn {
	border-radius: 0;
	font-weight: bold;
	-webkit-transition: border.4s;
	-o-transition: border.4s;
	transition: border.4s;
}

.btn-primary.disabled, .btn-primary:disabled {
	background-color: var(--light-gray) !important;
	border-color: var(--dark-gray) !important;
	color: var(--darker-gray) !important;
	opacity: 0.25;
}

.btn-primary-main,
.btn-alt-main {
	border-bottom: 5px solid var(--theme-secondary-color);
	border-radius: 0;
	color: var(--white);

}
.btn-primary-main:hover {
	color: var(--white);
	background-color: --uhd-gray-dark;
	border-color: --uhd-gray-dark;
}

.btn-blue {
	background-color: var(--theme-primary-color);
	border-bottom: 5px solid var(--theme-secondary-color);
	color: var(--white)!important;

}
.btn-blue:hover {
	background-color: --uhd-gray-dark;
	border-color: --uhd-gray-dark;
	color: var(--white)!important;
}
.btn-gray {
	background-color: --uhd-gray-dark;
	border-color: --uhd-gray-dark;
	color: var(--white)!important;
}
.btn-gray:hover {
	background-color: --uhd-gray-dark!important;
	border-color: --uhd-gray-dark;
	color: var(--white)!important;
}
.btn-red {
	background-color: var(--theme-secondary-color);
	border-bottom: 5px solid var(--white);
	color: var(--white)!important;

}
.btn-red:hover {
	background-color: --uhd-gray-dark;
	border-color: --uhd-gray-dark;
	color: var(--white)!important;
}
.btn-blue-solid {
	background-color: var(--theme-primary-color);
	border: 2px solid transparent;
	color: var(--white)!important;

}
.btn-blue-solid:hover {
	background-color: var(--white);
	border: 2px solid var(--theme-primary-color);
	color: var(--theme-primary-color)!important;
}
.btn-red-solid {
	background-color: var(--theme-secondary-color);
	border: 2px solid transparent;
	color: var(--white)!important;

}
.btn-red-solid:hover {
	background-color: var(--white);
	border: 2px solid var(--theme-secondary-color);
	color: var(--theme-secondary-color)!important;
}
.btn-primary {
	background-color: var(--theme-primary-color);
	border: 2px solid transparent;
	color: var(--white)!important;
}
.btn-primary:hover {
	background-color: #e9ecf7!important;
	border: 2px solid var(--theme-primary-color);
	color: var(--theme-primary-color)!important;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
	background-color: var(--white)!important;
	border: 2px solid var(--theme-primary-color);
	color: var(--theme-primary-color)!important;
	box-shadow: 0 0 0 0.25rem rgba(0, 46, 110, 0.5);
}
.btn-secondary {
	background-color: #687869;
	border: 2px solid transparent;
	color: var(--white)!important;	
}
.btn-secondary:hover {
	background-color: #e7ebe5;
	border: 2px solid var(--theme-secondary-color);
	color: #687869!important;
}
.btn-link {
	color: var(--theme-primary-color);
	text-decoration: underline;
}
.btn-block {
	display: block;
}

.btn-outline-primary {
    color: var(--theme-primary-color) !important;
    border-color: var(--theme-primary-color) !important;
}
.btn-outline-primary:hover {
	background-color: var(--theme-primary-color)!important;
	border-color: var(--theme-primary-color);
	color: var(--white)!important;
}
.btn-light {
	background-color: #e9ecf7 !important;
	color: #092e6e !important;
}
.btn-light:hover {
	background-color: #f0ecec !important;
}

.magazine-links a {
	font-size: 0.875em;
	min-width: 150px;
}
h1.pagetitle {
	padding: 5px 0 5px;
	border-top: none;
	border-bottom: 1px dotted #959595;
	margin: 0;
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	color: var(--theme-light-blue);
}
h2.section__title {
	font-size: 2em;
	font-weight: bold;
	color: var(--theme-primary-color);
}
.intro {
	position: relative;
	overflow: hidden;
	margin-left: -1px;
}

.intro .intro__video {
	position: relative;
	overflow: hidden;
	background-color: var(--light-background);
}

.intro .intro__video video {
	position: absolute;
	/* left: 50%;
	top: 50%;
	min-width: 100%;
	z-index: 0;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%); */
}
.intro__hider {
	position: relative;
}
.intro__image {
	height: 70vh;
	background-size: cover;
}

@media (max-width: 991px) {
	.intro__image {
		height: 52vh;
	}
}

.intro__content {
	color: var(--white);
	font-weight: bold;
	position: relative;
	left: 0;
	bottom: 150px;
	width: 100%;
	text-align: center;
}
.slider-wrapper {
	position: relative;
	overflow: hidden;
}
.hero-content {
	position: relative;
	padding-top: 30px;
	/* height: 55vh; */
}
.hero-wrapper {
	background-color: var(--white);
	color: var(--theme-primary-color);
	display: block;
	font-size: 2.75em;
	font-weight: 900;
	letter-spacing: -1px;
	line-height: 0.9em;
	padding: 0 25px 0 0;
	text-align: left;
	position: relative;
	z-index: 2;
}
.hero-button {
	position: relative;
	z-index: 3;
}
/* // Small devices (landscape phones, 786px and up) */
@media (min-width: 768px) {
	/* DETERMINED. DEDICATED. DOWNTOWN.	*/
	.hero-wrapper {
		background-color: transparent;
		color: var(--white);
		top: -94px;
		text-shadow: 1px 1px 3px #555;
	}
}
.breadcrumbs {
	font-size: 0.75em;
	color: #595959;
	letter-spacing: 1px;
}
.breadcrumbs a {
	color: #595959;
	text-decoration: none;
}
.breadcrumbs a:hover {
	color: #222222;
	text-decoration: underline;
}
.breadcrumbs .current {
	color: #222222;
}
.main-head-title {
	font-size: 2.125em;
	font-weight: normal;
	padding-bottom: 6px;
	color: var(--black);
	text-align: center;
}


.slick-same-h .slick-track {
	display: flex !important;
}
.slick-same-h .slick-slide {
	height: inherit !important;
}
.slick-same-h .slick-slide div {
	height: 100% !important;
}
.section-spotlight-home .spotlight-image {
	
}
.section-news-home {
	background: none;
}

.section-news-home .news-main [class^="col"] {
	overflow: hidden;
}
.section-news-home .news-main a.news-item img {
	width: 100%;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	-o-transition: transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.section-news-home .news-main a.news-item {
	display:block;
	text-decoration: none;
	position: relative;
	background-color: var(--black);
}
.section-news-home .news-main a.news-item h3 {
	background-color: rgba(9,46,110,0.85);
	bottom: 0;
	color: var(--white);
	font-weight: 700;
	margin: 0!important;
	padding: 15px;
	position: absolute;
	width:100%;
	z-index: 3000;
}
.section-news-home .news-main a.news-item:hover img {
	-webkit-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}

a.news-block-link {
	position: relative;
	text-decoration: none;
}
a.news-block-link h3 {
	font-weight: bold;
	display: block;
}

.news-secondary a.news-block-link:hover {
	text-decoration: none;
}

.news-secondary .prev,
.news-secondary .next {
	top: 50%;
	display: block;
	position: absolute;
	color: var(--theme-primary-color);
	font-size: 2em;
}
.news-secondary .prev:hover,
.news-secondary .next:hover {
	cursor: pointer;
	color: var(--theme-alt-blue);
}
.news-secondary .prev {
	left: -10px;
}
.news-secondary .next {
	right: -10px;
}
.news-secondary h3 {
	font-size: 1em;
	color: var(--theme-primary-color);
	font-weight: 700;
	background-color: var(--white);
	display: block;
}
.news-secondary a.news-block-link:hover {
	text-decoration: underline;
}
.news-secondary a.news-block-link:hover img {
	-webkit-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}
.news-secondary .card {
	overflow: hidden;
}
.news-secondary .slick-prev::before,
.news-secondary .slick-next::before {
	color: var(--black);
}

a.hero-card {
	display: block;
	height: 100px;
	background-color: var(--white);
	overflow: hidden;
	text-decoration: none;
	border-bottom: 3px solid var(--theme-primary-color);
}
a.hero-card img {
	max-width: 100px;
	margin-right: 20px;
	float: left;
}
a.hero-card span.title,
a.hero-card span.description {
	display: block;
	color: var(--theme-primary-color)!important;
}
a.hero-card span.title {
	font-weight: bold;
}

a.search-result-card {
	display: block;
	font-weight: 800;
	background-color: var(--white);
	overflow: hidden;
	text-decoration: none;
}
a.search-result-card:hover {
	background-color: var(--light-gray);
}
a.search-result-card img {
	max-width: 100%;
	margin-right: 20px;
	float: left;
	display: block;
}
a.search-result-card .content {
}

a.search-result-card .title {
	display: block;
	font-weight: 800;
	color: var(--theme-primary-color);
}
a.search-result-card .description {
	display: block;
	font-weight: 400;
	color: var(--black);
}
a.search-result-card .category {
	display: block;
	color: var(--black);
}
.search-result-card .card-body .title {
	font-size: 1.25em;
}
.intro-audience-wrapper {
	background-color: rgba(255, 255, 255, 0.90);
	margin-top: 0;
	position: relative;
}
/* // Small devices (landscape phones, 786px and up) */
@media (min-width: 768px) {
	.intro-audience-wrapper {
		margin-top: -125px;
	}
}
.intro__audience {
	text-align: center;
	line-height: 1.1;
	margin: 0;
	padding: 15px;
	display: flex;
}
.intro__audience a {
	text-decoration: none;
	color: var(--theme-primary-color);
	display: inline-block;
	height: 100%;
	padding: 5px;
	border: 1px solid transparent;
	border-collapse: collapse;
	width: 100%;
}
.intro__audience a:hover {
	border-color: var(--theme-primary-color);
}


.section-social-links-home {
	background-color: var(--theme-primary-color);	
}
.section-social-links-home a {
	color: var(--white);
	font-size: 1.4em;
	text-decoration: none;
}
.section-social-links-home a:hover {
	text-decoration: underline;
}
.uhdBTN {
	background-image: url("https://designstudio.moderncampus.com/clients/uhd/assets/img/homepage-bynumbers-gray-75-25.jpg");
	background-size: cover;
	background-position: center, center;
	margin: 0 0 30px;
	padding-top: 30px;
	position: relative;
}
.uhdBTN h3 {
	font-size: 1.8em;
	font-weight: 700;
	font-style: italic;
	color: var(--theme-secondary-color);
	margin-bottom: 0;
	text-shadow: 1px 1px 1px #767676;
}
.uhdBTN-title {
	font-weight: 700;
	font-size: 2.0625em;
	color: var(--theme-primary-color);
}
.uhdBTN-stats strong {
	font-size: 1.2em;
	color: var(--theme-primary-color);
}
.uhdBTN p {
	font-size: 1.2em;
}

/* sub-pages	*/

#sidebar .navbar-toggler {
	background-color: var(--theme-primary-color);
	width: 100%;
	justify-content: space-between;
	padding: 8px 0;
}
#sidebar .fa-chevron-down {
	transition: transform 0.2s ease-in-out;
}
#sidebar .navbar-toggler:not(.collapsed) .fa-chevron-down {
	transform: rotate(-180deg) translate(6px, 2px);
}
#sidebar .navbar { background:none; border-bottom:none; margin-bottom:20px; }

#sidebarMenu,
#sidebarMenuAlt {
	width: 100%;
	/*background-color: var(--light-gray);*/
}
#sidebarMenu .accordion-body,
#sidebarMenuAlt .accordion-body {
	padding: 0;
}

#sidebarMenu ul,
#sidebarMenuAlt ul {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
	width: 100%;
}
#sidebarMenu ul li a,
#sidebarMenuAlt ul li a,
#sidebarMenu .accordion-item > a,
#sidebarMenuAlt .accordion-item > a {
	color: var(--black);
	background-color: var(--light-gray);
	border-bottom: 1px solid white;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
	text-decoration: none;
	width: 100%;
	display: block;
	font-family: "Montserrat";
	font-weight: 700;
}
#sidebarMenu ul li a,
#sidebarMenuAlt ul li a
{
	background-color:#c4c3c3;
}
#sidebarMenu .accordion-item:first-of-type, #sidebarMenuAlt .accordion-item:first-of-type { border-top-left-radius:0; border-top-right-radius:0 }
#sidebarMenu .accordion-item:last-of-type, #sidebarMenuAlt .accordion-item:last-of-type { border-bottom-left-radius:0; border-bottom-right-radius:0 }
#sidebarMenu .accordion-button, 
#sidebarMenuAlt .accordion-button {
	background-color: var(--light-gray);
	border-bottom: 1px solid white;
	border-radius: 0;
	color: var(--black);
	padding: 0.5rem 1rem;
	font-family: "Montserrat";
	font-size:0.875rem;
	font-weight: 700;
}

#sidebarMenu .accordion-button:focus,
#sidebarMenu .accordion-button:active,
#sidebarMenuAlt .accordion-button:focus,
#sidebarMenuAlt .accordion-button:active {
	color: var(--black);
}
#sidebarMenu .accordion-button:not(.collapsed)::after,
#sidebarMenuAlt .accordion-button:not(.collapsed)::after {
	background-image: none;
	transform: rotate(-180deg) translate(6px, 2px);
	color: var(--black);
}
#sidebarMenu .accordion-button::after,
#sidebarMenuAlt .accordion-button::after {
	font-family: "Font Awesome 6 Free";
	content: "\f078";
	color: var(--black);
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	background-image: none;
	transition: transform 0.2s ease-in-out;
}
#sidebarMenu .accordion-button:not(.collapsed),
#sidebarMenuAlt .accordion-button:not(.collapsed) {
	color: var(--black);
}
#sidebarMenu .accordion-button:hover,
#sidebarMenu .accordion-button:focus:hover,
#sidebarMenu ul li a:hover,
#sidebarMenu .accordion-item > a:hover,
#sidebarMenuAlt .accordion-button:hover,
#sidebarMenuAlt .accordion-button:focus:hover,
#sidebarMenuAlt ul li a:hover,
#sidebarMenuAlt .accordion-item > a:hover {
	background-color: var(--theme-primary-color);
	color: var(--white) !important;
}

#sidebarMenu .accordion-button:hover::after,
#sidebarMenuAlt .accordion-button:hover::after {
	color: var(--white) !important;
}
.slide {
	position: relative;
}
.slide p {
	font-size: 1.5em;
	font-weight: bold;
}
.slide img {
	width: 100%;
}
.slide .slide-text {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.3);
	color: var(--white);
	bottom: 0;
	width: 100%;
	height: 150px;
}
.slick-dots {
	position: relative;
	font-size: 3em;
	height: 80px;
	top: -40px;
}
.slick-dots li button:before {
	font-family: "slick";
	font-size: 1.25rem;
	line-height: 20px;
}
.container-fluid.below-slider {
	position: relative;
	top: -50px;
}

/* Blog/News Listing/Post */
.container-news-post, .container-news-listing { max-width:1080px; }
.news-intro-image { background-size:cover; height:25vh!important; }
.news-list { margin-bottom:3em; }
.news-list img { object-fit:cover; height:100%; width:100%; }

/* Bootstrap Card */
.card.card-photo-boxes {
	background-color: var(--theme-primary-color);
	border: 0px;
	color: var(--white);
}
.row-photo-boxes a {
	text-decoration: none !important;
}
.row-photo-boxes a:visited {
	color: inherit !important;
}

.card.primary-card .card-header {
	background-color: var(--theme-primary-color);
	color: var(--white);
}
.card ul.card-links {
	list-style-type: none;
}
.card ul.card-links a {
	font-weight: bold;
	font-size: 1.2em;
	text-decoration: none;
}
.card ul.card-links a:hover {
	text-decoration: underline;
}
/* magazine styles	*/
.heroGraphic {
	background-size: cover;
	background-position: 50%;
	min-height: 56vw;
	padding: 1.25rem 0.625rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}
.magazine-title-box {
	border: 10px solid var(--white);
	width: 85rem;
	text-align: center;
	position: relative;
	background-color: rgba(0, 0, 0, 0.5); /* for accessability */
}
.magazine-title-box.title-bottom {
	margin-bottom: 4em;
	margin-top: auto;
}
.magazine-title-box.title-middle {
	margin-bottom: 8em;
}
.magazine-title-box-alt {
	margin-bottom: 2em;
	padding: 20px 80px;
	font-size: 2.25rem;
	margin-top: auto;
	text-align: center;
	position: relative;
	background-color: #ffffff;
	color: #062f6e;
	font-weight: 700;
}
.magazine-title-box p.title {
	color: var(--white);
	font-weight: bold;
	font-size: 4rem !important;
	margin-bottom: 0;
	margin-top: 2rem;
}
.magazine-title-box p.subtitle {
	color: var(--white);
	font-size: 3rem;
	font-weight: 300;
	font-style: italic;
	margin-bottom: 0;
}
.magazine-title-box a {
	bottom: -40px;
	position: relative;
}
.magazine-card {
	box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 40px 0px;
	overflow: hidden;
}
@media (min-width: 1200px) {
	.magazine-card {
		/*		 height: 230px; */
	}
	.magazine-card .row {
		height: 100%;
	}
}

.magazine-card-image {
	background-repeat: no-repeat;
	background-size: cover;
}
.magazine-card p.title {
	font-size: 2em;
	line-height: 1.1em;
	font-weight: bold;
	color: var(--theme-primary-color);
}
.magazine-card p.subtitle {
	font-size: 1.15em;
	line-height: 1.1em;
	font-weight: 600;
	color: var(--theme-primary-color);
}
.magazine-card p.byline {
	color: var(--black);
	color: var(--theme-primary-color);
}
.magazine-container {
}
.magazine-container h1 {
	color: var(--theme-primary-color);
	font-size: 4.3125em;
	font-family: "Montserrat";
	font-weight: 600;
}
@media (max-width: 991px) {
	.magazine-container h1 {
		font-size: 2.5rem;
	}
}

.magazine-container h2 {
	color: var(--theme-primary-color);
	font-size: 1.2em;
	font-weight: 600;
}
.magazine-container span.byline {
	color: var(--black);
	font-size: 1em;
}
.magazine-container .highlight {
	text-align: center;
	background-color: var(--theme-magazine-blue);
	color: var(--white);
	font-weight: 800;
}
.magazine-container blockquote {
	color: var(--theme-magazine-blue);
	font-weight: 800;
}
.magazine-share-links a {
	padding: 10px 5px;
	color: var(--theme-secondary-color);
}
.magazine-share-links a:last-child {
	padding-right: 20px;
}
.magazine-share-links a:hover {
	color: var(--theme-primary-color);
}
.magazine-prev-next a {
	text-decoration: none;
	color: var(--black);
}
.magazine-prev-next a:first-child {
	margin-right: 40px;
}
.magazine-prev-next a:hover {
	color: var(--theme-secondary-color);
}
.magazine-prev-next a span {
	font-size: 2em;
	position: relative;
	top: 7px;
}
.magazine-prev-next a span.fa-arrow-right {
	left: 10px;
}
.magazine-prev-next a span.fa-arrow-left {
	right: 5px;
}
.back-issue-card {
	max-width: 18.475em;
}
.back-issue-card img {
}
.back-issue-card p {
	font-weight: 800;
	margin: 0.5em 0 0.5em 0;
}
.back-issue-card a {
	font-size: 0.75em;
}
.program-card .card-header {
	background-color: var(--theme-light-blue);
	color: var(--white);
	font-weight: bold;
}
.program-card .subhead {
	padding: 5px;
	display: block;
	text-align: center;
	color: #000000;
	font-weight: bold;
	background-color: #dcdcdc;
}
/* footer	*/
footer {
	width: 100%;
	background-color: var(--theme-primary-color);
	color: var(--white);
}
.footer-link-bar {
	background-color: var(--white);
	border-radius: 1.5rem;;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.footer-link-bar,
.footer-link-bar a {
	color: var(--dark-gray);
	text-decoration: none;
    font-size: 14.5px;
}
.footer-link-bar a:hover {
	color: var(--theme-primary-color);
	text-decoration: underline;
}
.footer-link-bar .nav-item .nav-link:after {
    content: "  | ";
}
.footer-link-bar .nav-item:nth-child(-n+2) a:after{
    content: none;
}
.footer-link-bar .nav-item:last-child a:after {
    content: none;
}
.footer-link-bar .nav-item .nav-link,
.copy-right-text{
    padding: .2rem .3rem;
    padding-right: 0;
}
.footer-link-bar .nav-item:first-child a {
    padding: 0;
}
.footer-link-bar .nav-item,
.footer-link-bar .copy-right-text {
    padding-right: 0 !important;
}
.footer-main {
	background-color: var(--theme-primary-color);
	font-weight: 500;
}

.footer-main ul {
	list-style-type: none;
}
.footer-main a,
.footer-main .nav>.nav-item>.nav-link{
	color: var(--white);
	text-decoration: none;
	transition: opacity .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.footer-main .nav>.nav-item>.nav-link:hover{
	color: var(--white);
	opacity: .65;
}
.footer-main .socials ul {
	position: relative;
	padding-left: 0;
}
.footer-main .socials ul li {
	display: inline;
}
.footer-main .socials ul li a img {
	opacity: 1;
	transition: opacity .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.footer-main .socials ul li a:hover img {
    opacity: 0.65;
}
.copy-right-text{
    display: block;
}
.bottom-footer-link {
	font-weight: bold;
}

.program {
}
.program-thumb {
	width: 100%;
}
.program-card {
	transition: all 0.35s ease;
}
.program-title {
	font-weight: 800;
	color: var(--theme-primary-color);
}
.program-trigger::before {
	content: "More";
}
.program-trigger.open::before {
	content: "Less";
}

.page-anchors {
	list-style-type: none;
	padding: 0;
}
.page-anchors li {
	display: inline;
	font-weight: bold;
}
.page-anchors li:not(:last-child):after {
	margin: 0 10px;
	content: "|";
}
.page-anchors li a {
	text-decoration: none;
	color: var(--theme-primary-color);
}
.page-anchors li a:hover {
	text-decoration: underline;
}
h3.degree-title {
	background-color: var(--theme-primary-color);
	color: var(--white);
	font-weight: bold;
	border-radius: 2em;
	padding: 10px 20px;
	text-align: center;
}
.zone-demo {
	border: 1px solid #dd0000;
	padding: 10px;
}
.content-demo {
	border: 1px solid green;
	padding: 10px;
}
.collapsing {
	height: 0;
	overflow: hidden;
	transition: all 0.35s ease;
}
/* magazine lightbox	*/

a.lightbox-link img {
	max-width: 100%;
}

/* faculty page	*/
.faculty-box-info,
.faculty-box-info-title,
.faculty-box-info-desc {
	float: left;
}
.faculty-box-info-title {
	margin-right: 8px;
	font-weight: 600;
	font-size: 1em;
}
.faculty-box-info {
	width: 100%;
}
.faculty-box-info-title:after {
	content: ":";
}
.faculty-title,
.faculty-department {
	display: block;
	margin: 15px 0;
}
.faculty-title {
	font-size: 2em;
	font-weight: bold;
}
.faculty-department {
	font-size: 1.5em;
}
p.tab-title {
	font-weight: bold;
	font-size: 1.2em;
}

.filtered-faculty h4 a {
	color: var(--theme-primary-color);
	text-decoration: none;
}
.filtered-faculty h4 a:hover {
	text-decoration: underline;
}
ul.faculty-sidenav,
ul.subnav {
	list-style-type: none;
}
ul.faculty-sidenav li a.active {
	background-color: var(--light-gray);
	font-weight: bold;
}
ul.faculty-sidenav li a,
ul.subnav li a {
	color: var(--theme-primary-color);
	text-decoration: none;
	border-radius: 3px;
	display: block;
	padding: 5px 0 5px 10px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
ul.faculty-sidenav li a:hover,
ul.subnav li a:hover {
	background-color: var(--light-gray);
}
/* datatables styles */
.page-item .page-link {
	color: var(--darker-gray);
}
.page-item.active .page-link {
	z-index: 3;
	color: var(--darker-gray);
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0%, var(--white)),
		color-stop(100%, var(--light-gray))
	);
	border-color: var(--darker-gray);
}

.centered-text-input {
	width: calc(100% - 75px);
}
.footer-main hr {
	opacity: 1;
	background-color: var(--white);
	margin-left: calc(2em + 12px);
	width: 85%;
}
/* Search bar - header */
.search-wrap { display:inline-block; }
.btn-search { background-color:#f0f0f0; border: none; color: var(--theme-primary-color); }
.search-wrap input#uhd-search-input{ padding-left:10px; border:none; font-weight:300; width:200px; background-color: var(--white); }

@media (max-width:767px){
	.search-wrap{margin-bottom:10px;width:100%;}
	.search-wrap form,.search-wrap form input#uhd-search-input{width:100%}
}

/* Search results page - google cse overrides */
.gsc-control-cse { font-family: "Montserrat", Tahoma, sans-serif!important; }
.gsc-search-button { padding-top:10px!important; padding-bottom:10px!important; }
.gsc-control-cse .gs-spelling, .gsc-control-cse .gs-result .gs-title, .gsc-control-cse .gs-result .gs-title * {font-size:1.125em!important;}
.gsc-control-cse .gsc-table-result { font-family: "Montserrat", Tahoma, sans-serif!important; }
.gsc-control-cse, .gsc-control-cse .gsc-table-result { font-size:1em!important; }
.gs-webResult.gs-result a.gs-title:hover, .gs-webResult.gs-result a.gs-title:hover b, .gs-imageResult a.gs-title:hover, .gs-imageResult a.gs-title:hover b { color:#0a58ca!important; text-decoration:underline!important; }
.gsc-webResult.gsc-result { border-bottom:1px solid #e9e9e9!important; padding: 15px 0!important; }
.gsc-results .gsc-cursor-box { margin:30px 0 0!important; }
.gsc-results .gsc-cursor-box .gsc-cursor-page { border: 1px solid #e9e9e9!important; margin:0!important; padding:5px 8px!important; }
.gsc-results .gsc-cursor-box .gsc-cursor-page:hover { background-color:#e9e9e9!important; color:#000000!important; text-decoration:none!important;}
.gsc-results .gsc-cursor-box .gsc-cursor-current-page { background-color:var(--theme-primary-color)!important; color:#ffffff!important; }
.gcsc-more-maybe-branding-root { display:none!important; }
.gs-promotion-text-cell { margin-left:0!important; }
.gs-promotion-text-cell .gs-visibleUrl, .gs-promotion-text-cell .gs-snippet { font-size:1em!important; }

.sidebar-title {
	font-size: 2.5em;
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
}
.faculty-title {
	color: var(--theme-primary-color);
	text-decoration: none;
	font-size: 1.5em;
	font-weight: 500;
}
.faculty-title a {
	color: var(--theme-primary-color);
	text-decoration: none;
}
.faculty-title a:hover {
	text-decoration: underline;
}


/* custom uhd styles that weren't brought over during initial implementation */

/* Bootstrap Overrides and Add-ons */
.text-primary { color:var(--theme-primary-color)!important; }
.text-secondary { color:var(--theme-secondary-color)!important; }
.bg-primary { background-color:var(--theme-primary-color)!important; }
.bg-secondary { background-color:var(--theme-secondary-color)!important; }
.table-bordered { border-color:#595959; }
.table-bordered th, .table-bordered td, .table-bordered thead th { border-color:#595959; }
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover { background:none; } /* override Slate form CSS bkgd color on carousel next/prev button */
.accordion-button:focus:not(:focus-visible).collapsed { background-color:inherit; color:inherit; } /* override Slate form CSS bkgd color on accordion buttons */

/* Slider */
.slider { padding:0 16px; max-width:100%; }
.slider .slick-arrow { background-color:transparent; border:none; color:var(--theme-primary-color); font-size:2.75rem; position:absolute; top:50%; -webkit-transform:translateY(-50%); -ms-transform:translateY(-50%); transform:translateY(-50%); -webkit-appearance:none; -moz-appearance:none; appearance:none; z-index:5; }
.slider .slick-prev { left:-10px; min-width:0; }
.slider .slick-next { right:-10px; min-width:0; }
.slider .slick-prev:before { content:normal; }
.slider .slick-next:before { content:normal; }

@media(max-width:480px){
	.slider .slick-arrow { font-size:2.3125rem; }
	.slider .slick-prev { left:-28px; }
	.slider .slick-next { right:-28px; }
}

/* library */
.tab.current { display:block; }
.tabs-nav-toggle { display:none; }
.tabs-nav { border-bottom:1px solid #fff; }
.tabs-nav ul { overflow:hidden; margin:0; padding:0; list-style:none outside none; }
.tabs-nav li { float:left; width:20%; }
.tabs-nav li + li { border-left:1px solid #fff;	}
.tabs-nav a { display:block; height:41px; padding:7px 10px 0 18px; background:#e6e5e5; font-size:0.875em; color:#545253; text-decoration:none;}
.tabs-nav .current a,
.tabs-nav a:hover { background:#727272; color:#ffffff; text-decoration:none; }
.tabs-body { /* height:346px;*/ background:#e6e5e5; }
.tabs-body-inner { /* height:346px; */ }
.tab { display:none; padding:24px; }
.section-library-search { margin-bottom:20px; padding:20px 0; background:#e6e5e5; }
.section-library-search .section-actions .btn { width:100%; margin-left:-3px; text-decoration:none; }
.section-library-search .section-actions { padding-top:20px; }
.section-library-search .section-content { background:#fff; }
.section-library-search .section-aside { background:#f8f8f8; }
.section-library-search .section-nav ul { margin-bottom:0; list-style:none outside none; }
.section-library-search .section-nav { padding-left:0; background:#fff; }
.section-library-search .section-nav li + li { border-top:1px solid #e6e5e5; }
.section-library-search .section-nav a { display:block; padding:14px 10px 10px; background: var(--uhd-gray-dark); font-size:0.875em; font-weight:bold; color:#ffffff; letter-spacing:1px; text-decoration:none;}
.section-library-search .section-nav .current a,
.section-library-search .section-nav a:hover { background:var(--theme-primary-color); text-decoration:none; }
.section-library-search .row { margin:0; }
.section-library-search .section-aside { position:relative;	}
.section-library-search .help { position:absolute; top:50%; left:0; width:100%; -webkit-transform:translateY(-50%); -ms-transform:translateY(-50%); -o-transform:translateY(-50%); transform:translateY(-50%); }
.section-library-search .tab { padding:10px 0 10px; }
.section-library-search .tabs-nav { border-bottom:0; }
.section-library-search .tabs-nav li { float:none; width:100%; }
.section-library-search .tabs-nav li + li { border-left:0; }
.section-library-search .tab-title { margin:0; color:#313131; font-size:2.25em; }
.section-library-search .form-search { padding-top:17px; }
.section-library-search .form-search .form-body { position:relative; border:1px solid var(--uhd-gray-dark); margin-bottom:18px; }
.section-library-search .form-search .form-btn { position:absolute; top:1px; right:1px; width:35px; height:35px; min-width:35px; border:0; border-radius:0; background:var(--uhd-gray-dark); }
.section-library-search .form-search .form-btn:hover { background:#000; }
.section-library-search .form-search .form-row { height:37px; padding-right:35px; }
.section-library-search .form-search .form-row-inner { overflow:hidden; padding:10px 0 0 5px; width:100%; }
.section-library-search .form-search .field { width:100%; border:0; padding:0 5px; font-size:1em; color:#545253; }
.section-library-search .form-search .field::-webkit-input-placeholder { color:#545253; }
.section-library-search .form-search .field:-moz-placeholder { color:#545253; }
.section-library-search .form-search .field::-moz-placeholder { color:#545253; }
.section-library-search .form-search .field:-ms-input-placeholder { color:#545253; }
.section-library-search .form-search .form-foot p { padding-bottom:15px; margin:0; }
.section-library-search .form-search .form-note { padding-top:6px; }
.section-library-search .form-search .form-label { position:absolute; top:-19px; left:0; font-weight:normal; }
.section-library-search .checkboxes { margin:0 0 14px 0; list-style-type:none; }
.section-library-search .checkbox { margin:0; }
.section-library-search .checkbox input { display:none; }
.section-library-search .checkbox label { position:relative; padding-left:22px; }
.section-library-search .checkbox label:before { position:absolute; top:-1px; left:0; width:15px; height:15px; border:1px solid #9d9d9e; content:''; }
.section-library-search .checkbox input:checked + label:before { background:#084e96; }
.section-library-search .keywords-select { float:left; width:145px; }
.section-library-search .list-links-secondary { margin:0; list-style:none outside none; }
.section-library-search .list-links a { color:#084e96; text-decoration:none;}
.section-library-search .help { text-align:center; }
.section-library-search .help h2 { padding-bottom:18px; margin:0; line-height:1.25; border-bottom:none; color:inherit; }
.section-library-search .databases-search-head h6 { margin:0; }
.section-library-search .databases-search-body {	}
.section-library-search .databases-search ~ .databases-search { padding-top:17px; }
.section-library-search .databases-search-body p { padding-bottom:0; margin:0;	}
.section-library-search .databases-search-characters { padding-top:7px; font-size:1em; }
.section-library-search .databases-search-characters a { display:inline-block; margin:0 2px 7px 3px; text-decoration:none;}
.section-library-search .databases-search-body ul { margin:0; list-style:none outside none;	}
.section-library-search .databases-search-body li { padding-bottom:1px; text-align:left; }
.section-library-search .databases-search-body .col-sm-6 { padding:0; }
.library-links { margin:0 0 40px; }
.library-links, .library-links a { color:#545253; }
.library-links ul { margin:0; list-style:none outside none;	}
.library-links li { padding:8px 0 8px; border-top:1px solid #cccccc; }

@media (max-width:767px) {
	.section-library-search .eq-height { height:auto !important; }
	.section-library-search .help { position:static; padding:30px 0; -webkit-transform:translateY(0); -ms-transform:translateY(0); -o-transform:translateY(0); transform:translateY(0); }
	.section-library-search .section-nav li + li { border-top:0; }
	.section-library-search .tabs-nav-toggle { position:relative; display:block; padding:14px 10px 10px; border-bottom:1px solid #e6e5e5; background:var(--theme-primary-color); font-size:0.6875em; color:#ffffff; letter-spacing:1px; }
	.section-library-search .tabs-nav-toggle:after { position:absolute; top:15px; right:10px; width:10px; height:6px; background:url(images/sprite.png) -249px -108px no-repeat; content:''; }
	.section-library-search .tabs-nav ul { display:none; }
	.section-library-search .tabs-nav { position:relative; padding-right:0; }
	.section-library-search .tabs-nav.open ul { display:block; position:absolute; top:100%; left:0; z-index:999; width:100%; }
	.section-library-search .tabs-nav li { float:none; width:100%; border-bottom:1px solid #fff; }
	.section-library-search .tabs-nav li + li { border-left:0; }
	.section-library-search .tabs-nav a { height:auto; padding:14px 10px 10px; }
	.section-library-search .section-actions .col-sm-3 { padding-bottom:5px; }
}

/* button override for library research guide button */
.databases-search-body .btn-default {
	background-color: var(--theme-primary-color);
	border: 2px solid transparent;
	color: var(--white)!important;
	margin-top:10px;

}
.databases-search-body .btn-default:hover {
	background-color: var(--white);
	border: 2px solid var(--theme-primary-color);
	color: var(--theme-primary-color)!important;
}

/* fact book tables */
.table-fact-book { border-spacing:0; width:100%; }
.table-fact-book tbody tr:nth-of-type(odd) { background-color:#e9ecf7; }
.table-fact-book th, .table-fact-book td { border:1px solid var(--theme-primary-color)!important; }

/* degree page sidebar card */
.card-degree { border:none; }
.card-degree .card-header { background-color:var(--theme-primary-color); border-bottom:5px solid var(--theme-secondary-color); color:#ffffff; font-size:1.57rem; font-weight:bold; line-height:100%; margin:0; padding:0.5rem 1rem !important; }
.card-degree .card-body { background-color:#eaeaea; padding-top:0; }
.card-degree .text-df { color:#eaeaea; }

/* degree sheets */
.dSheet h1{ color:#25344c; font-weight:bolder; }
.dSheet h2{ margin:0; }
.dSheet h2>span{ color:#25344c; font-weight:bold; }
.dSheet ul{ list-style-type:square!important; }
.dSheet>.row>.dSheetSidebar{ background-color:#51627e; color:#ffffff; }
.dSheet>.row>.dSheetSidebar ul{ line-height:1.5; }
.dSheet>.row>.dSheetSidebar *{ color:#ffffff!important; }
.dSheet>.row>.dSheetSidebar h2{ font-weight:bold; }
.dSheet>.row>.dSheetSidebar>p{ line-height:1.5; padding-left:10px; padding-right:10px; }
.dSheet>.row>.dSheetSidebar>h2:first-child>span{ margin-top:0!important; }

/* admissions timeline */
ul.admissions-timeline { list-style-type: none; position: relative; }
ul.admissions-timeline:before { content: ' '; background: #bababa; display: inline-block; position: absolute; left: 29px; width: 2px; height: 100%; z-index: 400; }
ul.admissions-timeline > li { margin: 20px 0; padding-left: 20px; }
ul.admissions-timeline > li:before { content: ' ';  background: white; display: inline-block; position: absolute; border-radius: 50%; border: 3px solid var(--theme-primary-color); left: 20px; width: 20px; height: 20px; z-index: 400; }

/* events lists */
.events { list-style:none outside none; margin-bottom:25px!important; }
.event { display:-webkit-box; display:-ms-flexbox; display:flex; -webkit-box-align:center; -ms-flex-align:center; align-items:center; }
.events .event + .event { margin-top:22px; }
.event .event__date { -webkit-box-flex:0; -ms-flex:0 0 66px; flex:0 0 66px; max-width:66px; border:1px solid #acb1b6; height:66px; }
.event .event__month { color:#ffffff; background-color:var(--theme-primary-color); font-size:0.6875rem; text-align:center; padding:2px 0; }
.event .event__day { text-align:center; color:var(--theme-primary-color); font-size:1.625rem; font-weight:500; line-height:45px; }
.event .event__content { -webkit-box-flex:0; -ms-flex-positive:0; flex-grow:0; -ms-flex-negative:0; flex-shrink:0; -ms-flex-preferred-size:calc(100% - 66px); flex-basis:calc(100% - 66px); max-width:calc(100% - 66px); padding-left:16px; }

div.widget-contacts { margin-bottom:20px; }
.widget-contacts { padding:17px 10px; background:#e6e5e5; color:--uhd-gray-dark; }
.widget-contacts .btn { width:100%; }
.widget-contacts .btn ~ .btn { margin-top:13px; text-decoration:none; }

/* sacs timeline */
.sacs-main-timeline{position: relative;}
.sacs-main-timeline:before{content: '';height: 100%;width: 2px;border: 3px dashed #999;transform: translateX(-50%);position: absolute;left: 50%;top: 0;}
.sacs-main-timeline:after{content: '';display: block;clear: both;}
.sacs-main-timeline .sacs-timeline{width: 50.05%;display:inline-block;float: left;position: relative;z-index: 1;}
.sacs-main-timeline .sacs-timeline:before,.sacs-main-timeline .sacs-timeline:after{content: '';background-color:var(--theme-primary-color);height: 25px;width: 25px;border-radius: 50%;transform: translateY(-50%);position: absolute;top: 50%;right: -12px;}
.sacs-main-timeline .sacs-timeline:after{height: 17px;width: 150px;border-radius: 0;right: 0;}
.sacs-main-timeline .sacs-timeline-content{text-align: right;min-height: 155px;padding: 20px 230px 15px 12px;display:block;}
.sacs-main-timeline .sacs-timeline-content:hover{ text-decoration: none; }
.sacs-main-timeline .sacs-timeline-year{color:var(--theme-primary-color);background-color: #fff;font-size: 1.25rem;font-weight: 600;text-align: center;line-height: 100px;height: 120px;width: 120px;border: 10px solid var(--theme-primary-color);transform: translateY(-50%);position: absolute;right: 100px;top: 50%;z-index: 1;}
.sacs-main-timeline .title{color:var(--theme-primary-color);font-size: 1.375rem;font-weight: 600;text-transform: capitalize;letter-spacing: 1px;margin: 0 0 5px;}
.sacs-main-timeline .description{color: #101010;font-size:0.9375rem; letter-spacing: 1px;margin: 0;}
.sacs-main-timeline .sacs-timeline:nth-child(even){ float: right; }
.sacs-main-timeline .sacs-timeline:nth-child(even):before{right: auto;left: -12px;}
.sacs-main-timeline .sacs-timeline:nth-child(even):after{right: auto;left: 0;}
.sacs-main-timeline .sacs-timeline:nth-child(even) .sacs-timeline-content{padding: 20px 12px 15px 230px;text-align: left;}
.sacs-main-timeline .sacs-timeline:nth-child(even) .sacs-timeline-year{right: auto;left: 100px;}
.sacs-main-timeline .sacs-timeline:nth-child(5n+2):before,.sacs-main-timeline .sacs-timeline:nth-child(5n+2):after{background-color: var(--theme-secondary-color);}
.sacs-main-timeline .sacs-timeline:nth-child(5n+2) .sacs-timeline-year{color:var(--theme-secondary-color);border-color: var(--theme-secondary-color);}
.sacs-main-timeline .sacs-timeline:nth-child(5n+2) .title{ color: var(--theme-secondary-color); }
.sacs-main-timeline .sacs-timeline:nth-child(5n+3):before,.sacs-main-timeline .sacs-timeline:nth-child(5n+3):after{background-color:var(--theme-primary-color);}
.sacs-main-timeline .sacs-timeline:nth-child(5n+3) .sacs-timeline-year{color:var(--theme-primary-color);border-color:var(--theme-primary-color);}
.sacs-main-timeline .sacs-timeline:nth-child(5n+3) .title{ color: var(--theme-secondary-color); }
.sacs-main-timeline .sacs-timeline:nth-child(5n+4):before,.sacs-main-timeline .sacs-timeline:nth-child(5n+4):after{background-color: var(--theme-secondary-color);}
.sacs-main-timeline .sacs-timeline:nth-child(5n+4) .sacs-timeline-year{color:var(--theme-secondary-color);border-color: var(--theme-secondary-color);}
.sacs-main-timeline .sacs-timeline:nth-child(5n+4) .title{ color: var(--theme-secondary-color); }
@media screen and (max-width:990px){.sacs-main-timeline .sacs-timeline-year{ right: 30px; }
	.sacs-main-timeline .sacs-timeline-content{ padding: 15px 160px 15px 15px; }
	.sacs-main-timeline .sacs-timeline:nth-child(even) .sacs-timeline-year{ left: 30px; }
	.sacs-main-timeline .sacs-timeline:nth-child(even) .sacs-timeline-content{ padding: 15px 15px 15px 160px; }
}
@media screen and (max-width:767px){.sacs-main-timeline:before{transform: translateX(0);left: -3px;}
	.sacs-main-timeline .sacs-timeline{width: 100%;margin-bottom: 20px;}
	.sacs-main-timeline .sacs-timeline:before,.sacs-main-timeline .sacs-timeline:after,.sacs-main-timeline .sacs-timeline:nth-child(even):before,.sacs-main-timeline .sacs-timeline:nth-child(even):after{transform: translateY(0);top: 14px;}
	.sacs-main-timeline .sacs-timeline:before,.sacs-main-timeline .sacs-timeline:after{right: auto;left: -12px;}
	.sacs-main-timeline .sacs-timeline:after{ left: 0; }
	.sacs-main-timeline .sacs-timeline:after,.sacs-main-timeline .sacs-timeline:nth-child(even):after{width: 50px;top: 17px;}
	.sacs-main-timeline .sacs-timeline .sacs-timeline-content,.sacs-main-timeline .sacs-timeline:nth-child(even) .sacs-timeline-content{text-align: left;padding: 70px 10px 10px 20px;}
	.sacs-main-timeline .sacs-timeline .sacs-timeline-year,.sacs-main-timeline .sacs-timeline:nth-child(even) .sacs-timeline-year{line-height: 40px;height: 50px;width: 120px;border-width: 5px;transform: translateY(0);top: 0;left: 45px;}
}
.sacs-timeline2 { list-style: none; padding: 20px 0 20px; position: relative; }
.sacs-timeline2:before {top: 0;bottom: 0;position: absolute;content: " ";width: 3px;background-color: #eeeeee;left: 50%;margin-left: -1.5px;}
.sacs-timeline2 > li {margin-bottom: 20px;position: relative;}
.sacs-timeline2 > li:before,.sacs-timeline2 > li:after {content: " ";display: table;}
.sacs-timeline2 > li:after {clear: both;}
.sacs-timeline2 > li:before,.sacs-timeline2 > li:after {content: " ";display: table;}
.sacs-timeline2 > li:after {clear: both;}
.sacs-timeline2 > li > .sacs-timeline2-panel {width: 46%;float: left;border: 1px solid #d4d4d4;border-radius: 2px;padding: 20px;position: relative;-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);}
.sacs-timeline2 > li > .sacs-timeline2-panel:before {position: absolute;top: 26px;right: -15px;display: inline-block;border-top: 15px solid transparent;border-left: 15px solid #ccc;border-right: 0 solid #ccc;border-bottom: 15px solid transparent;content: " ";}
.sacs-timeline2 > li > .sacs-timeline2-panel:after {position: absolute;top: 27px;right: -14px;display: inline-block;border-top: 14px solid transparent;border-left: 14px solid #fff;border-right: 0 solid #fff;border-bottom: 14px solid transparent;content: " ";}
.sacs-timeline2 > li > .sacs-timeline2-badge {color: #fff;width: 50px;height: 50px;line-height: 50px;font-size: 1.4em;text-align: center;position: absolute;top: 16px;left: 50%;margin-left: -25px;background-color: #999999;z-index: 100;border-top-right-radius: 50%;border-top-left-radius: 50%;border-bottom-right-radius: 50%;border-bottom-left-radius: 50%;}
.sacs-timeline2 > li.sacs-timeline2-inverted > .sacs-timeline2-panel {float: right;}
.sacs-timeline2 > li.sacs-timeline2-inverted > .sacs-timeline2-panel:before {border-left-width: 0;border-right-width: 15px;left: -15px;right: auto;}
.sacs-timeline2 > li.sacs-timeline2-inverted > .sacs-timeline2-panel:after {border-left-width: 0;border-right-width: 14px;left: -14px;right: auto;}
.sacs-timeline2-badge.primary {background-color:var(--theme-primary-color) !important;}
.sacs-timeline2-badge.success {background-color: #bababa !important;}
.sacs-timeline2-badge.warning {background-color: var(--theme-primary-color) !important;}
.sacs-timeline2-badge.danger {background-color: #bababa !important;}
.sacs-timeline2-badge.info {background-color: var(--theme-primary-color) !important;}
.sacs-timeline2-title {margin-top: 0;color: inherit;}
.sacs-timeline2-body > p,.sacs-timeline2-body > ul {margin-bottom: 0;}
.sacs-timeline2-body > p + p {margin-top: 5px;}
@media (max-width: 767px) {ul.sacs-timeline2:before {left: 40px;}
	ul.sacs-timeline2 > li > .sacs-timeline2-panel {width: calc(50% - 90px);width: -moz-calc(50% - 90px);width: -webkit-calc(50% - 90px);}
	ul.sacs-timeline2 > li > .sacs-timeline2-badge {left: 15px;margin-left: 0;top: 16px;}
	ul.sacs-timeline2 > li > .sacs-timeline2-panel {float: right;}
	ul.sacs-timeline2 > li > .sacs-timeline2-panel:before {border-left-width: 0;border-right-width: 15px;left: -15px;right: auto;}
	ul.sacs-timeline2 > li > .sacs-timeline2-panel:after {border-left-width: 0;border-right-width: 14px;left: -14px;right: auto;}
}

/* cob comment cards */
.boddy { color: rgba(0, 0, 0, 0.6); font-size: 0.875em; line-height: 1.6em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-transition: 0.5s ease; transition: 0.5s ease; }
.c-card .btnn { border-radius: 2px; padding: 8px 12px; color: var(--theme-secondary-color); font-size: 0.875em; font-weight: 500; text-decoration: none; -webkit-transition: 0.5s ease; transition: 0.5s ease; }
.c-card { background: #FFFFFF; max-width: 400px; margin: 20px auto; border-radius: 12px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); box-sizing: border-box; padding: 28px; text-align: center; }
.c-card .products { position: relative; overflow: hidden; -webkit-transition: 0.5s ease; transition: 0.5s ease; }
.c-card .product { position: absolute; top: 0; left: 0; opacity: 0; visibility: hidden; -webkit-transition: 0.5s ease; transition: 0.5s ease; }
.c-card .product.active { opacity: 1; visibility: visible; }
.c-card .thumbnail { margin: 0 0 48px; }
.c-card .title { margin: 0 0 12px; color: var(--theme-primary-color) font-size: 1.125em!important; -webkit-transition: 0.5s ease; transition: 0.5s ease; }
.c-card .description { margin: 0 0 18px; }
.c-card .footerr { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row;   flex-direction: row; -webkit-box-pack: justify; -ms-flex-pack: justify;   justify-content: space-between; margin: 0 -12px -12px; }
[ripple] { z-index: 1; position: relative; overflow: hidden; }
[ripple] .ripple { position: absolute; background: #FFFFFF; width: 60px; height: 60px; border-radius: 100%; -webkit-transform: scale(0); transform: scale(0); -webkit-animation: ripple 2s; animation: ripple 2s; }

/********* Last Component Bottom Spacing *********/
main#maincontent .col-12>section.container-fluid:last-child {
    padding-bottom: 0 !important;
    !i;!;!;margin-bottom: 0 !important;
}


/********* MC Cal Events *********/
    .featured-events,
	.featured-events a {
        color: var(--white);
        text-decoration: none;
    }
    .featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(odd),
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(odd) .event-time-loc {
        background-color: var(--theme-primary-color);
	}
    .featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(even),
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(even) .event-time-loc {
        background-color: #CDD2DB;
	}
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(odd) .event-info,
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(odd) .event-info .event-date,
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(odd) .event-footer {
        background-color: var(--white);
	}
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(even) .event-info,
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(even) .event-info .event-date,
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(even) .event-footer {
         background-color: var(--theme-primary-color);
	}
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(odd) .event-info .event-date,
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(even) .event-time-loc,
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(even) .event-name,
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(even) .event-footer .event-btn {
		color: var(--theme-primary-color);
	}
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(even) .event-info .event-date,
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(even) .event-footer .event-cat{
		color: #CDD2DB;
	}
    .featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(odd) .event-info{
		background: linear-gradient(135deg, #ffffff 90%, var(--theme-primary-color) 90%);
	}
    .featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(even) .event-info{
		background: linear-gradient(135deg, var(--theme-primary-color) 90%, #CDD2DB 90%);
	}
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(odd) .event-footer .event-btn {
		background: linear-gradient(115deg, rgba(255,255,255,0) 76.7%, #092E6E 77%);
	}
	.featured-events div.row:nth-child(2)>div.events-wrapper>div.event-wrapper:nth-of-type(even) .event-footer .event-btn {
		background: linear-gradient(115deg, rgba(9, 46, 110, 0) 76.7%, #CDD2DB 77%);
	}
    .featured-events .events-wrapper{
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .featured-events .events-wrapper .event-wrapper {
        border-radius: 1em;
        margin: 0 1em;
        margin-bottom: 3em;
        overflow: hidden;
        position: relative;
        width: 400px;
    }
    .featured-events .events-wrapper .event-wrapper>a {
        display:flex;
        flex-direction: column;
        justify-content: space-around;
        min-height: 100%;
    }
    .featured-events .events-wrapper .event-wrapper .event-info {
        position: relative;
    }
    .featured-events .events-wrapper .event-wrapper .event-info .event-date {
        display: inline-block;
        font-weight: 800;
        font-size: 3.3em;
        line-height: 1;
        text-align: center;
        padding: 0 .2em;
        padding-bottom: .3em;
        text-transform: uppercase;
    }
    .featured-events .events-wrapper .event-wrapper .event-info .event-date {
    }
    .featured-events .events-wrapper .event-wrapper .event-info .month {
		font-size: .66em;
		font-weight: bold;
	}
    .featured-events .events-wrapper .event-wrapper .event-time-loc{
		position: absolute;
		top: 0;
		left: 113px;
		right: 0;
		width: auto;
		min-height: 113px;
		padding: .5em;
		display: flex;
		flex-direction: column;
		font-weight: bold;
		font-size: 1.25em;
	}
    .featured-events .events-wrapper .event-wrapper .event-time-loc .time{
		font-size: 1em;
	}
    .featured-events .events-wrapper .event-wrapper .event-time-loc .location{
		font-weight: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.featured-events .events-wrapper .event-wrapper .event-name {
		padding: 2em;
		margin-top: auto;
		margin-bottom: auto;
	}
	.featured-events .events-wrapper .event-wrapper .event-name p {
		font-size: 2em;
		font-weight: bold;
		text-align: center;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.featured-events .event-footer {
	}
	.featured-events .event-footer .event-cat {
		display: inline-block;
		max-width: 75%;
		padding: .55em 1em;
		margin-bottom: 0;
		color: var(--theme-primary-color);
		font-size: 1em;
		text-align: left;
		font-weight: 500;
	}
	.featured-events .event-footer .event-btn {
		display: flex;
		align-items: center;
        justify-content: space-between;
	}
	.featured-events .event-footer .event-btn>i{
		width: 20%;
		text-align: center;
	    font-size: 3.625em;
	    padding: .245em 0;
	}
	@media (max-width: 575.98px) {
		.featured-events .events-wrapper .event-wrapper {
			margin: 0 0 3em;
		}
	}
/* Inline Search bar */
.subsearch-container form .form-label {
    font-weight: bold;
    margin: 0;
    font-size: 1rem;
}
.subsearch-container form .input-group input[type="search"] {
    border: none;
    border-radius: .625rem;
    background: #F3F3F3;
    color: var(--theme-primary-color);
	padding-right: 0;
}
.subsearch-container form .input-group .btn{
    width: 4rem;
    background: linear-gradient(115deg, #F3F3F3 20%, var(--theme-primary-color) 23%);
    border: none;
    text-align: right;
    padding: .375rem 1.125rem;
    border-radius: .625rem;
}

/* Helper Classes for Design System Patterns */

.image-slant {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.image-fade {
	-webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
    mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
}

.slant-overlay-trio {
	position: relative;
	width: 50%;
	height: 100%;
}

.slant-overlay-trio:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(
		var(--slant-overlay-stripe-angle-desktop), 
		#ffffff 0%, 
		#ffffff var(--slant-overlay-stripe-width), 
		#cdd2db var(--slant-overlay-stripe-width), 
		#cdd2db calc(var(--slant-overlay-stripe-width) + 10px), 
		#51627e calc(var(--slant-overlay-stripe-width) + 10px), 
		#51627e calc(var(--slant-overlay-stripe-width) + 18px), 
		#092e6e calc(var(--slant-overlay-stripe-width) + 18px), 
		#092e6e calc(var(--slant-overlay-stripe-width) + 23px), 
		rgba(0, 0, 0, 0) calc(var(--slant-overlay-stripe-width) + 23px), 
		rgba(0, 0, 0, 0) 100%
	);
	z-index: 1;
}

@media (max-width: 768px) {
  .image-slant {
	clip-path: unset;
  }
  .image-fade {
	-webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
    mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
  }
 .slant-overlay-trio::before {
		background: linear-gradient(
			var(--slant-overlay-stripe-angle-mobile), 
			#ffffff 0%, 
			#ffffff var(--slant-overlay-stripe-width-mobile), 
			#cdd2db var(--slant-overlay-stripe-width-mobile), 
			#cdd2db calc(var(--slant-overlay-stripe-width-mobile) + 10px), 
			#51627e calc(var(--slant-overlay-stripe-width-mobile) + 10px), 
			#51627e calc(var(--slant-overlay-stripe-width-mobile) + 18px), 
			#092e6e calc(var(--slant-overlay-stripe-width-mobile) + 18px), 
			#092e6e calc(var(--slant-overlay-stripe-width-mobile) + 23px), 
			rgba(0, 0, 0, 0) calc(var(--slant-overlay-stripe-width-mobile) + 23px), 
			rgba(0, 0, 0, 0) 100%
		);
	}
}

/* Gutter Utilities */
/* Mobile (default) */

/* outer gutters (margins) */
.gutter-outer-x { margin-left: 1.25rem; margin-right: 1.25rem; }
.gutter-outer-y { margin-top:  1.5rem;  margin-bottom: 1.5rem;  }

/* inner gutters (padding) */
.gutter-inner-x { padding-left:1.25rem; padding-right:1.25rem; }
.gutter-inner-y { padding-top: 1.5rem;  padding-bottom:1.5rem;  }

/* Tablet (>= 768px) */
@media (min-width: 768px) {
  .gutter-outer-x { margin-left: 2.5rem; margin-right: 2.5rem; }
  .gutter-outer-y { margin-top:  3rem;  margin-bottom: 3rem;  }
  .gutter-inner-x { padding-left:2.5rem; padding-right:2.5rem; }
  .gutter-inner-y { padding-top: 1.5rem; padding-bottom:1.5rem; }
}

/* Desktop (>= 992px) */
@media (min-width: 992px) {
  .gutter-outer-x { margin-left: 5rem; margin-right: 5rem; }
  .gutter-outer-y { margin-top:  5rem; margin-bottom: 5rem; }
  .gutter-inner-x { padding-left:2.5rem; padding-right:2.5rem; }
  .gutter-inner-y { padding-top: 1.5rem; padding-bottom:1.5rem; }
}

/* Single-side variants (outer = margin, inner = padding) */

/* Mobile single-sides */
.gutter-outer-top    { margin-top:    1.5rem; }
.gutter-outer-bottom { margin-bottom: 1.5rem; }
.gutter-outer-left   { margin-left:   1.25rem; }
.gutter-outer-right  { margin-right:  1.25rem; }

.gutter-inner-top    { padding-top:    1.5rem; }
.gutter-inner-bottom { padding-bottom: 1.5rem; }
.gutter-inner-left   { padding-left:   1.25rem; }
.gutter-inner-right  { padding-right:  1.25rem; }

/* Tablet single-sides */
@media (min-width: 768px) {
  .gutter-outer-top    { margin-top:    3rem;  }
  .gutter-outer-bottom { margin-bottom: 3rem;  }
  .gutter-outer-left   { margin-left:   2.5rem; }
  .gutter-outer-right  { margin-right:  2.5rem; }

  .gutter-inner-top    { padding-top:    1.5rem; }
  .gutter-inner-bottom { padding-bottom: 1.5rem; }
  .gutter-inner-left   { padding-left:   2.5rem; }
  .gutter-inner-right  { padding-right:  2.5rem; }
}

/* Desktop single-sides */
@media (min-width: 992px) {
  .gutter-outer-top    { margin-top:    5rem;  }
  .gutter-outer-bottom { margin-bottom: 5rem;  }
  .gutter-outer-left   { margin-left:   5rem;  }
  .gutter-outer-right  { margin-right:  5rem;  }

  .gutter-inner-top    { padding-top:    1.5rem; }
  .gutter-inner-bottom { padding-bottom: 1.5rem; }
  .gutter-inner-left   { padding-left:   5rem;  }
  .gutter-inner-right  { padding-right:  5rem;  }
}
