  :root {
  --primary-alt: #002855;
  /* Navy */
  --primary-color: #002855;
  /* Navy */
  --secondary-color: #D1DDE6;
  /* Cloud */
  --hilite-color: #FFC72C;
  /* Gold */
  --hilite-alt: #CDC4AA;
  /* Sand */
  --smoke: #A6A6A6;
  /* Smoke */
  --dark-gray: #545454;
  /* Charcoal */
  --gray: #D9D9D9;
  /* Gray */
  --light-gray: #F5F5F5;
  /* Light Gray */
  --white: #ffffff;
  --black: #000000;

  --font-family-body: "Gotham-Light", sans-serif;
  --font-family-heading: "Gotham-Black", sans-serif;
}

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

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

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 500;
}

.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(--gray) !important;
}

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

.bg-smoke {
  background-color: var(--smoke);
}

.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-secondary {
  background-color: var(--secondary-color) !important;
  /* color: var(--white); */
}

.bg-highlight {
  background-color: var(--hilite-color) !important;
  /* color: var(--black); */
}

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

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

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

.pattern-bg {
  background-color: var(--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;
  text-transform: uppercase;
}

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

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

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;
  padding: 12px 15px;
  margin: 10px 0;
  border: none;
  min-width: 140px;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.btn-default:not(button),
.content .btn-default:not(button) {
  padding: 12px 50px 12px 15px;
}

.btn-default:not(button)::before,
.btn-default:not(button)::after {
  content: '';
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 1em;
  background-size: contain;
  background-repeat: repeat-x;
  transition: opacity .15s ease-in-out;
  pointer-events: none;
}

.btn-default::before {
  background-image: url("/_resources/images/NewArrowIcon-05.png");
  opacity: 1;
  z-index: 1;
}

.btn-default::after {
  background-image: url("/_resources/images/NewArrowIcon-04.png");
  opacity: 0;
  z-index: 2;
}

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

.btn-default:hover::before,
.btn-default:focus::before {
  opacity: 0;
}

.btn-default:hover::after,
.btn-default:focus::after {
  opacity: 1;
}

.btn-default.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-default.btn-secondary::before {
  background-image: url("/_resources/images/NewArrowIcon-04.png");
}

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

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

.btn-default.btn-white::before {
  background-image: url("/_resources/images/NewArrowIcon-04.png");
}

.btn-default.btn-white::after {
  background-image: url("/_resources/images/NewArrowIcon-05.png");
}

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

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

.btn-default.btn-highlight::before {
  background-image: url("/_resources/images/NewArrowIcon-04.png");
}

.btn-default.btn-highlight::after {
  background-image: url("/_resources/images/NewArrowIcon-05.png");
}

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

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

.btn-default.btn-highlight-alt::before {
  background-image: url("/_resources/images/NewArrowIcon-04.png");
}

.btn-default.btn-highlight-alt::after {
  background-image: url("/_resources/images/NewArrowIcon-05.png");
}

.btn-highlight-alt:hover,
.btn-highlight-alt: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;
}

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

/* buttons - end */

/* chevrons - start */
.chevron::before {
  background-color: var(--hilite-color);
  color: var(--white);
  border-radius: 50%;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  content: "";
}

.chevron-blue::before {
  background-color: var(--primary-color);
}

.chevron-up::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff' stroke='%23fff' stroke-width='1.15'%3e%3cpath d='M14.354 11.354a.5.5 0 0 1-.708 0L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708z'/%3e%3c/svg%3e");
}

.chevron-down::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff' stroke='%23fff' stroke-width='1.15'%3e%3cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.chevron-left::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff' stroke='%23fff' stroke-width='1.15'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.chevron-right::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff' stroke='%23fff' stroke-width='1.15'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

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

.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(--hilite-color);
  margin: 20px auto 50px;
  padding: 10px 0;
}

.page-header {
  background-color: var(--primary-color);
  border-top: 10px solid var(--hilite-color);
  padding-top: 40px;
  padding-bottom: 10px;
}

