:root {
	--primary-color: #CC0000;
	--primary-alt: #B70000;
	--secondary-color: #99281E;

	--white: #ffffff;
	--light-gray: #f4f4f4;
	--dark-gray: #2b2b2b;
	--black: #000000;

	--font-family-body: "Roboto", sans-serif;
	--font-family-heading: "Oswald", sans-serif;
}

body {
	font-family: var(--font-family-body);
	color: var(--dark-gray);
	font-optical-sizing: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-heading);
	font-optical-sizing: auto;
}

.font-family-heading {
	font-family: var(--font-family-heading);
}

.font-family-body {
	font-family: var(--font-family-body);
}

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

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

.bg-med-gray {
	background-color: #63666A !important;
	color: var(--white);
}

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

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

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

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

.bg-primary-gradient {
	background: #6b1501;
	background: linear-gradient(0deg, rgba(107, 21, 1, 1) 0%, rgba(220, 44, 5, 1) 100%);
}

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

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

.pattern-bg {
	background-color: var(--light-gray);
}

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

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

.text-muted {
	color: #42484c !important;
}

/* headings - start */
h1,
.h1 {
	font-size: 3rem;
}

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

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

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

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

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

/* headings - end */

/* opacity - start */
.opacity-30 {
	opacity: 0.3;
}

.opacity-40 {
	opacity: 0.4;
}

.opacity-50 {
	opacity: 0.5;
}

.opacity-60 {
	opacity: 0.6;
}

/* opacity - end */

/* text sizes - start */
.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;
}

/* text sizes - end */

/* buttons - start */
.btn-default,
.content .btn-default {
	background-color: var(--primary-color);
	color: var(--white);
	text-decoration: none;
	text-align: center;
	text-transform: capitalize;
	margin: 10px 0;
	border: none;
	min-width: 140px;
	border-radius: 0;
	line-height: 1.25;
	padding: 20px;
	font-size: 1.375rem;
	display: inline-flex;
	align-items: center;
}

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

.btn-default::after {
	display: inline-block;
	font: var(--fa-font-solid);
	content: '\f061';
	color: var(--white);
	margin-left: .5em;
	position: relative;
	white-space: nowrap;
}

.btn-secondary,
.content .btn-secondary {
	background-color: var(--black);
}

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

.btn-white,
.content .btn-white {
	background-color: #fafafa;
	color: var(--black);
	border: 1px solid rgb(196, 196, 196);
}

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

.btn-white::after {
	color: var(--black);
}

.btn-link.focus,
.btn-link:focus {
	text-decoration: none;
}

.btn-block {
	text-align: center;
	display: block;
}

.btn-align-bottom {
	margin-top: auto !important;
}

.btn:has(+ .btn) {
	margin-right: 10px;
}

/* buttons - end */

/* alert - start */
.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(--black);
	background-color: #fff3cd;
	padding: 30px;
	font-size: 18px;
	font-weight: 400;
}

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

.alert {
	border-radius: 0;
	margin: 0;
	padding: 20px;
	font-size: 18px;
}

.alert span {
	display: inline-block;
	margin-right: 30px;
}

.alert-emergency {
	width: 100%;
	z-index: 100;
	left: 0;
}

.alert-emergency {
	position: static;
}

.alert-emergency .alert-emergency-content {
	position: relative;
	padding-right: 20px;
}

.alert-emergency .btn-close {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0px;
}

/* alert - end */

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

.disclaimer {
	font-size: 16px;
	border-top: 5px solid var(--black);
	margin: 20px auto 50px;
	padding: 10px 0;
}

.page-header {
	background-color: var(--light-gray);
	padding: 30px 0;
}

.page-header h1,
.page-header .h1 {
	color: var(--primary-color);
	line-height: 1;
	font-size: 2.5rem;
}

.page-header.image-header {
	padding: 100px 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: end;
}

.page-header.image-header h1 {
	color: white;
	font-size: 50px;
	text-shadow: -2px 2px 8px rgba(0, 0, 0, 0.7);
}

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

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

