.accordion {
  position: relative;
  background-color: transparent;
}
.accordion .accordion-item {
  background-color: transparent;
  margin-bottom: 10px;
  border: 0;
}
.accordion .accordion-header {
  background-color: transparent;
}
.accordion .accordion-header .accordion-button {
  position: relative;
  background-color: #fff;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 62px;
  padding-right: 10px;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #2c234e;
  box-shadow: none;
  transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
}
.accordion .accordion-header .accordion-button:not(.collapsed) {
  background-color: #EFFCFF;
}
.accordion .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("../assets/images/garnish/accordion-open.svg");
}
.accordion .accordion-header .accordion-button:hover {
  background-color: #DFDFDF;
}
.accordion .accordion-header .accordion-button:focus {
  outline: 3px solid #2c234e;
}
.accordion .accordion-header .accordion-button::after {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 43px;
  background-size: cover;
  background-image: url("../assets/images/garnish/accordion-close.svg");
  transition: background-image 150ms ease-in-out;
}
.accordion .accordion-body {
  background-color: #fff;
}
.accordion .accordion-body p {
  font-size: 1rem;
  margin-bottom: 10px;
}
.accordion .accordion-body p:last-child {
  margin-bottom: 0;
}
.accordion .accordion-body .sub-heading {
  font-size: 1.125rem;
  color: #2c234e;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 10px;
}

.blurb {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  margin-bottom: 10px;
}
.blurb:last-child {
  margin-bottom: 0px;
}
.blurb.border-left {
  border-left: 10px solid #333;
}
.blurb.border-left.yellow {
  border-color: #EFC818;
}
.blurb.border-left.green {
  border-color: #54A44C;
}
.blurb.border-left.blue {
  border-color: #0F6DAE;
}
.blurb.border-left.teal {
  border-color: #4398B5;
}

.calendar {
  position: relative;
}
.calendar .calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.calendar .calendar-header h3 {
  color: #0B436A;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .calendar .calendar-header h3 {
    font-size: 2.25rem;
  }
}
.calendar .calendar-header .nav-btn {
  background-color: #0F6DAE;
  color: #fff;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background-color 150ms ease-in-out;
}
@media (min-width: 992px) {
  .calendar .calendar-header .nav-btn {
    width: 50px;
    height: 50px;
  }
}
.calendar .calendar-header .nav-btn:hover {
  cursor: pointer;
  background-color: #0B436A;
}
.calendar .calendar-table {
  width: 100%;
  border: 1px solid #333;
  background-color: #fff;
}
.calendar .calendar-table tr {
  border-bottom: 1px solid #333;
}
.calendar .calendar-table tr:last-child {
  border-bottom: 0;
}
.calendar .calendar-table th {
  color: #fff;
  background-color: #0F6DAE;
  padding: 5px;
  font-size: 0.8rem;
  border-right: 1px solid #333;
  width: 14.2857142857%;
}
.calendar .calendar-table th:last-child {
  border-right: 0;
}
@media (min-width: 992px) {
  .calendar .calendar-table th {
    font-size: 1.3125rem;
    padding: 10px;
  }
}
.calendar .calendar-table td {
  padding: 5px;
  text-align: right;
  vertical-align: top;
  color: #0B436A;
  font-weight: 700;
  font-size: 0.8rem;
  border-right: 1px solid #333;
  height: 50px;
}
.calendar .calendar-table td:last-child {
  border-right: 0;
}
@media (min-width: 992px) {
  .calendar .calendar-table td {
    padding: 10px;
    font-size: 1.3125rem;
    height: 150px;
  }
}
.calendar .event-modal-btn {
  background-color: #EFC818;
  border: 0;
  font-weight: 600;
  font-size: 0.75rem;
  width: 100%;
  margin-top: 5px;
  padding: 5px;
  color: #333;
}
.calendar .event-modal-btn:hover {
  background-color: #BFA116;
}
@media (min-width: 992px) {
  .calendar .event-modal-btn {
    font-size: 0.9rem;
    padding: 10px;
  }
}

.card {
  position: relative;
  border: 0;
  border-radius: 0;
}
.card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .card h4 {
    font-size: 1.4375rem;
  }
}
.card p {
  font-size: 1rem;
}
.card p strong {
  font-weight: 600;
}
@media (min-width: 992px) {
  .card p {
    font-size: 1.15rem;
  }
}
.card .main {
  padding: 25px 20px;
}
.card .sub {
  padding: 15px 20px;
}
.card .sub p {
  font-size: 0.8rem;
}
@media (min-width: 992px) {
  .card .sub p {
    font-size: 0.9rem;
  }
}