.page-header h1,
.page-header .h1 {
  color: var(--white);
  line-height: 1;
  font-size: 50px;
}

.page-header.image-header {
  padding-top: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
  border: none;
  position: relative;
}

.page-header.image-header h1 {
  color: white;
  font-size: 50px;
  background-color: var(--primary-color);
  border-top: 10px solid var(--hilite-color);
  display: inline;
  padding: 10px 20px;
  padding-right: 60px;
  margin-bottom: 0;
  position: absolute;
  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;
}

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

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

ul:not([class]) {
  list-style: none;
  margin: 0;
}

li:not([class]) {
  position: relative;
}

li:not([class])::before {
  position: absolute;
  left: -15px;
  font-size: 1em;
  /* Default size, adjust as needed */
}

/* Level 1 */
ul:not([class])>li::before {
  content: "■";
  color: var(--hilite-color);
}

/* Level 2 */
ul:not([class]) ul>li::before {
  content: "■";
  color: var(--primary-alt);
}

/* Level 3 */
ul:not([class]) ul ul>li::before {
  content: "◯";
  color: var(--hilite-color);
  font-size: 0.6em;
  top: 5px;
  font-weight: bold;
  left: -20px;
}

/* Level 4 */
ul:not([class]) ul ul ul>li::before {
  content: "◯";
  color: var(--primary-alt);
  font-size: 0.6em;
  top: 5px;
  font-weight: bold;
  left: -20px;
}

/* Level 5 */
ul:not([class]) ul ul ul ul>li::before {
  content: "●";
  color: var(--hilite-color);
  top: -2px;
  font-size: 1.2em;
}

/* Level 6 */
ul:not([class]) ul ul ul ul ul>li::before {
  content: "●";
  color: var(--primary-alt);
  top: -2px;
  font-size: 1.2em;
}

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

/* hero - start */

.hero {
  display: flex;
  position: relative;
}

.hero-image {
  min-width: 100%;
}

.hero-image img {
  min-width: 100%;
  max-height: 70vh;
  object-fit: cover;
}

.overlay {
  background-color: var(--primary-color);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: var(--hilite-color) 5px solid;
  text-align: center;
  padding: 25px 100px;
  z-index: 2;
}

.overlay h1 {
  text-transform: uppercase;
  color: var(--white);
  line-height: 3.5rem;
  text-wrap: nowrap;

}

.overlay span.h1-hilite {
  color: var(--hilite-color);
  display: block;
  font-size: 4.75rem;
}

/* hero - end */

/* full width split - start */

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

.fullwidth-split-image img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  border-top: 10px solid var(--hilite-color);
}

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

/* full width split - end */

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

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

.news-events-footer a::after {
  content: '';
  position: absolute;
  margin-left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 1em;
  background-size: contain;
  background-repeat: repeat-x;
  background-image: url("/_resources/images/NewArrowIcon-04.png");
}

.news-events-footer a:hover {
  text-decoration: underline;
}

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

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

/* news events - end */

.news-list {
  padding: 40px 0;
}

.news-list:nth-child(2n) {
  background-color: var(--gray);
}

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

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

.news-date::after {
  content: "";
  display: inline-block;
  width: calc(3 * 20px);
  height: 20px;
  background-image: url('/_resources/images/OldNewArrowIcon-08.png');
  background-repeat: repeat-x;
  background-size: 20px 20px;
  transform: translateY(3px);
  margin-right: 5px;
}

.news-list .list-link {
  font-style: italic;
  font-weight: 100;
  margin-left: 5px;
}

.restrict {
  padding: 0 20%;
}

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

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

.card {
  margin-bottom: 40px;
}

.card,
.card img {
  border-radius: 0;
}

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

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

.card.card-masonry-sm {
  border-top: 5px solid var(--hilite-color);
}

.card.card-masonry-sm .col-md-6:first-of-type {
  padding-right: 0;
}

.card.card-masonry-sm .card-body {
  padding: 10px 0;
  overflow: hidden;
}