[tabindex="-1"]:focus {
	outline: 0 !important;
}

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

b {
	font-weight: bold;
}

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

a.external::after {
	content: "\f08e";
	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;
}

.form-group .btn-default {
	min-width: 1px;
}

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

.content {
	overflow: hidden;
}

.fullwidth-split {
	padding: 0;
	overflow: hidden;
}

.fullwidth-split .container-fluid {
	padding: 0;
}

.fullwidth-split-image {
	max-height: 500px;
}

.fullwidth-split-image img {
	width: 100%;
	min-width: 100%;
	height: 100%;
	object-fit: cover;
}

.fullwidth-split-text {
	display: flex;
	align-self: center;
	padding: 0 20px;
}

.fullwidth-split-text .text-wrapper {
	display: flex;
	flex-direction: column;
	row-gap: 12px;
	padding: 10px 50px;
}

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

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

/* icon links - start */
.link-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.link-icon img {
	padding-bottom: 15px;
	width: 125px;
}

.link-icon span {
	line-height: 1;
	font-size: 3.2rem;
	text-align: center;
	display: block;
	font-weight: bold;
}

.link-icon a:hover {
	text-decoration: none;
}

.link-icon span:first-child {
	display: block;
	margin: 10px auto;
	font-size: 3.7rem;
}

.link-icon span:last-child {
	display: block;
	font-size: 1rem;
	font-weight: 500;
}

/* icon links - end */

/* news events - start */

.news-events-header {
	margin-bottom: 20px;
}

.news-events-footer a {
	margin-top: 12px;
	text-decoration: none;
	color: var(--dark-gray);
	float: right;
}

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

.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;
	border-radius: 4px;
}

.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 {
	margin-bottom: 10px;
}

.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(--black);
}

.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(--black);
}

/* news events - end */

.news-list {
	margin-bottom: 50px;
}

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

.news-list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.restrict {
	padding: 0 20%;
}

.card-img-side {
	height: 100%;
	overflow: hidden;
}

.card-img-side img {
	height: 100%;
	object-fit: cover;
}

.card {
	background-color: var(--white);
	height: calc(100% - 40px);
	margin-bottom: 40px;
	border-radius: 0;
}

.card .card-body {
	display: flex;
	flex-direction: column;
	row-gap: 8px;
	padding: 24px;
	margin-bottom: 5px;
}

.card .card-body .btn {
	width: fit-content;
	margin-top: auto;
}

.card .card-body .card-title {
	font-size: 24px;
	font-weight: 700;
}

.card .card-body .card-text {
	font-size: 16px;
	font-weight: 300;
}

.card.card-masonry {
	height: auto;
	margin-bottom: 20px;
}

