:root {
  --primary-color: #007099;
  --primary-dark: #00244d;
  --primary-alt: #134b6e;
  --primary-alt2: #005a84;
  --hilite-color: #178207;
  --hilite-alt: #7ac142;
  --hilite-alt2: #aed68a;
  --hilite-alt3: #50a742;
  --white: #ffffff;
  --light-gray: #e0e9ee;
  --dark-gray: #212529;
  --black: #000000;
}

body {
  color: var(--dark-gray);
  font-family: "Montserrat", sans-serif;
}

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

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

.bg-gray {
  background-color: var(--light-gray) !important;
  padding-top:12px;
  padding-bottom:6px;
}

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

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

.bg-primary-alt2 {
  background-color: var(--primary-alt2) !important;
  color: var(--white);
  width: fit-content;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: -ms-fit-content;
  padding: .15rem !important;
}

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

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

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

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

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

/* a {
  color: var(--primary-color);
}
a:hover,
a:focus {
  color: var(--hilite-color);
  text-decoration: underline;
} */

/* headings - start */
h1,
.h1 {
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

h2,
.h2 {
  font-size: 2.5rem;
  font-family: "Oswald", sans-serif;
}

h3,
.h3 {
  font-size: 2rem;
  font-family: "Oswald", sans-serif;
}

h4,
.h4 {
  font-size: 1.5rem;
  font-family: "Oswald", sans-serif;
}

h5,
.h5 {
  font-size: 1.25rem;
  font-family: "Oswald", sans-serif;
}

h6,
.h6 {
  font-size: 1rem;
  font-family: "Oswald", sans-serif;
}

/* 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);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  text-transform: capitalize;
  padding: 12px 15px;
  margin: 10px 0;
  border: none;
  min-width: 140px;
  border-radius: 0px;
  text-transform: uppercase;
}

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

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

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

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


/* button rows using p tag */

p.button-row-2, p.button-row-3, p.button-row-4 {
text-align:center;
margin:0;
margin-bottom:4px;
}

p.button-row-2 .btn-default, p.button-row-3 .btn-default, p.button-row-4 .btn-default {
padding-left:2px;
padding-right:2px;
margin:0;
}

p.button-row-2 .btn-default {
width:48.8%;
 }

p.button-row-3 .btn-default {
width:32.8%;
 }

p.button-row-4 .btn-default {
width:24.4%;
 }


@media only screen and (max-width: 700px) {
	
p.button-row-2 .btn-default, p.button-row-3 .btn-default, p.button-row-4 .btn-default {
width:98%;
 }
	
 }


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

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

.alert-emergency {
  top: 0;
  background-color: rgb(198, 2, 2);
  border: none;
  color: var(--white);
  position: sticky;
}
.alert-emergency .alert-link {
  color: var(--white);
}

.alert-emergency .btn-close {
  background-color: white;
  opacity: 100%;
  top: 20%;
  right: 10px;
  border-radius: 10rem;
  padding: 12px;
}

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

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

.page-header h1 {
  color: var(--primary-color);
  line-height: 1;
  font-size: 3rem;
  border-left: 8px solid #7dc545;
  padding-left: 8px;
  padding-bottom: 5px;
  margin-bottom: -5px;
}

.page-header.image-header {
  background-size: cover;
  padding: 128px 0;
}

.page-header.image-header.img-header-lrg {
  background-size: cover;
  /* Changing to a responsive height padding: 208px 0; */
 padding: 9% 0;
}

.page-header.image-header h1 {
  color: var(--white);
  padding: 14px;
  background-color: rgba(19, 75, 110, 0.8);
  width: fit-content;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: -ms-fit-content;
  border-left: 8px solid #7dc545;
}

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

.bg-image + .card-body {
  position: relative;
  z-index: 1;
}

.card-title-block {
  font-weight: 500;
  display: block;
}

.card-title {
  text-transform: uppercase;
}

img.bg-image {
  -o-object-fit: cover;
  object-fit: cover;
}

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

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

/* Tony - adding image float classes to editor tools and inside border */

.align-left {
float:left;
margin:12px 20px 12px 0;
}
.align-right {
float:right;
margin:12px 0 12px 20px;
}

img.insideborder {
outline: 1px solid white;
outline-offset: -6px;
}


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

/* Tony - adding option for stlyized unordered lists that works with visual page editor    */


li:has(.fancylistitem) {
list-style-type:none;
position:relative;
padding-left:30px;
margin-left:-30px;
margin-bottom:6px;

}

.fancylistitem::before  {

 content: "";
  width: 0.625rem;
  height: 0.625rem;
  background-color: #50A742;
  display: block;
  position: absolute;
  top: 0.481rem;
  left: 0.5625rem;
  border-radius: 20%;
}	

/* Tony - adding option for stylized ordered lists. Class must be applied in code view to ol */


ol.fancy-numbers {
list-style: none;
counter-reset: circle-counter;
padding-left:0;
margin-bottom:54px;
margin-top:-26px;
}

ol.fancy-numbers li {
 counter-increment: circle-counter;
 margin-bottom:-20px;
margin-left:60px;
	
}

ol.fancy-numbers li:before {
  content: counter(circle-counter);
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  line-height: 1.5em;
  border-radius: 50%;
 background-color:#fff;
border: 0.25rem solid var(--primary-color);
color: var(--primary-color);
  text-align: center;
  font-size: 1.4em;
  margin: 0 12px 0 -50px;
position: relative;
top: 36px;
font-weight:700;
}


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: none;
  font-weight: 600;
  background-color: transparent;
}