.card:not(.card-img-side) .card-img,
.card .card-img-top {
  height: 350px;
  max-height: 350px;
}

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

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

.card .card-body .card-title,
.card .card-body .card-text {
  color: var(--primary-color);
}

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

.card .card-body a:not(.btn):hover {
  text-decoration: underline;
}

.card.bg-primary .btn-white:hover,
.card.bg-primary .btn-white:focus {
  border: 1px solid var(--white);
}

.card .card-body a.news-link,
.news-item a.news-link {
  font-style: italic;
  font-weight: 600;
  margin-right: 5px;
  text-decoration: none;
}

.card .card-body a.news-link:hover,
.news-item a.news-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.card .card-body a.news-link::after,
.news-item a.news-link::after {
  content: "";
  display: inline-block;
  width: calc(3 * 14px);
  height: 14px;
  background-image: url('/_resources/images/OldNewArrowIcon-08.png');
  background-repeat: repeat-x;
  background-size: 14px 14px;
  transform: translateY(1px);
  margin-left: 5px;
}

.card.card-masonry-sm .card-title,
.card.card-masonry-lg .card-title {
  margin-bottom: 0;
}

.card.card-masonry-sm .masonry-date,
.card.card-masonry-lg .masonry-date {
  margin: 5px 0;
  font-size: 14px;
}

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

/*Side Nav*/
.side-nav-heading {
  font-size: 1.5em !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 {
  text-decoration: none;
}

.sidenav-collapse {
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 6px;
}

.sidenav-collapse.bg-primary .side-nav-heading a {
  color: var(--white) !important;
}

.sidenav-collapse.bg-primary {
  background-color: var(--primary-color);
}

.sidenav-collapse.bg-primary .side-nav-heading {
  color: var(--white) !important;
}

.sidenav-collapse #side-nav-accordion {
  width: 100%;
  padding: 0;
}

.sidenav-collapse .navbar {
  padding: 0;
  background-color: transparent;
  display: block;
}

.sidenav-collapse .nav-item:first-child {
  border-top: none;
}

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

.sidenav-collapse .nav-item:last-child .nav-link {
  border-bottom: none;
}

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

.sidenav-collapse .navbar {
  width: 100%;
}

.sidenav-collapse .navbar .navbar-toggler {
  font-size: 20px;
  border: none;
  position: absolute;
  right: 0;
  top: -35px;
}

.sidenav-collapse.bg-primary .navbar .navbar-toggler {
  color: var(--white);
}

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

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

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

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

.sidenav-collapse .navbar .row {
  width: 100%;
}

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

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

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

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

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

.sidenav-collapse .navbar .nav-item .nav-item:first-child .nav-link {
  border-top: none;
}

.sidenav-collapse .navbar .nav-item .nav-link[data-toggle]::after,
.sidenav-collapse .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;
}

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

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

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

.sidenav-collapse .navbar .nav-item .nav-item .nav-link::after {
  content: none;
}

.sidenav-collapse .navbar .nav-item ul {
  margin-left: 0 !important;
}

.sidenav-collapse .secondary-nav {
  width: 100%;
  padding: 0 20px;
}

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

/* side nav - end */

/* side nav-nested  */
.sidenav-nested {
  margin-bottom: 20px;
  background-color: #fff;
}

.sidenav-nested #side-nav-accordion {
  width: 100%;
  padding: 0;
}

.sidenav-nested .navbar {
  padding: 0;
  background-color: #fff;
  margin-bottom: 20px;
}

.sidenav-nested .navbar-light .nav-item:first-child {
  border-top: none;
}

.sidenav-nested .navbar-light .nav-link {
  color: #495057;
  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;
}

.sidenav-nested .navbar-light .nav-link:hover,
.sidenav-nested .navbar-light .nav-link:focus {
  color: #000;
  background-color: #e7e7e7;
}

.sidenav-nested .navbar-light {
  width: 100%;
}

