/*@import url("http://localhost:8080/customers/prairie/style.css");*/


@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  box-sizing: border-box; }

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 30px 30px; }

.flex {
  display: flex; }

:root {
  --flex-gap: 30px;
  /* Variable for gap */ }

.darkSection > .container {
  gap: var(--flex-gap);
  flex-wrap: wrap; }

.column-one-third {
  transition: all 0.3s;
  border-bottom: 0;
  --flex-items: 3;
  /* Variable for number of items */
  width: calc((100% / var(--flex-items)) - (((var(--flex-items) - 1) / var(--flex-items)) * var(--flex-gap))); }

@media (max-width: 1000px) {
  .column-one-third {
    --flex-items: 1;
    /* Variable for number of items */ } }
body {
  background: #f7f8fa;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 16px; }

header {
  background: #0a2d45; }
  header .container {
    gap: 40px;
    justify-content: space-between;
    align-items: center; }

.logo img {
  max-width: 400px;
  width: 100%;
  height: 100%; }

.menuSearch {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px; }
  .menuSearch ul {
    display: flex;
    gap: 10px; }

footer {
  background: #016699;
  color: #ffffff; }

.darkSection {
  background: #13607f;
  color: #ffffff; }

.quickLinks .ptl_portlet_vertical {
  overflow: visible; }

.ql-container a {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #000000;
  border-radius: 50%;
  justify-content: center;
  background: #ffffff;
  box-shadow: 1px 4px 16px -7px #0c2d45;
  text-decoration: none;
  padding: 20px;
  max-width: 120px;
  box-sizing: border-box;
  text-align: center;
  line-height: 1em;
  margin: 5px 5px 15px 5px;
  gap: 5px; }
  .ql-container a .icon {
    font-size: 32px; }

span.ql-title {
  font-size: 15px;
  line-height: 0.8em;
  display: block; }

.ql-container.slick-initialized.slick-slider {
  display: flex;
  gap: 40px;
  align-items: center; }

.ql-container button {
  width: 30px;
  display: flex !important;
  aspect-ratio: 1/1;
  height: 30px;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border: none;
  background: transparent;
  transition: all 0.3s; }
  .ql-container button:hover, .ql-container button:focus {
    color: #00a0dd; }

.whiteBox {
  background: #ffffff;
  box-shadow: 10px 10px 30px #0409431F;
  color: #000000;
  padding: 20px; }

.column-one-third:nth-child(1) .whiteBox {
  padding: 0; }

.titleArea .title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  padding: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  margin-bottom: 20px; }
  .titleArea .title h2 {
    font-size: 26px;
    margin: 0 0 10px; }
  .titleArea .title a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    font-size: 16px; }
    .titleArea .title a:hover {
      color: #ffffff;
      text-decoration: underline; }

.newsSection .title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  padding: 0;
  border-bottom: 2px solid #bcd4f3;
  margin-bottom: 20px; }
  .newsSection .title h2 {
    font-size: 26px;
    margin: 0 0 10px; }
  .newsSection .title a {
    color: #000000;
    text-decoration: none;
    font-weight: 300;
    font-size: 16px; }
    .newsSection .title a:hover {
      color: #000000;
      text-decoration: underline; }

.newsSection .ptl_portlet_vertical {
  overflow: visible; }

.rotate45CC {
  transform: rotate(-45deg); }

#news-summary {
  display: flex; }

.newsContainer {
  margin-bottom: 70px; }

.newsContainer > .container {
  max-width: 100%;
  padding-top: 0;
  gap: 17px;
  flex-grow: 1;
  align-items: stretch; }

.newsContainer > .container > div {
  flex-grow: 1;
  flex: 1 1 0; }

.newsContainer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%; }

.newItemsSingle li {
  height: 100%; }

.newsContent {
  padding: 17px; }

.newsContent i {
  position: absolute;
  bottom: 17px;
  right: 17px;
  font-weight: normal;
  color: #00a0dd;
  font-size: 1.8em;
  margin-left: 17px;
  transition: all 0.3s; }

.newsImage {
  min-height: 270px;
  background-size: cover;
  background-position: center center; }