.card.card-contact {
	height: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

.row div[class^="col"]>.card {
	width: 100%;
}

.card .card-img,
.card .card-img-top,
.card .card-img-top-small {
	background-color: var(--light-gray);
	color: var(--white);
	background-size: cover;
	object-fit: cover;
	border-radius: 0;
}

.card:not(.card-img-side) .card-img,
.card .card-img-top {
	height: 350px;
	max-height: 350px;
	border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0;
}

.card .card-img-top-small {
	width: 100%;
	height: 250px;
	max-height: 250px;
	border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0;
}

.card.card-img-side img {
	border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
}

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

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

.calendar-item {
	padding: 20px;
	background-color: var(--white);
	margin-bottom: 20px;
	min-height: 155px;
}

.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 - start */

.breadcrumb {
	margin: 20px 0 40px 0;
	font-weight: normal;
	font-size: 14px;
}

.breadcrumb a {
	margin-left: 4px;
	text-decoration: none;
}

/* breadcrumb - end */

/* interior navigation - start */
.accordion-header button,
.accordion-button:not(.collapsed),
.accordion-header button:after {
	background-color: var(--primary-color);
	color: var(--white);
}

.accordion-header button:after {
	background: none;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f107";
}

.accordion.nav-accordion .accordion-item {
	border: none;
}

.accordion.nav-accordion .accordion-button {
	border-radius: 0 !important;
	background-color: var(--black);
	font-size: 2rem;
	position: relative;
}

.accordion.nav-accordion .accordion-button.collapsed::after {
	right: 25px;
	top: 17px;
	content: "\f107";
	transition: none;
}

.accordion.nav-accordion .accordion-button::after {
	position: absolute;
	right: 25px;
	top: 15px;
	content: "\f106";
	transform: none;
}

.accordion.nav-accordion .accordion-item .accordion-collapse {
	border: 1px solid #ccc;
	border-top: none;
	border-radius: none;
}

.accordion.nav-accordion .accordion-item.accordion-sub-item .accordion-collapse {
	border: none;
	margin-top: 10px;
	padding-left: 12px;
}

.accordion.nav-accordion .accordion-item.accordion-sub-item .accordion-button {
	box-shadow: none;
}

.accordion.nav-accordion .accordion-body {
	display: flex;
}

.accordion.nav-accordion .accordion-body a {
	color: var(--black);
	text-decoration: none;
	margin-left: 15px;
	font-weight: 400;
	padding: 10px 0;
}

.accordion.nav-accordion .accordion-body a:hover {
	text-decoration: underline;
}

.accordion.nav-accordion .accordion-body .sub-column {
	border-right: 1px solid #ccc;
	padding-right: 16px;
	margin-right: 15px;
}

.accordion.nav-accordion .accordion-body .sub-column:last-of-type {
	border-right: none;
	padding-right: 0;
}

.accordion:has(.accordion-sub-item) {
	--bs-accordion-btn-active-icon: none;
	--bs-accordion-btn-icon: none
}

.accordion.nav-accordion .accordion-sub-item {
	padding: 10px 0;
}

.accordion.nav-accordion .accordion-sub-item .accordion-button {
	background: none;
	color: var(--black);
	font-size: 16px;
	padding: 0;
	font-weight: 400;
	position: relative;
	margin-left: 15px;
}

.accordion.nav-accordion .accordion-sub-item .accordion-button.collapsed::after {
	color: var(--black);
	top: 0;
	left: -20px;
	right: unset;
	content: "\f107";
}

.accordion.nav-accordion .accordion-sub-item .accordion-button::after {
	color: var(--black);
	top: 0;
	left: -20px;
	right: unset;
	content: "\f106";
}

.accordion.nav-accordion .accordion-sub-item .accordion-body {
	border-left: 1px solid var(--primary-color);
}

.accordion.nav-accordion .accordion-sub-item .accordion-body {
	flex-direction: column;
	padding: 0;
	gap: 0;
}

.accordion.nav-accordion .accordion-sub-item .accordion-body a {
	margin-left: 0;
	padding: 10px;
	font-weight: 100;
}


/* interior navigation - end */

/* Accordion - start */
.accordion-interior .accordion-button:focus-visible,
.nav-link:focus-visible {
	outline: 5px auto rgba(0, 150, 255, 1);
}

.accordion-interior .accordion-item {

	border: none;
}

.accordion-interior .accordion-header {
	border-bottom: 1px solid var(--black);
}

.accordion-interior .accordion-header button,
.accordion-interior .accordion-button:not(.collapsed) {
	background-color: transparent;
	color: var(--black);
}

.accordion-interior .accordion-header button::after {
	background-color: transparent;
	color: var(--primary-alt);
	font-size: 1.75rem;
	position: absolute;
	top: 12px;
	right: 25px;
}

.accordion-interior .accordion-button::after {
	background-image: none;
	content: "\f067";
	transform: none;
}

.accordion-interior .accordion-button:not(.collapsed)::after {
	background-image: none;
	content: "\f068";
}

.accordion-interior .accordion-button {
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 500;
	position: relative;
}

.accordion-interior .accordion-button:focus {
	box-shadow: none !important;
}

.accordion-interior .accordion-item:hover .accordion-button {
	color: var(--primary-alt);
}

.accordion-interior .accordion-body {
	padding-bottom: 30px;
}

/* Accordion - end */

/* Accordion Dropdown - start */
.accordion-single .accordion-button:not(.collapsed)::after {
	background-image: none;
}

.accordion-single .accordion-body {
	display: flex;
	flex-wrap: wrap;
}

.accordion-single .accordion-header button,
.accordion-single .accordion-button:not(.collapsed),
.accordion-single .accordion-body {
	background-color: var(--light-gray);
	color: var(--black);
}

.accordion-single .accordion-header button,
.accordion-single .accordion-button:not(.collapsed) {
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 500;
	font-family: var(--font-family-body);
}

.accordion-single .accordion-header button::after,
.accordion-single .accordion-header .accordion-button:not(.collapsed)::after {
	color: var(--black);
}

.accordion-single .accordion-button:not(.collapsed),
.accordion-single .accordion-button:hover {
	background-color: #e6e6e6;
}

.accordion-single .accordion-body {
	padding: 5px 0;
}

.accordion-single .accordion-body a {
	color: var(--black);
	border-bottom: 1px solid #e5e5e5;
	font-weight: 300;
	font-size: 18px;
	padding: 10px 20px;
	text-decoration: none;
}

.accordion-single .accordion-body a:last-of-type {
	border-bottom: none;
}

.accordion-single .accordion-body a:hover {
	background-color: #fefefe;
}

.accordion-single .sub-column {
	padding-right: 16px;
}

.accordion-single .sub-column:last-of-type {
	padding-right: 0;
}

/* Accordion Dropdown - end */

.figure {
	display: block;
}

.figure-caption {
	color: #42484c;
}

.figure img {
	margin: 0px auto 20px auto;
}

/* paragraph block - start */
.lead-paragraph {
	font-size: 20px;
	display: block;
}

/* testimonial - start */
blockquote,
.blockquote-paragraph {
	border-left: 1px solid var(--black);
	padding-left: 10px;
	margin: 0 40px;
	margin-left: 75px;
}

.blockquote-paragraph {
	padding: 20px;
	position: relative;
}

blockquote.blockquote-paragraph::before {
	content: "";
	background-image: url('/_resources/images/icons/quotes.png');
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	height: 100%;
	width: 75px;
	left: -75px;
	top: -10px;
}

blockquote .blockquote-text {
	font-size: 24px;
	font-weight: 100;
	font-style: italic;
	margin-bottom: 30px;
}

.blockquote-footer {
	margin-top: 10px;
	color: var(--dark-gray);
	font-weight: 700;
	font-size: 20px;
	font-family: var(--font-family-heading);
}

.blockquote-footer cite {
	font-size: 18px;
	font-weight: 300;
	font-family: var(--font-family-body);
	font-style: normal;
}

.blockquote-footer::before {
	display: none;
}

/* testimonial - end */

/* paragraph block - end */

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

/*Tabs - start*/
.tabs .nav-tabs .nav-item {
	margin-bottom: -1px;
	margin-top: 0;
	background-color: transparent;
	color: var(--secondary-color);
	cursor: pointer;
}

.tabs .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
	font-size: 20px;
	background-color: var(--primary-color);
	color: var(--white);
	position: relative;
}


