@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://use.typekit.net/bla0jgj.css");

/* new test */

@font-face {
  font-family: gotham-black;
  src: url(../fonts/gotham/GOTHAM-BLACK.TTF);
}

@font-face {
  font-family: zooja-pro;
  src: url(https://use.typekit.net/bla0jgj.css);
  font-weight: 400;
  font-style: normal;
}

:root {
  --primary-color: #98002e;
  --secondary-color: #910038;
  --hilite-color: #eaeed3;
  --white: #ffffff;
  --light-gray: #f4f4f4;
  --dark-gray: #3d3d3d;
  --black: #3d3d3d;
  --blue: #002d56;
}

body {
  font-family: "Noto Sans", sans-serif !important;
  color: var(--dark-gray);
}

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

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

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

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

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

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

.bg-red-over {
  background-color: rgba(152,0,46,0.90) !important;
  color: var(--white);    
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-blue-over {
  background-color: rgba(0,45,86,0.90) !important;
  color: var(--white);
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

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

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

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

#main-content h1,
.h1 {
  color: var(--primary-color);
  font-weight: bolder;
}

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 {
--bs-btn-border-radius: 0px !important; /* ev custom */
}

.btn-default,
.content .btn-default {
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  text-transform: capitalize;
  padding: 12px 15px;
  margin: 10px 0;
  border: none;
  min-width: 140px;
  border-radius: 0 !important;
}

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

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

.btn-white:hover,
.btn-white:focus {
  color: var(--white);
  background-color: var(--primary-color);
  outline: 1px solid var(--white);
}

.btn-highlight,
.content .btn-highlight {
  background-color: var(--hilite-color);
  color: var(--primary-color);
}

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

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

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

/* buttons - end */

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

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

.alert-dismissible .btn-close {
  top: 6px;
}

.alert-emergency,
.alert-cookie {
  width: 100%;
  left: 0;
}

.alert-emergency {
  top: 0;
}

.alert-cookie {
  position: fixed;
  bottom: 0;
}

/* alert - end */

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

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

.page-header {
  background-color: #d0d0d0;
  padding: 30px 0;
}

.page-header h1 {
  color: var(--primary-color);
  line-height: 1.1;
  font-size: 2rem;
  padding-top: 3px;
}

.page-header-image {
  position: relative;
  display: flex;
  align-items: center;
  background-image: url(../images/placeholders/slider-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
}

.page-header-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	/* removed   background-color: rgba(0, 0, 0, 0.4); (ev custom)*/
}

.page-header-image h1 {
  position: relative;
  color: var(--white);
  line-height: 1.1;
  font-size: 4rem;
}

.card > .bg-image {
  border-radius: 0;
}

.card > .bg-image {
  border-radius: 0;
}

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

img.float-left {
  margin-right: 20px;
}

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

.content a,
a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
  background-color: transparent;
}

a:hover {
  color: var(--black);
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

a[href$=".pdf"]::after {
  content: "\f1c1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  position: relative;
  right: -5px;
  padding-right: 10px;
  top: 0;
  font-style: normal;
}

a[href$=".xlsx"]::after {
  content: "\f1c3";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  position: relative;
  right: -5px;
  padding-right: 10px;
  top: 0;
  font-style: normal;
}

a[href$=".docx"]::after {
  content: "\f1c2";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  position: relative;
  right: -5px;
  padding-right: 10px;
  top: 0;
  font-style: normal;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.interior .content ul,
.interior .content ol {
  font-size: 18px;
  font-weight: 300;
}

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

.interior .content ul li a:hover,
.interior .content ol li a:hover {
  border-bottom: none;
}

.interior .content .footer-social li a {
  border-bottom: none;
}

.title-decorative {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
}

.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-text {
  display: flex;
  align-self: center;
  padding: 0 20px;
}

.fullwidth-split-text .text-wrapper {
  padding: 0 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;
}

/* fast facts - start */
.fast-fact-icon {
  margin-bottom: 30px;
}

.fast-fact-icon span {
  line-height: 1;
  font-size: 3.2rem;
  color: var(--white);
  text-align: center;
  display: block;
  font-weight: bold;
}

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

.fast-fact-icon span:last-child {
  display: block;
  font-size: 1.3rem;
  margin-top: 10px;
  font-weight: 400;
}

/* fast facts - end */

/* news events - start */

.news-events-header {
  width: fit-content;
  margin-bottom: 50px;
  border-bottom: 2px solid var(--light-gray);
  font-weight: 800;
}

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

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

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

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

.event-item .event-date .event-month {
  line-height: 1.1;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  color: var(--white);
}

.event-item .event-date .event-day {
  line-height: 1.1;
  display: block;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: var(--white);
}

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

.event-item .event-item-time-location .location {
  margin-left: 10px;
}

.event-item .event-item-time-location .location:before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3c5";
  font-size: 14px;
  margin-right: 5px;
  color: var(--secondary-color);
}

/* news events - end */

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

.news-list img {
  margin-bottom: 15px;
}

.restrict {
  padding: 0 20%;
}

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

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

.card {
  margin-bottom: 40px;
  border-radius: 0px !important; /* ev custom */
}

.card .card-body .card-body-text {
  color: #737373;
  margin: 20px 0 30px 0;
}

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

/* Foundation */
#custom-foundation {
	margin-top: 50px;	
}
#custom-foundation .card .card-img,
#custom-foundation .card .card-img-top {
	height: 100%;
	max-height: 350px;
	border-radius: 0px !important;
}

/* Foundation end */

.card .card-img,
.card .card-img-top {
  height: 200px; /* updated to 200 from 350 */
  max-height: 350px;
}
.card .card-img-rtc,
.card .card-img-top-rtc {
  height: 250px;
  max-height: 350px;
}

/* Virtual Welcome Center Only */
#vwc .card .card-img-rtc,
#vwc .card .card-img-top-rtc {
  height: 100%;	
  max-height: 350px;
}