a:hover {
  color: var(--hilite-color);
  text-decoration: underline;
}

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

.lead {
  font-weight: 500;
  font-size: 1.2rem;
}

.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: 460px!important;
 overflow: hidden;
}
.fullwidth-split-image img {
  object-fit: cover;
  min-height: 100%;
  object-position: center;
}

.fullwidth-split-text {
  display: flex;
  align-self: center;
  /* UAT #195481  */
  padding: 28px 20px;
}

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

.bg-primary.fullwidth-split .btn-white:hover,
.bg-primary.fullwidth-split .btn-white:focus {
  background-color: var(--hilite-alt);
  color: var(--white);
  outline: none;
}
.fullwidth-split-text .text-wrapper {
  padding: 0 50px;
}

.section {
/* Tony - too much top and bottom padding: 55px 0; */
  padding: 30px 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;
}
/* Melodie - removed capatalization in text decoration*/
/* fast facts & links - start */
.section.links-section {
  background-image: url(../images/bg-texture.jpeg);
  background-size: cover;
  background-position: top;
}
.fast-links .link-section {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  text-transform: none;
  padding: 8px;
  margin: 10px 0;
  border: none;
  transition: background-color 0.3s ease;
}

.fast-links .link-section:hover,
.fast-links .link-section:focus {
  background-color: var(--hilite-alt);
  color: var(--black);
}
/* WHITE */
.fast-links .link-section.link-section-white {
  background-color: var(--white);
  color: var(--primary-dark) !important;
}
.fast-links .link-section.link-section-white a {
  background-color: var(--white);
  color: var(--primary-dark) !important;
}
.fast-links .link-section.link-section-white:hover,
.fast-links .link-section.link-section-white:focus {
  background-color: var(--dark-gray);
  color: var(--white) !important;
}
/* ALT - GREEN */
.fast-links .link-section.link-section-alt {
  background-color: var(--hilite-alt);
  color: var(--black) !important;
}
.fast-links .link-section.link-section-alt a {
  background-color: var(--hilite-color);
  color: var(--primary-dark) !important;
}
.fast-links .link-section.link-section-alt:hover,
.fast-links .link-section.link-section-alt:focus {
  background-color: var(--primary-color);
  color: var(--white) !important;
}

.fast-link-icon {
  margin-bottom: 24px;
}

.fast-link-icon span:nth-child(2) {
  line-height: 1;
  font-size: 2rem;
  text-align: center;
  display: block;
  font-weight: bold;
}

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

.fast-link-icon span {
  display: block;
  font-size: 1.2rem;
  margin-top: 10px;
}

.fast-fact-icon span {
  line-height: 1;
  font-size: 3rem;
  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;
  text-transform: uppercase;
}

.news-events-footer a {
  margin-top: 12px;
margin-bottom:12px;
  text-decoration: none;
  color: var(--primary-color);
  /* float: right; */
	display:block;
}

.news-events-footer a:hover,
.news-events-footer a:focus {
  color: var(--hilite-color);
}

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

.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-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: 15px;
  position: relative;
 width:auto!important;
}

.event-item a {
  color: var(--primary-color);
}
.event-item a:hover {
  color: var(--hilite-color);
}

.events .event-item .event-date,
.events .event-item .event-text {
  display: table-cell;
  position: relative;
}

.event-item .event-date {
 /* vertical-align: middle; */
 vertical-align: top;
}

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

.event-item .event-text {
  position: relative;
  vertical-align: top;
  padding-left: 20px;
}

.event-item .event-date-bg {
  background-color: var(--primary-color);
  padding: 6px 10px 10px 10px;
  line-height: 36px;
  border-radius:8px;
  width:70px;
}

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