.tabs .nav-tabs .nav-link {
	border-radius: 0;
	font-size: 20px;
	color: var(--primary-color);
	padding: 20px 30px;
	text-decoration: none;
	font-weight: bold;
}

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

.tabs .nav-tabs {
	border: none;
	margin-top: 10px;
}

.tabs .nav-tabs .nav-link:hover {
	background-color: var(--primary-color);
	color: var(--white);
}

.tabs .tab-content {
	padding: 25px;
	background-color: var(--white);
	border: solid 1px #ccc;
	border-top-width: 2px;
}

.tabs .tab-content p {
	font-size: 18px;
	line-height: 1.85rem;
}

/*Tabs - end*/

/*Vertical Tabs - start*/
.nav-pills .nav-link.active {
	background-color: var(--primary-color);
}

.nav-pills .nav-link {
	text-decoration: none;
	border-bottom: 1px solid var(--light-gray);
	cursor: pointer;
	border-radius: 0;
	color: var(--primary-color);
	font-weight: 600;
	text-align: left;
}

.nav-pills .nav-link:not(.active):hover {
	color: var(--primary-color);
	background-color: var(--light-gray);
}

.nav-pills .nav-link.active:hover {
	color: var(--white);
}

.nav-pills {
	border: 1px solid var(--light-gray);
}