.newsTitle {
  padding: 17px;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.5em;
  color: #015677; }

.newsItem {
  box-shadow: 10px 10px 30px #0409431F;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  margin-bottom: 17px;
  position: relative;
  text-decoration: none;
  transition: all 0.3s; }

.newsItem:hover {
  box-shadow: 10px 10px 30px #04094366;
  color: #040943;
  text-decoration: none; }

.newsItem:hover i.rotate45CC {
  transform: rotate(0deg);
  color: #0a2d45; }

:root {
  --flex-gaps: 1rem;
  /* Variable for gap */ }

#news-summary {
  gap: var(--flex-gaps);
  flex-wrap: wrap; }

.newsItem {
  border-bottom: 0;
  --flex-itemss: 4;
  /* Variable for number of items */
  width: calc((100% / var(--flex-itemss)) - (((var(--flex-itemss) - 1) / var(--flex-itemss)) * var(--flex-gaps))); }

@media (max-width: 1200px) {
  .newsItem {
    --flex-itemss: 2;
    /* Variable for number of items */ } }
@media (max-width: 800px) {
  .newsItem {
    --flex-itemss: 1;
    /* Variable for number of items */ } }
.welcome-section .image {
  width: 100%;
  height: 220px; }
.welcome-section .content {
  padding: 20px;
  font-size: 16px; }
.welcome-section a.read-more {
  padding: 5px 10px;
  display: inline-block;
  color: #ffffff;
  margin-top: 10px;
  background: #13607f;
  text-decoration: none;
  transition: all 0.3s; }
  .welcome-section a.read-more:hover, .welcome-section a.read-more:focus {
    background: #00a0dd; }

.event-container {
  display: flex;
  gap: 20px;
  align-items: center; }

.header-title {
  display: none; }

.events-list {
  display: flex;
  flex-direction: column;
  gap: 30px; }

a.event.cf {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s;
  padding: 5px 5px 5px 0; }
  a.event.cf:hover {
    background: #04a3de1c; }

.event-name {
  font-weight: 900; }

.event-date {
  color: #015677;
  font-size: 30px;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  line-height: 1em;
  text-align: center;
  text-transform: uppercase;
  border-left: 1px solid #04a3de;
  padding-left: 20px; }

.day {
  font-size: 42px; }

.event-info {
  display: flex;
  flex-direction: column;
  gap: 15px; }

.hero .bannerComponent .PO-banner .slider {
  max-width: 100% !important; }
.hero .bannerComponent .BAN_slide {
  height: 60vh;
  background-size: cover; }
.hero .bannerComponent .BAN_slide img {
  position: fixed;
  top: -10000px;
  left: -10000px; }
.hero .bannerComponent .BAN_controls {
  top: auto;
  bottom: 0;
  background: transparent; }

.social-tabs ul.headers {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  gap: 4px; }

.social-tabs ul.headers li {
  flex-grow: 1; }

.social-tabs ul.headers a {
  background: #00a0dd;
  color: #040943;
  display: block;
  width: 100%;
  line-height: 50px;
  text-align: center;
  font-size: 1.8em;
  position: relative; }

.social-tabs ul.headers a.active {
  background: #016699;
  color: #ffffff; }

.social-tabs ul.headers a.active:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0);
  content: '';
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 9px 0 9px;
  border-color: #016699 transparent transparent transparent; }

.social-tabs .tabs .tab-container {
  display: none; }

.social-tabs .tabs .tab-container.active {
  display: block; }

.sub-bg {
  height: 40vh;
  background-size: cover; }

.sub-bg:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #0a2d4596;
  background-position: center center;
  background-size: cover; }

.breadcrumbs {
  color: #000000;
  font-weight: 600;
  padding-bottom: 0; }
  .breadcrumbs a {
    color: #000000;
    font-weight: 600;
    text-decoration: none; }
    .breadcrumbs a:hover, .breadcrumbs a:focus {
      text-decoration: underline; }

#page > .container {
  gap: 20px; }

.main-content {
  background: #ffffff;
  padding: 40px; }

.sidebar {
  width: 40%;
  min-width: 300px;
  flex-basis: 300px;
  flex-grow: 0;
  flex-shrink: 0;
  }

.sidebar > div {
  background: #005677;
  padding: 15px; }

h2.pageTitle {
  border-bottom: 2px solid #bcd4f3;
  padding-bottom: 10px;
  font-size: 26px;
  margin: 0 0 10px; }

.sidebar .mobile-side-nav {
  display: none;
  background: #006991;
  margin-bottom: 10px;
  display: none;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  display: none;
  transition: all 200ms ease-in-out;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  color: #fff; }

.sidebar .mobile-side-nav .fa,
.sidebar .mobile-side-nav span {
  padding: 0 15px; }

.sidebar .mobile-side-nav span {
  font-weight: 600; }

.sidebar .mobile-side-nav.clicked, .sidebar .mobile-side-nav:hover {
  background: #00445e; }

@media screen and (max-width: 900px) {
  .sidebar .mobile-side-nav {
    display: -ms-flexbox;
    display: flex; } }
.topOptions {
  display: flex;
  align-items: center;
  gap: 20px; }

.menuSearch input {
  background: transparent;
  border: 2px solid #ffffff;
  padding: 5px;
  color: #ffffff;
  border-radius: 20px;
  font-size: 16px; }

.menuSearch .divSearchBox a {
  color: #ffffff;
  font-size: 16px;
  margin-left: 10px; }
  .menuSearch .divSearchBox a:after {
    content: '';
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.menuSearch img {
  position: fixed;
  top: -10000px;
  left: -10000px; }

.socialLinks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px; }

.socialLinks ul a {
  color: #ffffff;
  font-size: 20px; }

footer {
  padding-bottom: 15px; }
  footer .container {
    padding: 0 30px; }
  footer .address, footer .hours {
    line-height: 2em;
    padding-left: 45px;
    position: relative; }
  footer .address:after, footer .hours:after {
    color: #75acc8;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 40px !important; }
  footer .address:after {
    content: '';
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  footer .hours:after {
    content: '';
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  footer .container.flex {
    justify-content: space-between;
    align-items: center;
    gap: 20px; }
  footer .social {
    display: flex;
    justify-content: center;
    width: 100%; }
  footer .social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px; }
  footer .social ul a {
    color: #ffffff;
    font-size: 25px; }

.footerLinksCon ul {
  column-count: 2; }
  .footerLinksCon ul li {
    margin-bottom: 5px; }
  .footerLinksCon ul a {
    color: #ffffff;
    text-decoration: none; }
    .footerLinksCon ul a:hover {
      text-decoration: underline; }

@media (max-width: 1200px) {
  footer {
    padding: 20px 0; }

  footer > .container.flex {
    flex-direction: column; } }
@media (max-width: 1200px) {
  .footerInfo {
    flex-direction: column; } }
header > .container.flex {
  padding: 15px 30px; }

header .level1 > .sub-nav-group.category > li > div > a {
  font-weight: 600; }
header .nav-item > a {
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  margin: 0 0 -1px 0;
  border-bottom: 3px solid #0a2d45;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px; }
  header .nav-item > a:hover, header .nav-item > a.open {
    border-bottom: 3px solid #00a0dd; }
header .nav-item > a.open {
  background-color: transparent; }
header .level1 > ul {
  column-count: 3;
  width: 100%; }
header .sub-nav {
  background: #0a2d45e8;
  width: 90vw;
  right: 0%;
  left: auto;
  max-width: 1600px;
  padding: 20px 20px 20px 20px; }
header .sub-nav-group.category a {
  font-family: "Open Sans", sans-serif;
  text-decoration: none; }
header .sub-nav-group.category a:hover, header header .level1 > .sub-nav-group.category > li > div > a:hover {
  background: #00a0dd; }

body .sub-nav-group.category a {
  margin-bottom: 15px;
}

a#mobile-bar {
  color: #ffffff;
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  display: none;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1; }

@media (max-width: 1170px) {
  .megamenu {
    display: none; }

  a#mobile-bar {
    display: flex; }

  header .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: 100%; }

  header > .container.flex {
    padding: 15px 30px;
    flex-direction: column-reverse;
    gap: 0; }

  .menuSearch {
    background: #213257;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0;
    padding: 5px; }

  .topOptions {
    justify-content: space-between;
    width: 100%; }

  header > .container.flex {
    padding: 0; } }
.hero {
  position: relative; }
  .hero .BAN_slide:after {
    content: '';
    display: block;
    background: #0a2d4596;
    width: 100%;
    height: 100%; }

.heroTitle {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 3000;
  text-align: center; }

.heroTitle.top {
 top: 30px;
}

.heroTitle.bottom {
 bottom: 30px;
}

.heroTitle h1 {
  color: #00a0dd;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 40px;
  letter-spacing: 4px;
  margin: 0; }

.heroTitle h2 {
  color: #ffffff;
  font-size: 85px;
  margin: 0; }

@media (max-width: 900px) {
  #subpage #page > .container {
    flex-direction: column; }
    #subpage #page > .container .sidebar {
      max-width: 100%;
      width: 100%; } }




.hero-banner .video {
    position: relative;
    height: 40vw;
    max-height: 600px;
    pointer-events: none
}

.hero-banner .video iframe {
    height: 43vw;
    max-height: 600px;
    position: relative;
    pointer-events: none
}

@media (max-width: 725px) {
.heroTitle h1 { font-size: 20px; }
.heroTitle h2 { font-size: 65px; }
}

.fa-twitter:before {
content: '𝕏' !important;
}

a.navLink {
    display: block;
    padding: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s
}

.currentpage a.navLink {
    font-weight: 700;
    background: #ffffff;
    color: #000000;
}

a.navLink:hover {
    font-weight: 700;
    background: #ffffff;
    color: #000000;
}

.dragAndDropEnabled .hero:after {
 display: none;
}

.header-buttons a {
    display: inline-block;
    padding: 7px 15px;
    text-decoration: none;
    background: #fff;
    color: #000;
    border-radius: 50px;
    transition: all 200ms ease-in-out;
}

.header-buttons a:last-child {
    margin-left: 10px;
}

.header-buttons a:hover, .header-buttons a:focus {
    background: #071e2d;
    color: #fff;
}

@media screen and (max-width: 1170px) {
.header-buttons {
padding: 10px; 
}
}


#page.no-sidenav .sidebar {
    display: none;
}

#page.no-sidenav .main-content {
    width: 100%;
}


.sidebar .ptl_col_1 {
    display: none;
}

.sidebar .mobile-side-nav {
    margin: 0;
}

@media screen and (min-width: 901px) {
    .sidebar .ptl_col_1 {
    display: block !important;
}
}

@media screen and (max-width: 900px) {
    .sidebar {
    min-height: auto;
    flex-basis: auto;
}
}
