  @charset "UTF-8";

:root {
	--primary-color: #0033a1;
	--secondary-color: #405B87;
	--hilite-color: #EEBB44;
	--white: #ffffff;
	--light-gray: #f4f4f4;
	--gray: #585858;
	--dark-gray: #231f20;
	--black: #000000;
}

/* CSS Document */
body {
	font-family: 'QuincyCF-Regular', Helvetica, Arial, Sans-Serif;
	font-size: 1.125em;
	line-height: 1.5;
	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(--dark-gray);
	background-color: red;
	font-size: 1.25em;
	font-weight: bold;
	padding: 10px 20px;
	z-index: 3;
	font-family: 'Montserrat';
}

.alert.yellow {
	background-color: var(--hilite-color);
}

.alert a {
	color: var(--dark-gray);
}

.emergency-alert {
	top: 0;
	left: 0;
	background-color: var(--hilite-color);
}

.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(--white);
	background-color: rgba(0, 0, 0, 0.9);
	padding: 30px;
	font-size: 1.125em;
}

.cookiealert .cc-message {
	padding-top: 20px;
	padding-bottom: 20px;
	display: block;
}

.cookiealert.show {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 1000ms;
}

.cookiealert.alert a {
	text-decoration: underline;
	color: var(--white);
	font-weight: 600;
}

.cookiealert.alert a.btn-white {
	color: var(--white);
}

.cookiealert.alert a:hover {
	text-decoration: none;
	color: #adafb2;
}

.cookiealert.alert a.btn-white:hover {
	color: var(--black);
}

.cookiealert .acceptcookies {
	margin: 0;
	vertical-align: baseline;
	min-width: auto;
	text-decoration: none !important;
}

.cookiealert .acceptcookies:hover,
.cookiealert .acceptcookies:focus {
	color: var(--white);
}

.alert a,
.alert a:hover,
.alert a:focus {
	color: var(--dark-gray);
	text-decoration: underline;
	text-decoration-color: var(--dark-gray);
}

.alert-dismissible .close {
	padding: 0;
	right: 15px;
	font-size: 1.875em;
	top: -5px;
}

.alert-dismissible .close:hover,
.alert-dismissible .close:focus {
	color: #adafb2;
}

.fa-exclamation-triangle {
	font-size: 2.5em;
	color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-weight: 700;
	line-height: 1.1;
	font-family: 'QuincyCF-Regular', Helvetica, Arial, Sans-Serif;
}

h1,
.h1 {
	font-size: 2.5rem;
}

h2,
.h2 {
	font-size: 2.25rem;
}

h3,
.h3 {
	font-size: 2rem;
}

h4,
.h4 {
	font-size: 1.75rem;
	font-family: 'Odudo-Bold', Helvetica, Arial, Sans-Serif;
}

h5,
.h5 {
	font-size: 1.5rem;
	font-family: 'Odudo-Bold', Helvetica, Arial, Sans-Serif;
}

h6,
.h6 {
	font-size: 1.25rem;
	font-family: 'Odudo-Bold', Helvetica, Arial, Sans-Serif;
}

.serif {
	font-family: 'QuincyCF-Regular', Helvetica, Arial, Sans-Serif;
}

.sans-serif {
	font-family: 'Odudo-Bold', Helvetica, Arial, Sans-Serif;
}

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;
}

.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-top: 5px;
	margin-left: 20px;
	margin-bottom: 10px;
}

img.float-left {
	margin-top: 5px;
	margin-right: 20px;
	margin-bottom: 10px;
}

.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 { 
	position: relative; 
	height: 100%; 
	max-width: 90%; 
	margin: 0 auto; 
	display: grid; 
	align-items: center; 
}

.space-sm {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.space-md {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.space-xl {
	padding-top: 10.5rem;
	padding-bottom: 10.5rem;
}

.blue-text {
	color: var(--primary-color);
}

.black-text {
	color: var(--dark-gray);
}

.blue-text-light {
	color: var(--secondary-color);
}

.white-text {
	color: var(--white) !important;
}

.font-size-xl {
	font-size: 3.5em;
}

.font-size-lg {
	font-size: 2.375em;
}

.font-size-md {
	font-size: 1.5em;
}

.font-size-sm {
	font-size: 1.125em;
}

.font-size-xs {
	font-size: 1em;
}

[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: .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: -.25em;
}

sup {
	top: -.5em;
}

.lead {
	font-size: 1.275em;
	line-height: 1.35em;
	display: block;
}

.content a,
a {
	color: var(--primary-color);
	text-decoration: underline;
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

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: 0.875em;
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: 0.875em;
	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: 0.875em;
	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: 1.125em;
	font-weight: 300;
}

.interior .content ul li a,
.interior .content ol li a {
	text-decoration: none;
	border-bottom: 1px solid var(--black);
}

.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: #444C55;
}

.btn-default,
.content .btn-default {
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	text-transform: uppercase;
	padding: 12px 15px;
	margin: 15px auto;
	border-radius: 30px;
	min-width: 175px;
	font-family: 'Odudo-Bold', Helvetica, Arial, Sans-Serif;
}

.btn-light,
.content .btn-light {
	background-color: var(--primary-color);
	color: var(--white);
	text-decoration: none;
	border: 2px solid var(--gray);
}

.btn-light:hover,
.btn-light:focus {
	background-color: var(--dark-gray);
}

.btn-light-2,
.content .btn-light-2 {
	background-color: #0033a1;
	color: var(--white);
	text-decoration: none;
	border: 2px solid var(--white);
}

.btn-light-2:hover,
.btn-light-2:focus {
	background-color: var(--primary-color) !important;
	color: var(--white);
}

.btn-dark,
.content .btn-dark {
	background-color: var(--white);
	color: var(--black);
	border: 2px solid var(--primary-color);
}

.btn-dark:hover,
.btn-dark:focus {
	background-color: var(--primary-color);
	color: var(--white);
}

.btn-default.case-normal,
.content .btn-default.case-normal {
	text-transform: none;
}

.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;
}

.btn-centered {
	display: block;
	width: max-content;
}

img {
	max-width: 100%;
	height: auto;
}

.content {
	overflow: hidden;
}

.bg-white {
	background-color: var(--white) !important;
}

.bg-gray {
	background-color: #f4f4f4 !important;
}

.bg-blue {
	background-color: var(--primary-color) !important;
	color: var(--white);
}

.bg-secondary {
	background-color: var(--secondary-color) !important;
	color: var(--white);
}

.bg-dark {
	background-color: var(--dark-gray);
	color: var(--white);
}

.featured-news {
	margin-top: 50px;
}

.featured-news h3 {
	font-size: 1em;
	font-family: 'Odudo-Bold', Helvetica, Arial, Sans-Serif;
	margin-top: 25px;
}

.featured-news h3 a {
	color: var(--black);
}

.featured-news h3 a:hover,
.featured-news h3 a:focus {
	color: var(--secondary-color);
}

.featured-news .card .card-body {
	position: relative;
}

.featured-news .category {
	position: absolute;
	width: 50%;
	padding: 5px 20px;
	top: -20px;
	background-color: var(--secondary-color);
	color: var(--white);
	text-align: center;
	left: 50%;
	transform: translate(-50%, 0);
}