.tab-content {
	padding: 0px 20px;
	background-color: var(--white);
}

/*Vertical Tabs - end*/

.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-container {
	width: 100%;
	padding: 50px 0 !important;
}

#ou-search-results .ou-search-input {
	border: 1px solid var(--gray) !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: var(--dark-gray) !important;
	border-color: var(--light-gray) !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: var(--light-gray) !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: var(--light-gray) !important;
	border-color: var(--light-gray) !important;
	color: var(--primary-color);
}

#ou-search-results .ou-bestbets,
#ou-search-results .ou-search-parametric-results {
	border: none !important;
	background: var(--light-gray) !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;
	padding-top: 16px;
}

#directory-list thead tr td,
#directory-list thead th {
	border: none;
}

.dataTables_wrapper .dataTables_filter input {
	width: 70% !important;
}

table.dataTable thead>tr>th.sorting:after,
table.dataTable thead>tr>th.sorting_asc:after,
table.dataTable thead>tr>th.sorting:before,
table.dataTable thead>tr>th.sorting_asc:before {
	font-size: 30px;
	padding-bottom: 4px;
}

.dataTables_length,
.directory-list_filter {
	padding-bottom: 16px;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
	margin-top: 30px !important;
	justify-content: center;
}

.faculty-headshot {
	text-align: center;
	margin-bottom: 40px;
}

.faculty-headshot img {
	width: 100%;
	max-height: 350px;
	object-fit: cover;
}

.faculty-box {
	margin-bottom: 30px;
}

.faculty-box-info {
	margin-bottom: 10px;
}

.faculty-box-info .faculty-box-title {
	font-weight: bold;
	font-size: 18px;
	margin-right: 6px;
}

/* Showcase elements - start */
.showcase-div {
	margin: 0 auto 150px auto;
}

.showcase-banner {
	padding: 10px;
	text-align: center;
	background-color: #f4f4f4;
	color: #000;
	border-bottom: 3px solid #f6ba6f;
	border-radius: 4px;
	margin-bottom: 50px;
}

.showcase-grid {
	/* background-color: #f4f4f4;
	height: 400px; */
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #f4f4f4;
	width: 100%;
}

.colors-flex {
	display: flex !important;
	flex-flow: row wrap;
	gap: 10px;
}

