@charset "UTF-8";
/* CSS Document */
@import url("css2.css");
:root {
	--primary-color: #851632;
	--secondary-color: #e1e1e1;
	--hilite-color: #71122a;
	--white: #ffffff;
	--light-gray: #ebebeb;
	--dark-gray: #0a0a0a;
	--black: #000000;
}

body {
	font-family: "Open-sans", sans-serif;
	font-size: 1.35rem;
	font-weight: 400;
	line-height: 1.6;
	color: var(--dark-gray);
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--white);
}
.alert {
	margin: 0;
	border: none;
	border-radius: 0;
	text-align: center;
	color: var(--white);
	background-color: var(--black);
	font-size: 18px;
	font-weight: bold;
	padding: 20px;
	z-index: 3000;
}
.emergency-alert {
	top: 0;
	left: 0;
	background-color: rgba(196, 18, 48, 1);
}
.cookiealert {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	margin: 0 !important;
	z-index: 21;
	opacity: 0;
	border-radius: 0;
	transform: translateY(100%);
	transition: all 500ms ease-out;
	color: var(--primary-color);
	background-color: rgba(231, 215, 65, 1);
	padding: 30px;
	font-size: 18px;
	font-weight: 400;
}
.cookiealert .cc-message {
	padding-top: 10px;
	padding-bottom: 10px;
	display: block;
}
.cookiealert.show {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 1000ms;
}
.cookiealert.alert a {
	text-decoration: underline;
	color: var(--primary-color);
	font-weight: 600;
}
.cookiealert.alert a.btn-white {
	color: var(--primary-color);
}
.cookiealert.alert a:hover {
	text-decoration: none;
	color: var(--primary-color);
}
.cookiealert .acceptcookies {
	margin: 0;
	vertical-align: baseline;
	min-width: auto;
	text-decoration: none !important;
}
.cookiealert .acceptcookies:hover,
.cookiealert .acceptcookies:focus {
	color: var(--primary-color);
}
.alert a,
.alert a:hover,
.alert a:focus {
	color: var(--white);
	text-decoration: underline;
	text-decoration-color: var(--white);
}
.alert-dismissible .close {
	padding: 0;
	right: 15px;
	font-size: 30px;
	top: -5px;
}
.alert-dismissible .close:hover,
.alert-dismissible .close:focus {
	color: var(--white);
}

.alert .close {
	background: none;
	border: none;
}

.fa-exclamation-triangle {
	font-size: 40px;
	color: var(--primary-color);
}
.disclaimer {
	font-size: 16px;
	border-top: 5px solid var(--hilite-color);
	margin: 20px auto 50px;
	padding: 10px 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	line-height: 1.1;
}
h1,
.h1 {
	font-size: 3rem;
}
h2,
.h2 {
	font-size: 2.25rem;
}
h3,
.h3 {
	font-size: 2rem;
}
h4,
.h4 {
	font-size: 1.75rem;
}
h5,
.h5 {
	font-size: 1.5rem;
}
h6,
.h6 {
	font-size: 1.25rem;
}
h1:first-child,
.h1:first-child,
h2:first-child,
.h2:first-child,
h3:first-child,
.h3:first-child,
h4:first-child,
.h4:first-child,
h5:first-child,
.h5:first-child,
h6:first-child,
.h6:first-child {
	margin-top: 0;
}
h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child {
	margin-top: 0;
	margin-bottom: 0;
}
.banner-title {
	font-family: "EB Garamond", serif;
	font-weight: 900;
	display: inline-block;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	border-top: 4px solid var(--secondary-color);
	border-bottom: 4px solid var(--secondary-color);
	color: var(--white);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 20px;
	font-size: 4.5rem;
	line-height: 1.2;
}
.page-header {
	background-color: var(--hilite-color);
	background-repeat: repeat-x;
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}
.page-header h1 {
	color: var(--white);
	line-height: 1;
	font-size: 2rem;
	padding-left: 15px;
}
.card > .bg-image {
	border-radius: 0;
}
.card > .bg-image {
	border-radius: 0.25rem;
}
.bg-image + .card-body {
	position: relative;
	z-index: 1;
}
.card-title-block {
	font-weight: 500;
	display: block;
}
.card-shadow {
	background: -moz-linear-gradient(
		top,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.5) 100%
	);
	background: -webkit-linear-gradient(
		top,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.5) 100%
	);
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(0, 0, 0, 0)),
		to(rgba(0, 0, 0, 0.5))
	);
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.5) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 );
}
img.bg-image {
	-o-object-fit: cover;
	object-fit: cover;
}
img.float-right {
	margin-left: 20px;
	float: right;
}
img.float-left {
	margin-right: 20px;
	float: left;
}
.opacity-30 {
	opacity: 0.3;
}
.opacity-40 {
	opacity: 0.4;
}
.opacity-50 {
	opacity: 0.5;
}
.opacity-60 {
	opacity: 0.6;
}
.height-30 {
	min-height: 30vh;
}
.height-40 {
	min-height: 40vh;
}
.height-50 {
	min-height: 50vh;
}
.bg-image {
	/* position: absolute; */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.bg-slate-dark {
	background: #132a50;
}
.text-shadow {
	text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 20px;
}
.hero .section-intro {
	height: 100%;
}
.space-sm {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
.space-xlg {
	padding-top: 10.5rem;
	padding-bottom: 10.5rem;
}
.text-blue {
	color: var(--primary-color);
}
.text-white {
	color: var(--white) !important;
}
.font-size-xl {
	font-size: 56px;
}
.font-size-lg {
	font-size: 38px;
}
.font-size-md {
	font-size: 24px;
}
.font-size-sm {
	font-size: 18px;
}
.font-size-xs {
	font-size: 16px;
}
[tabindex="-1"]:focus {
	outline: 0 !important;
}
hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
abbr[title],
abbr[data-original-title] {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0;
}
address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}
ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}
dt {
	font-weight: 700;
}
dd {
	margin-bottom: 0.5rem;
	margin-left: 0;
}
dfn {
	font-style: italic;
}
small {
	font-size: 80%;
}
sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
.lead {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.35em;
	display: block;
}
.content a,
a {
	color: var(--primary-color);
	text-decoration: underline;
	font-weight: 600;
	background-color: transparent;
}
a:hover {
	color: var(--black);
	text-decoration: none;
}
a:not([href]):not([tabindex]) {
	color: inherit;
	text-decoration: none;
}
a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
	color: inherit;
	text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
	outline: 0;
}
a[href$=".pdf"]::after {
	content: "\f1c1";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 14px;
	position: relative;
	right: -5px;
	padding-right: 10px;
	top: 0;
	font-style: normal;
}
a[href$=".xlsx"]::after {
	content: "\f1c3";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 14px;
	position: relative;
	right: -5px;
	padding-right: 10px;
	top: 0;
	font-style: normal;
}
a[href$=".docx"]::after {
	content: "\f1c2";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 14px;
	position: relative;
	right: -5px;
	padding-right: 10px;
	top: 0;
	font-style: normal;
}
p {
	margin-top: 0;
	margin-bottom: 1rem;
}
.interior .content ul,
.interior .content ol {
	font-size: 18px;
	font-weight: 300;
}
.interior .content ul li a,
.interior .content ol li a {
	text-decoration: none;
	border-bottom: 1px solid var(--black);
	font-weight: 400;
}
.interior .content ul li a:hover,
.interior .content ol li a:hover {
	border-bottom: none;
}
.interior .content .footer-social li a {
	border-bottom: none;
}
.title-decorative {
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--primary-color);
}
.btn-default,
.content .btn-default {
	font-family: "Open Sans", sans-serif;
	background-color: var(--primary-color);
	color: var(--white);
	letter-spacing: 0.25px;
	text-decoration: none;
	cursor: pointer;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	padding: 12px 15px;
	margin: 15px auto;
	border-radius: 6px;
	border: none;
	min-width: 140px;
	transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	-webkit-transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	-moz-transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	-ms-transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	-o-transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	position: relative;
	z-index: 3;
}
.btn-default:hover,
.btn-default:focus {
	background-color: var(--hilite-color);
	color: var(--white);
}
.btn-white,
.content .btn-white {
	font-family: "Open Sans", sans-serif;
	background-color: var(--white);
	color: var(--hilite-color) !important;
	letter-spacing: 0.25px;
	text-decoration: none;
	cursor: pointer;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	padding: 12px 15px;
	margin: 15px auto;
	border-radius: 6px;
	border: none;
	min-width: 140px;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
	transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	-webkit-transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	-moz-transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	-ms-transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	-o-transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	position: relative;
	z-index: 3;
}
.btn-white:hover,
.btn-white:focus {
	color: var(--white) !important;
	background-color: var(--hilite-color);
}
.btn-yellow,
.content .btn-yellow {
	background-color: var(--secondary-color);
	color: var(--hilite-color);
	border-radius: 6px;
}
.btn-yellow:hover,
.btn-yellow:focus {
	color: var(--white) !important;
	background-color: var(--hilite-color);
}
.btn-link.focus,
.btn-link:focus {
	text-decoration: none;
}
.form-group .btn-default {
	min-width: 1px;
}
.text-muted {
	color: #42484c !important;
}
.btn-block {
	text-align: center;
	display: block;
}
img {
	max-width: 100%;
	height: auto;
}
.content {
	overflow: hidden;
}
.bg-white {
	background-color: var(--white) !important;
}
.bg-gray {
	background-color: var(--light-gray) !important;
}
.bg-primary {
	background-color: var(--primary-color) !important;
	color: var(--white);
}
.bg-secondary {
	background-color: var(--secondary-color) !important;
}
.bg-hilite {
	background-color: var(--hilite-color) !important;
}
.fullwidth-split {
	padding: 0;
}
.fullwidth-split .container-fluid {
	padding-left: 0;
	padding-right: 0;
}
.fullwidth-split-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 4rem 0;
}
.fullwidth-split-text .text-wrapper {
	max-width: 85%;
}
.section {
	padding: 55px 0;
	position: relative;
	-webkit-animation-duration: 0.2s;
	-moz-animation-duration: 0.2s;
	-o-animation-duration: 0.2s;
	animation-duration: 0.2s;
}
.parallax-window {
	min-height: 450px;
	background: transparent;
}
.container {
	position: relative;
}
.parallax-bg {
	background-attachment: fixed;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 50% auto;
}
.section-with-background {
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 75px 0;
	position: relative;
	overflow: hidden;
}
.degree_search_box {
	background-color: white;
	padding: 3% 5%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
}
@media only screen and (max-width: 900px) {
	.degree_search_box {
		/*! width:calc(100% - 2rem); */
		padding: 1rem;
	}
}
.degree_search_box:after {
	width: 15rem;
	height: 12rem;
	bottom: -1.5rem;
	position: absolute;
	right: -1.5rem;
	z-index: -1;
}
@media only screen and (max-width: 900px) {
	.degree_search_box:after {
		content: none;
		right: -0.75rem;
		bottom: -1.5rem;
	}
}
.half-and-half {
	background-size: 65%;
	background-position: 30% center;
}
.half-and-half .text {
	max-width: 50%;
	text-align: right;
	float: right;
}
.icon span {
	line-height: 1;
	font-size: 1.5em;
	color: var(--primary-color);
	text-align: center;
	display: block;
	font-weight: bold;
}

.icon p {
	text-align: center;
	display: block;
	font-size: 1em;
	margin-top: 10px;
	font-weight: 400;
	line-height: 1.5;
}