.card {
  margin-bottom: 40px;
  background-color: var(--light-gray);
  border-radius: 0;
  border: none;
}

.card.white {
  background-color: var(--white);
  color: var(--primary-color);
}

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

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

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

.card .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-top {
  border-radius: 0;
}

.card a .card-body h3 {
  font-size: 1.6rem;
  color: var(--primary-alt);
}

.card a:hover .card-body h3,
.card a:focus.card-body h3 {
  text-decoration: underline;
  color: var(--hilite-color);
}

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

.card a {
  text-decoration: none;
}

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

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

.custom-slider-arrows .slick-next,
.custom-slider-arrows .slick-prev {
  background: rgba(255, 255, 255, 0.75) !important;
  padding: 10px !important;
  width: 40px !important;
  height: 40px !important;
}

.custom-slider-arrows .news-slider .slick-next,
.custom-slider-arrows .news-slider .slick-prev {
  top: 35%;
}

.custom-slider-arrows .slick-next {
  right: 15px !important;
}

.custom-slider-arrows .slick-prev {
  left: 15px !important;
  z-index: 1 !important;
}

.custom-slider-arrows .slick-next:before {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f105" !important;
  font-weight: 900;
  display: block;
  opacity: 1;
  font-size: 30px !important;
  color: #000 !important;
  position: relative;
  top: -4px;
}

.custom-slider-arrows .slick-prev:before {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f104" !important;
  font-weight: 900;
  display: block;
  opacity: 1;
  font-size: 30px !important;
  color: #000 !important;
  position: relative;
  top: -4px;
}

/* breadcrumb - start */

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

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

/* breadcrumb - emd */

/*Side Nav*/
.side-nav-heading {
  font-weight: 400;
  padding-bottom: 0.5rem;
  margin: 0 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.side-nav-heading a {
  text-decoration: none;
}

#sidebar {
  margin-bottom: 20px;
  border-left: none;
  padding: 0px 20px 20px 20px;
  background-color: var(--white);
}

#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 .img-related {
  margin-top: 12px;
  /* min-height: 140px; */
 min-height: 160px;
  background-size: cover;
}

#sidebar .nav-link {
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  padding: 0;
  line-height: 19px;
  border-bottom: 1px solid #e9ecef;
  border-left: 0px;
  border-right: 0px;
}
#sidebar .nav-link p {
  padding: 8px;
  margin: 0;
}

#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: -30px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* side nav - end */

.figure {
  display: block;
}

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

.figure img {
  margin: 0px auto 20px auto;
  border-radius: 4px;
}

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

.lead-paragraph-blue {
 font-size: 20px;
color:#236fa1;
 display: block;
}


.lead-paragraph-blue-large {
 font-size: 24px;
color:#236fa1;
 display: block;
}

.lead-paragraph-blue-xlarge {
 font-size: 30px;
color:#236fa1;
 display: block;
}


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

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

.accordion .card-header .btn {
  font-size: 22px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  /* border-bottom: 5px solid var(--hilite-alt); */
  padding: 16px;
  line-height: 1.5;
  display: block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  border-radius: 0;
}

.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-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 0;
}
/* 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;
}

.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;
  background-color: #f4f4f4;
  border-radius: 0;
  margin-bottom: 0.6rem;
  padding: 1rem;
  /* border-bottom: 1px solid var(--primary-color); */
}

.nav-pills .nav-link h3 {
  font-size: 22px;
}

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

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

.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;
  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 .accordion-item {
  border: none;
  border-bottom: 1px solid var(--light-gray);
}

#sidebarMenu a {
  text-decoration: none;
}

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

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

#sidebarMenu .accordion-button {
  width: 40px;
  padding: 10px;
  border: none;
  background-color: transparent;
  border-radius: 0 !important;
  color: var(--primary-color);
  transition: 0.2s ease-in-out;
}

#sidebarMenu .accordion-button::after {
  background-image: none;
}

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

#sidebarMenu .accordion-button[aria-expanded="true"] span.fa-plus::before {
  content: "\f068" !important;
}
#sidebarMenu .accordion-button:focus {
  box-shadow: none;
}

#sidebarMenu .accordion-body {
  padding: 1px;
  border: none;
}

#sidebarMenu .btn {
  text-align: left;
 /* padding-left: 12px; */
 padding: 8px 8px 8px 12px;
  border-radius: 0;
}
#sidebarMenu .btn:hover,
#sidebarMenu .btn:focus {
  color: var(--hilite-color) !important;
}

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