.color-box {
	padding: 10px;
	width: 150px;
	height: 150px;
	margin-bottom: 10px;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	text-align: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Showcase elements - end */

/* 404 - start */
.div-404 {
	text-align: center;
	margin: 50px auto 100px auto;
}

.div-404 img {
	max-width: 200px;
	margin-bottom: 50px;
}

.div-404 p {
	font-size: 22px;
}

/* 404 - end */

/* testimonial - start */
.testimonial-slide {
	padding: 60px 30px;
	background-color: var(--light-gray);
}

.testimonial-info {
	display: flex;
	height: 100%;
	align-items: center;
	text-align: left;
	padding: 20px;
}

.testimonial-img {
	border-radius: 40px;
	width: 200px;
	height: 200px;
	object-fit: cover;
	display: block;
	margin: 0 auto;
}

/* testimonial - end */

/* index hero - start */
.carousel-control-next,
.carousel-control-prev {
	width: 8%;
	opacity: 0.8;
	overflow: hidden;
}

.carousel-control-next span,
.carousel-control-prev span {
	padding: 20px;
}

.index-carousel .carousel-item {
	max-height: 700px;
}

.index-carousel .carousel-item img {
	width: 100%;
	max-height: 600px;
	object-fit: cover;
}

.L6-slider-content {
	width: 100%;
	height: 100%;
	background-color: var(--black);
	color: var(--white);
	display: flex;
	align-items: center;
	padding: 30px;
}

.index-video .play-pause,
.index-video .play {
	position: absolute;
	z-index: 1;
	color: var(--white);
	background-color: var(--primary-color);
	width: 40px;
	height: 40px;
	top: 500px;
	right: 30px;
	border: 1px solid var(--white);
}

.index-video .play-pause:hover,
.index-video .play-pause:focus {
	background-color: var(--black);
	color: var(--primary-color);
}

.index-video {
	position: relative;
}

.index-video,
.index-video video,
.index-video img {
	width: 100%;
	height: 600px;
	object-fit: cover;
	overflow: hidden;
}

.index-video .index-video-bg {
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

.index-video .video-caption {
	position: absolute;
	text-align: left;
	top: 380px;
	left: 30px;
	line-height: 30px;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 30px;
	color: var(--white);
}

.index-carousel .video-caption {
	position: absolute;
	text-align: left;
	top: 56%;
	left: 100px;
	line-height: 30px;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 30px;
	color: var(--white);
}

/* index hero - start */

/* section-with-background - start */
.section-with-background {
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	background-color: var(--black);
}

.section-with-background .title {
	color: var(--white);
	margin: 50px auto;
	text-align: center;
}

.section-with-background .card h2 {
	color: var(--primary-color);
	font-size: 3rem;
	margin-top: 50px;
	font-weight: bolder;
}

.section-with-background .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);
}

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

/* section-with-background - end */

/* cards-grid - start */
.cards-grid {
	text-align: center;
}

.cards-grid img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	margin: 10px auto;
	border: 1px solid var(--primary-color);
}

.cards-grid h3 {
	font-size: 20px;
}

.cards-grid a {
	text-decoration: none;
}

.cards-grid a:hover {
	text-decoration: underline !important;
}

/* cards-grid - end */

/* subscribe - start */
.subscribe-section {
	padding: 24px 0;
	background-size: 80px;
	background-color: var(--black);
}

.subscribe-section .btn {
	padding: 8px;
	font-size: 14px;
}

/* subscribe - end */

/* events box - start */
.events-box {
	background: linear-gradient(80deg,
		var(--light-gray) 84%,
		var(--black) 16%);
	padding: 50px 0;
}

.events-box a span {
	display: block;
	margin: 6px 0;
}

.events-box a {
	color: var(--black);
	text-decoration: none;
	font-size: 20px;
}

.events-box .events-col {
	border-right: 4px solid var(--black);
	padding: 4px 30px;
}

.events-box .events-col:last-of-type {
	border-right: none;
}

/* events box - end */

/* custom news box - start */
.custom-news-box a {
	text-decoration: none;
	font-weight: semibold;
}

.custom-news-title {
	display: inline-block;
	margin-bottom: 40px;
	font-size: 30px;
	text-transform: uppercase;
}

.custom-news-cta {
	margin-bottom: 40px;
	text-decoration: none !important;
	font-size: 20px;
	text-transform: uppercase;
	float: right;
	line-height: 1.8;
}

.custom-news-content {
	padding: 30px 0;
	border-bottom: 1px solid lightgray;
}

.custom-news-content:first-of-type {
	padding: 0 0 30px 0;
}

.custom-news-content:last-of-type {
	border-bottom: none;
}

.custom-news-content h4 {
	margin-bottom: 10px;
}

.custom-news-content p {
	color: var(--black);
}

/* custom news box - end */

.taxonomy {
	display: inline-block;
	background-color: rgb(232, 232, 232) !important;
	color: var(--dark-gray) !important;
	padding: 5px 10px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
	margin-top: 20px !important;
	text-decoration: none !important;
	transition: 0.2s;
}