.sidenav-nested .navbar .navbar-toggler {
  color: rgba(0, 0, 0, 0.9);
  font-size: 20px;
  padding: 5px;
  border: none;
  margin-right: 17px;
  margin-top: 10px;
}

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

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

.sidenav-nested .navbar-brand {
  font-size: 15px;
  font-weight: 500;
  padding-left: 10px;
  text-transform: uppercase;
}

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

.sidenav-nested .navbar-light .row {
  width: 100%;
}

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

.sidenav-nested .navbar-light .nav-item .nav-item .nav-link {
  font-size: 16px;
  padding: 10px 15px 10px 30px;
  border: none;
  color: #2f506c;
  cursor: pointer;
}

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

.sidenav-nested .navbar-light .nav-item .nav-item:last-child .nav-link {
  padding-bottom: 15px;
}

.sidenav-nested .navbar-light .nav-item .nav-item .nav-link:hover,
.sidenav-nested .navbar-light .nav-item .nav-item .nav-link:focus {
  background-color: #f4f4f4;
}

.sidenav-nested .navbar-light .nav-item .nav-item .nav-item .nav-link {
  font-size: 14px;
  padding: 10px 15px 10px 50px;
}

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

.sidenav-nested .navbar-light .nav-item .nav-link[data-bs-toggle]::after,
.sidenav-nested .navbar-light .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;
}

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

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

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

/* .sidenav-nested .navbar-light .nav-item .nav-item .nav-link::after{
    content: none;
} */
.sidenav-nested .navbar-light .nav-item ul {
  margin-left: 0 !important;
}

.sidenav-nested .secondary-nav {
  width: 100%;
  padding: 0 20px;
}

.sidenav-nested .secondary-nav .nav-link {
  border: none;
  color: #2f506c;
}

/* side nav-nested 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(--hilite-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-header button {
  font-size: 1.5rem;
}

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



/* .accordion-header button:not(.collapsed):after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
} */

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

.accordion-button:not(.collapsed):not(.sidenav-heading)::after {
  background: none;
}

.accordion-basic>* {
  border-radius: 0 !important;
}

.accordion-basic .accordion-header button,
.accordion-basic .accordion-body {
  background-color: var(--light-gray);
  color: var(--primary-color);
}

.accordion-basic .accordion-body {
  padding-left: 120px;
  padding-right: 120px;
  padding-top: 0;
}

.accordion-basic .accordion-header button {
  font-weight: bold;
}

.accordion-basic .accordion-header button::after {
  content: '';
}

.accordion-basic .accordion-item {
  border: none;
  border-top: 5px solid var(--hilite-color);
}

.accordion-basic .accordion-item:last-of-type {
  border-bottom: 5px solid var(--hilite-color);
}

.accordion-basic .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-basic .accordion-button::before {
  transition: var(--bs-accordion-btn-icon-transition);
  margin-right: 20px;
}

.accordion-basic .accordion-button:not(.collapsed)::before {
  transform: rotate(90deg);
}

.accordion-basic .accordion-button:not(.collapsed):not(.sidenav-heading)::before {
  background-color: var(--hilite-color);
}

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

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

.nav-pills {
  border: 1px solid var(--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-results h2 {
  display: none;
}

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

#ou-search-results .ou-search-input {
  border: 1px solid #ced4da !important;
  border-radius: 5px;
  padding: 10px !important;
}

#ou-search-results .ou-search-button-color {
  color: var(--white) !important;
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  font-weight: 600 !important;
  font-size: 16px !important;
}

#ou-search-results .ou-search-open-advanced {
  background-color: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
  font-weight: 600 !important;
  font-size: 16px !important;
}

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

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

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

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

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

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

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

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

#ou-search-results .ou-search-pagination>li:first-child>a,
#ou-search-results .ou-search-pagination>li:first-child>span {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

#ou-search-results .ou-search-pagination>li:last-child>a,
#ou-search-results .ou-search-pagination>li:last-child>span {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

#ou-search-results .ou-search-pagination>li>a,
#ou-search-results .ou-search-pagination>li>span {
  border-color: #dee2e6 !important;
}