.comment-map-container {
  display: block;
  position: relative;
}
.comment-map-container .comment-map-iframe {
  width: 100%;
  height: 350px;
}
@media (min-width: 992px) {
  .comment-map-container .comment-map-iframe {
    height: 720px;
  }
}

.contact-card {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #0B436A;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
}
.contact-card .contact-name {
  color: #EFC818;
  font-size: 1.35rem;
  font-style: normal;
  font-weight: 700;
  line-height: 162.49%;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .contact-card .contact-name {
    font-size: 1.5rem;
  }
}
.contact-card .contact-name i {
  font-size: 2rem;
  color: #fff;
  display: inline-block;
  margin-right: 12px;
}
.contact-card a {
  color: #fff;
}
.contact-card a:hover {
  color: #EFC818;
}

.document-block {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #333;
}
.document-block:last-child {
  margin-bottom: 0;
}
.document-block .title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  padding-left: 45px;
}
.document-block .title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 26px;
  height: 34px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .document-block .title {
    font-size: 1.4375rem;
  }
}
@media (min-width: 992px) {
  .document-block .content {
    display: flex;
    align-items: center;
  }
  .document-block .content p {
    flex: 1;
    margin-right: 20px;
  }
}

.document-link {
  position: relative;
  display: block;
  font-size: 1rem;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  padding-right: 30px;
  margin-bottom: 20px;
  transition: color 150ms ease-in-out, border-color 150ms ease-in-out;
  font-weight: 600;
  text-decoration: none;
  color: #0F6DAE;
  border-bottom: 2px dashed #0F6DAE;
}
.document-link:hover {
  text-decoration: none;
  color: #0B436A;
  border-color: #0B436A;
}
.document-link:hover::before, .document-link:hover::after {
  color: #0B436A;
}
.document-link::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f15b";
  position: absolute;
  top: 50%;
  left: 0;
  font-weight: 300;
  transform: translateY(-50%);
  font-size: 2.125rem;
  color: #0F6DAE;
  transition: color 150ms ease-in-out;
}
.document-link::after {
  font-family: "Font Awesome 6 Pro";
  content: "\f063";
  position: absolute;
  top: 50%;
  right: 0;
  font-weight: 400;
  transform: translateY(-50%);
  font-size: 1.6875rem;
  color: #0F6DAE;
  transition: color 150ms ease-in-out;
}
.document-link.alt {
  text-decoration: underline;
}
.document-link.alt::before {
  content: "\f0c1";
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  .document-link {
    font-size: 1.25rem;
  }
}

.events-block {
  display: block;
}
.events-block .events-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 -10px;
}
.events-block .events-row .event-col {
  flex: 1;
  padding: 0 10px;
  margin-bottom: 20px;
}

.event-card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #4398B5;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.event-card h1,
.event-card h2,
.event-card h3,
.event-card h4,
.event-card h5,
.event-card h6,
.event-card p,
.event-card li {
  color: #fff;
}
.event-card p {
  margin-bottom: 2px;
}
.event-card .top-content {
  width: 100%;
  padding: 25px 15px;
  background-color: #0B436A;
  text-align: center;
}
.event-card .top-content .event-title {
  margin-bottom: 5px;
  font-size: 1.4375rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #fff;
}
.event-card .top-content .time {
  display: block;
  margin-top: 2px;
}
.event-card .top-content .calendar-icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  width: 54px;
  height: auto;
}
.event-card .bottom-content {
  width: 100%;
  padding: 15px;
  background-color: #4398B5;
}
.event-card .bottom-content p {
  font-size: 1rem;
}

.featured-meeting .event-card {
  max-width: 600px;
  margin-left: 0;
}

.event-modal .modal-dialog {
  max-width: 960px;
}
.event-modal .modal-header {
  background-color: #0F6DAE;
  color: #fff;
  padding: 15px;
}
@media (min-width: 992px) {
  .event-modal .modal-header {
    padding: 20px 30px;
  }
}
.event-modal .modal-header .modal-title {
  text-transform: uppercase;
}
.event-modal .modal-header .btn-close {
  filter: invert(100%);
}
.event-modal .modal-body {
  padding: 20px 15px;
}
@media (min-width: 992px) {
  .event-modal .modal-body {
    padding: 30px;
  }
}
.event-modal .modal-body h4 {
  margin-bottom: 15px;
  color: #0B436A;
}
.event-modal .modal-footer .btn {
  background-color: #0B436A;
  border: 0;
  transition: filter 150ms ease-in-out;
  font-weight: 600;
}
.event-modal .modal-footer .btn:hover {
  filter: brightness(80%);
}