.featured-news .category a {
	color: var(--white);
}

.featured-news .category a:hover,
.featured-news .category a:focus {
	color: var(--black);
}

.featured-news .card .card-img-top {
	transition: transform .5s;
}

.featured-news .card:hover .card-img-top {
	transform: scale(1.125);
}

.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: 6rem 0;
}

.fullwidth-split-subhead {
	text-transform: capitalize;
}

.fullwidth-split-text .text-wrapper {
	max-width: 85%;
}

.container {
	position: relative;
}

.section {
	padding: 75px 0;
	position: relative;
	-webkit-animation-duration: .2s;
	-moz-animation-duration: .2s;
	-o-animation-duration: .2s;
	animation-duration: .2s;
}

.section-parallax {
	position: relative;
	overflow: hidden;
}

.parallax-bg {
	background-attachment: fixed;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.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;
	background-color: var(--black);
}

.section-with-background.light-background {
	background-color: var(--white) !important;
}

.card .icon span {
	line-height: 2.25em;
	font-size: .65em;
	color: var(--white);
	text-align: center;
	display: block;
	font-weight: bold;
}

.card .icon {
	background-color: var(--primary-color);
	border-radius: 50%;
	color: var(--white);
	font-size: 50px;
	width: 75px;
	height: 75px;
	line-height: 75px;
	position: absolute;
	left: 50%;
	right: 50%;
	top: -30px;
	transform: translate(-50%, 0);
}

.card-slider .card {
	min-height: 245px;
}

/*Header Styles*/
.menuToggle {
	display: none;
	background-color: transparent;
	border: none;
	color: var(--white);
	font-size: 1.5em;
	text-transform: uppercase;
	font-family: 'Odudo-Bold', Helvetica, Arial, Sans-Serif;
}

.siteHeader {
	display: block;
	/*position: fixed;*/
	position: relative;
	width: 100%;
	z-index: 5;
	top: 0;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .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 {
	background-color: var(--primary-color);
}

.main-navigation .bottom-row {
	padding: 15px 0;
}

header .modal-body {
	padding: 0;
}

.modal-open .siteHeader {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .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 .1s ease-in, background .5s linear;
	transition: top .1s ease-in, background .5s linear;
}

a:hover {
	text-decoration: none;
}

.logo {
	margin: 0;
	width: 300px;
	position: relative;
}

.hide {
	display: none;
}

.modal-backdrop.show {
	opacity: 0.75;
}

/*Auxillary and Audience Navigations*/
header .audience .nav li a,
header .auxnav .nav li a {
	font-size: 1em;
	padding: 5px 15px;
	display: block;
	width: 100%;
	color: var(--white);
}

header .audience {
	margin-top: 5px;
}

header .top-row .audience .nav li a {
	font-size: .95em;
}

header .main-navigation .audience .nav li a:hover,
header .main-navigation .auxnav .nav li a:hover,
header .main-navigation .audience .nav li a:focus,
header .main-navigation .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-top: 5px;
	margin-right: 10px;
}

.header-search .search-label {
	color: var(--white);
}

.header-search .input-group-btn .sr-only {
	color: var(--white);
}

.header-search .form-control {
	border-radius: 20px !important;
	height: 25px;
	margin: 0;
	padding: 5px 5px 5px 10px;
	-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: 260px;
}

.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: 2px 0;
}

/*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%;
	position: relative;
	right: 0;
}

/*Centers the top navigation*/
.main-navigation .nav li a {
	padding: 10px;
	font-size: 1em;
	text-decoration: none;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	line-height: inherit;
}

.main-navigation .nav .dropdown-toggle::after {
	display: none;
}

.main-navigation .nav li:first-child a {
	padding-left: 0;
}

.main-navigation .nav li:last-child a {
	padding-right: 0;
}

.main-navigation .nav li .dropdown-menu,
.main-navigation .nav li .dropdown-menu[style] {
	padding: 0;
	margin: 0;
}

.main-navigation .nav li:first-child .dropdown-menu,
.main-navigation .nav li:first-child .dropdown-menu[style] {
	left: 0 !important;
}

.main-navigation .nav li:hover .dropdown-menu {
	display: block;
	padding: 0;
	margin: 0;
	width: 100%;
}

.main-navigation .col {
	padding-left: 0;
}

.main-navigation .nav .dropdown-menu .col {
	padding: 0;
}

.main-navigation .nav .dropdown-menu li a {
	color: #555;
	font-size: .9em;
	text-align: left;
	padding: 10px;
}

.main-navigation .nav .dropdown-menu li a.dropdown-toggle:after {
	content: "\f105";
	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;
	color: var(--primary-color);
	font-size: 1em;
	position: relative;
	float: right;
	border: none;
	right: 0;
}

.main-navigation .nav .dropdown-menu li a.dropdown-toggle:hover:after,
.main-navigation .nav .dropdown-menu li a.dropdown-toggle:focus:after {
	color: var(--white);
}

.main-navigation .nav .dropdown-item:focus,
.main-navigation .nav .dropdown-item:hover {
	color: var(--white) !important;
	background-color: var(--primary-color);
}

.main-navigation .nav .dropdown .dropdown-menu .sub-menu .dropdown-menu {
	display: none;
	box-shadow: none;
	min-width: unset;
	left: 157px !important;
	top: 0;
}

.main-navigation .nav .dropdown .dropdown-menu .sub-menu .dropdown-menu[style] {
	left: 157px !important;
}

.main-navigation .nav .dropdown:nth-child(7) .dropdown-menu .sub-menu .dropdown-menu,
.main-navigation .nav .dropdown:last-child .dropdown-menu .sub-menu .dropdown-menu,
.main-navigation .nav .dropdown:nth-child(7) .dropdown-menu .sub-menu .dropdown-menu[style],
.main-navigation .nav .dropdown:last-child .dropdown-menu .sub-menu .dropdown-menu[style] {
	left: -176px !important;
}

.main-navigation .nav .dropdown .dropdown-menu .sub-menu .dropdown-menu.show {
	display: block;
}

.main-navigation .nav .dropdown .dropdown-menu .dropdown:hover .dropdown-menu {
	display: block;
	padding: 0;
	margin: 0;
}

.mobile-header {
	top: 0;
	display: none;
	z-index: 5;
	height: 85px;
	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-buttons-wrapper {
	position: relative;
}

.home .mobile-logo a {
	color: var(--black);
}

/* .mobile-logo a {
position: absolute;
left: 20px;
top: 28px;
padding: 0 !important;
width: 275px;
height: 40px;
background: url('/_resources/images/main-logo-2.png') no-repeat;
background-size: contain;
text-indent: -9999px;
margin: 0;
color: var(--white);
} */

.menuClose {
	display: none;
}

/*Footer*/
footer {
	padding: 70px 0 0;
	line-height: 24px;
	/*background-color: var(--primary-color); --Changed Via Directions of KADAVIS -SDEAN*/
	background-color:#ADAFB2;
	color: var(--primary-color));
}

footer a {
	color: var(--primary-color);
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	text-decoration: none;
}