.icon span:first-child {
	display: block;
	margin: 0 auto;
	text-align: center;
}
.icon span:nth-child(3) {
	display: block;
	font-size: 1em;
	margin-top: 10px;
	font-weight: 400;
	line-height: 1.5;
}
.icon img {
	width: 25%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.icon .fxicon {
	max-width: 50px;
}

.icon a {
	text-decoration: none;
}
.news-events .news-list,
.news-events .events-list {
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}
.news-events .news-list li a,
.news-events .events-list li a {
	color: #091835;
	text-decoration: none;
}
.news-events .news .news-list li {
	margin-bottom: 15px;
	padding: 5px 0;
	display: block;
}
.news-events .news .news-list li:last-child {
	margin-bottom: 0;
}
.news-events .news-list li:hover,
.news-events .news-list li:focus,
.news-events .events-list li:hover,
.news-events .events-list li:focus {
	background-color: #e5e5e5;
}
.news-events .events-list .date {
	display: inline-block;
	margin-right: 30px;
}
.news-events .events-list a {
	display: inline-block;
}
.news-events .events-list li {
	padding: 5px 0;
}
.news-events .news-footer {
	background-color: rgba(9, 24, 53, 0.8);
	padding: 40px 0 20px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
.news-events .news-footer ul {
	list-style: none;
	padding: 0;
	text-align: center;
}
.news-events .news-footer ul li {
	margin-bottom: 10px;
}
.news-events .news-footer a {
	color: var(--white);
	text-decoration: none;
}
.news-events .news-footer a:hover,
.news-events .news-footer a:focus {
	text-decoration: underline;
}
/*Header Styles*/
.menuToggle {
	display: none;
	background-color: transparent;
	border: none;
	color: var(--white);
	font-size: 20px;
}
.menuToggle .sr-only {
	color: var(--white);
}
.siteHeader {
	font-family: "Open Sans", sans-serif;
	display: block;
	/*	position: fixed;*/
	width: 100%;
	z-index: 5;
	top: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}
.main-navigation .top-row {
	background-color: var(--primary-color);
	padding: 10px 0;
}
.audience .nav-item .nav-link:after {
	content: "|";
	display: inline-block;
	color: var(--white);
	position: relative;
	right: -12px;
}
.audience .justify-content-end .nav-item:nth-child(6) .nav-link:after,
.audience .nav-item:last-child .nav-link:after {
	content: "";
}
.main-navigation .bottom-row {
	background-color: var(--white);
	padding: 0;
}
header .modal-body {
	padding: 0;
}
.modal-open .siteHeader {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#skiptocontent a {
	padding: 6px;
	position: absolute;
	top: -160px;
	left: 0px;
	color: var(--black);
	border-right: 1px solid white;
	border-bottom: 1px solid white;
	border-bottom-right-radius: 8px;
	background: transparent;
	-webkit-transition: top 1s ease-out, background 1s linear;
	transition: top 1s ease-out, background 1s linear;
	z-index: 100;
}
#skiptocontent a:focus {
	position: absolute;
	left: 0px;
	top: 0px;
	background: #d8c722;
	outline: 0;
	-webkit-transition: top 0.1s ease-in, background 0.5s linear;
	transition: top 0.1s ease-in, background 0.5s linear;
}
a:hover {
	text-decoration: none;
}
.logo a {
	position: relative;
	display: inline-block;
	height: 99px;
	width: 350px;
	top: 5px;
	padding: 0 !important;
	background: url("../images/logo.png") no-repeat;
	background-size: contain;
	background-position: center;
	text-indent: -9999px;
	color: var(--white);
}
.logo a .sr-only {
	color: var(--primary-color);
}
.hide {
	display: none;
}
.modal-backdrop.show {
	opacity: 0.75;
}
.close {
	color: var(--white);
	text-transform: uppercase;
	text-decoration: none;
	text-align: right;
	font-size: 40px;
	position: absolute !important;
	display: inline-block;
	top: 30px;
	right: 130px;
	text-shadow: none;
	width: 40px;
	height: 40px;
	opacity: 1;
}
.close:hover,
.close:focus {
	color: rgba(255, 255, 255, 0.75);
}
/*Auxillary and Audience Navigations*/
.audience .nav li > a,
.auxnav .nav li a {
	font-size: 14px !important;
	color: var(--white) !important;
	padding: 5px 15px !important;
	text-transform: none;
	display: block;
	width: 100%;
	font-weight: 600 !important;
}
.audience .nav li a {
	font-size: 14px !important;
}

.auxnav .nav li a:hover,
.auxnav .nav li a:focus {
	color: rgba(255, 255, 255, 0.75) !important;
}
/*Search*/
.modal-open-menu .modal-backdrop {
	z-index: 5;
}
.modal-open-menu-mobile .modal-backdrop {
	z-index: 4;
}
.header-search {
	margin-left: 25px;
}
.header-search .form-control {
	border-radius: 0 !important;
	height: 30px;
	margin: 0;
	padding: 6px 12px;
	-webkit-transition: width 0.3s ease;
	-moz-transition: width 0.3s ease;
	transition: width 0.3s ease;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	width: 250px;
	border: none;
}
.header-search .btn-default {
	background: transparent;
	border: 0 none;
	color: #575757;
	position: absolute;
	right: 8px;
	top: 0;
	z-index: 3;
	min-width: auto;
	padding: 0;
	margin: 5px 0;
}
.header-search .btn-default .sr-only {
	color: var(--white);
}
.search-label {
	color: var(--white);
}
.header-search form input[type="text"],
.header-search form input.form-text {
	font-size: 14px;
}
.header-search::-webkit-input-placeholder {
	font-size: 14px;
}
#siteSearch ::-moz-placeholder {
	font-size: 14px;
}
.header-search ::-ms-placeholder {
	font-size: 14px;
}
.header-search ::placeholder {
	font-size: 14px;
}
.find-path .btn-default {
	width: 250px;
	margin: 20px 10px;
}
.degree-search .form-control {
	height: 30px;
	margin: 0;
	padding: 6px 12px;
	-webkit-transition: width 0.3s ease;
	-moz-transition: width 0.3s ease;
	transition: width 0.3s ease;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	width: 250px;
	border: 1px solid gray;
}
.degree-search .btn-default {
	background: transparent;
	border: 0 none;
	color: var(--hilite-color);
	position: absolute;
	right: 8px;
	top: 0;
	z-index: 3;
	min-width: auto;
	padding: 0;
	margin: 5px 0;
}
.degree-search .btn-default .sr-only {
	color: var(--white);
}
.degree-search form input[type="text"],
.degree-search form input.form-text {
	font-size: 20px;
}
.degree-search::-webkit-input-placeholder {
	font-size: 20px;
}
.degree-search ::-ms-placeholder {
	font-size: 20px;
}
.degree-search ::placeholder {
	font-size: 20px;
}
/*Main Navigation Styles*/
/*Top Navigation and Mobile Menu Wrapper*/
.site-navigation.modal {
	display: block;
	opacity: 1;
	position: relative;
	overflow: visible;
}
.site-navigation.modal .modal-dialog {
	width: 100%;
	max-width: none;
	margin: 0;
	transform: none;
}
.site-navigation.modal .modal-dialog .modal-content {
	border: none;
	background-color: transparent;
}
/*Styles for Desktop Top Navigation Horizontal Section*/
.main-navigation .nav {
	width: 100%;
	font-size: 0; /*removes gap between li items on hover*/
	position: relative;
	right: 0;
}
.main-navigation .bottom-row .nav {
	margin-top: 0;
}
/*Centers the top navigation*/
.main-navigation .nav li a {
	padding: 10px 15px;
	color: var(--primary-color);
	font-size: 18px;
	text-decoration: none;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	line-height: inherit;
	font-weight: 700;
}
.main-navigation .nav li .dropdown-toggle {
	text-transform: uppercase;
}
.main-navigation .nav li.open a,
.main-navigation .audience .nav li.open > a {
	background-color: var(--hilite-color);
	color: var(--primary-color);
}
.main-navigation .audience .nav li.show > a,
.main-navigation .audience .nav li.show > a:after {
	background-color: var(--light-gray);
	color: var(--dark-gray) !important;
}
.main-navigation .audience .nav li.show a:hover {
	background-color: var(--light-gray);
	color: var(--primary-color);
	text-decoration: underline;
}
.main-navigation .nav li.show a {
	background-color: var(--light-gray);
	color: var(--dark-gray);
}
.main-navigation .nav .dropdown .dropdown-menu li a {
	font-size: 16px;
	text-align: left;
	white-space: normal;
	border-bottom: 1px solid #ddd;
	font-weight: 600;
	padding-left: 5px;
	padding-right: 5px;
}
.main-navigation .nav .dropdown .dropdown-menu li .sub-menu li:last-child a {
	border-bottom: none;
}
.main-navigation .nav li.open .sub-menu li a,
.main-navigation .nav li.show .sub-menu li a {
	background-color: transparent;
	color: var(--primary-color);
}
.main-navigation .nav li.open .sub-menu li a:hover,
.main-navigation
.nav
li.open
.sub-menu
li
a:focus
.main-navigation
.nav
li.show
.sub-menu
li
a:hover,
.main-navigation .nav li.show .sub-menu li a:focus {
	background-color: #f8f9fa;
	color: var(--primary-color);
}
.main-navigation .nav li a:hover,
.main-navigation .nav li a:focus {
	color: var(--black);
}
.main-navigation .nav .dropdown.open:hover .dropdown-menu,
.main-navigation .nav .dropdown.show .dropdown-menu {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: block;
	/*    -webkit-backface-visibility: visible!important;
	backface-visibility: visible!important;
	visibility: visible;
	opacity: 1;*/
}
.main-navigation .nav .dropdown {
	display: inline-block;
	float: none;
	position: static;
}
.dropdown-menu,
.dropdown-menu.show {
	transform: none !important;
	top: inherit !important;
	left: inherit !important;
}
.main-navigation .nav .dropdown .dropdown-menu {
	/*    visibility: hidden;
	opacity: 0;
	display: block;*/
	display: none;
	border-left: none;
	border-right: none;
	border-top: 4px solid var(--hilite-color);
	background-color: var(--white);
	color: var(--primary-color);
	width: 100%;
	font-size: 16px;
	list-style: outside none none;
	margin-top: 0;
	padding: 5px 0;
	text-align: left;
	z-index: 3;
	position: absolute;
	left: 0 !important;
	top: 100%;
	border-radius: 0;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.mobile-header {
	top: 0;
	display: none;
	z-index: 5;
	height: 80px;
	background-color: var(--primary-color);
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}
.mobile-header .audience {
	margin-top: 20px;
}
.mobile-buttons-wrapper {
	position: relative;
}
.home .mobile-logo a {
	color: var(--black);
}
.mobile-logo a {
	position: absolute;
	left: 20px;
	top: -5px;
	padding: 0 !important;
	width: 250px;
	height: 90px;
	background: url("../images/logo-white.png") no-repeat;
	background-size: contain;
	background-position: center;
	text-indent: -9999px;
	margin: 0;
	color: var(--white);
}
.menuClose {
	display: none;
}
.juicer-feed .j-paginate {
	color: var(--primary-color) !important;
	border: 2px solid var(--primary-color) !important;
}
.juicer-feed .j-paginate:hover {
	background: var(--primary-color) !important;
	color: var(--white) !important;
}
.juicer-feed h1.referral a {
	color: var(--primary-color) !important;
}
/*Footer*/
footer {
	padding: 20px 0 0;
	background-color: var(--dark-gray);
	color: var(--white);
	font-family: "Open Sans", sans-serif;
}
footer img {
	display: block;
	width: 190px;
}
footer a {
	color: var(--white);
	font-weight: 400;
	font-size: 16px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	text-decoration: none;
}
footer a:hover,
footer a:focus,
footer a:active {
	color: rgba(255, 255, 255, 0.65) !important;
}
footer h2,
footer h2 a {
	margin: 0;
	font-weight: 700;
	line-height: 0.75;
}
.footer-nav {
	margin-top: 30px;
}
.footer-nav .list-unstyled {
	border-right: 1px solid var(--white);
}
.footer-nav div:nth-child(3) .list-unstyled {
	border-right: none;
}
.footer-social {
	padding-left: 0;
	list-style: none;
	text-align: center;
	margin: 20px auto;
}
.footer-social li {
	display: inline-block;
	margin: 0 8px;
}
.footer-social li a:before {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Brands";
	font-weight: 900;
	color: var(--white);
	font-size: 24px;
	width: 33px;
	height: 32px;
	line-height: 40px;
}
.footer-social li a.twitter:before,
.content-social li a.twitter:before {
	content: "\f099";
}
.footer-social li a.facebook:before,
.content-social li a.facebook:before {
	content: "\f39e";
}
.footer-social li a.youtube:before,
.content-social li a.youtube:before {
	content: "\f167";
}
.footer-social li a.instagram:before,
.content-social li a.instagram:before {
	content: "\f16d";
}
.footer-social li a.snapchat:before,
.content-social li a.snapchat:before {
	content: "\f2ac";
}
.footer-social li a.linkedin:before,
.content-social li a.linkedin:before {
	content: "\f0e1";
}
.footer-social li a.pinterest:before,
.content-social li a.pinterest:before {
	content: "\f231";
}
.footer-social li a.flickr:before,
.content-social li a.flickr:before {
	content: "\f16e";
}
.footer-social li:hover a:before,
.content-social li:hover a:before {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.5) !important;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.content-social {
	padding-left: 0;
	list-style: none;
	text-align: center;
	margin: 15px auto;
}
.content-social li {
	display: inline-block;
	margin: 0 5px;
}
.content-social li a:before {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Brands";
	font-weight: 900;
	color: var(--white);
	background-color: #002c76;
	font-size: 20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
}
.footer-address {
	padding-left: 0;
	list-style: none;
	font-size: 16px;
	margin-top: 20px;
	margin-bottom: 40px;
	line-height: 20px;
}
.footer-address li {
	display: block;
	clear: both;
	margin: 10px 0;
}

.footer-address li.small,
.footer-address li.small a {
	padding-top: 10px;
	font-size: 12px;
}

footer h3 {
	font-weight: 600;
	color: var(--white);
	font-size: 22px;
	margin-bottom: 25px;
	text-transform: uppercase;
}
footer h4 {
	font-size: 30px;
	color: var(--white);
	margin-bottom: 25px;
}
footer .list-inline-item:not(:last-child) {
	margin-right: 1rem;
}
footer .list-unstyled li {
	line-height: 0.9;
	margin-bottom: 0.75rem;
	margin-right: 0.75rem;
}
footer .copyright {
	background-color: var(--dark-gray);
	padding: 20px 0;
	text-align: center;
	font-size: 14px;
	line-height: 28px;
}
footer .copyright .list-inline {
	text-align: center;
}
footer .copyright a {
	color: var(--white);
	font-size: 14px;
}
footer .copyright li:after {
	content: "|";
	display: inline-block;
	color: var(--white);
	position: relative;
	right: -10px;
}
footer .copyright li:last-child:after {
	content: "";
}
.compass {
	background: transparent url("../images/compass.svg") no-repeat center top;
	width: 100%;
	float: left;
	height: 60px;
	margin-top: -52px;
	position: absolute;
}
.container-padding {
	padding: 0 50px;
}
.two-col {
	-webkit-columns: 2 !important;
	-moz-columns: 2 !important;
	columns: 2 !important;
	-webkit-column-gap: 25px;
	-moz-column-gap: 25px;
	column-gap: 25px;
	display: block !important;
	margin-bottom: 20px;
}
.three-col {
	-webkit-columns: 3 !important;
	-moz-columns: 3 !important;
	columns: 3 !important;
	-webkit-column-gap: 25px;
	-moz-column-gap: 25px;
	column-gap: 25px;
	display: block !important;
	margin-bottom: 20px;
}
.section.full-width {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.section.full-width [class*="col-"],
.section.full-width [class*="col"] {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
/*Video*/
.video-feature {
	width: 100%;
	height: 550px;
	left: 0;
	top: 0;
	border: none;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-color: var(--black);
	object-fit: cover;
}
/* UAT 210805 */
video {
	width: 100%;
	height: auto;
}
.video-feature video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	height: 100%;
	min-height: 100%;
	width: auto;
	transform: translate(-50%, -50%);
	overflow: hidden;
	object-fit: cover;
}
/* End UAT 210805 */
.video-feature .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0; /* FF3.6-15 */
	background: var(--black);
	background: -moz-linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.2) 0%,
		rgba(255, 255, 255, 0) 50%,
		rgba(0, 0, 0, 0.7) 100%
	); /* ff3.6+ */
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0%, rgba(0, 0, 0, 0.7)),
		color-stop(50%, rgba(255, 255, 255, 0)),
		color-stop(100%, rgba(0, 0, 0, 0.2))
	); /* safari4+,chrome */
	background: -webkit-linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.2) 0%,
		rgba(255, 255, 255, 0) 50%,
		rgba(0, 0, 0, 0.7) 100%
	); /* safari5.1+,chrome10+ */
	background: -o-linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.2) 0%,
		rgba(255, 255, 255, 0) 50%,
		rgba(0, 0, 0, 0.7) 100%
	); /* opera 11.10+ */
	background: -ms-linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.2) 0%,
		rgba(255, 255, 255, 0) 50%,
		rgba(0, 0, 0, 0.7) 100%
	); /* ie10+ */
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.2) 0%,
		rgba(255, 255, 255, 0) 50%,
		rgba(0, 0, 0, 0.7) 100%
	); /* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=0 ); /* ie6-9 */
}
.play-pause,
.play {
	position: absolute;
	z-index: 3;
	color: var(--white);
	background-color: var(--dark-gray);
	font-size: 15px;
	width: 30px;
	height: 30px;
	right: 30px;
	bottom: 30px;
	border: none;
	border-radius: 50%;
}
.play-pause:hover,
.play-pause:focus {
	background-color: var(--hilite-color);
}
.play {
	display: none;
}
.play-pause .fa,
.play .fa {
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.video-feature .btn:hover,
.video-feature .btn:focus {
	color: var(--white);
}
/*Home Page Slider*/
.slider-wrapper {
	position: relative;
	overflow: hidden;
}
.hero-slider {
	position: relative;
}
.hero-slider .slide {
	width: 100vw;
	height: 740px;
	display: flex;
	justify-content: flex-end;
	align-items: left;
	position: relative;
	background-color: var(--black);
}
.hero-slider .slide .slider-img {
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/*Dark Overlay*/
.hero-slider .carousel-caption {
	margin: 0 auto;
	left: 50px;
	right: initial;
	bottom: 100px;
	text-align: left;
	line-height: 30px;
	z-index: 1;
	background-color: rgba(103, 17, 38, 0.7);
	padding: 10px;
}
.video-feature .video-caption {
	margin: 0 auto;
	left: 50px;
	right: initial;
	bottom: 0;
	text-align: left;
	line-height: 1.25;
	z-index: 1;
	background-color: var(--primary-color);
	padding: 30px;
	max-width: 75%;
	position: absolute;
	padding-top: 10px;
	padding-bottom: 10px;
	color: var(--white);
}
.video-feature .video-caption img {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.slider-wrapper .carousel-caption-overlay,
.slider-wrapper .video-caption-overlay {
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: var(--black);
	background: -moz-linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.5) 0%,
		rgba(0, 0, 0, 0.3) 50%,
		rgba(0, 0, 0, 0) 100%
	); /* ff3.6+ */
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0%, rgba(0, 0, 0, 0)),
		color-stop(50%, rgba(0, 0, 0, 0.3)),
		color-stop(100%, rgba(0, 0, 0, 0.7))
	); /* safari4+,chrome */
	background: -webkit-linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.5) 0%,
		rgba(0, 0, 0, 0.3) 50%,
		rgba(0, 0, 0, 0) 100%
	); /* safari5.1+,chrome10+ */
	background: -o-linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.5) 0%,
		rgba(0, 0, 0, 0.3) 50%,
		rgba(0, 0, 0, 0) 100%
	); /* opera 11.10+ */
	background: -ms-linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.5) 0%,
		rgba(0, 0, 0, 0.3) 50%,
		rgba(0, 0, 0, 0) 100%
	); /* ie10+ */
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.5) 0%,
		rgba(0, 0, 0, 0.3) 50%,
		rgba(0, 0, 0, 0) 100%
	); /* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=0 ); /* ie6-9 */
}
.content .hero-slider .carousel-caption a,
.hero-slider .carousel-caption a,
.video-feature .video-caption a {
	color: var(--white);
	text-decoration: none;
}
.hero-slider .carousel-caption h1 {
	font-size: 52px;
	line-height: 52px;
	margin: 0 0 10px;
	color: var(--white) !important;
	font-weight: 500;
	text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.3);
}
.video-feature .video-caption h1 {
	font-size: 42px;
	line-height: 42px;
	margin: 0 0 10px;
	color: var(--white) !important;
	font-weight: 500;
	text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.3);
}
.slider-wrapper .slick-prev,
.slider-wrapper .slick-next {
	z-index: 1;
	color: var(--white);
	background-color: var(--primary-color);
	width: 30px;
	height: 30px;
	border: 1px solid var(--white);
}
.slider-wrapper .testimonial-slider .slick-prev,
.slider-wrapper .testimonial-slider .slick-next {
	z-index: 1;
	color: #747272;
	background-color: transparent;
	width: 100px;
	height: 100px;
	border: none;
}
.slider-wrapper .slide-controllers {
	width: 100px;
	height: 30px;
	position: absolute;
	left: 50px;
	bottom: 25px;
}
.slider-wrapper .slide-controllers .pause-play {
	color: var(--white);
	background-color: var(--primary-color);
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	z-index: 2;
	border: 1px solid var(--white);
}
.slider-wrapper .slide-controllers .pause-play:before {
	font-family: "Font Awesome 5 Free";
	content: "\f04c";
	font-weight: 900;
	display: block;
	font-size: 12px;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.slider-wrapper .slide-controllers .pause-play.paused:before {
	content: "\f04b";
}
.slider-wrapper .slick-prev:hover,
.slider-wrapper .slick-prev:focus,
.slider-wrapper .slick-next:hover,
.slider-wrapper .slick-next:focus,
.slider-wrapper .slide-controllers .pause-play:focus,
.slider-wrapper .slide-controllers .pause-play:hover {
	color: var(--white) !important;
	background-color: var(--primary-color) !important;
}
.slider-wrapper .testimonial-slider .slick-prev:hover,
.slider-wrapper .testimonial-slider .slick-prev:focus,
.slider-wrapper .testimonial-slider .slick-next:hover,
.slider-wrapper .testimonial-slider .slick-next:focus {
	color: #000 !important;
	background-color: transparent !important;
}
.slider-wrapper .slick-prev {
	left: 0;
	bottom: 0;
}
.slider-wrapper .slick-next {
	right: 0;
	bottom: 0;
}
.slider-wrapper .slick-next:before {
	font-family: "Font Awesome 5 Free" !important;
	content: "\f105" !important;
	font-weight: 900;
	display: block;
	opacity: 1;
	font-size: 20px !important;
}
.slider-wrapper .slick-prev:before {
	font-family: "Font Awesome 5 Free" !important;
	content: "\f104" !important;
	font-weight: 900;
	display: block;
	opacity: 1;
	font-size: 20px !important;
}
.slider-wrapper .testimonial-slider .slick-next:before,
.slider-wrapper .testimonial-slider .slick-prev:before {
	font-size: 100px !important;
	color: #939191;
}
.testimonial-slider {
	text-align: center;
}
.testimonial-slider .testimonial-quote {
	display: block;
	width: 70%;
	margin: 20px auto;
}
.testimonial-slider img {
	border-radius: 50%;
	width: 100px;
	height: 100px;
	display: block;
	margin: 0 auto;
}
.hero {
	position: relative;
	height: 460px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--black);
}
.hero-mobile {
	display: none;
}
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: -moz-linear-gradient(
		top,
		rgba(0, 0, 0, 0.65) 0%,
		rgba(0, 0, 0, 0.25) 35%,
		rgba(0, 0, 0, 0.25) 38%,
		rgba(0, 0, 0, 0.25) 61%,
		rgba(0, 0, 0, 0.25) 62%,
		rgba(0, 0, 0, 0.75) 100%
	);
	background: -webkit-linear-gradient(
		top,
		rgba(0, 0, 0, 0.65) 0%,
		rgba(0, 0, 0, 0.25) 35%,
		rgba(0, 0, 0, 0.25) 38%,
		rgba(0, 0, 0, 0.25) 61%,
		rgba(0, 0, 0, 0.25) 62%,
		rgba(0, 0, 0, 0.75) 100%
	);
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.65) 0%,
		rgba(0, 0, 0, 0.25) 35%,
		rgba(0, 0, 0, 0.25) 38%,
		rgba(0, 0, 0, 0.25) 61%,
		rgba(0, 0, 0, 0.25) 62%,
		rgba(0, 0, 0, 0.75) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#bf000000',GradientType=0 );
}
.hero-title-container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
}
.news-events-header {
	position: relative;
}
.bg-primary .news-events-header .news,
.bg-primary .news-events-header .events {
	color: var(--white);
}
.news-events-header .news,
.news-events-header .events {
	color: var(--dark-gray);
	font-size: 18px;
	text-align: right;
	text-decoration: none;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	font-family: "Open Sans", sans-serif;
}
.bg-primary .news-events-header span {
	color: var(--white);
}
.news-events-header span {
	color: var(--dark-gray);
	font-size: 24px;
	margin-right: 5px;
}
.news-events-header .news:hover,
.news-events-header .events:hover,
.news-events-header .news:focus,
.news-events-header .events:focus {
	text-decoration: underline;
}
.event-item {
	margin-bottom: 15px;
}
.event-item-header,
.event-item-header h3 {
	font-size: 18px;
	line-height: 24px;
}
.bg-primary .event-item-header a {
	color: var(--white);
}
.event-item-header a {
	text-decoration: none;
	color: var(--dark-gray);
}
.event-item-header a:hover,
.event-item-header a:focus {
	text-decoration: underline;
}
.event-item-copy p {
	margin-bottom: 5px;
}
.event-item-date {
	font-size: 12px;
}
.events .event-item {
	display: table;
	margin-bottom: 20px;
	position: relative;
}
.events .event-item .event-date,
.events .event-item .event-text {
	display: table-cell;
	position: relative;
}
.event-item .event-date {
	vertical-align: middle;
}
.event-item .event-date .event-month {
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: bold;
	color: var(--white);
}
.event-item .event-date .event-day {
	display: block;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	color: var(--white);
}
.event-item .event-date .year {
	color: var(--white);
	text-align: center;
	display: block;
}
.event-item .event-text {
	position: relative;
	vertical-align: top;
	padding-left: 20px;
}
.event-item .event-date-bg {
	background-color: var(--primary-color);
	padding: 10px 20px;
	line-height: 36px;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
}
.bg-primary .event-item .event-date-bg {
	background-color: var(--white);
}
.bg-primary .event-item .event-date .event-month {
	color: var(--black);
}
.bg-primary .event-item .event-date .event-day {
	color: var(--black);
}
.bg-primary .event-item .event-date .year {
	color: var(--black);
}
.event-item .event-item-time-location .time:before {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f017";
	font-size: 14px;
	margin-right: 5px;
	color: var(--secondary-color);
}
.event-item .event-item-time-location .location {
	margin-left: 10px;
}
.event-item .event-item-time-location .location:before {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f3c5";
	font-size: 14px;
	margin-right: 5px;
	color: var(--secondary-color);
}
.news-list p {
	margin-top: 15px;
}
.news-list img {
	margin-bottom: 15px;
}
.restrict {
	padding: 0 20%;
}
.card {
	/*border-radius: 0;*/
	border-radius: 6px;
	margin-bottom: 40px;
	border: none;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}