#vwc .fullwidth-split img {
	width: 100%;
    height: 500px;
    max-height: 600px;
    background-size: cover;
    object-fit: cover;
}

/* VWC end */ 

.card .card-img-top-small {
  width: 100%;
  height: 250px;
  max-height: 250px;
}

.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;
}
/* Document cards only */
.document-card-title {background: #e0e0e0; color: black; padding: 10px 20px;}
.document-card-copy {padding: 20px; font-size: 18px !important;}
.document-highlight {background: var(--primary-color); color: white; padding: 10px 20px;}
/* end */

.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; /* ev custom */
  font-weight: normal;
  font-size: 14px;
}

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

/* breadcrumb - emd */

/*Side Nav*/
.side-nav-heading {
  font-size: 20px !important;
  color: var(--white) !important;
  font-weight: 400;
  padding: 0.5rem;
  margin: 0 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.side-nav-heading a {
  color: var(--white) !important;
  text-decoration: none;
}

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

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

#sidebar .navbar {
  padding: 0;
  background-color: transparent;
  display: block;
}

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

#sidebar .nav-link {
  color: var(--white);
  font-size: 16px;
  text-decoration: none;
  padding: 12px;
  line-height: 19px;
  border-bottom: 1px solid #e9ecef;
  border-left: 0px;
  border-right: 0px;
  font-weight: 400;
}

#sidebar .nav-item:last-child .nav-link {
  border-bottom: none;
}

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

#sidebar .navbar {
  width: 100%;
}

#sidebar .navbar .navbar-toggler {
  color: var(--white);
  font-size: 20px;
  border: none;
  position: absolute;
  right: 0;
  top: 5px;
}

#sidebar .navbar .navbar-toggler[aria-expanded="false"] .fa-chevron-up {
  display: none;
}

#sidebar .navbar .navbar-toggler[aria-expanded="true"] .fa-chevron-down {
  display: none;
}

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

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

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

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

#sidebar .navbar .nav-item .nav-item .nav-link {
  font-size: 16px;
  padding: 10px 15px 10px 30px;
  border: none;
  color: var(--white);
}

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

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

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

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

#sidebar .navbar .nav-item .nav-link[data-toggle]::after,
#sidebar .navbar .nav-item .nav-link::after {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-size: 16px;
  color: #495057;
  position: absolute;
  right: 24px;
  display: none;
}

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

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

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

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

#sidebar .navbar .nav-item ul {
  margin-left: 0 !important;
}

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

#sidebar .secondary-nav .nav-link {
  border: none;
  color: var(--primary-color);
}

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

blockquote,
.blockquote-paragraph {
  border-left: 4px solid var(--secondary-color);
  padding-left: 10px;
  margin: 0 40px;
}