footer a:hover,
footer a:focus,
footer a:active {
	color: rgba(255, 255, 255, 1) !important;
}

footer .list-unstyled a:hover,
footer .list-unstyled a:focus {
	text-decoration: underline;
}

footer h2 {
	font-family: 'Odudo-Bold', Helvetica, Arial, Sans-Serif;
	font-size: 1.25em;
	text-transform: uppercase;
	color: var(--primary-color);
}

footer h3 {
	font-weight: 400;
	color: var(--primary-color);
	font-size: 1.25em;
	margin-bottom: 25px;
}

footer .list-inline-item:not(:last-child) {
	margin-right: 1rem;
}

footer .list-unstyled li {
	margin-bottom: 8px;
}

footer .copyright {
	padding: 20px 0;
	font-size: 0.875em;
	line-height: 28px;
	text-align: left;
}

footer .copyright a {
	color: var(--white);
}

footer .copyright a:hover,
footer .copyright a:focus {
	text-decoration: underline;
}

.footer-social {
	padding-left: 0;
	list-style: none;
	text-align: center;
	margin: 20px auto;
}

.footer-social li {
	display: inline-block;
	margin: 0 5px;
}

.footer-social li:first-child {
	margin-left: 0;
}

.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(--primary-color);
	font-size: 1.5625em;
	width: 38px;
	height: 38px;
	line-height: 38px;
}

.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 .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	transition: all .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(--primary-color);
	background-color: #002c76;
	font-size: 1.25em;
	width: 40px;
	height: 40px;
	line-height: 40px;
}

.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: 80vh;
	left: 0;
	top: 0;
	border: none;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-color: var(--black);
}

video {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	overflow: hidden;
}

.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: rgba(0, 44, 118, .85);
	width: 40px;
	height: 40px;
	left: 50px;
	bottom: 50px;
	border: 1px solid var(--white);
}

.play-pause:hover,
.play-pause:focus {
	background-color: rgba(196, 18, 48, 1);
}

.play {
	display: none;
}

.play-pause .fa,
.play .fa {
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-feature .btn {
	bottom: 20px;
	position: absolute;
	text-align: center;
	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;
	background-color: var(--primary-color);
	color: white; 
}

.hero-slider {
	position: relative;
	margin-bottom: 0 !important;
}

.hero-slider .slide {
	width: 100vw;
	height: 80vh;
	display: flex;
	justify-content: flex-end;
	align-items: left;
	position: relative;
	background-color: var(--primary-color);
}

.interior-hero-slider .slide {
	height: 50vh;
}

.hero-slider .slide .slider-img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 350px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-slider .slide .slider-img h1 {
	font-size: 75px;
	color: var(--white);
	position: absolute;
	width: 70%;
	padding: 30px;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
}

.hero-slider .carousel-caption {
	margin: 0;
	left: unset;
	top: 0;
	right: 0;
	bottom: 0;
	text-align: left;
	line-height: 30px;
	width: 350px;
	z-index: 1;
	background-color:#ADAFB2;
	padding: 50px;
	-ms-flex-align: center !important;
	align-items: center !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.video-feature .video-caption {
	margin: 0 auto;
	left: 50px;
	right: initial;
	bottom: 100px;
	text-align: left;
	line-height: 30px;
	z-index: 1;
	background-color: rgba(71, 71, 71, .8);
	padding: 30px;
}

.video-feature .video-caption {
	position: absolute;
	padding-top: 20px;
	padding-bottom: 20px;
	color: var(--white);
}

.video-feature .video-caption img {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.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 a:hover,
.video-feature .video-caption a:hover,
.hero-slider .carousel-caption a:focus,
.video-feature .video-caption a:focus {
	color: var(--white);
}

.hero-slider .carousel-caption h1 {
	font-size: 3.25em;
	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 {
	padding-top: 250px;
	font-size: 3.875em;
	line-height: 62px;
	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);
	width: 30px;
	height: 30px;
}

.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;
	right: 30px;
	bottom: 50px;
}

.slider-wrapper .slide-controllers .pause-play {
	color: var(--white);
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	z-index: 2;
	background-color: transparent;
	border: none;
}

.slider-wrapper .slide-controllers .pause-play:before {
	font-family: "Font Awesome 5 Free";
	content: "\f04c";
	font-weight: 900;
	display: block;
	font-size: 1em;
	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;
}

.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: var(--black) !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: "\f061" !important;
	font-weight: 900;
	display: block;
	opacity: 1;
}

.slider-wrapper .slick-prev:before {
	font-family: "Font Awesome 5 Free" !important;
	content: "\f060" !important;
	font-weight: 900;
	display: block;
	opacity: 1;
}

.slider-wrapper .slick-next:hover:before,
.slider-wrapper .slick-prev:hover:before,
.slider-wrapper .slick-next:focus:before,
.slider-wrapper .slick-prev:focus:before,
.slider-wrapper .slide-controllers .pause-play:hover,
.slider-wrapper .slide-controllers .pause-play:focus {
	color: var(--black) !important;
}

.slider-wrapper .slick-dots li button:before,
.card-slider .slick-dots li button:before {
	font-family: "Font Awesome 5 Free" !important;
	content: "\f111" !important;
	font-weight: 400;
	display: block;
	opacity: 1;
	color: white;
	font-size: 14px;
}

.slider-wrapper .slick-dots li.slick-active button:before,
.card-slider .slick-dots li.slick-active button:before {
	content: "\f111" !important;
	opacity: 1;
	color: white;
	font-weight: 900;
}

.slider-wrapper .testimonial-slider .slick-next:before,
.slider-wrapper .testimonial-slider .slick-prev:before {
	color: #939191;
}

.slide-dots .slick-dots {
	bottom: unset !important;
	top: 25px;
	right: 30px;
	text-align: right !important;
}

.testimonial-slider {
	text-align: center;
}

.testimonial-slider .testimonial-quote {
	display: block;
	width: 70%;
	margin: 20px auto;
}

.testimonial-slider img { 
	display: block; 
	width: 300px; 
	height: 300px; 
	border-radius: 50%; 
	object-fit: cover; 
	margin: 0 auto; 
}

.hero { 
	position: relative; 
	height: 460px; 
	overflow: hidden; 
	background-size: cover; 
	background-position: center; 
	background-repeat: no-repeat; 
	background-color: var(--black); 
	text-align: center;
	margin-bottom: 50px; 
}

.hero.no-image {
	position: relative;
	height: auto;
	overflow: hidden;
	background-color: var(--primary-color);
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, .15) 38%, rgba(0, 0, 0, .15) 61%, rgba(0, 0, 0, .15) 62%, rgba(0, 0, 0, 0.65) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, .15) 38%, rgba(0, 0, 0, .15) 61%, rgba(0, 0, 0, .15) 62%, rgba(0, 0, 0, 0.65) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.15) 38%, rgba(0, 0, 0, .15) 61%, rgba(0, 0, 0, .15) 62%, rgba(0, 0, 0, 0.65) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#bf000000', GradientType=0);
}

.hero h1 { 
	display: block; 
	justify-self: start; 
	align-self: end; 
	font-size: 2.5rem; 
	color: var(--white); 
	text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 20px; 
	padding: 50px 0; 
}