.card .fa,
.card .far,
.card .fas {
	color: var(--primary-color);
}
.card-img-top,
.card-img-side {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.bg-secondary {
	background: var(--light-gray) !important;
}
.card-borderless {
	border: none;
}
.bg-gray .card {
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
	border: none;
	margin-bottom: 20px;
}
.card .image-overlay {
	padding-top: 70%;
	position: relative;
	width: 100%;
	background-color: var(--black);
	overflow: hidden;
	border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.card.card-img-side .image-overlay {
	padding-top: 60%;
	position: relative;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	overflow: hidden;
}
.card .image-overlay .card-img-top {
	background-color: var(--black);
	color: var(--white);
	background-size: cover;
	background-position: 50%;
	bottom: 0;
	left: 0;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	/*border-top-left-radius: 0;
	border-top-right-radius: 0;*/
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}
.card.card-img-side .image-overlay .card-img {
	background-color: var(--black);
	color: var(--white);
	background-size: cover;
	background-position: 50%;
	bottom: 0;
	left: 0;
	position: absolute;
	top: 0;
	z-index: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.card a .card-body h3 {
	font-size: 18px;
}
.card a:hover .card-body h3,
.card a:focus.card-body h3 {
	text-decoration: underline;
}
.card .card-body h4 {
	font-weight: 900;
	color: #020202;
}
.card a {
	text-decoration: none !important;
}
.card a .card-body h3,
.card a .card-body h4,
.card .card-body h3 a,
.card .card-body h4 a,
.news-list h2 a {
	text-decoration: none !important;
}
.card a:hover .card-body h3,
.card a:hover .card-body h4,
.card .card-body h3 a:hover,
.card .card-body h4 a:hover,
.news-list h2 a:hover,
.card a:hover {
	text-decoration: underline !important;
}
.card a p {
	font-weight: 400;
}
.card a .card-body {
	text-decoration: none !important;
	color: #020202;
	line-height: 26px;
}
.calendar-item {
	padding: 20px;
	background-color: var(--white);
	-webkit-box-shadow: 0px 7px 18px 0px rgba(85, 85, 85, 0.32);
	-moz-box-shadow: 0px 7px 18px 0px rgba(85, 85, 85, 0.32);
	box-shadow: 0px 7px 18px 0px rgba(85, 85, 85, 0.32);
	margin-bottom: 20px;
	min-height: 155px;
	transition: all 0.5s;
}
.custom-slider-arrows .slick-next,
.custom-slider-arrows .slick-prev {
	background: rgba(255, 255, 255, 0.75) !important;
	padding: 10px !important;
	width: 40px !important;
	height: 40px !important;
}
.custom-slider-arrows .news-slider .slick-next,
.custom-slider-arrows .news-slider .slick-prev {
	top: 35%;
}
.custom-slider-arrows .slick-next {
	right: 15px !important;
}
.custom-slider-arrows .slick-prev {
	left: 15px !important;
	z-index: 1 !important;
}
.custom-slider-arrows .slick-next:before {
	font-family: "Font Awesome 5 Free" !important;
	content: "\f105" !important;
	font-weight: 900;
	display: block;
	opacity: 1;
	font-size: 30px !important;
	color: #000 !important;
	position: relative;
	top: -4px;
}
.custom-slider-arrows .slick-prev:before {
	font-family: "Font Awesome 5 Free" !important;
	content: "\f104" !important;
	font-weight: 900;
	display: block;
	opacity: 1;
	font-size: 30px !important;
	color: #000 !important;
	position: relative;
	top: -4px;
}
.breadcrumb {
	background-color: transparent !important;
	margin: 0;
	display: block;
	padding: 2rem 0 2rem 15px;
	line-height: 1.5rem !important;
	font-family: "Open Sans", sans-serif;
}
.breadcrumb .fa-home {
	color: var(--secondary-color);
}
.breadcrumb-item.active {
	color: var(--primary-color);
}
.breadcrumb li {
	display: inline;
	margin: 0;
	font-size: 14px;
	line-height: 1.5em;
	color: #4e555a;
	font-weight: 400;
}
.breadcrumb li a {
	font-weight: 400;
	text-decoration: underline;
	border-bottom: none !important;
	color: #4e555a;
}
.breadcrumb li a:hover {
	text-decoration: none;
	text-decoration-color: var(--black);
}
/*Side Nav*/
.side-nav-heading {
	font-size: 20px !important;
	color: var(--white) !important;
	font-weight: 400;
	padding: 0.5rem;
	margin: 0 !important;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.side-nav-heading:after {
	display: none;
}
.side-nav-heading a {
	color: var(--white) !important;
	text-decoration: none;
}
#sidebar {
	margin-bottom: 20px;
	padding: 20px;
	background-color: var(--primary-color);
}
#sidebar #side-nav-accordion {
	width: 100%;
	padding: 0;
}
#sidebar .navbar {
	padding: 0;
	background-color: transparent;
	margin-bottom: 20px;
	display: block;
}
#sidebar .nav-item:first-child {
	border-top: none;
}
#sidebar .nav-link {
	font-family: "Open Sans", sans-serif;
	color: var(--white);
	font-size: 16px;
	text-decoration: none;
	padding: 12px;
	line-height: 19px;
	border-bottom: 1px solid #e9ecef;
	border-left: 0px;
	border-right: 0px;
	font-weight: 400;
}
#sidebar .nav-link:hover,
#sidebar .navbar-light .nav-link:focus {
	color: var(--black);
	background-color: var(--light-gray);
}
#sidebar .navbar {
	width: 100%;
}
#sidebar .navbar .navbar-toggler {
	color: var(--white);
	font-size: 20px;
	border: none;
	position: absolute;
	right: 0;
	top: -30px;
}
#sidebar .navbar .navbar-toggler[aria-expanded="false"] .fa-chevron-up {
	display: none;
}
#sidebar .navbar .navbar-toggler[aria-expanded="true"] .fa-chevron-down {
	display: none;
}
#sidebar .navbar-brand {
	font-size: 15px;
	font-weight: 500;
	padding-left: 10px;
}
#sidebar .navbar .nav-item {
	margin: 0;
	border-left: 0px;
	border-right: 0px;
	position: relative;
	display: block;
	width: 100%;
}
#sidebar .navbar .row {
	width: 100%;
}
#sidebar .navbar .nav-item .navbar-nav {
	background-color: #f6f6f6;
}
#sidebar .navbar .nav-item .nav-item .nav-link {
	font-size: 16px;
	padding: 10px 15px 10px 30px;
	border: none;
	color: var(--white);
}
#sidebar .navbar .nav-item .nav-item:first-child .nav-link {
	padding-top: 15px;
}
#sidebar .navbar .nav-item .nav-item .nav-link:hover,
#sidebar .navbar .nav-item .nav-item .nav-link:focus {
	color: var(--black);
	background-color: var(--light-gray);
}
#sidebar .navbar .nav-item .nav-item .nav-item .nav-link {
	font-size: 14px;
	padding: 10px 15px 10px 50px;
}
#sidebar .navbar .nav-item .nav-item:first-child .nav-link {
	border-top: none;
}
#sidebar .navbar .nav-item .nav-link[data-toggle]::after,
#sidebar .navbar .nav-item .nav-link::after {
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	font-size: 16px;
	color: #495057;
	position: absolute;
	right: 24px;
	display: none;
}
#sidebar .navbar .nav-item .nav-link[data-toggle]::after {
	content: "\f067";
	font-size: 12px;
	top: 12px;
}
#sidebar .navbar .nav-item .nav-link[aria-expanded="true"]::after {
	content: "\f068";
}
#sidebar .navbar .nav-item .nav-link[aria-expanded="true"] {
	padding-bottom: 12px;
}
#sidebar .navbar .nav-item .nav-item .nav-link::after {
	content: none;
}
#sidebar .navbar .nav-item ul {
	margin-left: 0 !important;
}
#sidebar .secondary-nav {
	width: 100%;
	padding: 0 20px;
}
#sidebar .secondary-nav .nav-link {
	border: none;
	color: var(--primary-color);
}
.single-hero {
	height: 630px;
	background-size: cover;
	background-position: top center;
	position: relative;
	background-color: var(--black);
}
.single-hero img,
.split-hero img {
	display: none;
}
.single-hero h1 {
	color: var(--white);
	position: absolute;
	top: 400px;
	left: 50px;
	line-height: 54px;
	text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.7);
}
.figure {
	display: block;
}
.figure-caption {
	color: #42484c;
}
.figure img {
	-webkit-box-shadow: 0px 7px 18px 0px rgba(119, 119, 119, 0.32);
	-moz-box-shadow: 0px 7px 18px 0px rgba(119, 119, 119, 0.32);
	box-shadow: 0px 7px 18px 0px rgba(119, 119, 119, 0.32);
	margin: 20px auto;
}
blockquote,
.blockquote {
	border-left: 4px solid var(--secondary-color);
	padding-left: 10px;
	margin: 20px 40px;
}
.blockquote-footer {
	color: #4e565a;
	margin-top: 0.6rem;
}
.featured-event h2 {
	font-size: 38px;
	color: var(--primary-color);
}
.featured-event {
	font-weight: 300;
	font-size: 22px;
}
.featured-event .featured-date {
	font-size: 28px;
	color: var(--white);
	padding: 50px;
	text-transform: uppercase;
	background-color: var(--primary-color);
	text-align: center;
	max-width: 180px;
	font-weight: 400;
}
/*Accordions*/
.accordion {
	margin-bottom: 20px;
}
.accordion .card {
	border: none;
	margin: 10px 0;
}
.accordion .card-header {
	padding: 0px;
	border-radius: 6px;
}
.accordion .card-header .btn {
	/*font-size: 24px;
	background-color: var(--primary-color);
	color: var(--white) !important;
	border: none;
	box-shadow: none !important;
	padding: 10px 45px 10px 15px;
	line-height: 1.5;
	display: block;
	width: 100%;
	text-align: left;
	border-radius: 0;*/
	font-family: "Open Sans", sans-serif;
	background-color: var(--white);
	color: var(--hilite-color) !important;
	letter-spacing: 0.25px;
	text-decoration: none;
	cursor: pointer;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	padding: 10px 45px 10px 15px;
	line-height: 1.5;
	display: block;
	border-radius: 6px;
	border: none;
	min-width: 140px;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
	transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	-webkit-transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	-moz-transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	-ms-transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	-o-transition: background 0.2s ease-out, color 0.2s ease-out,
		border 0.2s ease-out;
	position: relative;
	z-index: 3;
	width:100%;
	text-align:left;
}
.accordion .card-header .btn:hover {
	text-decoration: none;
	background-color: var(--primary-color);
	color: var(--white) !important;
}
.accordion .card-header .btn-link .fas {
    font-size: 24px;
    padding: 0 5px;
    position: absolute;
    top: 16px;
    right: 20px;
    /* color: var(--white); */
    color: var(--hilite-color) !important;
    display: inline-block;
    margin-top: -5px;
}
.accordion .card-header .btn span.fas, .accordion .card-header .btn:hover .fas {
	color: var(--white);
	
}
.accordion .card-header .btn-link:hover .fas {
	color: var(--white) !important;
}
.accordion .card-header .btn-link[aria-expanded="true"] .fas {
	color: var(--white);
}