#ou-search-results .ou-search-pagination>li>a:focus,
#ou-search-results .ou-search-pagination>li>a:hover,
#ou-search-results .ou-search-pagination>li>span:focus {
  background-color: #e9ecef !important;
  border-color: #dee2e6 !important;
  color: #0366d6 !important;
}

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

.dataTables_length {
  text-align: left;
}

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

#directory-list {
  background-color: var(--white);
  text-align: left;
}

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



.dataTables_wrapper .dataTables_filter input {
  width: 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;
}

/* non-selected before */
/* non-selected after */
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_desc::before {
  opacity: 0.5;
}

/* selected before */
/* selected after */
table.dataTable thead>tr>th.sorting_desc::after,
table.dataTable thead>tr>th.sorting_asc::before {
  opacity: 0.9;
}

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

table.directory {
  border-top: 5px solid var(--hilite-color);
}

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

.faculty-headshot {
  text-align: center;
}

.faculty-headshot img {
  width: 100%;
  max-height: 375px;
  object-fit: cover;
  object-position: top;
  border-top: 5px solid var(--hilite-color);
}

.faculty-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

/* sidebar styles  */
.sidenav-collapseMenu>* {
  font-size: 1rem !important;
}

.sidenav-collapseMenu a {
  text-decoration: none;
}

.sidenav-collapseMenu a:hover {
  text-decoration: underline;
}

.sidenav-collapseMenu .btn-group {
  width: 100%;
}

.sidenav-collapseMenu .accordion-button {
  width: 40px;
  padding: 10px;
  border-left: 1px solid var(--gray);
  border-radius: 0 !important;
}

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

.sidenav-collapseMenu a.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
}

.sidenav-collapseMenu .accordion-body {
  padding: 10px;
  border-top: 1px solid var(--gray);
}

.sidenav-collapseMenu .btn {
  text-align: left;
  padding-left: 20px;
}

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

.sidenav-collapseMenu UL.sublinks li {
  padding: 5px;
}

.sidenav-collapseMenu UL.sublinks li a {
  display: block;
}

.sidenav-collapseMenu .accordion-button:not(.collapsed) {
  box-shadow: unset;
}


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

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

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

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

.testimonial .carousel-indicators [data-bs-target] {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: var(--smoke) !important;
  margin-left: 7px;
  margin-right: 7px;
}

.testimonial .carousel-indicators [data-bs-target].active {
  background-color: var(--dark-gray) !important;
}

.testimonial .carousel-control-prev,
.testimonial .carousel-control-next {
  width: 50px !important;
  height: 50px;
  background-color: var(--hilite-color);
  border-radius: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  /* display: flex;
    align-items: center;
    justify-content: center; */
}

.testimonial .carousel-control-prev {
  left: 2%;
}

/* Remove Bootstrap's default icons */
.testimonial .carousel-control-prev-icon,
.testimonial .carousel-control-next-icon {
  display: none;
}

/* Custom arrows */
.testimonial .carousel-control-prev::before,
.testimonial .carousel-control-next::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Left arrow */
.testimonial .carousel-control-prev::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M10.5 1.5 4 8l6.5 6.5' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Right arrow */
.testimonial .carousel-control-next::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5.5 1.5 12 8l-6.5 6.5' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


/* 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(--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: 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(--hilite-color);
  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(--primary-color);
}

.section-with-background .card {
  border-top: 5px solid var(--hilite-color);
}

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

.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(--hilite-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;
  background-color: var(--primary-color);
  padding: 1.5rem 40px;
  padding-bottom: 0;
}

.cards-grid h3 {
  background-color: var(--white);
  padding: 5px 0;
  font-weight: 500;
}

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

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

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

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

/* cards-grid - end */

/* responsive grids - start */
.responsive-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.responsive-grid .btn-default {
  align-self: baseline;
}

/* responsive grids - end */

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

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

/* subscribe - end */