.hero.no-image h1 {
	font-size: 2.8em;
	color: var(--white);
	display: block;
	position: relative;
	text-shadow: none;
	transform: none;
	padding: 30px 0;
}

.news-events-header {
	position: relative;
}

.main-news {
	overflow: hidden;
}

.main-news .main-image img {
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.news-events-header .news,
.news-events-header .events {
	color: #0a0a0a;
	font-size: 1.125em;
	text-align: right;
	text-decoration: none;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}

.news-events-header span {
	color: #0a0a0a;
	font-size: 1.5em;
	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: 1.125em;
	line-height: 1.25em;
}

.event-item-copy {
	font-size: 0.975em;
	line-height: 1.5em;
}

.event-item-copy p {
	margin-bottom: 5px;
}

.event-item-date {
	font-size: 0.75em;
}

.events .event-item {
	display: table;
	margin-bottom: 35px;
	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: 1.25em;
	font-weight: bold;
	color: var(--white);
}

.event-item .event-date .event-day {
	display: block;
	text-align: center;
	font-size: 2.5em;
	font-weight: bold;
	color: var(--white);
}

.event-item .event-date .year {
	color: var(--white);
	text-align: center;
	display: block;
}

.event-item .event-text {
	font-size: 1em;
	line-height: 1.25em;
	position: relative;
	vertical-align: top;
	padding-left: 20px;
}

.event-item .event-date-bg {
	background-color: var(--primary-color);
	padding: 10px 20px;
	line-height: 32px;
	-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);
}

.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: 0.875em;
	margin-right: 5px;
}

.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: 0.875em;
	margin-right: 5px;
}

.news-list p {
	margin-top: 15px;
}

.news-list h3 {
	margin-bottom: 0;
}

.news-list h3 a {
	text-decoration: none;
}

.news-list h3 a:hover,
.news-list h3 a:focus {
	text-decoration: underline;
}

.news-list img {
	margin-bottom: 15px;
	display: block;
	margin: 0 auto 15px;
}

.restrict {
	padding: 0 10%;
}

.card {
	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-img-top,
.card-img-side {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.bg-secondary {
	background: #e9ecef !important;
}

.card-borderless {
	border: none;
}

.card-shadowless {
	box-shadow: none !important;
}

.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;
}

.card.card-img-side .image-overlay {
	padding-top: 70%;
	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;
}

.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: 1.125em;
}

.card .card-body h4 {
	font-weight: 900;
	color: #020202;
}

.card a .card-body {
	text-decoration: none !important;
	color: #020202;
	line-height: 22px;
}

.card-body .card-text {
	margin-top: 15px;
}

.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 .5s;
}

.breadcrumb {
	background-color: transparent !important;
	margin: 0;
	display: block;
	padding: 2rem 15px 3rem;
	line-height: 1.5rem !important;
	text-transform: uppercase;
	font-weight: bold;
}

.breadcrumb-item.active {
	color: var(--secondary-color);
}

.breadcrumb li {
	display: inline;
	margin: 0;
	font-size: 0.875em;
	line-height: 1.5em;
	color: #4E555A;
}

.breadcrumb li a {
	text-decoration: none;
	border-bottom: none !important;
	color: #4E555A;
}

.breadcrumb li a:hover {
	text-decoration: underline;
	text-decoration-color: var(--black);
}

/*Side Nav*/
.side-nav-heading {
	font-size: 1.25em !important;
	padding: .5rem;
	margin: 0 !important;
}

.side-nav-heading:after {
	display: none;
}

.side-nav-heading a {
	color: #28638f !important;
	text-decoration: none;
}

#sidebar {
	margin-bottom: 20px;
	background-color: var(--white);
}

#sidebar #side-nav-accordion {
	width: 100%;
	padding: 0;
}

#sidebar .navbar {
	padding: 0;
	background-color: var(--white);
	margin-bottom: 20px;
	display: block;
}

#sidebar .navbar-light .nav-item:first-child {
	border-top: none;
	border-bottom: none;
}

#sidebar .navbar-light .nav-link {
	color: #495057;
	font-size: 1.125em;
	text-decoration: none;
	padding: 12px;
	line-height: 19px;
	border-left: 0px;
	border-right: 0px;
	word-wrap: break-word;
	width: 90%;
}

#sidebar .nav-link.active {
	font-weight: 700;
	color: var(--secondary-color);
}

#sidebar .nav-link.active::before {
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	font-size: 14px;
	color: var(--secondary-color);
	position: absolute;
	left: 0;
}

#sidebar .navbar-light .nav-link:hover,
#sidebar .navbar-light .nav-link:focus {
	color: var(--secondary-color);
	background-color: #f4f4f4;
}

#sidebar .navbar-light {
	width: 100%;
}

#sidebar .navbar .navbar-toggler {
	color: rgba(0, 0, 0, 0.9);
	font-size: 1.25em;
	padding: 5px;
	border: none;
	margin-right: 20px;
	margin-top: 10px;
}

#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-light .nav-item .nav .nav-item .nav-link[aria-expanded="true"]::after {
	content: "\f077";
	color: #016bb1;
}

#sidebar .navbar-brand {
	font-size: 0.9375em;
	font-weight: 500;
	padding-left: 10px;
}

#sidebar .navbar-light .nav-item {
	margin: 0;
	border-left: 0px;
	border-right: 0px;
	border-top: 1px solid #e9ecef;
	border-bottom: 1px solid #e9ecef;
	position: relative;
	display: block;
	width: 100%;
}

#sidebar .navbar-light .nav-item+.nav-item {
	border-bottom: none;
}

#sidebar .navbar-light .row {
	width: 100%;
}

#sidebar .navbar-light .nav-item .navbar-nav {
	background-color: #f6f6f6;
}

#sidebar .navbar-light .nav-item .nav-item {
	border-top: none;
	border-bottom: none;
}

#sidebar .navbar-light .nav-item .nav-item .nav-link {
	font-size: 1em;
	padding: 10px 15px;
	margin-left: 30px;
	color: #495057;
	border-bottom: 1px solid #e9ecef;
}

#sidebar .navbar-light .nav-item .nav-item:first-child .nav-link {
	padding-top: 15px;
}

#sidebar .navbar-light .nav-item .nav-item:last-child .nav-link {
	padding-bottom: 15px;
	border-bottom: none;
}

#sidebar .navbar-light .nav-item .nav-item .nav-link:hover,
#sidebar .navbar-light .nav-item .nav-item .nav-link:focus {
	background-color: #f4f4f4;
	color: var(--secondary-color);
}

#sidebar .navbar-light .nav-item .nav-item .nav-item .nav-link {
	font-size: 0.875em;
	padding: 10px 15px 10px 50px;
}

#sidebar .navbar-light .nav-item .nav-item:first-child .nav-link {
	border-top: none;
}

#sidebar .navbar-light .nav-item .nav-link[data-toggle]::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: 1em;
	color: #495057;
	position: absolute;
	right: 24px;
}

#sidebar .navbar-light .nav-item .nav-link[data-toggle]::after {
	content: "\f067";
	font-size: 0.75em;
	top: 12px;
}