.accordion .card-header .btn-link[aria-expanded="false"] .fa-angle-up {
	display: none;
}
.accordion .card-header .btn-link[aria-expanded="true"] .fa-angle-down {
	display: none;
}
.accordion .card-body {
	border: none;
	border-top: 0px;
	background-color: var(--white);
	padding-left: 20px;
	padding-right: 20px;
}
.accordion .card-body p:first-child {
	margin-top: 0;
}
.accordion .card-body p:last-child {
	margin-bottom: 0;
}
/*Tabs*/
.tabs .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
	border-bottom: 4px solid var(--primary-color);
	border-left: none;
	border-right: none;
	font-size: 20px;
	background-color: transparent;
	position: relative;
}
.tabs .nav-tabs .nav-link.active:after,
.nav-tabs .nav-item.show .nav-link:after {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f107";
	position: absolute;
	font-size: 20px;
	color: var(--primary-color);
	bottom: -30px;
	left: 45%;
}
/*.tabs .nav-tabs .nav-link {
	border: none;
	border-radius: 0;
	font-size: 20px;
	color: var(--primary-color);
	padding: 12px 25px 8px;
	text-decoration: none;
	font-weight: bold;
	font-family: "Open Sans", sans-serif;
}*/
.tabs .nav-tabs .nav-link {
    border: none;
    border-radius: 3px;
    font-size: 20px;
    color: var(--primary-color);
    padding: 12px 25px 8px;
    text-decoration: none;
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
    margin-right: 5px;
}
.tabs .nav-tabs > a:last-of-type {
	margin-right: 0;
}
.tabs .nav-tabs .nav-link:after {
	content: none;
}
.tabs .nav-tabs .nav-item:last-child .nav-link {
	border-right: none;
}
.tabs .nav-tabs .nav-item {
	margin-bottom: -4px;
	margin-top: 0;
	background-color: transparent;
	/*border-bottom: 4px solid #ececec;*/
	border-bottom:0;
}
.tabs .nav-tabs .nav-link:hover {
	text-decoration: none;
}
.tabs .nav-tabs {
	/*border-bottom: 4px solid #ececec;*/
	border-bottom: 0;
	margin-top: 10px;
}
.tabs .nav-tabs .nav-link:hover {
	border-bottom-color: var(--primary-color);
}
.tabs .nav-tabs .nav-link.active:hover {
	border-bottom-color: var(--primary-color);
}
.tabs .tab-content {
	text-align: left;
	padding: 20px;
	background-color: var(--white);
	margin-bottom: 20px;
}
.tabs .tab-content h3 {
	margin: 20px 0;
}
/*Vertical Tabs*/
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	background-color: var(--primary-color);
}
.nav-pills .nav-link {
	border-radius: 0;
	font-family: "Open Sans", sans-serif;
}
/*Slider*/
.gallery-slider {
	-webkit-box-shadow: 0px 7px 18px 0px rgba(119, 119, 119, 0.32);
	-moz-box-shadow: 0px 7px 18px 0px rgba(119, 119, 119, 0.32);
	box-shadow: 0px 7px 18px 0px rgba(119, 119, 119, 0.32);
	margin: 20px auto;
}
.gallery-slider.slick-dotted.slick-slider {
	margin-bottom: 60px;
}
.gallery-slider .slide {
	position: relative;
}
.gallery-slider .slide img {
	width: 100%;
}
.gallery-slider .slick-next {
	right: 35px;
}
.gallery-slider .slick-next:before {
	content: "\f105";
}
.gallery-slider .slick-prev {
	left: inherit;
	right: 90px;
	z-index: 1;
}
.gallery-slider .slick-prev:before {
	content: "\f104";
}
.gallery-slider .slick-prev:before,
.gallery-slider .slick-next:before {
	font-size: 40px;
	opacity: 1;
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900;
}
.gallery-slider .slick-prev,
.gallery-slider .slick-next {
	top: inherit;
	bottom: -55px;
	width: 55px;
	height: 55px;
	color: var(--white);
	background-color: var(--primary-color);
}
.gallery-slider .slick-next {
	top: inherit;
	bottom: -55px;
	width: 55px;
	height: 55px;
	color: var(--white);
	background-color: var(--primary-color);
}
.gallery-slider .slick-prev:hover,
.gallery-slider .slick-prev:focus,
.gallery-slider .slick-next:hover,
.gallery-slider .slick-next:focus {
	background: var(--black);
}
.gallery-slider .slick-dots {
	text-align: left;
	width: 80%;
	bottom: -35px;
}
.gallery-slider .slick-dots li button:before {
	font-size: 15px;
}
.gallery-slider .carousel-caption {
	margin: 0 auto;
	left: 20px;
	bottom: 20px;
	right: 25%;
	text-align: left;
	line-height: 30px;
	z-index: 1;
	position: absolute;
	padding: 20px;
	background-color: rgba(0, 44, 118, 0.75);
}
.gallery-slider .carousel-caption h1,
.gallery-slider .carousel-caption h2,
.gallery-slider .carousel-caption h3 {
	font-size: 32px;
	line-height: 32px;
	margin: 0 0 10px;
	color: var(--white) !important;
	font-weight: 500;
	text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.3);
}
.content .gallery-slider .carousel-caption a,
.gallery-slider .carousel-caption a {
	color: var(--white);
	text-decoration: none;
}
.content .gallery-slider .carousel-caption a:hover,
.gallery-slider .carousel-caption a:hover,
.content .gallery-slider .carousel-caption a:focus,
.gallery-slider .carousel-caption a:focus {
	text-decoration: underline;
}
.pagination,
.ou-search-pagination {
	margin: 20px auto !important;
}
.pagination .page-item .page-link {
	text-decoration: none !important;
}
.pagination .page-item.active .page-link {
	background-color: var(--primary-color) !important;
	border-color: var(--primary-color) !important;
	color: var(--white);
}
#ou-search-results h2 {
	display: none;
}
.ou-search-container {
	width: 100%;
	padding: 50px 0 !important;
}
#ou-search-results .ou-search-input {
	border: 1px solid #ced4da !important;
	border-radius: 5px;
	padding: 10px !important;
}
#ou-search-results .ou-search-button-color {
	color: var(--white) !important;
	background-color: var(--primary-color) !important;
	border-color: var(--primary-color) !important;
	font-weight: 600 !important;
	font-size: 16px !important;
}
#ou-search-results .ou-search-open-advanced {
	background-color: var(--primary-color) !important;
	border: 1px solid var(--primary-color) !important;
	font-weight: 600 !important;
	font-size: 16px !important;
}
#ou-search-results .ou-search-advanced-heading .ou-search-open-advanced:before {
	content: "\f107";
	font-family: "Font Awesome 5 Free";
}
#ou-search-results a {
	color: var(--primary-color) !important;
}
#ou-search-results a:hover {
	color: #000 !important;
}
#ou-search-results ul {
	font-size: 18px;
	font-weight: 300;
	line-height: inherit;
}
#ou-search-results ul li {
	margin-bottom: 20px;
}
#ou-search-results ul li .ou-search-link a {
	text-decoration: none;
	border-bottom: none;
}
#ou-search-results .ou-search-pagination > .ou-search-active > a,
#ou-search-results .ou-search-pagination > .ou-search-active > a:focus,
#ou-search-results .ou-search-pagination > .ou-search-active > a:hover,
#ou-search-results .ou-search-pagination > .ou-search-active > span,
#ou-search-results .ou-search-pagination > .ou-search-active > span:focus,
#ou-search-results .ou-search-pagination > .ou-search-active > span:hover {
	background-color: var(--primary-color) !important;
	border-color: var(--primary-color) !important;
}
#ou-search-results .ou-search-pagination > .ou-search-disabled > span,
#ou-search-results .ou-search-pagination > .ou-search-disabled > span:focus,
#ou-search-results .ou-search-pagination > .ou-search-disabled > span:hover {
	color: #4e555a !important;
	border-color: #dee2e6 !important;
}
#ou-search-results .ou-search-pagination > li:first-child > a,
#ou-search-results .ou-search-pagination > li:first-child > span {
	border-top-left-radius: 0.25rem !important;
	border-bottom-left-radius: 0.25rem !important;
}
#ou-search-results .ou-search-pagination > li:last-child > a,
#ou-search-results .ou-search-pagination > li:last-child > span {
	border-top-right-radius: 0.25rem !important;
	border-bottom-right-radius: 0.25rem !important;
}
#ou-search-results .ou-search-pagination > li > a,
#ou-search-results .ou-search-pagination > li > span {
	border-color: #dee2e6 !important;
}
#ou-search-results .ou-search-pagination > li > a:focus,
#ou-search-results .ou-search-pagination > li > a:hover,
#ou-search-results .ou-search-pagination > li > span:focus {
	background-color: #e9ecef !important;
	border-color: #dee2e6 !important;
	color: #0366d6 !important;
}
#ou-search-results .ou-bestbets,
#ou-search-results .ou-search-parametric-results {
	border: none !important;
	background: #e9ecef !important;
}
.dataTables_length {
	text-align: left;
}
#directory-list thead {
	background: var(--primary-color);
	color: var(--white);
}
#directory-list {
	background-color: var(--white);
	text-align: left;
}
#directory-list thead tr td,
#directory-list thead th {
	border: none;
}
.dataTables_wrapper .dataTables_filter input {
	width: 300px !important;
}
h3 + .faculty-box,
h4 + .faculty-box {
	margin-top: 0;
}
.faculty-box {
	float: left;
	margin: 30px 0;
	width: 100%;
}
.faculty-headshot {
	margin: 20px auto;
	float: right;
	display: block;
}
.faculty-box-info {
	float: left;
	width: 100%;
}
.faculty-box-info-title {
	margin-right: 8px;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 16px;
}
.faculty-box-info-title,
.faculty-box-info-desc {
	float: left;
}
.faculty-box-info-desc {
	position: relative;
	top: -4px;
}
table.bio th {
	font-weight: bold;
}