#sidebarMenu UL.sublinks li a {
  padding: 5px;
  padding-left: 20px;
}

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

#sidebarMenu UL.sublinks li a.active,
#sidebarMenu .accordion-item .btn.active {
  display: block;
  color: var(--primary-alt) !important;
  background-color: var(--light-gray);
  border: none;
  border-left: 4px solid var(--hilite-alt3);
}

#sidebarMenu .accordion-item .btn-group.active-parent {
  background-color: var(--primary-alt);
}
#sidebarMenu .accordion-item .btn-group.active-parent a,
#sidebarMenu .accordion-item .btn-group.active-parent .accordion-button {
  color: var(--white) !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: 5px solid var(--hilite-alt);
  /* border-radius: 4px; */
  margin-bottom: 50px;
  text-transform: uppercase;
}

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

/* Showcase elements - end */

/* cta box */
.cta-box.bg-primary .btn.btn-highlight:hover,
.cta-box.bg-primary .btn.btn-highlight:focus {
  background-color: var(--hilite-alt);
  color: var(--black);
}
.cta-box.bg-secondary .btn.btn-highlight,
.cta-box.bg-secondary-alt .btn.btn-highlight {
  background-color: var(--primary-color);
}

.cta-box.bg-secondary .btn.btn-highlight:hover,
.cta-box.bg-secondary .btn.btn-highlight:focus,
.cta-box.bg-secondary-alt .btn.btn-highlight:hover,
.cta-box.bg-secondary-alt .btn.btn-highlight:focus {
  background-color: var(--primary-dark);
}

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

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

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

/* 404 - end */

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

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

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

/* testimonial - end */

/* index hero - start */
.index-carousel .carousel-controllers {
  width: 160px;
  height: 50px;
  position: absolute;
  bottom: 50px;
  left: unset;
  right: 50px;
  align-items: center;
  justify-content: space-between;
}
.index-carousel .carousel-control-next,
.index-carousel .carousel-control-prev {
  width: 45px;
  height: 45px;
  opacity: 1;
  overflow: hidden;
  position: relative;
  margin: 3px;
}

.index-carousel .carousel-control-next span,
.index-carousel .carousel-control-prev span {
  background-color: var(--primary-color);
  padding: 22px;
  border: none;
}

.index-carousel .play-pause,
.index-carousel .play {
  position: relative;
  z-index: 3;
  color: var(--white);
  background-color: var(--primary-color);
  width: 45px;
  height: 45px;
  border: none;
}

.index-carousel .play-pause:hover,
.index-carousel .play-pause:focus,
.carousel-control-next span:hover,
.carousel-control-next span:focus,
.carousel-control-prev span:hover,
.carousel-control-prev span:focus {
  background-color: var(--hilite-color);
  color: var(--white);
}

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

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

.index-carousel .carousel-item .carousel-caption {
  bottom: 1vw;
  left: 1vw;
  max-width: 98vw;
  color: var(--white);
  text-align: left;
  padding: 24px;
  height: auto;
  width: fit-content;
  width: -moz-fit-content; /* Firefox */
  width: -webkit-fit-content; /* Safari, Chrome, and newer versions of Edge */
  width: -ms-fit-content; /* Older versions of Edge */
  background-color: rgba(0, 0, 0, 0.6);
}
.index-carousel .carousel-item .carousel-caption.full-width {
  width: 100%;
  bottom: 0;
  left: 0;
  max-width: none;
}
/* black rgba(0, 0, 0, 0.6) */
/* primary rgba(0, 112, 153, 0.7) */
/* green rgba(80, 167, 66, 0.7) */
/* white rgba(255, 255, 255, 0.7) */
.index-carousel .carousel-item .carousel-caption.bg-white {
  background-color: rgba(255, 255, 255, 0.8) !important;
  color: var(--black);
}
.index-carousel .carousel-item .carousel-caption.bg-primary {
  background-color: rgba(0, 112, 153, 0.8) !important;
  color: var(--white);
}

.index-carousel .carousel-item .carousel-caption.bg-secondary {
  background-color: rgba(80, 167, 66, 0.8) !important;
  color: var(--white);
}
.index-carousel .carousel-item .carousel-caption p,
.index-carousel .carousel-item .carousel-caption h2 {
  max-width: 800px;
}

.carousel .carousel-indicators button {
  border-radius: 50%;
  height: 12px;
  width: 12px;
}

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

.index-video .play-pause,
.index-video .play {
  position: absolute;
  z-index: 3;
  color: var(--white);
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  top: 620px;
  right: 50px;
  border: none;
  /* border-radius: 0.325rem; */
}

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

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