#sidebar .navbar-light .nav-item .nav-link[aria-expanded="true"]::after {
	content: "\f068";
}

#sidebar .navbar-light .nav-item .nav-link[aria-expanded="true"] {
	padding-bottom: 12px;
}

#sidebar .navbar-light .nav-item .nav-item .nav-link::after {
	content: none;
}

#sidebar .navbar-light .nav-item ul {
	margin-left: 0 !important;
	border-top: 1px solid #e9ecef;
}

#sidebar .secondary-nav {
	width: 100%;
	padding: 0 20px;
}

#sidebar .secondary-nav .nav-link {
	border: none;
	color: #28638f;
}

.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(--primary-color);
	padding-left: 10px;
	margin: 20px 40px;
}

.blockquote-footer {
	color: #4E565A;
}

.featured-event h2 {
	font-size: 2.375em;
	color: #28638f;
}

.featured-event {
	font-weight: 300;
	font-size: 1.375em;
}

.featured-event .featured-date {
	font-size: 1.75em;
	color: var(--white);
	padding: 50px;
	text-transform: uppercase;
	background-color: var(--secondary-color);
	text-align: center;
	max-width: 180px;
}

/*Accordions*/
.accordion {
	margin-bottom: 20px;
}

.accordion .card {
	border: none;
	margin: 10px 0;
}

.accordion .card-header {
	padding: 0px;
	border-radius: 0px;
}

.accordion .card-header .btn {
	font-size: .75em;
	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;
}

.accordion .card-header .btn:hover {
	text-decoration: none;
	background-color: var(--primary-color);
}

.accordion .card-header .btn-link .fas {
	font-size: 1.25em;
	padding: 0 5px;
	position: absolute;
	top: 16px;
	right: 20px;
	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: 1.25em;
	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;
	color: var(--primary-color);
	bottom: -30px;
	left: 45%;
}

.tabs .nav-tabs .nav-link {
	border: none;
	border-radius: 0;
	font-size: 1.25em;
	color: var(--primary-color);
	padding: 12px 25px 8px;
	text-decoration: none;
	font-weight: bold;
}

.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;
}

.tabs .nav-tabs .nav-link:hover {
	text-decoration: none;
}

.tabs .nav-tabs {
	border-bottom: 4px solid #ececec;
	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(--secondary-color);
}

.tabs .tab-content {
	text-align: left;
	padding: 20px;
	background-color: var(--white);
	margin-bottom: 50px;
}

.tabs .tab-content h3 {
	margin: 20px 0;
}

/*Vertical Tabs*/
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	background-color: #28638f;
}

.nav-pills .nav-link {
	border-radius: 0;
}