/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1370px) and (max-width: 999999px) {
	.site-navigation.modal[style] {
		display: block !important;
	}
	.ou-search-container {
		width: 100% !important;
	}
}
/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1369px) {
	body {
		/*border: 2px solid #fcee21;*/
	} /*yellow*/
	.site-navigation.modal[style] {
		display: block !important;
	}
	.main-navigation .nav li a {
		padding: 10px;
		font-size: 16px;
	}
	.main-navigation .nav li .menu-image {
		display: none;
	}
	.footer-social li a:before {
		font-size: 22px;
		width: 32px;
		height: 32px;
		line-height: 32px;
	}
	.ou-search-container {
		width: 100% !important;
	}
	.half-and-half {
		background-size: 75%;
	}
}

@media (min-width: 1200px) {
	header .container-fluid {
		width: 90%;
	}
	header .container-fluid.alert {
		width: 100%;
	}
	.video-feature {
		height: 680px;
	}
}

/* Landscape tablets and medium desktops: LG */
@media (min-width: 992px) and (max-width: 1199px) {
	body {
		/*border: 2px solid #0000ff;*/
	} /*blue*/
	.main-navigation .bottom-row {
		padding: 25px 0;
	}
	.main-navigation .nav li a {
		padding: 10px 30px 10px 16px;
		white-space: normal;
		text-align: left;
	}
	.siteHeader.sticky-header-show {
		background-color: transparent;
		height: auto;
		box-shadow: none;
	}
	.siteHeader.sticky-header-show {
		background-color: transparent;
	}
	.header-search .form-control {
		height: 35px;
	}
	.header-search .btn-default {
		right: 15px;
		top: 4px;
	}
	.mobile-header {
		display: block;
	}
	#siteSearch .btn {
		margin: 5px 0;
	}
	.menuToggle {
		display: block;
		position: absolute;
		top: 25px;
		right: 25px;
		padding: 0;
	}
	.site-navigation.modal {
		display: none;
		opacity: 0;
		position: fixed;
		overflow-y: scroll;
		overflow-x: hidden;
		height: 100%;
	}
	.site-navigation .modal-body {
		padding: 0 0 40px;
		background-color: var(--primary-color);
	}
	.site-navigation.modal.show {
		opacity: 1;
	}
	.site-navigation.modal .modal-dialog {
		width: auto;
		max-width: 500px;
	}
	.site-navigation .modal-content {
		background-color: var(--primary-color) !important;
		border: none;
		border-radius: 0;
		height: 100%;
		min-height: 100vh;
		width: 500px;
	}
	.site-navigation.modal.fade:not(.in) .modal-dialog {
		-webkit-transform: translate3d(25%, 0, 0);
		transform: translate3d(25%, 0, 0);
	}
	.site-navigation.modal.fade:not(.in).bottom .modal-dialog {
		-webkit-transform: translate3d(0, 25%, 0);
		transform: translate3d(0, 25%, 0);
	}
	.site-navigation.modal .modal-dialog {
		position: absolute;
		top: 0;
		right: 125px;
		margin: 0;
	}
	.site-navigation {
		padding: 75px 60px;
		overflow: hidden;
	}
	.site-navigation .nav {
		display: block;
	}
	.site-navigation .nav-item .dropdown-menu .sub-menu {
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item {
		border: none;
	}
	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item .dropdown-item {
		border: none;
		font-size: 14px;
		padding-left: 0;
	}
	.site-navigation
	.main-navigation
	.nav
	.nav-item
	.dropdown-menu
	.sub-menu
	.nav-item
	.dropdown-item:after {
		display: none;
	}
	.main-navigation .nav .dropdown {
		display: block;
	}
	.main-navigation .nav li a:hover,
	.main-navigation .nav li a:focus,
	.main-navigation .dropdown.open a.dropdown-toggle {
		background-color: transparent;
	}
	.main-navigation .top-row .audience .nav-item .nav-link {
		color: var(--white);
		padding: 10px 0 !important;
		border-bottom: 1px solid var(--white);
	}
	.site-navigation .nav-link {
		color: var(--white);
		font-size: 18px;
		font-weight: 600;
		text-decoration: none;
		padding: 15px 0;
		text-transform: none !important;
		white-space: normal;
	}
	.main-navigation .audience .nav li a:after {
		display: none;
	}
	.main-navigation .top-row .audience .nav-item .nav-link:after {
		display: none;
	}
	.main-navigation .nav .dropdown:hover .dropdown-menu {
		opacity: 0;
	}
	.main-navigation .nav .dropdown .dropdown-menu.show {
		opacity: 1;
		width: auto;
		visibility: visible;
		float: none;
		box-shadow: none;
		transition: none !important;
	}
	.main-navigation .nav .dropdown .dropdown-menu {
		transition: none !important;
	}
	.main-navigation .nav .dropdown.show .dropdown-menu.show[style] {
		display: inherit !important;
		transform: none !important;
		position: relative !important;
	}
	.main-navigation .nav .dropdown .dropdown-menu {
		z-index: 0;
		transition: none;
		left: 0 !important;
		background-color: transparent;
		padding: 0;
		display: none;
		opacity: 1;
	}
	.main-navigation .nav li a:after {
		font-family: "Font Awesome 5 Free" !important;
		content: "\f0d7" !important;
		font-weight: 900;
		display: inline-block;
		position: absolute;
		right: 16px;
		border: none;
	}
	.main-navigation .nav li a[aria-expanded="true"]:after {
		content: "\f0d8" !important;
	}
	.site-navigation .audience {
		padding: 0 20px 0;
	}
	.modal-open .siteHeader {
		background-color: transparent;
	}
	.menuClose {
		color: var(--white);
		text-transform: uppercase;
		text-decoration: none;
		text-align: right;
		font-size: 30px;
		position: absolute !important;
		display: inline-block;
		top: 0;
		right: 20px;
		text-shadow: none;
		opacity: 1;
		z-index: 5;
	}
	.menuClose:hover,
	.menuClose:focus {
		color: var(--white);
	}
	.main-navigation .logo,
	.main-navigation .hamburger {
		display: none;
	}
	.main-navigation .nav li .menu-image {
		display: none;
	}
	.main-navigation .top-row {
		padding-top: 50px;
		padding-bottom: 40px;
	}
	.header-search {
		margin-left: 0;
		margin-top: 40px;
	}
	.footer-social li a:before {
		font-size: 22px;
		width: 32px;
		height: 32px;
		line-height: 32px;
	}
	.hero-slider .slide {
		height: 500px;
	}
	.video-feature {
		height: 500px;
	}
	.section {
		padding: 40px 0;
	}
	.sub-header h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 32px;
	}
	footer a {
		font-size: 14px;
	}
	.lead {
		font-size: 20px;
		line-height: 1.35em;
	}
	.btn-default {
		min-width: 110px;
	}
	.restrict {
		padding: 0 15%;
	}
	.ou-search-container {
		width: 100% !important;
	}
	.featured-event .featured-date {
		font-size: 24px;
		padding: 40px;
	}
	.featured-event h2 {
		font-size: 32px;
	}
	.bg-gray .card .card-body br,
	.bg-red .card .card-body br {
		display: none;
	}
	.half-and-half .text {
		max-width: 70%;
	}
	.half-and-half {
		background-size: 100%;
		background-position: 10% center;
	}
	.news-events .news,
	.news-events .events {
		min-height: 820px;
	}
}