.blockquote-footer {
  margin-top: 10px;
  color: var(--dark-gray);
}

/* 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;
}
/* Accordion - start */
.accordion .card {
  border: none;
  margin-bottom: 16px;
}

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

.accordion .card-header .btn {
  font-size: 16px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 16px;
  line-height: 1.5;
  display: block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  box-shadow: none !important;
}

.accordion .card-header .btn:focus {
  text-decoration: underline;
}

.accordion .card-header .btn-link .fas {
  font-size: 24px;
  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 {
  background-color: var(--white);
  padding: 10px 20px;
}

/* Accordion - end */

/* Custom Accordion - start */
.accordion {
--bs-accordion-border-radius: 0px !important;
}

.custom-accordion .card {
  border: none;
  margin-bottom: 16px;
}

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

.custom-accordion .card-header .btn {
  font-size: 22px; 
  font-weight: bold;
  background-color: transparent;
  color: var(--black);
  border: 4px solid var(--black);
  border-radius: 0px;
  padding: 16px;
  line-height: 1.5;
  display: block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  box-shadow: none !important;
}

.custom-accordion .card-header .btn:active, .custom-accordion .card-header .btn:focus, .custom-accordion .card-header .btn:hover {
  text-decoration: none;
  background-color: var(--blue);
  color: var(--white);
  border: 4px solid var(--blue);

}

.custom-accordion .card-header .btn-link .fas {
  font-size: 24px;
  padding: 0 5px;
  position: absolute;
  top: 22px;
  right: 20px;
  color: var(--black);
}
.custom-accordion .card-header .btn-link .fas:active, .custom-accordion .card-header .btn-link .fas:focus{
	color: var(--white);}

.custom-accordion .card-header .btn-link[aria-expanded="false"] .fa-angle-up{
  display: none;
}

.custom-accordion .card-header .btn-link[aria-expanded="true"] .fa-angle-down{
  display: none;
  color: var(--white);
}

.custom-accordion .card-body, {
  background-color: var(--white);
  padding: 10px 20px;
}

/* Custom Accordion - end */

/*Tabs - start*/
.tabs .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  border-bottom: 4px solid var(--primary-color);
  border-left: none;
  border-right: none;
  font-size: 20px;
  background-color: transparent;
  position: relative;
}

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

.tabs .nav-tabs .nav-item {
  margin-bottom: -4px;
  margin-top: 0;
  background-color: transparent;
  border-bottom: 4px solid #ececec;
  cursor: pointer;
}

.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 .tab-content {
  padding: 20px 10px;
  background-color: var(--white);
}

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

.nav-pills .nav-link:hover {
  color: var(--dark-gray) !important;
  text-decoration: underline !important;
}

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

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

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

/*Vertical Tabs - end*/

/*Slider*/
.gallery-slider {
  margin: 20px auto;
}

.gallery-slider.slick-dotted.slick-slider {
  margin-bottom: 60px;
}

.gallery-slider .slide {
  position: relative;
}

.gallery-slider .slide img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
}

.gallery-slider .slick-next {
  right: 35px;
}

.gallery-slider .slick-next:before {
  content: "\f105";
}

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

.gallery-slider .slick-prev:before {
  content: "\f104";
}

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

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

.gallery-slider .slick-next {
  top: inherit;
  bottom: -55px;
  width: 55px;
  height: 55px;
  color: var(--white);
  background-color: var(--primary-color);
}

.gallery-slider .slick-prev:hover,
.gallery-slider .slick-prev:focus,
.gallery-slider .slick-next:hover,
.gallery-slider .slick-next:focus {
  background: var(--black);
}

.gallery-slider .slick-dots {
  text-align: left;
  width: 80%;
  bottom: -35px;
}

.gallery-slider .slick-dots li button:before {
  font-size: 15px;
}

.gallery-slider .carousel-caption {
  margin: 0 auto;
  left: 20px;
  bottom: 20px;
  right: 25%;
  text-align: left;
  line-height: 30px;
  z-index: 1;
  position: absolute;
  padding: 20px;
  background-color: rgba(0, 44, 118, 0.75);
}

.gallery-slider .carousel-caption h1,
.gallery-slider .carousel-caption h2,
.gallery-slider .carousel-caption h3 {
  font-size: 32px;
  line-height: 32px;
  margin: 0 0 10px;
  color: var(--white) !important;
  font-weight: 500;
  text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.3);
}