/* events box - start */
.events-box {
  background: linear-gradient(80deg,
      var(--white) 90%,
      var(--primary-color) 10%);
  padding: 50px 0;
  text-transform: uppercase;
}

.events-box h2 {
  color: var(--primary-color);
  font-weight: 900;
}

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

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

.events-box a:hover,
.events-box a:focus {
  text-decoration: underline;
}

.events-box a.all-link {
  font-family: var(--font-family-heading);
  display: flex;
  font-size: 30px;
}

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

.events-box .events-col:first-of-type {
  padding-left: calc(var(--bs-gutter-x) * .5)
}

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

.events-box .events-col.event {
  line-height: 25px;
}

.events-box .events-col.event a {
  font-size: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

/* sidenav accordion - start */
.sidenav-accordion {
  margin-bottom: 30px;
  border: 5px solid var(--primary-color);
  border-top: 5px solid var(--hilite-color);
}

.sidenav-accordion .sidenav-heading {
  color: var(--primary-color) !important;
  font-size: 24px;
  text-transform: uppercase;
  padding-left: 20px;
  padding-bottom: 10px;
  background-color: transparent !important;
  cursor: unset;
}

.sidenav-accordion .sidenav-heading:not(.collapsed)::after,
.sidenav-accordion .sidenav-heading::after {
  display: none;
}

.sidenav-accordion .accordion {
  --bs-accordion-border-width: 0;
}

.sidenav-accordion .accordion-header {
  border-top: 1px solid lightgray;
}

.sidenav-accordion .accordion-button {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: bold;
  font-size: 1rem;
}

.sidenav-accordion button.sidenav-heading {
  font-size: 1.5rem;
}

.sidenav-accordion .accordion-button:focus {
  box-shadow: none;
}

.sidenav-accordion .accordion-button:hover,
.sidenav-accordion .accordion-body a:hover {
  color: var(--primary-color);
  background-color: var(--secondary-color);
}

.sidenav-accordion .accordion-button:not(.collapsed) {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 0;
}

.sidenav-accordion a {
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
}

.sidenav-accordion .accordion-body a {
  padding: 0.5em;
  display: flex;
  align-items: flex-start;
}

.sidenav-accordion .accordion-body a::before {
  content: "";
  background-image: url("/_resources/images/OldNewArrowIcon-08.png");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 1;
}

.sidenav-accordion a:last-of-type {
  margin-bottom: 0;
}

.sidenav-accordion .accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}


.sidenav-accordion .accordion-header button:hover:after,
.sidenav-accordion .accordion-header button:not(.collapsed):after {
  color: var(--primary-color);
}

.sidenav-accordion .accordion-item:first-of-type button {
  border-top: 3px solid var(--primary-color);
}

.sidenav-accordion .accordion-item:last-of-type,
.sidenav-accordion .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* sidenav accordion - end */

/* 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 {
  position: absolute;
  padding: 8px 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
  margin-left: -6px;
  background-color: white;
  height: 40px;
}

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

.program-search form {
  position: relative;
}

.program-search input#programSearch {
  background-color: var(--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;
}

.sidenav-checkbox .checkbox-category button {
  width: 100%;
}

.sidenav-checkbox .sidenav-collapse .navbar .navbar-toggler {
  top: -39px;
}

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

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

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

.divider-gold {
  border-bottom: 10px solid var(--hilite-color);
  width: fit-content;
}

.divider-navy {
  border-bottom: 10px solid var(--primary-color);
  width: fit-content;
}

.introductory-box h2.divider-gold,
.introductory-box h2.divider-navy {
  margin: auto;
  margin-bottom: 0.5rem;
}

/* cta banner - start */
.cta-box h2 {
  min-height: 100%;
  min-width: 100%;
  align-content: center;
  text-transform: uppercase;
}

.cta-box .btn-default {
  padding: 15px 70px;
  text-transform: uppercase;
  margin-left: auto;
  font-family: var(--font-family-heading);
}

/* cta banner - end */