/* Portrait tablets and small desktops: MD */
@media (min-width: 768px) and (max-width: 991px) {
	body {
		/*border: 2px solid #ed1e79;*/
	} /*pink*/
	.main-navigation .bottom-row {
		padding: 25px 0;
	}
	.main-navigation .nav li a {
		padding: 10px 30px 10px 16px;
		white-space: normal;
		text-align: left;
	}
	.siteHeader.sticky-header-show {
		background-color: transparent;
		height: auto;
		box-shadow: none;
	}
	.siteHeader.sticky-header-show {
		background-color: transparent;
	}
	.header-search .form-control {
		height: 35px;
	}
	.header-search .btn-default {
		right: 15px;
		top: 4px;
	}
	.mobile-header {
		display: block;
	}
	#siteSearch .btn {
		margin: 5px 0;
	}
	.menuToggle {
		display: block;
		position: absolute;
		top: 25px;
		right: 25px;
		padding: 0;
	}
	.site-navigation.modal {
		display: none;
		opacity: 0;
		position: fixed;
		overflow-y: scroll;
		overflow-x: hidden;
		height: 100%;
	}
	.site-navigation .modal-body {
		padding: 0 0 40px;
		background-color: var(--primary-color);
	}
	.site-navigation.modal.show {
		opacity: 1;
	}
	.site-navigation.modal .modal-dialog {
		width: auto;
		max-width: 500px;
	}
	.site-navigation .modal-content {
		background-color: var(--primary-color) !important;
		border: none;
		border-radius: 0;
		height: 100%;
		min-height: 100vh;
		width: 500px;
	}
	.site-navigation.modal.fade:not(.in) .modal-dialog {
		-webkit-transform: translate3d(25%, 0, 0);
		transform: translate3d(25%, 0, 0);
	}
	.site-navigation.modal.fade:not(.in).bottom .modal-dialog {
		-webkit-transform: translate3d(0, 25%, 0);
		transform: translate3d(0, 25%, 0);
	}
	.site-navigation.modal .modal-dialog {
		position: absolute;
		top: 0;
		right: 125px;
		margin: 0;
	}
	.site-navigation {
		padding: 75px 60px;
		overflow: hidden;
	}
	.site-navigation .nav {
		display: block;
	}
	.site-navigation .nav-item .dropdown-menu .sub-menu {
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item {
		border: none;
	}
	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item .dropdown-item {
		border: none;
		font-size: 14px;
		padding-left: 0;
	}
	.site-navigation
	.main-navigation
	.nav
	.nav-item
	.dropdown-menu
	.sub-menu
	.nav-item
	.dropdown-item:after {
		display: none;
	}
	.main-navigation .nav .dropdown {
		display: block;
	}
	.main-navigation .nav li a:hover,
	.main-navigation .nav li a:focus,
	.main-navigation .dropdown.open a.dropdown-toggle {
		background-color: transparent;
	}
	.main-navigation .top-row .audience .nav-item .nav-link {
		color: var(--white);
		padding: 10px 0 !important;
		border-bottom: 1px solid var(--white);
	}
	.site-navigation .nav-link {
		color: var(--white);
		font-size: 18px;
		font-weight: 600;
		text-decoration: none;
		padding: 15px 0;
		text-transform: none !important;
		white-space: normal;
	}
	.main-navigation .audience .nav li a:after {
		display: none;
	}
	.main-navigation .top-row .audience .nav-item .nav-link:after {
		display: none;
	}
	.main-navigation .nav .dropdown:hover .dropdown-menu {
		opacity: 0;
	}
	.main-navigation .nav .dropdown .dropdown-menu.show {
		opacity: 1;
		width: auto;
		visibility: visible;
		float: none;
		box-shadow: none;
		transition: none !important;
	}
	.main-navigation .nav .dropdown .dropdown-menu {
		transition: none !important;
	}
	.main-navigation .nav .dropdown.show .dropdown-menu.show[style] {
		display: inherit !important;
		transform: none !important;
		position: relative !important;
	}
	.main-navigation .nav .dropdown .dropdown-menu {
		z-index: 0;
		transition: none;
		left: 0 !important;
		background-color: transparent;
		padding: 0;
		display: none;
		opacity: 1;
	}
	.main-navigation .nav li a:after {
		font-family: "Font Awesome 5 Free" !important;
		content: "\f0d7" !important;
		font-weight: 900;
		display: inline-block;
		position: absolute;
		right: 16px;
		border: none;
	}
	.main-navigation .nav li a[aria-expanded="true"]:after {
		content: "\f0d8" !important;
	}
	.site-navigation .audience {
		padding: 0 20px 0;
	}
	.modal-open .siteHeader {
		background-color: transparent;
	}
	.menuClose {
		color: var(--white);
		text-transform: uppercase;
		text-decoration: none;
		text-align: right;
		font-size: 30px;
		position: absolute !important;
		display: inline-block;
		top: 0;
		right: 20px;
		text-shadow: none;
		opacity: 1;
		z-index: 5;
	}
	.menuClose:hover,
	.menuClose:focus {
		color: var(--white);
	}
	.main-navigation .logo,
	.main-navigation .hamburger {
		display: none;
	}
	.main-navigation .nav li .menu-image {
		display: none;
	}
	.main-navigation .top-row {
		padding-top: 50px;
		padding-bottom: 40px;
	}
	.header-search {
		margin-left: 0;
		margin-top: 40px;
	}
	.footer-social li a:before {
		font-size: 22px;
		width: 32px;
		height: 32px;
		line-height: 32px;
	}
	.footer-address,
	footer h2 {
		text-align: center;
	}
	footer img {
		margin: 0 auto;
	}
	.arrow-indicator {
		bottom: 90px;
	}
	.hero-slider .slide {
		height: 450px;
	}
	.video-feature {
		height: 450px;
	}
	.hero-slider .carousel-caption h1,
	.video-feature .video-caption h1 {
		font-size: 42px;
		line-height: 42px;
	}
	.icon span {
		font-size: 3em;
	}
	.icon {
		margin-bottom: 20px;
	}
	.section {
		padding: 40px 0;
	}
	.section-with-background {
		padding: 40px;
	}
	.sub-header h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 32px;
	}
	h3 {
		font-size: 24px;
	}
	.interior .content h2 {
		text-align: left;
	}
	.restrict {
		padding: 0 15%;
	}
	footer .copyright {
		margin-top: 40px;
	}
	.footer-social {
		text-align: center;
	}
	.footer-nav {
		margin-top: 20px;
	}
	.single-hero {
		height: 430px;
	}
	.ou-search-container {
		width: 100% !important;
	}
	.single-hero h1 {
		top: 300px;
	}
	.featured-event .featured-date {
		font-size: 24px;
		padding: 40px;
	}
	.featured-event h2 {
		font-size: 32px;
		text-align: left;
	}
	#sidebar .navbar .row {
		width: auto;
	}
	#sidebar .navbar {
		margin: 0;
	}
	#sidebar {
		padding: 10px;
	}
	.half-and-half .text {
		max-width: 100%;
	}
	.half-and-half {
		background-size: cover;
		background-position: 10% center;
	}
	.news-slider .carousel-indicators li .article-caption {
		height: 120px;
	}
	.news-slider {
		margin-bottom: 80px;
	}
}