.content .gallery-slider .carousel-caption a,
.gallery-slider .carousel-caption a {
  color: var(--white);
  text-decoration: none;
}

.content .gallery-slider .carousel-caption a:hover,
.gallery-slider .carousel-caption a:hover,
.content .gallery-slider .carousel-caption a:focus,
.gallery-slider .carousel-caption a:focus {
  text-decoration: underline;
}

.pagination,
.ou-search-pagination {
  margin: 20px auto !important;
  --bs-pagination-border-radius: 0px !important;
}

.pagination .page-item .page-link {
  text-decoration: none !important;
}

.pagination .page-item.active .page-link {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white);
}

#ou-search-results h2 {
  display: none;
}

.ou-search-container {
  width: 100%;
  padding: 50px 0 !important;
}

#ou-search-results .ou-search-input {
  border: 1px solid #ced4da !important;
  border-radius: 0;
  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;
  color: white !important; 	
}

#ou-search-results .ou-search-advanced-heading .ou-search-open-advanced:before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
}

#ou-search-results a {
  color: var(--primary-color) !important;
}

#ou-search-results a:hover {
  color: #000 !important;
}

#ou-search-results ul {
  font-size: 18px;
  font-weight: 300;
  line-height: inherit;
}

#ou-search-results ul li {
  margin-bottom: 20px;
}

#ou-search-results ul li .ou-search-link a {
  text-decoration: none;
  border-bottom: none;
}

#ou-search-results .ou-search-pagination > .ou-search-active > a,
#ou-search-results .ou-search-pagination > .ou-search-active > a:focus,
#ou-search-results .ou-search-pagination > .ou-search-active > a:hover,
#ou-search-results .ou-search-pagination > .ou-search-active > span,
#ou-search-results .ou-search-pagination > .ou-search-active > span:focus,
#ou-search-results .ou-search-pagination > .ou-search-active > span:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

#ou-search-results .ou-search-pagination > .ou-search-disabled > span,
#ou-search-results .ou-search-pagination > .ou-search-disabled > span:focus,
#ou-search-results .ou-search-pagination > .ou-search-disabled > span:hover {
  color: #4e555a !important;
  border-color: #dee2e6 !important;
}

#ou-search-results .ou-search-pagination > li:first-child > a,
#ou-search-results .ou-search-pagination > li:first-child > span {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !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 !important;
  border-bottom-right-radius: 0 !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: #98002e !important;
  border-color: #dee2e6 !important;
  color: white !important;
}

#ou-search-results .ou-bestbets,
#ou-search-results .ou-search-parametric-results {
  border: none !important;
  background: #e9ecef !important;
}

.dataTables_length {
  text-align: left;
}

#directory-list thead {
  background: var(--primary-color);
  color: var(--white);
}

#directory-list {
  background-color: var(--white);
  text-align: left;
  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;
}

/* sidebar styles  */
#sidebarMenu > * {
  font-size: 1rem !important;
}

#sidebarMenu a {
  text-decoration: none;
}

#sidebarMenu a:hover {
  text-decoration: underline;
}

#sidebarMenu .btn-group {
  width: 100%;
}

#sidebarMenu .accordion-button {
  width: 40px;
  padding: 10px;
  border-radius: 0 !important;
  text-align: center;
}

#sidebarMenu .accordion-button:focus,
#sidebarMenu .accordion-button:hover {
  background-color: var(--light-gray);
}

#sidebarMenu .accordion-body {
  padding: 10px;
  border-top: 1px solid var(--light-gray);
}

#sidebarMenu .btn {
  text-align: left;
  padding-left: 20px;
}

#sidebarMenu UL.sublinks {
  list-style-type: none;
  padding-left: 25px;
  margin-bottom: 0;
}

#sidebarMenu UL.sublinks li {
  padding: 5px;
}

#sidebarMenu UL.sublinks li a {
  display: block;
}

#sidebarMenu .accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background-color: var(--primary-color) !important;
}

#sidebarMenu .accordion-button:not(.collapsed)::after,
.accordion-button::after {
  background-image: none !important;
  font: var(--fa-font-solid);
  content: "\f078";
  font-size: 18px;
}
.accordion-button::after {
  color: var(--primary-color);
}