.footer {
  position: relative;
  z-index: 5;
}
.footer .main-footer {
  padding: 40px 0;
  background-color: #0B436A;
  color: #fff;
}
.footer .main-footer h2 {
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footer .container-xl {
  max-width: 650px;
}
@media (min-width: 992px) {
  .footer .container-xl {
    max-width: 1362px;
  }
}
.footer .navbar-nav {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.footer .navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 10px;
  transition: color 150ms ease-in-out;
  font-weight: 600;
}
@media (min-width: 992px) {
  .footer .navbar-nav .nav-link {
    font-size: 1.125rem;
    text-align: end;
  }
}
.footer .navbar-nav .nav-link:hover {
  text-decoration: underline;
  color: #EFC818;
}
.footer .logos-container {
  display: block;
  width: 100%;
  max-width: 190px;
}
.footer .logos-container .logo {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}
.footer .mailing-list-container {
  display: block;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 992px) {
  .footer .mailing-list-container {
    max-width: 320px;
  }
}
.footer .sub-footer {
  padding: 12px 0;
  background-color: #4398B5;
  font-size: 1rem;
  color: #fff;
}
.footer .sub-footer p {
  font-weight: 400;
}
.footer .sub-footer .back-to-top-btn {
  padding: 5px;
  border: 0;
  font-size: 1.15rem;
  transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
  font-weight: 400;
  background-color: transparent;
  color: #fff;
}
.footer .sub-footer .back-to-top-btn:hover {
  cursor: pointer;
  background-color: #0B436A;
}
.footer .dashed-border-end {
  position: relative;
}
.footer .dashed-border-end::after {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-image: url("../assets/images/garnish/dashed-border-white.svg");
  background-size: cover;
  background-repeat: repeat;
}
@media (min-width: 992px) {
  .footer .dashed-border-end::after {
    display: block;
  }
}
.footer .contact-item {
  padding-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  border-bottom: 1px solid #fff;
}
.footer .contact-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.footer .contact-item .name {
  display: block;
  margin-bottom: 5px;
}
.footer .contact-item .links .link {
  display: inline-block;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 20px;
  transition: color 150ms ease-in-out;
}
.footer .contact-item .links .link:hover {
  color: #EFC818;
}
.footer .contact-item .links .link:last-of-type {
  margin-right: 0;
}
.footer .contact-item .links .link .icon {
  height: 27px;
  width: auto;
  margin-right: 10px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
.header.scrolling .header-content .bottom-banner,
.header.scrolling .header-content .top-banner {
  height: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}
.header.scrolling .header-content .navbar .project-logo {
  width: 150px;
}
.header.scrolling .header-content .navbar .nav-link {
  font-size: 1rem;
}
.header .top-banner {
  background-color: #EFC818;
  padding: 12px 0;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  height: auto;
  transition: all 150ms ease-in-out;
}
.header .top-banner a {
  color: #0B436A;
  font-weight: 600;
  transition: filter 150ms ease-in-out;
}
.header .top-banner a:hover {
  filter: brightness(80%);
}
.header .top-banner .text {
  color: #333;
  font-size: 1rem;
}
.header .top-banner .icon {
  width: 50px;
  height: auto;
  margin-right: 20px;
  filter: invert(1);
}
.header .header-content {
  position: relative;
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.25);
  z-index: 5;
  border-bottom: 10px solid #EFC818;
}
.header .header-content #google_translate_element2 {
  display: none;
}
.header .header-content .navbar {
  background-color: #0B436A;
  padding: 15px 0;
}
@media (min-width: 992px) {
  .header .header-content .navbar {
    padding: 25px 0;
  }
}
.header .header-content .navbar .navbar-toggler:focus {
  box-shadow: none;
  border-color: #fff;
}
.header .header-content .navbar .navbar-toggler-icon {
  filter: invert(1);
}
.header .header-content .navbar .dropdown-menu {
  padding-top: 10px;
  width: 100%;
  border: 0;
  border-radius: 0;
  z-index: 5;
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.25);
}
.header .header-content .navbar .project-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-right: 5px;
  transition: width 150ms ease-in-out;
}
@media (min-width: 992px) {
  .header .header-content .navbar .project-logo {
    max-width: 360px;
  }
}
.header .header-content .navbar .nav-item {
  display: flex;
  align-items: end;
}
.header .header-content .navbar .nav-item.dropdown {
  display: block;
}
@media (min-width: 992px) {
  .header .header-content .navbar .nav-item {
    margin-bottom: 0;
  }
  .header .header-content .navbar .nav-item.dropdown {
    display: flex;
  }
}
.header .header-content .navbar .nav-link {
  font-size: 1rem;
  font-weight: 600;
  transition: color 150ms ease-in-out;
  margin-bottom: 10px;
  color: #fff;
  transition: color 150ms ease-in-out, font-size 150ms ease-in-out;
}
@media (min-width: 992px) {
  .header .header-content .navbar .nav-link {
    font-size: 1.3125rem;
    margin: 0 10px;
    margin-bottom: 2px;
  }
}
.header .header-content .navbar .nav-link:hover {
  color: #DFDFDF;
  text-decoration: none;
}
.header .header-content .navbar .nav-link.active {
  border-bottom: 2px solid #EFC818;
  margin-bottom: 0;
}
.header .header-content .navbar .navbar-nav {
  padding-top: 30px;
}
@media (min-width: 992px) {
  .header .header-content .navbar .navbar-nav {
    padding-top: 0;
  }
}
.header .bottom-banner {
  background-color: #EFC818;
  padding: 8px 0;
  font-size: 1rem;
  color: #2c234e;
  font-weight: 700;
  height: auto;
  transition: all 150ms ease-in-out;
}
.header .bottom-banner a {
  font-weight: 400;
  color: #2c234e;
}
.header .bottom-banner .icon {
  width: 50px;
  height: auto;
  margin-right: 20px;
}