/* Landscape phones and portrait tablets: SM */
@media (max-width: 767px) {
	body {
		/*border: 2px solid #009245;*/
	} /*green*/
	.container-padding {
		padding: 0 15px;
	}
	h1,
	.h1 {
		font-size: 1.75rem;
		line-height: 2.75rem;
	}
	.space-sm {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
	.main-navigation .bottom-row {
		padding: 25px 0;
	}
	.main-navigation .nav li a {
		padding: 10px 30px 10px 16px;
		white-space: normal;
		text-align: left;
	}
	.siteHeader.sticky-header-show {
		background-color: transparent;
		height: auto;
		box-shadow: none;
	}
	.siteHeader.sticky-header-show {
		background-color: transparent;
	}
	.header-search .form-control {
		height: 35px;
	}
	.header-search .btn-default {
		right: 15px;
		top: 4px;
	}
	.mobile-header {
		display: block;
	}
	#siteSearch .btn {
		margin: 5px 0;
	}
	.menuToggle {
		display: block;
		position: absolute;
		top: 25px;
		right: 25px;
		padding: 0;
	}
	.site-navigation.modal {
		display: none;
		opacity: 0;
		position: fixed;
		overflow-y: scroll;
		overflow-x: hidden;
		height: 100%;
	}
	.site-navigation .modal-body {
		padding: 0 0 40px;
		background-color: var(--primary-color);
	}
	.site-navigation.modal.show {
		opacity: 1;
	}
	.site-navigation.modal .modal-dialog {
		width: auto;
		max-width: 500px;
	}
	.site-navigation .modal-content {
		background-color: var(--primary-color) !important;
		border: none;
		border-radius: 0;
		height: 100%;
		min-height: 100vh;
		width: 500px;
	}
	.site-navigation.modal.fade:not(.in) .modal-dialog {
		-webkit-transform: translate3d(25%, 0, 0);
		transform: translate3d(25%, 0, 0);
	}
	.site-navigation.modal.fade:not(.in).bottom .modal-dialog {
		-webkit-transform: translate3d(0, 25%, 0);
		transform: translate3d(0, 25%, 0);
	}
	.site-navigation.modal .modal-dialog {
		position: absolute;
		top: 0;
		right: 125px;
		margin: 0;
	}
	.site-navigation {
		padding: 75px 60px;
		overflow: hidden;
	}
	.site-navigation .nav {
		display: block;
	}
	.site-navigation .nav-item .dropdown-menu .sub-menu {
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item {
		border: none;
	}
	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item .dropdown-item {
		border: none;
		font-size: 14px;
		padding-left: 0;
	}
	.site-navigation
	.main-navigation
	.nav
	.nav-item
	.dropdown-menu
	.sub-menu
	.nav-item
	.dropdown-item:after {
		display: none;
	}
	.main-navigation .nav .dropdown {
		display: block;
	}
	.main-navigation .nav li a:hover,
	.main-navigation .nav li a:focus,
	.main-navigation .dropdown.open a.dropdown-toggle {
		background-color: transparent;
	}
	.main-navigation .top-row .audience .nav-item .nav-link {
		color: var(--white);
		padding: 10px 0 !important;
		border-bottom: 1px solid var(--white);
	}
	.site-navigation .nav-link {
		color: var(--white);
		font-size: 18px;
		font-weight: 600;
		text-decoration: none;
		padding: 15px 0;
		text-transform: none !important;
		white-space: normal;
	}
	.main-navigation .audience .nav li a:after {
		display: none;
	}
	.main-navigation .top-row .audience .nav-item .nav-link:after {
		display: none;
	}
	.main-navigation .nav .dropdown:hover .dropdown-menu {
		opacity: 0;
	}
	.main-navigation .nav .dropdown .dropdown-menu.show {
		opacity: 1;
		width: auto;
		visibility: visible;
		float: none;
		box-shadow: none;
		transition: none !important;
	}
	.main-navigation .nav .dropdown .dropdown-menu {
		transition: none !important;
	}
	.main-navigation .nav .dropdown.show .dropdown-menu.show[style] {
		display: inherit !important;
		transform: none !important;
		position: relative !important;
	}
	.main-navigation .nav .dropdown .dropdown-menu {
		z-index: 0;
		transition: none;
		left: 0 !important;
		background-color: transparent;
		padding: 0;
		display: none;
		opacity: 1;
	}
	.main-navigation .nav li a:after {
		font-family: "Font Awesome 5 Free" !important;
		content: "\f0d7" !important;
		font-weight: 900;
		display: inline-block;
		position: absolute;
		right: 16px;
		border: none;
	}
	.main-navigation .nav li a[aria-expanded="true"]:after {
		content: "\f0d8" !important;
	}
	.site-navigation .audience {
		padding: 0 20px 0;
	}
	.modal-open .siteHeader {
		background-color: transparent;
	}
	.menuClose {
		color: var(--white);
		text-transform: uppercase;
		text-decoration: none;
		text-align: right;
		font-size: 30px;
		position: absolute !important;
		display: inline-block;
		top: 0;
		right: 20px;
		text-shadow: none;
		opacity: 1;
		z-index: 5;
	}
	.menuClose:hover,
	.menuClose:focus {
		color: var(--white);
	}
	.main-navigation .logo,
	.main-navigation .hamburger {
		display: none;
	}
	.main-navigation .nav li .menu-image {
		display: none;
	}
	.main-navigation .top-row {
		padding-top: 50px;
		padding-bottom: 40px;
	}
	.header-search {
		margin-left: 0;
		margin-top: 40px;
	}
	.footer-social li a:before {
		font-size: 22px;
		width: 32px;
		height: 32px;
		line-height: 32px;
	}
	.sub-header h1 {
		font-size: 40px;
	}
	.hero-slider .carousel-caption h1 {
		font-size: 36px;
		line-height: 36px;
	}
	.hero-slider .carousel-caption {
		left: 0;
		right: 0px;
		bottom: 0;
		padding: 15px 15px 60px;
	}
	.slider-wrapper .slide-controllers {
		left: 15px;
	}
	.video-feature {
		height: 300px;
	}
	.video-caption-button {
		left: 55px;
		bottom: 65px;
	}
	.section {
		padding: 20px 0;
	}
	.section-with-background {
		padding: 40px 0;
	}
	.icon span {
		font-size: 3em;
	}
	.icon {
		margin-bottom: 20px;
	}
	.restrict {
		padding: 0 15%;
	}
	.footer-nav {
		text-align: center;
	}
	.footer-nav .list-unstyled {
		border-right: none;
		margin-bottom: 3rem;
	}
	.footer-nav h3 {
		margin-bottom: 1rem;
	}
	footer .list-unstyled li {
		margin-right: 0rem;
	}
	footer .footer-social {
		justify-content: center;
	}
	.footer-nav .col-6.col-md-3 {
		border-right: 1px solid var(--white);
	}
	.footer-nav .col-6.col-md-3:nth-child(2),
	.footer-nav .col-6.col-md-3:nth-child(4) {
		border-right: none;
	}
	.footer-address,
	footer h2 {
		text-align: center;
	}
	footer img {
		margin: 0 auto;
	}
	.video-feature .video-caption {
		left: 0;
		max-width: 100%;
		padding-right: 55px;
	}
	.play-pause {
		right: 20px;
	}
	/* .video-feature .video-caption {
	right: 20px;
} */
	.hero-slider .carousel-caption h1,
	.video-feature .video-caption h1 {
		font-size: 30px;
		line-height: 30px;
	}
	.card.scale:hover {
		transform: none;
	}
	.calendar-item:hover {
		transform: none;
	}
	.border-on-mobile {
		border-bottom: 10px solid var(--primary-color);
		margin-bottom: 10px;
	}
	.nav-tabs .nav-link {
		display: block;
		width: 100%;
		margin: 0;
		border-bottom: 1px solid var(--white);
	}
	.gallery-slider .slick-prev {
		right: 75px;
	}
	.gallery-slider .slick-prev:before,
	.gallery-slider .slick-next:before {
		font-size: 30px;
	}
	.gallery-slider .slick-prev,
	.gallery-slider .slick-next {
		bottom: -40px;
		width: 40px;
		height: 40px;
	}
	.gallery-slider .slick-next {
		bottom: -40px;
		width: 40px;
		height: 40px;
	}
	.news .article .card .figure {
		float: none;
		width: 100%;
	}
	.news .article .card .figure img {
		margin: 0 0 10px 0;
	}
	.ou-search-container {
		width: 100% !important;
	}
	.single-hero h1 {
		top: 10px;
		left: 20px;
		line-height: 44px;
		font-size: 40px;
		position: relative;
		color: var(--black);
		text-shadow: none;
	}
	.featured-event .featured-date {
		font-size: 24px;
		padding: 30px;
		margin-bottom: 10px;
		max-width: none;
	}
	.featured-event h2 {
		font-size: 32px;
		text-align: left;
	}
	.feature .feature-wrap {
		display: block;
		margin-top: 50px;
		width: 100%;
	}
	.feature .feature-content {
		padding: 1rem;
		display: block;
	}
	.accordion .card-header .btn {
		font-size: 18px;
	}
	.accordion .card-header .btn-link .fas {
		font-size: 18px;
	}
	.cookiealert {
		left: 0px;
		right: 0px;
	}
	.cookiealert .acceptcookies {
		margin-left: 0;
	}
	.emergency-alert {
		padding: 20px 50px 20px 20px;
		text-align: center;
		height: 95px;
		font-size: 18px;
	}
	.emergency-alert.alert-dismissible .close {
		right: -15px;
		top: -10px;
		width: 20px;
		height: 20px;
	}
	#sidebar .navbar .row {
		width: auto;
	}
	#sidebar .navbar {
		margin: 0;
	}
	#sidebar {
		padding: 10px;
	}
	aside .navbar-nav .nav-link {
		padding: 5px;
		line-height: 24px;
		margin: 5px 0;
	}
	.hero-slider .slide {
		height: 400px;
	}
	div.dataTables_wrapper div.dataTables_length,
	div.dataTables_wrapper div.dataTables_filter,
	div.dataTables_wrapper div.dataTables_info,
	div.dataTables_wrapper div.dataTables_paginate {
		text-align: left !important;
	}
	div.table-responsive
	> div.dataTables_wrapper
	> div.row
	> div[class^="col-"]:first-child {
		padding-left: 15px !important;
	}
	div.dataTables_wrapper div.dataTables_paginate ul.pagination {
		justify-content: center !important;
	}
	.half-and-half .text {
		max-width: 100%;
	}
	.half-and-half {
		background-size: cover;
		background-position: 10% center;
	}
	.font-size-xl {
		font-size: 46px;
	}
	.bg-image {
		position: relative;
	}
	.fullwidth-split-text {
		padding: 3rem 0;
	}
	.faculty-headshot {
		float: none;
	}
	.news-slider .carousel-item {
		height: 400px;
	}
	.news-slider .carousel-indicators {
		min-height: 1px;
	}
	.news-slider .carousel-indicators li {
		width: 25%;
		height: 80px;
		min-height: 80px;
	}
	.news-slider .carousel-indicators li .article-caption {
		display: none;
	}
	.news-events-header .news,
	.news-events-header .events {
		font-size: 16px;
		text-align: left;
		margin-bottom: 10px;
		position: relative;
	}
	.col-sm-6 + .col-sm-6 {
		padding-left: 15px;
	}
	.slider-wrapper .testimonial-slider .slick-prev,
	.slider-wrapper .testimonial-slider .slick-next {
		width: 70px;
	}
	.slider-wrapper .testimonial-slider .slick-next:before,
	.slider-wrapper .testimonial-slider .slick-prev:before {
		font-size: 70px !important;
	}
	.event-item .event-text {
		line-height: 1.35;
	}
	.event-item .event-item-time-location .time,
	.event-item .event-item-time-location .location {
		display: block;
		margin-left: 0;
	}
	.event-item .event-date {
		vertical-align: top;
	}
}