.index-video .video-caption {
  position: absolute;
  text-align: left;
  top: 480px;
  left: 50px;
  line-height: 30px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  color: var(--white);
  /* border-radius: 0.325rem; */
}

/* 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;
  position: relative;
  overflow: hidden;
  background-color: var(--black);
  color: white;
  font-weight: bold;
}

.section-with-background .title {
  color: var(--white);
  margin: 4rem auto 0 auto;
  font-weight: bold;
}

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

.section-with-background .card .icon,
.pathways .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,
.pathways .card .icon span {
  line-height: 2.25em;
  font-size: 0.65em;
  color: var(--white);
  text-align: center;
  display: block;
  font-weight: bold;
}

/* specific to pathways section */

.pathways .card .icon.pathways-icon {
  background-color: transparent;
  border-radius: none;
  width: 120px;
  height: 120px;
  top: -30px;
  transition: top 0.3s ease;
  overflow: hidden;
}

.pathways .card:hover .icon.pathways-icon {
  top: -60px;
}

.pathways .card {
  /* border: 4px solid var(--primary-color); */
  border-radius: 0px;
  padding-top: 64px;
  margin-bottom: 10px;
  color: white;
  background-blend-mode: overlay;
  background-color: rgba(69, 76, 96, 0.6);
  background-size: cover;
  background-position: center;
}
.pathways .card .card-body {
  padding: 0px;
}

.pathways .card h3 {
  font-size: 1.5rem;
}
.pathways .card-body h3 {
  transform: translateY(50px);
  /* border-bottom: 2px solid white; */
  transition: transform 0.3s ease, border-bottom 0.3s ease;
}
.pathways .card:hover h3 {
  border-bottom: 2px solid white;
  transform: translateY(0px);
}

.pathways .card .reveal-text {
  opacity: 0;
  transform: scaleY(0%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pathways .card:hover .reveal-text {
  opacity: 1;
  transform: scaleY(100%);
}

/* overriding the forced 50% button width on pathway grid buttons that is in the components XSL file */
.pathways a.w-50 {
width:auto!important;
}


/* specific to box-link section */
.section-with-background .col {
  padding: 0.5rem;
}
.section-with-background .box-link {
  width: 100%;
  min-height: 100px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: first baseline;
  background-color: rgba(122, 193, 66, 0.8);
  padding: 0.7rem;
  margin-bottom: 0.7rem;
  color: white;
  font-weight: bold;
  text-decoration: none;
}
.section-with-background .box-link:hover,
.section-with-background .box-link:focus {
  background-color: rgba(122, 193, 66, 1);
}
.section-with-background .box-link:hover span.fas,
.section-with-background .box-link:focus span.fas {
  transform: translateX(10px);
}

.section-with-background .box-link h3 {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.section-with-background .box-link p {
  color: var(--white);
  line-height: 1.2;

  transition: transform 0.3s ease;
}

.section-with-background .box-link span.fas {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

/* 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: 2px 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 a:hover img {
  border-color: var(--hilite-color);
}

/* cards-grid - end */
/* small events row */
div.important-dates {
  margin-top: 20px;
}
.fast-links .h4 {
  margin-bottom: 0;
}

.fast-links a .h4 {
  color: var(--primary-dark);
  font-weight: bold;
  text-decoration: none;
}
.fast-links a .h4:hover,
.fast-links a .h4:focus {
  color: var(--hilite-color);
}

div.important-dates > div.col {
  display: flex;
  flex-direction: row;
  justify-content: left;
  /* align-items: center; */
  background-color: white;
  width: 31.3%;
  margin-right: 1%;
  margin-left: 1%;
  padding-left: 0;
}

div.important-dates .sm-event-date-bg {
  background-color: var(--primary-color);
  color: var(--white);
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
  margin-right: 10px;
}

.important-dates .sm-event-date-bg .sm-event-month {
  font-size: 1rem;
}
.important-dates .sm-event-date-bg .sm-event-day {
  font-size: 1.4rem;
}

.important-dates .sm-event-text {
  padding-top: 10px;
}

form legend {
  font-size: 1.1rem;
}

table.table thead {
  background-color: var(--primary-color);
  color: white;
  vertical-align:middle;
 font-size:1.1em;
}

table.table thead td {
  padding:10px;
}

table.table thead p {
 margin-bottom:0;
}


table.table-divider tbody td {
  border-right: 1px solid #dee2e6;
}
table.table-divider tbody tr td:first-child {
  border-left: 1px solid #dee2e6;
}

/* 12/04/2023 */
/* UAT */
@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1440px;
  }
}