.hero {
  position: relative;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0) 15.13%, rgba(0, 0, 0, 0.48) 96.04%), lightgray -285.536px -791.347px/139.658% 252.426% no-repeat;
  background-blend-mode: multiply, normal;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
  padding: 75px 0;
}
@media (min-width: 992px) {
  .hero {
    padding: 150px 0;
  }
}
.hero.bg-top {
  background-position: top;
}
.hero.bg-bottom {
  background-position: bottom;
}
.hero.home .copy-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  background: rgba(0, 0, 0, 0.56);
  background-blend-mode: multiply;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
  backdrop-filter: blur(7.3499999046px);
}
@media (min-width: 992px) {
  .hero.home .copy-container {
    flex-wrap: nowrap;
  }
}
.hero.home .copy-container::after {
  display: none;
}
.hero.home .copy-container .copy {
  padding: 30px;
}
@media (min-width: 992px) {
  .hero.home .copy-container .copy {
    padding: 50px;
    padding-top: 30px;
  }
}
.hero.home .icon-container {
  width: 100%;
  padding: 10px;
  background-color: #EFC818;
  z-index: 2;
  text-align: center;
}
@media (min-width: 992px) {
  .hero.home .icon-container {
    width: 160px;
    min-width: 160px;
    padding: 30px 50px;
  }
}
.hero.home .icon-container .icon {
  margin: 10px;
}
@media (min-width: 992px) {
  .hero.home .icon-container .icon {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .hero.home .icon-container .icon:last-child {
    margin-bottom: 0;
  }
}
.hero .copy-container {
  background-blend-mode: multiply;
  backdrop-filter: blur(7.3499999046px);
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 30px;
}
.hero .copy-container::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 10000px;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.56);
  background-blend-mode: multiply;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
  backdrop-filter: blur(7.3499999046px);
}
.hero .copy-container .copy {
  border-left: 10px solid #EFC818;
  padding-left: 15px;
  color: #fff;
  z-index: 2;
}
.hero .copy-container .copy p {
  font-size: 1.15rem;
}
.hero .copy-container .copy p:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .hero .copy-container .copy p {
    font-size: 1.375rem;
  }
}

.image-and-copy-section {
  position: relative;
  overflow: hidden;
}
.image-and-copy-section .content-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.image-and-copy-section .img-col {
  width: 100%;
  height: 275px;
}
@media (min-width: 992px) {
  .image-and-copy-section .img-col {
    width: 50%;
    height: auto;
  }
}
.image-and-copy-section .copy-col {
  width: 100%;
}
@media (min-width: 992px) {
  .image-and-copy-section .copy-col {
    width: 50%;
    height: auto;
  }
}
.image-and-copy-section .copy-col .copy-container {
  width: 100%;
  padding: 50px 20px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .image-and-copy-section .copy-col .copy-container {
    max-width: 580px;
    margin-right: 0;
    padding: 100px 40px;
  }
}

/* LIGHTBOX */
#lightbox {
  height: 0%;
  position: fixed;
  top: -100%;
  transition: top 0.85s, height 0.5s;
  width: 100%;
  z-index: 500;
}
#lightbox > span {
  background-color: rgba(35, 35, 35, 0.8);
  cursor: pointer;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