/* 4 card banner - start */
.card-banner {
  padding-top: 75px;
  padding-bottom: 200px;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.card-banner h2 {
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  margin: 100px auto;
}

.card-banner .link-box {
  background-color: var(--white);
  text-decoration: none;
  color: var(--primary-color);
  min-width: 100%;
  min-height: 180px;
  font-family: var(--font-family-heading);
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  padding: 60px 50px;
  border-radius: 10px;
  line-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  position: relative;
}

.card-banner .link-box:hover,
.card-banner .link-box:focus {
  transform: scale(1.1);
}

.card-banner .chevron::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  position: absolute;
  top: 0;
  transform: translate(0, -50%);
}

/* 4 card banner - end */

/* card-locations - start */

.card-locations {
  padding-top: 75px;
}

.card-locations h2 {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 35px;
}

.card-locations h3 a:hover,
.card-locations h3 a:focus {
  text-decoration: underline;
}

.card-locations .card img {
  border-radius: 0;
}

/* card-locations - end */

/* sideby-40-60 - start */

.sideby-40-60 {
  padding: 75px 0;
}

.sideby-40-60 .row {
  padding-left: 12px;
  padding-right: 12px;
}

.sideby-40-60 span {
  text-transform: uppercase;
  font-weight: 600;
}

.sideby-40-60 .sideby-60 iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
}

/* sideby-40-60 - end */

/* cards-4up-icons - start */

.card-icons {
  padding-top: 75px;
  padding-bottom: 25px;
}

.card-icons h2 {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 35px;
}

.card-icons .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  border: none;
  padding: 35px;
  padding-bottom: 40px;
  font-family: var(--font-family-heading);
  line-height: 1;
  color: var(--primary-color);
}

.card-icons span {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.card-icons .stat {
  font-size: 2rem;
}

.card-icons p {
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center;
}

/* cards-4up-icons - end */

/* program finder wysiwyg - start */
.finder-wysiwyg {
  border-bottom: 10px solid var(--primary-color);
}

/* program finder wysiwyg - end */

/* styled list - start */
.list-styled {
  padding: 0 30px;
  width: 70%;
  margin: auto;
}

.list-styled ul {
  padding: 0;
  margin: 0;
}

.list-styled li {
  list-style: none;
  border-bottom: 5px solid var(--secondary-color);
  margin-top: 5px;
}

.list-styled a {
  text-decoration: none;
}

.list-styled li:hover {
  border-color: var(--primary-color);
}

/* styled list - end */

/* table customizations - start */
.table-responsive {
  margin-top: 30px;
}

.table tbody tr td {
  color: var(--primary-color);
}

.table-striped>tbody>tr:nth-of-type(2n+1)>* {
  background-color: var(--secondary-color);
}

.table-striped tbody tr th,
.table thead tr th {
  color: var(--white);
  background-color: var(--primary-color) !important;
}

.table-hover>tbody>tr:hover>* {
  background-color: var(--secondary-color);
}

.table-sm tr {
  border-color: var(--hilite-color);
}

/* table customizations - end */

/* news item - start */
.news-item {
  border-top: 5px solid var(--hilite-color);
  margin-bottom: 20px;
  margin-right: 0;
  margin-left: 0;
}

.news-item>[class*="col-"]:first-of-type {
  padding-left: 0 !important;
}

.news-item>[class*="col-"]:last-of-type {
  padding-right: 0 !important;
  padding-top: 5px;
}

.news-item .taxonomy {
  background-color: var(--secondary-color) !important;
}

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

/* news item - end */

/* contact card - start */
.card-contact {
  border: 5px solid var(--light-gray);
  border-top: 5px solid var(--hilite-color);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: var(--primary-color);
}

.card-contact h3,
.card-contact h4 {
  margin-bottom: 5px;
  text-transform: capitalize;
  font-weight: 700;
}

.card-contact h4 {
  font-weight: 200 !important;
}

.card-contact a {
  font-weight: 100;
}

/* contact card - end */

/* custom alert styling - start */

.alert span,
.alert a {
  color: var(--black);
}

/* custom alert styling - end */