.taxonomy:hover {
	background-color: rgb(224, 224, 224) !important;
}

/* gallery slider */
.gallery-slider {
	max-height: 500px;
}

.gallery-slider img {
	display: block;
	width: 100%;
	border-radius: 3px;
	max-height: 500px;
	object-fit: cover;
}

/* shadow card - start */
.shadow-card {
	display: block;
	background-color: var(--white);
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
	margin-bottom: 26px;
	transition: 0.1s;
	font-weight: 700 !important;
	text-decoration: none !important;
}

.shadow-card:hover {
	text-decoration: underline !important;
}

.shadow-card:hover {
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.45);
}

.shadow-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.shadow-card .shadow-card-title {
	display: block;
	color: var(--primary-color);
	font-size: 24px;
	padding: 20px;
	height: 110px;
	display: flex;
	align-items: end;
	line-height: 1.2;
	text-decoration: none;
}

/* programs search banner */
/* program banner */
.buttons-wrap {
	padding-bottom: 0.5rem;
	display: flex;
	justify-content: center;
}

.buttons-wrap .btn.btn-default {
	margin-right: 0.5rem;
}

.program-search input[type="text"] {
	padding: 8px 12px;
	font-size: 16px;
	border: none;
	box-shadow: none;
	border-radius: 3px 0 0 3px;
	margin: 0 auto;
	width: 70%;
}

.program-search form button {
	padding: 8px 12px;
	font-size: 16px;
	border: none;
	cursor: pointer;
	border-radius: 0 3px 3px 0;
	margin-left: -6px;
	background-color: white;
	position: relative;
	height: 40px;
	transform: translateY(7px);
}

/* programs search+filters */
#programsOfStudy {
	padding-bottom: 48px;
}

.program-search {
	position: relative;
}

.program-search input#programSearch {
	background-color: var(--light-gray);
	border: none;
	width: 100%;
	padding: 8px 40px 8px 12px;
	position: relative;
}

.program-search .fa-search {
	position: absolute;
	right: 10px;
	left: auto;
	top: 12px;
}

.programs input[type="checkbox"] {
	border: 1px solid var(--primary-color);
}

@media only screen and (max-width: 991px) {
	.sidenav-checkbox .sidenav-collapse {
		border: 1px solid var(--dark-gray);
	}
}

.sidenav-checkbox .side-nav-heading {
	padding-left: 0 !important;
	text-transform: uppercase;
	font-weight: 600;
}

.sidenav-checkbox .checkbox-category {
	padding: 18px 0;
	border-top: 2px solid var(--primary-color);
}

.sidenav-checkbox .checkbox-category-title {
	color: var(--primary-color);
	font-size: 20px;
	text-transform: uppercase;
}

.input-group-append button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

/* shadow card - end */
div.spacer {
	margin: 3em 0;
}

.banner-accent {
	width: 70px;
	height: 8px;
	background-color: var(--primary-color);
	margin: 15px 0 30px 0;
}

/* hero banner - start */
.hero-banner img {
	width: 100%;
	height: 600px;
	object-fit: cover;
}

@media only screen and (max-width: 767px) {
	.hero-banner img {
		height: 400px;
	}
}


/* hero banner - end */

/* homepage cards - start */
.college-cards {
	padding-top: 30px;
	border-bottom: 2px solid var(--primary-color);
}