#lightbox > span span {
  color: #fff;
  font-size: 3.6em;
  line-height: 0.4em;
  padding: 15px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
#lightbox div {
  box-shadow: 0 8px 15px 0 #000;
  margin: -120px auto 0;
  max-height: 80%;
  overflow: auto;
  position: relative;
  transform: rotateX(90deg) translateY(-160px);
  transition: 0.24s;
  width: 88%;
}
#lightbox img {
  display: block;
  width: 100%;
  min-width: 600px;
  padding: 20px;
  background-color: #fff;
}
#lightbox.no-min-width img {
  min-width: 0 !important;
}
#lightbox.on {
  top: 0;
  height: 100%;
}
#lightbox.on div {
  margin-top: 65px;
  transition: 0.8s ease-out 0.32s;
  transform: rotateX(0deg) translateY(0px);
}

.lightbox {
  transition: filter 150ms ease-in-out;
}
.lightbox:hover {
  cursor: pointer;
  filter: brightness(80%);
}

.standard-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background-color: #fff;
}
@media (min-width: 992px) {
  .standard-section {
    padding: 100px 0;
  }
}
.standard-section.with-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.standard-section.with-bg.botton {
  background-position: bottom;
}
.standard-section.with-bg.top {
  background-position: top;
}
.standard-section.opacity-blend {
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
}
.standard-section h2 {
  color: #0B436A;
}

.timeline-block {
  display: block;
}
.timeline-block .timeline-item {
  margin-bottom: 20px;
}
.timeline-block .timeline-item .title {
  display: inline-block;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 7px 30px 10px 20px;
  border-radius: 0px 30px 30px 0px;
  background-color: #DFDFDF;
  color: #2c234e;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .timeline-block .timeline-item .title {
    font-size: 1.75rem;
  }
}

.video-embed {
  position: relative;
  padding-bottom: 50%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
}
.video-embed iframe, .video-embed object, .video-embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

video {
  display: block;
  margin-bottom: 48px;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-size: 16px;
  margin: 0;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  color: #414141;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

h1 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 162.49%;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  h1 {
    font-size: 3.25rem;
  }
}

h2 {
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 162.49%;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  h2 {
    font-size: 2.25rem;
    margin-bottom: 30px;
  }
}

h3 {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  h3 {
    font-size: 1.4375rem;
  }
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}

p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 160%;
}
p:last-child {
  margin-bottom: 0;
}
p.large {
  font-size: 1.15rem;
}
@media (min-width: 992px) {
  p {
    font-size: 1rem;
  }
  p.large {
    font-size: 1.15rem !important;
  }
}
p a {
  font-weight: 500;
  text-decoration: underline;
  transition: color 150ms ease-in-out;
}
p a:hover {
  text-decoration: underline;
}

a.unstyled {
  text-decoration: none;
}
a.unstyled:hover {
  text-decoration: underline;
}
a img {
  transition: filter 300ms ease-in-out;
}
a:hover img {
  filter: brightness(80%);
  background-color: #fff;
}
a[href="#"] {
  color: #D30000;
  border-color: #D30000;
}
a[href="#"]::before, a[href="#"]::after {
  color: #D30000;
}

ul {
  margin-bottom: 30px;
}
ul.unstyled {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  ul {
    margin-bottom: 20px;
  }
}