/*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 .slide {
	position: relative;
}

.gallery-slider .slide img {
	width: 100%;
}

.gallery-slider .slick-next {
	right: 20px;
	width: 30px;
	height: 30px;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, .75);
}

.gallery-slider .slick-next:before {
	content: "\f061";
	font-size: 30px;
}

.gallery-slider .slick-prev {
	left: 25px;
	z-index: 1;
	width: 30px;
	height: 30px;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, .75);
}

.gallery-slider .slick-prev:before {
	content: '\f060';
	font-size: 30px;
}

.gallery-slider .slick-prev:before,
.gallery-slider .slick-next:before {
	opacity: 1;
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900;
}

.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, 0, 0, .75);
}

.gallery-slider .carousel-caption h1,
.gallery-slider .carousel-caption h2,
.gallery-slider .carousel-caption h3 {
	font-size: 2em;
	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 .page-link:hover {
	color: var(--primary-color);
}

.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 {
	background-color: transparent !important;
	color: var(--black) !important;
	border: 2px solid var(--secondary-color) !important;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	text-transform: uppercase;
	padding: 12px 15px;
	margin: 15px auto;
	border-radius: 30px !important;
	min-width: 175px;
	font-family: 'Odudo-Bold', Helvetica, Arial, Sans-Serif;
	display: inline-block;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5;
}

#ou-search-results .ou-search-button-color:hover,
#ou-search-results .ou-search-button-color:focus {
	background-color: var(--secondary-color) !important;
	color: var(--white) !important;
}

#ou-search-results .ou-search-open-advanced {
	background-color: transparent !important;
	color: var(--black) !important;
	border: 2px solid var(--secondary-color) !important;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	text-transform: uppercase;
	padding: 12px 15px;
	margin: 15px auto;
	border-radius: 30px !important;
	min-width: 175px;
	font-family: 'Odudo-Bold', Helvetica, Arial, Sans-Serif;
	display: inline-block;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5;
}

#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(--secondary-color) !important;
}

#ou-search-results a:hover {
	color: var(--black) !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: var(--primary-color) !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 a {
	color: var(--primary-color);
}

#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;
}

.faculty-box {
	float: left;
	margin: 15px 0;
	width: 100%;
}

.faculty-headshot {
	margin-bottom: 20px;
	float: right;
	margin-top: 20px;
}

.faculty-box-info {
	float: left;
	width: 100%;
}

.faculty-box-info-title {
	margin-right: 8px;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 1em;
}

.faculty-box-info-title,
.faculty-box-info-desc {
	float: left;
}

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 {
		font-size: .9em;
	}

	.main-navigation .nav .dropdown-menu li a {
		padding: 10px;
	}

	.footer-social li a:before {
		font-size: 1.375em;
		width: 32px;
		height: 32px;
		line-height: 32px;
	}

	.hero-slider .slide {
		height: 70vh;
	}

	.hero-slider .slide .slider-img h1 {
		font-size: 60px;
		width: 75%;
	}

	.ou-search-container {
		width: 100% !important;
	}

	.half-and-half {
		background-size: 75%;
	}
}

@media (min-width: 1200px) {
	header .container-fluid {
		width: 95%;
	}

	header .container-fluid.alert {
		width: 100%;
	}
}


/* Landscape tablets and medium desktops: LG */
@media (min-width: 992px) and (max-width: 1199px) {
	body {
		/*border: 2px solid #0000ff;*/
	}

	/*blue*/
	.main-navigation .nav li a {
		padding: 10px 30px 10px 16px;
		white-space: normal;
		text-align: left;
		font-size: 1.25em;
	}

	.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;
	}

	.menuToggle {
		display: block;
		position: absolute;
		top: 20px;
		right: 10px;
		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(--secondary-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;
	}

	.main-navigation {
		background-color: var(--secondary-color);
	}

	.main-navigation .bottom-row .nav {
		margin-top: 0;
	}

	.site-navigation .top-row .nav-item {
		border-bottom: 1px solid var(--white);
	}

	.site-navigation .top-row .auxnav .nav-item {
		border-bottom: none;
		display: inline-block;
	}

	.main-navigation .nav .dropdown-toggle::after {
		display: inline-block;
		border: none;
		font-family: "Font Awesome 5 Free" !important;
		content: "\f105" !important;
		font-weight: 900;
		position: absolute;
		right: 30px;
	}

	.main-navigation .nav .dropdown-toggle[aria-expanded="true"]::after {
		content: "\f107" !important;
	}

	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item {
		border: none;
		border-bottom: 1px solid #eeeeee;
	}

	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item:last-child {
		border-bottom: none;
	}

	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item .nav-item {
		border: none;
	}

	.main-navigation .nav .dropdown-menu li a {
		font-size: 1em;
	}

	.main-navigation .nav .dropdown-item:focus,
	.main-navigation .nav .dropdown-item:hover {
		color: var(--dark-gray) !important;
		background-color: var(--white);
	}

	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item .dropdown-item {
		border: 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;
	}

	.site-navigation .nav-link {
		color: var(--white);
		font-size: 1.125em;
		font-weight: 600;
		text-decoration: none;
		padding: 15px 0;
		text-transform: none !important;
		white-space: normal;
	}

	.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;
		left: 0 !important;
	}

	.main-navigation .nav .dropdown .dropdown-menu {
		z-index: 0;
		transition: none;
		left: 0 !important;
		background-color: var(--white);
		padding: 0;
		border: none;
	}

	.main-navigation .nav .dropdown .dropdown-menu .sub-menu .dropdown-menu {
		top: 0;
		margin-left: 20px;
		position: relative;
		left: 0 !important;
	}

	.main-navigation .nav .dropdown:nth-child(7) .dropdown-menu .sub-menu .dropdown-menu,
	.main-navigation .nav .dropdown:last-child .dropdown-menu .sub-menu .dropdown-menu,
	.main-navigation .nav .dropdown:nth-child(7) .dropdown-menu .sub-menu .dropdown-menu[style],
	.main-navigation .nav .dropdown:last-child .dropdown-menu .sub-menu .dropdown-menu[style] {
		left: 0 !important;
	}

	.main-navigation .nav .dropdown .dropdown-menu .dropdown:hover .dropdown-menu {
		display: none;
		margin-left: 20px;
	}

	.main-navigation .nav .dropdown .dropdown-menu .sub-menu .dropdown-menu.show {
		display: block;
	}

	.main-navigation .nav .dropdown-menu li a.dropdown-toggle:hover:after,
	.main-navigation .nav .dropdown-menu li a.dropdown-toggle:focus:after {
		color: var(--primary-color);
	}

	.main-navigation .nav .dropdown-menu li.show a.dropdown-toggle:after {
		content: "\f107" !important;
	}

	.site-navigation .audience {
		margin-top: 50px;
		padding: 0 20px 20px;
	}

	.site-navigation .auxnav {
		padding: 0 20px 0;
	}

	.site-navigation .auxnav li:first-child {
		margin-bottom: 20px;
	}

	.main-navigation .nav li:first-child a {
		padding-left: 16px;
	}

	.main-navigation .nav li:last-child a {
		padding-right: 16px;
	}

	.main-navigation .col {
		padding-left: 15px;
	}

	.main-navigation .nav li:hover .dropdown-menu {
		display: none;
	}

	.modal-open .siteHeader {
		background-color: transparent;
	}

	.menuClose {
		color: var(--white);
		text-transform: uppercase;
		text-decoration: none;
		text-align: right;
		font-size: 1.875em;
		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;
	}

	.footer-social li a:before {
		font-size: 1.375em;
		width: 32px;
		height: 32px;
		line-height: 32px;
	}

	.hero-slider .carousel-caption {
		left: 0;
		width: 100%;
		top: unset;
	}

	.hero-slider .slide .slider-img {
		height: 400px;
		width: 100%;
		right: 0;
	}

	.hero-slider .slide .slider-img h1 {
		font-size: 50px;
	}

	.slide-dots .slick-dots {
		bottom: 100px !important;
		top: unset;
	}

	.hero-slider .slide {
		height: 650px;
	}

	.video-feature {
		height: 600px;
	}

	.section {
		padding: 40px 0;
	}

	.sub-header h1 {
		font-size: 2.5em;
	}

	h2 {
		font-size: 2em;
	}

	.font-size-xl {
		font-size: 2.5em;
	}

	.lead {
		font-size: 1.25em;
		line-height: 1.35em;
	}

	.space-md {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.btn-default {
		min-width: 110px;
	}

	.restrict {
		padding: 0 10%;
	}

	.ou-search-container {
		width: 100% !important;
	}

	.featured-event .featured-date {
		font-size: 1.5em;
		padding: 40px;
	}

	.featured-event h2 {
		font-size: 2em;
	}

	.video-feature .overlay {
		background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.7)), color-stop(50%, rgba(0, 0, 0, .3)), color-stop(100%, rgba(0, 0, 0, 0.5)));
		background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		background: -o-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		background: -ms-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
	}

	.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;
	}

	.slider-wrapper.interior-slider {
		margin-bottom: -75px;
	}

	.breadcrumb {
		margin-top: 75px;
	}
}