#sidebarMenu .accordion-button:not(.collapsed)::after {
  color: var(--white);
}

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

/* 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: 0;
  margin-bottom: 50px;
}

.showcase-grid {
  background-color: #f4f4f4;
  height: 400px;
  width: 100%;
}

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

.testimonial-info {
  display: flex;
  height: 100%;
  align-items: center;
  text-align: left;
  padding: 20px;
  font-size: 20px; /* ev custom */
}

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

/* testimonial - end */

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

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

.subscribe-section .btn {
  color: var(--primary-color) !important;
  padding: 8px;
  font-size: 14px;
}

.subscribe-section .btn:hover,
.subscribe-section .btn:focus {
  color: var(--white) !important;
}

/* subscribe - end */

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

.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 a {
  text-decoration: underline;
}

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

/* 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;
  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%;
  max-height: 500px;
  object-fit: cover;
}

/* costume - start */
.index-areas-block {
  background-color: var(--secondary-color);
  color: var(--hilite-color);
  text-align: center;
  overflow: hidden;
}

.index-areas-block a {
  color: var(--hilite-color) !important;
  text-decoration: none;
  margin: 0 auto;
  padding: 30px 6px;
  min-width: 12%;
  transition: 0.1s;
}

.index-areas-block a:hover {
  background-color: #00000021;
}

.index-areas-block .areas-study-icon {
  font-size: 54px;
}

.index-cta-block {
  padding: 160px 0;
  text-align: center;
  background-image: url(../images/background-mockup.jpg);
  background-size: cover;
  background-position: center;
}

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

.carousel-control-next:focus,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-prev:hover {
  opacity: 1;
}

.carousel-control-next span,
.carousel-control-prev span {
  background-color: #000;
  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(--secondary-color);
  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: 60px;
  height: 60px;
  top: 86%;
  left: 50px;
  border: none;
}

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

.index-video,
.index-video video,
.index-video img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.index-video .video-caption {
  position: absolute;
  text-align: center;
  margin-top: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  text-shadow: 0px 2px 4px var(--black);
  font-weight: bold;
  width: 100%;
  z-index: 1;
}

.video-caption .line-1 {
  font-family: zooja-pro;
  color: var(--primary-color);
  font-size: 100px;
  line-height: 0.1;
}

.video-caption .line-2 {
  font-family: gotham-black;
  color: var(--hilite-color);
  font-size: 150px;
  line-height: 1;
}

.video-caption .line-3 {
  font-family: gotham-black;
  color: var(--primary-color);
  font-size: 20px;
  line-height: 0;
  margin-top: -14px;
  margin-bottom: 24px;
}

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

/* index hero - end */

.index-card {
  text-align: center;
  border: none;
}

.active > .page-link,
.page-link.active {
  z-index: unset !important;
}

.carousel .carousel-indicators {
  z-index: 1 !important;
}

.carousel-dark .carousel-control-next,
.carousel-dark .carousel-control-prev {
  width: 8%;
}

.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
  filter: none !important;
  background-color: var(--primary-color);
  border-radius: 50%;
  background-size: 20px;
  text-align: center;
}

.carousel-control-next,
.carousel-control-prev {
  width: 4%;
  margin: 4px;
}

.carousel-control-next span,
.carousel-control-prev span {
  filter: none !important;
  background-color: var(--primary-color);
  border-radius: 50%;
  background-size: 26px;
  padding: 26px;
  text-align: center;
}

/* changing browsers default styles */
input {
  box-shadow: none !important;
}

.form-control:focus,
.form-control:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
input:focus,
input:active {
  box-shadow: none !important;
  border: 1px solid var(--black) !important;
}

table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_asc:after,
table.dataTable thead > tr > th.sorting_desc:before,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  left: 10px !important;
  margin-right: 30px !important;
  opacity: 0.8 !important;
}

#directory-list thead tr th {
  padding-left: 40px !important;
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg) !important;
  color: var(--bs-table-hover-color) !important;
}

.dataTables_paginate .paginate_button a:hover,
.dataTables_paginate .paginate_button a:focus {
  box-shadow: none !important;
  color: initial !important;
}

.pagination .page-item.active .page-link {
  color: var(--white) !important;
}

.dataTables_paginate .page-link:hover {
  color: initial !important;
}

/* RTC Other Custom */
.introductory-box p {font-size: 1.35em;}