li {
  font-size: 1rem;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  li {
    font-size: 1.15rem;
  }
}
li a {
  font-weight: 600;
  transition: color 150ms ease-in-out;
}
hr {
  margin: 20px 0;
  opacity: 1;
  border-color: #2c234e;
}
@media (min-width: 992px) {
  hr {
    margin: 40px 0;
  }
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.font-color-black {
  color: #333 !important;
}

.font-color-white {
  color: #fff !important;
}

.font-color-dark-blue {
  color: #0B436A !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-lighter-gray {
  background-color: #f0f3f2 !important;
}

.bg-light-gray {
  background-color: #DFDFDF !important;
}

.bg-dark-blue {
  background-color: #0B436A !important;
}

.bg-light-blue {
  background-color: #D4EEFF !important;
}

.bg-lighter-blue {
  background-color: #EFFCFF !important;
}

.bg-green {
  background-color: #54A44C !important;
}

.bg-dark-green {
  background-color: #3E7538 !important;
}

.bg-light-green {
  background-color: #E0FFDD !important;
}

.bg-purple {
  background-color: #735cdd !important;
}

.bg-dark-purple {
  background-color: #2c234e !important;
}

.btn-link {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
  margin: 5px 0;
}
.btn-link:hover {
  cursor: pointer;
  color: #333;
}
@media (min-width: 992px) {
  .btn-link {
    font-size: 1.15rem;
  }
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
  padding: 0px 20px;
}
@media (min-width: 992px) {
  .container {
    padding: 0px 40px;
    max-width: 1160px;
  }
  .container.thirds {
    max-width: 853.3333333333px;
    margin-left: 0;
  }
}
.container img {
  max-width: 100%;
  height: auto;
}

.container-xl {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1362px;
  padding: 0px 20px;
}
@media (min-width: 992px) {
  .container-xl {
    padding: 0px 40px;
  }
}

.img-full {
  width: 100%;
  height: auto;
}

.img-fill {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

figure img {
  border: 2px solid #fff;
}
figure figcaption {
  font-size: 1rem;
  margin-top: 10px;
}
@media (min-width: 992px) {
  figure figcaption {
    font-size: 1.15rem;
  }
}

.bordered {
  border: 3px solid #333;
}

.icon-and-text {
  display: flex;
  align-items: center;
}
.icon-and-text .icon {
  margin-right: 20px;
}
.icon-and-text .text {
  flex: 1;
}

.past-event-no-link {
  position: relative;
  display: block;
  font-size: 1rem;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  border-bottom: 2px dashed #333;
}
@media (min-width: 992px) {
  .past-event-no-link {
    font-size: 1.25rem;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22sass/blocks/accordion.scss%22,%22sass/_variables.scss%22,%22sass/blocks/blurb.scss%22,%22sass/blocks/calendar.scss%22,%22sass/blocks/card.scss%22,%22sass/blocks/comment-map-iframe.scss%22,%22sass/blocks/contact-card.scss%22,%22sass/blocks/document-block.scss%22,%22sass/blocks/document-link.scss%22,%22sass/blocks/event-block.scss%22,%22sass/blocks/event-card.scss%22,%22sass/blocks/event-modal.scss%22,%22sass/blocks/footer.scss%22,%22sass/blocks/header.scss%22,%22sass/blocks/hero.scss%22,%22sass/blocks/image-and-copy-section.scss%22,%22sass/blocks/lightbox.scss%22,%22sass/blocks/standard-section.scss%22,%22sass/blocks/timeline-block.scss%22,%22sass/blocks/video-embed.scss%22,%22sass/_global.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;EACC;EACA;;AAEA;EACC;EACM;EACA;;AAGP;EACC;;AAEA;EACC;EACA,kBCNK;EDOL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACS,OCaE;EDZX;EACA;;AAEA;EACC,kBCVW;;ADWX;EACC;;AAIF;EACC,kBCxBS;;AD2BD;EACI;;AAGb;EACC;EACA;EACA;EACY;EACZ;EACA;EACA;EACA;EACA;;AAKH;EACC,kBCjDM;;ADmDN;EACU;EACA;;AACT;EACC;;AAIF;EACC;EACS,OCjCE;EDkCX;EACA;EACA;;;AEzEH;EACI;EACA;EACA;EACA;EACA,kBDII;ECHJ;;AAEA;EACI;;AAGJ;EACI;;AAEA;EACI,cDSH;;ACPD;EACI,cDEJ;;ACAA;EACI,cDNL;;ACQC;EACI,cDQL;;;AEjCP;EACI;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI,OFOA;EENA;EACA;EACA;EACA;;AAEA;EAPJ;IAQQ;;;AAIR;EACI,kBFNL;EEOK,OFdJ;EEeI;EACA;EACA;EACA;EACA;;AAEA;EATJ;IAUQ;IACA;;;AAGJ;EACI;EACA,kBFpBJ;;AEyBR;EACI;EACA;EACA,kBFpCA;;AEsCA;EACI;;AACA;EACI;;AAIR;EACI,OF9CJ;EE+CI,kBFxCL;EEyCK;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EAZJ;IAaQ;IACA;;;AAIR;EACI;EACA;EACA;EACA,OF3DA;EE4DA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EAdJ;IAeQ;IACA;IACA;;;AAKZ;EACI,kBFtEC;EEuED;EACA;EACA;EACA;EACA;EACA;EACA,OF9FA;;AE+FA;EACI,kBF9EE;;AEiFN;EAbJ;IAcQ;IACA;;;;AC7GZ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AACA;EAJJ;IAKQ;;;AAIR;EACI;;AAEA;EACI;;AAGJ;EAPJ;IAQQ;;;AAIR;EACI;;AAGJ;EACI;;AACA;EACI;;AACA;EAFJ;IAGQ;;;;ACnChB;EACI;EACA;;AAEA;EACI;EACA;;AACA;EAHJ;IAIQ;;;;ACRZ;EACC;EACA;EACA;EACA;EACA,kBLYW;EKXX,OLGO;EKFP;EACA;;AAEA;EACC,OLcO;EKbP;EACA;EACA;EACA;EACA;;AAEM;EARP;IASW;;;AAGV;EACC;EACA,OLfK;EKgBL;EACA;;AAIC;EACI,OLtBA;;AKwBA;EACI,OLTH;;;AMzBT;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;;AAGJ;EArBJ;IAsBQ;;;AAKJ;EADJ;IAEQ;IACA;;EAEA;IACI;IACA;;;;AC3ChB;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,OPIM;EOHN;;AAEA;EACC;EACA;EACA,cPDU;;AOGV;EAEC,OPLS;;AOSX;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,OPnBK;EOoBL;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,OPhCK;EOiCL;;AAGE;EACI;;AACA;EACI;EACA;;AAIX;EA5DD;IA6DE;;;;AC7DF;EACC;;AAEA;EACC;EACA;EACM;EACA;;AAEA;EACI;EACA;EACA;;;ACZZ;EACC;EACA;EACA;EACA;EACA;EACG;EACA;EACA;EACH,kBTwBM;ESvBN,OTDO;ESEP;EACA;;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQC,OTbM;;ASgBP;EACC;;AAGD;EACC;EACA;EACA,kBTfU;ESgBV;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA,OThCK;;ASmCN;EACC;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;;AAIF;EACC;EACA;EACA,kBT7BK;;AS+BL;EACC;;;AAMC;EACI;EACA;;;ACvEJ;EACI;;AAGJ;EACI,kBVSD;EURC,OVCA;EUAA;;AAEA;EALJ;IAMQ;;;AAGJ;EACI;;AAGJ;EACI;;AAIR;EACI;;AAEA;EAHJ;IAIQ;;;AAGJ;EACI;EACA,OVhBA;;AUoBR;EACI,kBVrBI;EUsBJ;EACA;EACA;;AACA;EACI;;;AC3CZ;EACC;EACA;;AAEA;EACC;EACA,kBXWU;EWVV,OXEM;;AWDN;EACC;EACA;EACA;EACA;;AAIF;EACC,WXyC2B;;AWvC3B;EAHD;IAIE,WXyCsB;;;AWrCxB;EACC;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;;AAEA;EAPD;IAQE;IACA;;;AAGD;EACC;EACA,OXlBK;;AWuBR;EACC;EACA;EACA;;AAEA;EACC;EACA;EACA;;AAIF;EACC;EACA;EACA;;AAEA;EALD;IAME;;;AAIF;EACC;EACA,kBXvCK;EWwCL;EACA,OXjEM;;AWmEN;EACC;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA,OX9EK;;AWgFL;EACC;EACA,kBX1EQ;;AW+EX;EACC;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZD;IAaE;;;AAKH;EACC;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;;AAGD;EACC;EACA;;AAIA;EACC;EACA,OXhII;EWiIJ;EACA;EACA;EACA;;AAEA;EACC,OXvHI;;AW0HL;EACC;;AAGD;EACC;EACA;EACA;;;AC1JL;EACC;EACA;EACA;EACA;EACA;;AAIE;AAAA;EAEC;EACA;EACA;EACA;;AAIA;EACC;;AAGD;EACC;;AAMJ;EACC,kBZLO;EYMP;EACA;EACA,OZzBM;EY0BN;EACA;EACA;;AAEA;EACC,OZNI;EYOJ;EACA;;AACA;EACC;;AAIF;EACC,OZxCK;EYyCL;;AAGD;EACC;EACA;EACA;EACA;;AAIF;EACC;EACA;EACA;EACA;;AAEA;EACC;;AAED;EACC,kBZrDS;EYsDT;;AAEA;EAJD;IAKE;;;AAIA;EACC;EACA,cZvEG;;AY2EL;EACC;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;;AAEA;EAPD;IAQE;;;AAIF;EACC;EACA;;AAEA;EACC;;AAGD;EARD;IASE;;EAEA;IACC;;;AAKH;EACC;EACA;EACA;EACA;EACA,OZ1HI;EY2HJ;;AACA;EAPD;IAQE;IACA;IACA;;;AAGD;EACC,OZhIQ;EYiIR;;AAGD;EACC;EACA;;AAIF;EACC;;AACA;EAFD;IAGE;;;AAMJ;EACC,kBZvIO;EYwIP;EACA;EACA,OZ9HY;EY+HZ;EACA;EACA;;AAEA;EACC;EACA,OZrIW;;AYwIZ;EACC;EACA;EACA;;;AChLH;EACC;EACA;EAOA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAhBD;IAiBE;;;AAGE;EACI;;AAGJ;EACI;;AAIN;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATD;IAUE;;;AAGD;EACC;;AAGD;EACC;;AAEA;EAHD;IAIE;IACA;;;AAKH;EACC;EACA;EACA,kBblCM;EamCN;EACA;;AAEA;EAPD;IAQE;IACA;IACY;;;AAEb;EACC;;AAEA;EAHD;IAIE;IACA;IACA;IACA;;EAEA;IACC;;;AAOL;EACC;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA,ObrGK;EasGL;;AAEA;EACC;;AACA;EACC;;AAED;EALD;IAME;;;;ACvHL;EACC;EACA;;AAEA;EACC;EACA;EACA;;AAGD;EACC;EACA;;AACA;EAHD;IAIE;IACA;;;AAIF;EACC;;AAEA;EAHD;IAIE;IACA;;;AAGD;EACC;EACA;EACS,Wd4BiB;Ec3BjB;EACA;;AAET;EAPD;IAQE;IACA;IACA;;;;ACrCJ;AACA;EACC;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIF;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;;AAIA;EACC;;AAIF;EACC;EACA;;AACA;EACC;EACA;EACA;;;AAMH;EACI;;AAEA;EACI;EACA;;;ACvER;EACC;EACA;EACA;EACA,kBhBKO;;AgBJP;EALD;IAME;;;AAGE;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;;AAGJ;EACI,OhBZI;;;AiBjBZ;EACC;;AAEA;EACC;;AACA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBjBFU;EiBGV,OjBsBW;EiBrBX;;AAEA;EAbD;IAcE;;;;ACnBJ;EACI;EACH;EACA;EACA;EACA;EACG;;AAEA;EACI;EACA;EACA;EACA;EACA;;;AAIR;EACI;EACA;EACA;;;ACpBJ;EACC;;;AAGD;AAAA;EAEC;EACA;EACA;EACA,anB2Ea;EmB1Eb,OnBCW;;;AmBEZ;EACC,kBnBLO;EmBMP;;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;;AAEA;EARD;IASE;;;;AAIF;EACC;EACA;EACA;EACA;EACA;;AAEA;EAPD;IAQE;IACA;;;;AAIF;EACC;EACA;EACA;EACA;EACA;;AAEA;EAPD;IAQE;;;;AAIF;EACC;EACA;EACA;;;AAGD;EACC;EACA;EACA;;AAEA;EACC;;AAGD;EACC;;AAGD;EAbD;IAcE;;EAEA;IACC;;;AAIF;EACC;EACA;EACA;;AAEA;EACC;;;AAMF;EACC;;AAEA;EACC;;AAIF;EACC;;AAIA;EACC;EACA;;AAIF;EACC,OnB5EI;EmB6EE,cnB7EF;;AmB+EJ;EAEC,OnBjFG;;;AmBsFN;EACC;;AAEA;EACC;EACA;EACA;;AAGD;EACC;;AAGD;EAbD;IAcE;;;;AAIF;EACC;EACA;;AAEA;EAJD;IAKE;;;AAGD;EACC;EACA;;AAOF;EACC;EACA;EACA,cnB9Ha;;AmB+Hb;EAJD;IAKE;;;;AAIF;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA,OnB5PO;EmB6PP;EACA;EACA;;AAEA;EACC;EACA,OnBnQM;;AmBsQP;EAjBD;IAkBE;;;;AAIF;EACC;EACA;EACA;EACA,WnB7N4B;EmB8N5B;;AACA;EAND;IAOE;IACA,WnBhOoB;;EmBkOpB;IACC;IAIA;;;AAGF;EACC;EACA;;;AAIF;EACC;EACA;EACA;EACA,WnBlPwB;EmBmPxB;;AAEA;EAPD;IAQE;;;;AAIF;EACC;EACA;;;AAGD;EACC;EACA;EACA;EACA;;;AAIA;EACC;;AAGD;EACC;EACA;;AAGD;EACC;IACC;;;;AAKH;EACC;;;AAGD;EACC;EACA;;AAEA;EACC;;AAGD;EACC;;;AAIF;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,OnBtWO;EmBuWP;;AAEA;EAZD;IAaE%22,%22file%22:%22main.css%22%7D */