/* Portrait tablets and small desktops: MD */
@media (min-width: 768px) and (max-width: 991px) {
	.hero h1 { 
		font-size: 1.8rem; 
	}

	body {
		/*border: 2px solid #ed1e79;*/
	}

	/*pink*/
	.main-navigation .nav li a {
		padding: 10px 30px 10px 16px;
		white-space: normal;
		text-align: left;
		font-size: 1.25em;
	}

	.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;
	}

	.menuToggle {
		display: block;
		position: absolute;
		top: 20px;
		right: 10px;
		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(--secondary-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;
	}

	.main-navigation {
		background-color: var(--secondary-color);
	}

	.main-navigation .bottom-row .nav {
		margin-top: 0;
	}

	.site-navigation .top-row .nav-item {
		border-bottom: 1px solid var(--white);
	}

	.site-navigation .top-row .auxnav .nav-item {
		border-bottom: none;
		display: inline-block;
	}

	.main-navigation .nav .dropdown-toggle::after {
		display: inline-block;
		border: none;
		font-family: "Font Awesome 5 Free" !important;
		content: "\f105" !important;
		font-weight: 900;
		position: absolute;
		right: 30px;
	}

	.main-navigation .nav .dropdown-toggle[aria-expanded="true"]::after {
		content: "\f107" !important;
	}

	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item {
		border: none;
		border-bottom: 1px solid #eeeeee;
	}

	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item:last-child {
		border-bottom: none;
	}

	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item .nav-item {
		border: none;
	}

	.main-navigation .nav .dropdown-menu li a {
		font-size: 1em;
	}

	.main-navigation .nav .dropdown-item:focus,
	.main-navigation .nav .dropdown-item:hover {
		color: var(--dark-gray) !important;
		background-color: var(--white);
	}

	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item .dropdown-item {
		border: 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;
	}

	.site-navigation .nav-link {
		color: var(--white);
		font-size: 1.125em;
		font-weight: 600;
		text-decoration: none;
		padding: 15px 0;
		text-transform: none !important;
		white-space: normal;
	}

	.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;
		left: 0 !important;
	}

	.main-navigation .nav .dropdown .dropdown-menu {
		z-index: 0;
		transition: none;
		left: 0 !important;
		background-color: var(--white);
		padding: 0;
		border: none;
	}

	.main-navigation .nav .dropdown .dropdown-menu .sub-menu .dropdown-menu {
		top: 0;
		margin-left: 20px;
		position: relative;
		left: 0 !important;
	}

	.main-navigation .nav .dropdown:nth-child(7) .dropdown-menu .sub-menu .dropdown-menu,
	.main-navigation .nav .dropdown:last-child .dropdown-menu .sub-menu .dropdown-menu,
	.main-navigation .nav .dropdown:nth-child(7) .dropdown-menu .sub-menu .dropdown-menu[style],
	.main-navigation .nav .dropdown:last-child .dropdown-menu .sub-menu .dropdown-menu[style] {
		left: 0 !important;
	}

	.main-navigation .nav .dropdown .dropdown-menu .dropdown:hover .dropdown-menu {
		display: none;
		margin-left: 20px;
	}

	.main-navigation .nav .dropdown .dropdown-menu .sub-menu .dropdown-menu.show {
		display: block;
	}

	.main-navigation .nav .dropdown-menu li a.dropdown-toggle:hover:after,
	.main-navigation .nav .dropdown-menu li a.dropdown-toggle:focus:after {
		color: var(--primary-color);
	}

	.main-navigation .nav .dropdown-menu li.show a.dropdown-toggle:after {
		content: "\f107" !important;
	}

	.site-navigation .audience {
		margin-top: 50px;
		padding: 0 20px 20px;
	}

	.site-navigation .auxnav {
		padding: 0 20px 0;
	}

	.site-navigation .auxnav li:first-child {
		margin-bottom: 20px;
	}

	.main-navigation .nav li:first-child a {
		padding-left: 16px;
	}

	.main-navigation .nav li:last-child a {
		padding-right: 16px;
	}

	.main-navigation .col {
		padding-left: 15px;
	}

	.main-navigation .nav li:hover .dropdown-menu {
		display: none;
	}

	.modal-open .siteHeader {
		background-color: transparent;
	}

	.menuClose {
		color: var(--white);
		text-transform: uppercase;
		text-decoration: none;
		text-align: right;
		font-size: 1.875em;
		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;
	}

	.footer-social li a:before {
		font-size: 1.375em;
		width: 32px;
		height: 32px;
		line-height: 32px;
	}

	.arrow-indicator {
		bottom: 90px;
	}

	.hero-slider .carousel-caption {
		left: 0;
		width: 100%;
		top: unset;
	}

	.hero-slider .slide .slider-img {
		height: 350px;
		width: 100%;
		right: 0;
	}

	.hero-slider .slide .slider-img h1 {
		font-size: 50px;
	}

	.slide-dots .slick-dots {
		bottom: 100px !important;
		top: unset;
	}

	.hero-slider .slide {
		height: 600px;
	}

	.video-feature {
		height: 500px;
	}

	.hero-slider .carousel-caption h1,
	.video-feature .video-caption h1 {
		font-size: 2.625em;
		line-height: 42px;
	}

	.section {
		padding: 40px 0;
	}

	.section-with-background {
		padding: 40px;
	}

	.sub-header h1 {
		font-size: 2.5em;
	}

	.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-news .bg-image {
		position: relative;
	}

	.featured-news .fullwidth-split-text {
		padding: 3rem 0;
	}

	.featured-event .featured-date {
		font-size: 1.5em;
		padding: 40px;
	}

	.featured-event h2 {
		font-size: 2em;
		text-align: left;
	}

	#sidebar .navbar-light .row {
		width: auto;
	}

	#sidebar .navbar {
		padding-bottom: 5px;
	}

	.video-feature .overlay {
		background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.7)), color-stop(50%, rgba(0, 0, 0, .3)), color-stop(100%, rgba(0, 0, 0, 0.5)));
		background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		background: -o-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		background: -ms-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
	}

	.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;
	}

	.slider-wrapper.interior-slider {
		margin-bottom: -75px;
	}
}