.card.college-card {
	background-color: #fff;
	border-radius: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	display: flex;
	padding: 1em;
	background-color: var(--white);
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.card.college-card img {
	max-width: 3em;
}

.card.college-card a.title,
.card.college-card div.title{
	font-size: 1.25em;
	font-weight: 400;
	display: block;
	text-align: center;
	color: var(--black);
	text-transform: uppercase;
}

.college-cards .college-card .fa-solid::before {
	color: var(--primary-color);
}

/* homepage cards - end */

/* card links - start */
.card a span {
	margin-left: 5px;
	transition: all 200ms ease-out;
}

.card a:hover span {
	margin-left: 15px;
}

/* card links - end */

/* social connect - start */
.social-connect ul {
	display: flex;
	list-style: none;
}

.social-connect .social-icon {
	color: var(--white);
	background-color: var(--black);
	margin-right: 5px;
	width: 40px;
	height: 40px;
	padding: 5px;
	display: flex;
	justify-content: center;
	text-decoration: none;
}

.social-connect .social-icon:hover {
	background-color: var(--primary-alt);
}

.social-connect .social-icon .fa-brands {
	font-size: 30px;
}

/* social connect - end */

/* columns - start */
.columns a.btn {
	align-self: start;
}

/* columns - end */

/* highlight box - start */
.highlight-box {
	margin: 50px auto;
	padding: 30px;
	border: 1px solid #ccc;
}

.highlight-box h3,
.highlight-box .h3{
	color: var(--primary-alt);
	margin-bottom: 30px;
	font-weight: 700;
}

.highlight-box p {
	line-height: 1.85rem;
	font-size: 18px;
}

/* highlight box - end */

/* media box - start */
.media-box .media-link {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 18px;
	color: var(--black);
}

.media-box .title-decorative {
	text-transform: uppercase;
	font-size: 18px;
}

/* media box - end */

/* inset cards - start */
.inset-cards .text-overlay {
	background-color: var(--dark-gray);
	color: var(--white);
	border: 5px solid var(--white);
	width: calc(100% - 4em);
	padding: 20px 35px;
	margin-top: -1em;
	box-shadow: #00000040 0px 5px 10px;
	text-align: center;
	font-weight: bold;
	line-height: 1.85rem;
}

.inset-cards .text-overlay p {
	margin-bottom: 0;
}

.inset-cards img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}

/* inset cards - end */

/* featured news - start */
/* css from customer - start */
.news-feed-container {
	margin: 20px 0;
}

.news-feed {
	width: 100%;
	padding: 15px;
}

.news-feed h2 {
	font-size: 2.75em;
	margin-bottom: 40px;
	font-weight: 700;
	white-space: nowrap;
	color: #CB2128;
}

.thumbnail.article {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
	overflow: hidden;
}

.figure.thumb-stories {
	margin: 0 15px 10px 0;
	float: left;
}

.figure.thumb-stories img {
	max-width: 150px;
	max-height: 150px;
	margin-right: 10px;
}

.article-content {
	overflow: hidden;
}

.storylink h3 {
	margin: 0 0 5px;
	font-size: 1.1em;
}

.storylink p {
	margin: 0 0 5px;
	font-size: 0.9em;
}

.storylink a {
	color: #CB2128;
	text-decoration: underline;
	font-weight: bold;
}

.storylink a:hover {
	text-decoration: underline;
}

.article-meta {
	font-size: 0.8em;
	color: #666;
	margin-top: 5px;
}

.clearboth {
	clear: both;
}

.error-message {
	color: red;
	font-style: italic;
}

.image-error {
	color: orange;
	font-style: italic;
	font-size: 0.8em;
}

/* css from customer - end */
/* custom css */
.news-feed {
	position: relative;
}

.bordered-headline {
	background-color: #ffffff;
	width: fit-content;
	margin: 0 auto;
	margin-bottom: 40px;
	padding: 0 10px;
}

.bordered-headline::before {
	content: "";
	position: absolute;
	top: 45px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #0a0203;
	z-index: -1;
}

.thumbnail.article:last-of-type,
.thumbnail.article:last-of-type img {
	border: none;
	margin-bottom: 0;
}

/* featured news - end */

@media (min-width: 768px) {
	.icon-links .row > div:nth-child(5n + 1) {
		margin-left: 8.333333%;
	}
}

.links-box h3, .links-box .h3 {
	color: var(--primary-alt);
	font-weight: 700;
}

.links-box a{
	color: var(--primary-alt);
}

/* Ticket 274577 */
.accordion-interior .accordion-button {
   padding-left: 0;
}
/* End Ticket 274577 */