/* Portrait phones and smaller: XS */
@media (max-width: 480px) {
	body {
		/*border: 2px solid #f15a24;*/
	} /*orange*/
	.site-navigation.modal .modal-dialog {
		width: 100%;
		max-width: none;
	}
	.site-navigation.modal.fade:not(.in) .modal-dialog {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	.site-navigation.modal .modal-dialog {
		right: 0;
		left: 0;
	}
	.site-navigation .modal-content {
		width: 100%;
	}
	.news-events .events-list .date {
		display: block;
	}
	.news-events .news-footer ul.three-col {
		-webkit-columns: 1 !important;
		-moz-columns: 1 !important;
		columns: 1 !important;
	}
	.news-events {
		padding-bottom: 350px !important;
	}
}

/*IE Issue Fixes*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	#ou-search-results .ou-search-input {
		padding-bottom: 15px !important;
	}
}

@media only screen and (max-width: 991px) {
	/* Force table to not be like tables anymore */
	#directory-list table,
	#directory-list thead,
	#directory-list tbody,
	#directory-list th,
	#directory-list td,
	#directory-list tr {
		display: block;
	}

	/* Hide table headers (but not display: none;, for accessibility) */
	#directory-list thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	#directory-list tr {
		border: 1px solid #ccc;
		padding: 10px;
	}

	#directory-list td {
		border: none;
		position: relative;
		white-space: normal;
		text-align: left;
		padding: 0;
	}

	#directory-list td:before {
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
		text-align: left;
		font-weight: bold;
	}
	.table.directory tfoot {
		display: none;
	}
	.dataTables_wrapper .dataTables_info {
		white-space: normal !important;
	}
	/*
	Label the data
	*/
	#directory-list td:before {
		content: attr(data-title);
	}
}
/* sidebar styles  */
#sidebarMenu > * {
	font-size: 1rem !important;
	font-family: "Open Sans", sans-serif !important;
}
#sidebarMenu a {
	text-decoration: none;
}
#sidebarMenu a:hover {
	text-decoration: underline;
}
#sidebarMenu .btn-group {
	width: 100%;
}
#sidebarMenu .accordion-button {
	width: 40px;
	padding: 10px;
	border-left: 1px solid var(--bs-border-color);
	border-radius: 0 !important;
}
#sidebarMenu .accordion-body {
	padding: 10px;
	border-top: 1px solid var(--bs-border-color);
}
#sidebarMenu .accordion-header {
}
#sidebarMenu .btn {
	text-align: left;
	padding-left: 20px;
}
#sidebarMenu UL.sublinks {
	list-style-type: none;
	padding-left: 25px;
	font-family: inherit;
	margin-bottom: 0;
}
#sidebarMenu UL.sublinks li {
	padding: 5px;
}
#sidebarMenu UL.sublinks li a {
	display: block;
}
#sidebarMenu .accordion-button:not(.collapsed) {
	box-shadow: unset;
}
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding: $breadcrumb-padding-y $breadcrumb-padding-x;
	margin-bottom: $breadcrumb-margin-bottom;
	@include font-size($breadcrumb-font-size);
	list-style: none;
	background-color: $breadcrumb-bg;
	@include border-radius($breadcrumb-border-radius);
}

.breadcrumb-item {
	// The separator between breadcrumbs (by default, a forward-slash: "/")
		+ .breadcrumb-item {
			padding-left: $breadcrumb-item-padding;

			&::before {
				display: inline-block; // Suppress underlining of the separator in modern browsers
				padding-right: $breadcrumb-item-padding;
				color: $breadcrumb-divider-color;
				content: escape-svg($breadcrumb-divider);
			}
		}

	// IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built
	// without `<ul>`s. The `::before` pseudo-element generates an element
	// *within* the .breadcrumb-item and thereby inherits the `text-decoration`.
	//
	// To trick IE into suppressing the underline, we give the pseudo-element an
	// underline and then immediately remove it.
	+ .breadcrumb-item:hover::before {
		text-decoration: underline;
	}
	// stylelint-disable-next-line no-duplicate-selectors
	+ .breadcrumb-item:hover::before {
		text-decoration: none;
	}

	&.active {
		color: $breadcrumb-active-color;
	}
}
.accordion-button:not(.collapsed) {
	color: #71122a;
	background-color: transparent;

	box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
		var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed)::after {
	filter: hue-rotate(180deg);
}

.form-check-input:checked {
	background-color: #71122a;
	border-color: #71122a;
}

.display-4 {
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--primary-color);
}

/* NEW CSS FOR UAT */
header.siteHeader {
	position: relative;
}
@media only screen and (max-width: 767px) {
	.emergency-alert.alert-dismissible button.close {
		top: 10px;
		right: 15px;
	}
}
.nav-pills .nav-link:not(.active):hover {
	color: black;
}