/* Landscape phones and portrait tablets: SM */
@media (max-width: 767px) {
	body {
		/*border: 2px solid #009245;*/
	}

	/*green*/
	.container-padding {
		padding: 0 15px;
	}

	.main-navigation .nav li a {
		padding: 10px 30px 10px 16px;
		white-space: normal;
		text-align: left;
		font-size: 1.25em;
	}

	.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;
	}

	.menuToggle {
		display: block;
		position: absolute;
		top: 20px;
		right: 10px;
		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(--secondary-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;
	}

	.main-navigation {
		background-color: var(--secondary-color);
	}

	.main-navigation .bottom-row .nav {
		margin-top: 0;
	}

	.site-navigation .top-row .nav-item {
		border-bottom: 1px solid var(--white);
	}

	.site-navigation .top-row .auxnav .nav-item {
		border-bottom: none;
		display: inline-block;
	}

	.main-navigation .nav .dropdown-toggle::after {
		display: inline-block;
		border: none;
		font-family: "Font Awesome 5 Free" !important;
		content: "\f105" !important;
		font-weight: 900;
		position: absolute;
		right: 30px;
	}

	.main-navigation .nav .dropdown-toggle[aria-expanded="true"]::after {
		content: "\f107" !important;
	}

	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item {
		border: none;
		border-bottom: 1px solid #eeeeee;
	}

	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item:last-child {
		border-bottom: none;
	}

	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item .nav-item {
		border: none;
	}

	.main-navigation .nav .dropdown-menu li a {
		font-size: 1em;
	}

	.main-navigation .nav .dropdown-item:focus,
	.main-navigation .nav .dropdown-item:hover {
		color: var(--dark-gray) !important;
		background-color: var(--white);
	}

	.site-navigation .nav-item .dropdown-menu .sub-menu .nav-item .dropdown-item {
		border: 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;
	}

	.site-navigation .nav-link {
		color: var(--white);
		font-size: 1.125em;
		font-weight: 600;
		text-decoration: none;
		padding: 15px 0;
		text-transform: none !important;
		white-space: normal;
	}

	.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;
		left: 0 !important;
	}

	.main-navigation .nav .dropdown .dropdown-menu {
		z-index: 0;
		transition: none;
		left: 0 !important;
		background-color: var(--white);
		padding: 0;
		border: none;
	}

	.main-navigation .nav .dropdown .dropdown-menu .sub-menu .dropdown-menu {
		top: 0;
		margin-left: 20px;
		position: relative;
		left: 0 !important;
	}

	.main-navigation .nav .dropdown:nth-child(7) .dropdown-menu .sub-menu .dropdown-menu,
	.main-navigation .nav .dropdown:last-child .dropdown-menu .sub-menu .dropdown-menu,
	.main-navigation .nav .dropdown:nth-child(7) .dropdown-menu .sub-menu .dropdown-menu[style],
	.main-navigation .nav .dropdown:last-child .dropdown-menu .sub-menu .dropdown-menu[style] {
		left: 0 !important;
	}

	.main-navigation .nav .dropdown .dropdown-menu .dropdown:hover .dropdown-menu {
		display: none;
		margin-left: 20px;
	}

	.main-navigation .nav .dropdown .dropdown-menu .sub-menu .dropdown-menu.show {
		display: block;
	}

	.main-navigation .nav .dropdown-menu li a.dropdown-toggle:hover:after,
	.main-navigation .nav .dropdown-menu li a.dropdown-toggle:focus:after {
		color: var(--primary-color);
	}

	.main-navigation .nav .dropdown-menu li.show a.dropdown-toggle:after {
		content: "\f107" !important;
	}

	.site-navigation .audience {
		margin-top: 20px;
		padding: 0 20px 20px;
	}

	.site-navigation .auxnav {
		padding: 0 20px 0;
	}

	.site-navigation .auxnav li:first-child {
		margin-bottom: 20px;
	}

	.main-navigation .nav li:first-child a {
		padding-left: 16px;
	}

	.main-navigation .nav li:last-child a {
		padding-right: 16px;
	}

	.main-navigation .col {
		padding-left: 15px;
	}

	.main-navigation .nav li:hover .dropdown-menu {
		display: none;
	}

	.modal-open .siteHeader {
		background-color: transparent;
	}

	.menuClose {
		color: var(--white);
		text-transform: uppercase;
		text-decoration: none;
		text-align: right;
		font-size: 1.875em;
		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;
	}

	.footer-social li a:before {
		font-size: 1.375em;
		width: 32px;
		height: 32px;
		line-height: 32px;
	}

	.sub-header h1 {
		font-size: 2.5em;
	}

	h1,
	.h1 {
		font-size: 2rem;
	}

	h2,
	.h2 {
		font-size: 1.75rem;
	}

	h3,
	.h3 {
		font-size: 1.5rem;
	}

	h4,
	.h4 {
		font-size: 1.25rem;
	}

	h5,
	.h5 {
		font-size: 1rem;
	}

	h6,
	.h6 {
		font-size: .9rem;
	}

	.lead {
		font-size: 1.125em;
	}

	.font-size-lg {
		font-size: 2em;
	}

	.font-size-xl {
		font-size: 2.25em;
	}

	.space-sm {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.space-md {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.hero.no-image h1 {
		font-size: 2em;
	}

	.hero-slider .carousel-caption {
		left: 0;
		width: 100%;
		top: unset;
		padding: 20px 20px 100px;
	}

	.hero-slider .slide .slider-img {
		height: 305px;
		width: 100%;
		right: 0;
	}

	.hero-slider .slide .slider-img h1 {
		font-size: 35px;
		width: 100%;
		left: 50%;
		padding: 20px;
	}

	.slide-dots .slick-dots {
		bottom: 100px !important;
		top: unset;
	}

	.hero-slider .slide {
		height: 650px;
	}

	.video-feature {
		height: 500px;
	}

	.video-caption-button {
		left: 55px;
		bottom: 65px;
	}

	.section {
		padding: 20px 0;
	}

	.section-with-background {
		padding: 40px 0;
	}

	.restrict {
		padding: 0;
	}

	footer {
		text-align: center;
	}

	.footer-nav {
		text-align: center;
	}

	.footer-social {
		margin: 20px auto 40px;
		display: block;
	}

	footer .list-unstyled {
		margin-bottom: 40px;
	}

	footer .copyright {
		text-align: center;
	}

	footer .news-list h3 {
		text-align: left;
	}

	.card.scale:hover {
		transform: none;
	}

	.calendar-item:hover {
		transform: none;
	}

	.border-on-mobile {
		border-bottom: 10px solid #28638f;
		margin-bottom: 10px;
	}

	.nav-tabs .nav-link {
		display: block;
		width: 100%;
		margin: 0;
		border-bottom: 1px solid var(--white);
	}

	.news .article .card .figure {
		float: none;
		width: 100%;
	}

	.news .article .card .figure img {
		margin: 0 0 10px 0;
	}

	.ou-search-container {
		width: 100% !important;
	}

	.featured-event .featured-date {
		font-size: 1.5em;
		padding: 30px;
		margin-bottom: 10px;
		max-width: none;
	}

	.featured-event h2 {
		font-size: 2em;
		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: 1.125em;
	}

	.accordion .card-header .btn-link .fas {
		font-size: 1.125em;
	}

	.cookiealert {
		left: 0px;
		right: 0px;
	}

	.cookiealert .acceptcookies {
		margin-left: 0;
	}

	.emergency-alert {
		padding: 20px 50px 20px 20px;
		text-align: center;
		height: 95px;
		font-size: 1.125em;
	}

	.emergency-alert.alert-dismissible .close {
		right: -15px;
		top: -10px;
		width: 20px;
		height: 20px;
	}

	#sidebar .navbar-light .row {
		width: auto;
	}

	#sidebar .navbar {
		padding-bottom: 5px;
	}

	aside .navbar-nav .nav-link {
		padding: 5px;
		line-height: 24px;
		margin: 5px 0;
	}

	.video-feature .overlay {
		background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.7)), color-stop(50%, rgba(0, 0, 0, .3)), color-stop(100%, rgba(0, 0, 0, 0.5)));
		background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		background: -o-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		background: -ms-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0.7) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
	}

	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;
	}

	.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;
	}

	.col-sm-6+.col-sm-6 {
		padding-left: 15px;
	}

	.slider-wrapper .testimonial-slider .slick-prev,
	.slider-wrapper .testimonial-slider .slick-next {
		width: 70px;
	}

	.breadcrumb {
		margin-top: 30px;
	}
}

/* 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;
	}

	.video-feature .btn {
		bottom: 80px;
	}
}

/*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) {

	#directory-list td:nth-child(1),
	#directory-list td:nth-child(2) {
		display: inline-block;
	}

	/* 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);
	}
}

/* added for this project */
.main-navigation .top-row {
	background-color: var(--primary-color);
	padding: 10px 0;
}

.main-navigation .nav li a {
	color: var(--primary-color);
	font-weight: bold;
}

.main-navigation .nav li a:hover,
.main-navigation .nav li a:focus {
	color: var(--dark-gray) !important;
}

.quick-links-dropmenu {
	position: absolute;
	transform: translate3d(0px, 42px, 0px);
	top: -8px;
	left: 4px;
	will-change: transform;
}

.quick-links-dropmenu a {
	color: var(--primary-color) !important;
}

.slick-next,
.slick-prev,
.pause-play {
	transition: 0.2s;
	border-radius: 4px;
}

.slick-next:hover,
.slick-prev:hover,
.pause-play:hover {
	background-color: var(--light-gray) !important;
}

.nav-apply-now {
	border: 2px solid var(--primary-color);
	border-radius: 30px;
	padding: 10px 20px;
}

.nav-apply-now:hover {
	background-color: var(--primary-color);
	color: var(--white);
}

.gallery-slider .slick-prev,
.gallery-slider .slick-next {
	top: inherit;
	bottom: -55px;
	width: 55px;
	height: 55px;
	color: #fff;
	background-color: var(--primary-color) !important;
}

.gallery-slider .slick-prev {
	left: inherit;
	right: 70px;
	z-index: 1;
}

.gallery-slider .slick-next {
	top: inherit;
	bottom: -55px;
	width: 55px;
	height: 55px;
	color: #fff;
	background-color: #2F506C;
}

.card { 
	height:100%;
}

.slick-lightbox .slick-prev,
.slick-lightbox .slick-next {
	z-index: 1;
}

.siteHeader .nav-item .dropdown-menu{ 
	min-width: 100%; 
	width: fit-content !important;
}

.card.card-auto-height { 
	height: auto; 
}