:root {
  --body-font: proxima-nova, ProximaNova, sans-serif;
  --heading-font: Stroma, serif;
}

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 400ms ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 400ms ease-in-out;
  width: 5px;
}

.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.open .list {
  max-height: 15rem;
  overflow-y: scroll;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 0.75rem;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  transition: all 400ms cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/* For some reason, even though this should be pulled with the settings call, it's not, so we have
		to explicitly import it (use doesn't work) */
:root {
  --body-font: proxima-nova, ProximaNova, sans-serif;
  --heading-font: Stroma, serif;
}

.image-gallery {
  margin-top: 64px;
  margin-bottom: 64px;
}
@media (min-width: 767px) {
  .image-gallery {
    margin-bottom: 100px;
  }
}
@media (min-width: 1094px) {
  .image-gallery + p,
  .image-gallery + ul,
  .image-gallery + ol {
    margin-top: -48px;
  }
}
.image-gallery .container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  width: 100%;
}
@media (min-width: 375px) {
  .image-gallery .container {
    padding: 0 24px;
  }
}
@media (min-width: 767px) {
  .image-gallery .container {
    padding: 0 24px;
  }
}
@media (min-width: 1094px) {
  .image-gallery .container {
    padding: 0 0px;
  }
}
@media (min-width: 1094px) {
  .image-gallery .container {
    width: 1024px;
  }
}
@media (min-width: 1280px) {
  .image-gallery .container {
    width: 1240px;
  }
}
@media (min-width: 1440px) {
  .image-gallery .container {
    width: 1392px;
  }
}
@media (min-width: 1600px) {
  .image-gallery .container {
    width: 1440px;
  }
}
@media (min-width: 1094px) {
  .has-sidebar .image-gallery .container {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1093px) {
  .image-gallery .container.has-sidebar {
    padding: 0;
  }
}
.image-gallery__header {
  display: flex;
  align-items: center;
  font-family: "Stroma", serif;
  font-weight: bold;
  font-size: 2.25rem;
  line-height: 1.1;
  font-style: normal;
  text-decoration: none;
  margin: 0;
  margin-bottom: 35px;
  color: #002D61;
}
@media (min-width: 1094px) {
  .image-gallery__header {
    font-size: 3rem;
  }
}
.image-gallery__header svg {
  width: 34px;
  height: auto;
  margin-right: 12px;
}
@media (min-width: 767px) {
  .image-gallery__header svg {
    margin-right: 24px;
    width: 64px;
    height: auto;
  }
}
.image-gallery__header svg path {
  stroke: #f7bf0a;
}
.image-gallery__pager {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.image-gallery__pager__section {
  background: #0067A2;
  height: 4px;
  width: 16px;
  margin-right: 10px;
  transition: width 400ms ease;
}
.image-gallery__pager__section.active {
  width: 50px;
}
@media (min-width: 767px) {
  .image-gallery__pager__section.active {
    width: 120px;
  }
}
.image-gallery__pager__section:last-child {
  margin-right: 0;
}
.image-gallery__slideshow__wrapper {
  display: flex;
  margin-bottom: 20px;
  overflow: hidden;
}
.image-gallery__slideshow__slide {
  flex: 1 0 100%;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.image-gallery__slideshow__slide picture, .image-gallery__slideshow__slide figure {
  display: block;
  padding-top: 68%;
  max-width: 100%;
}
.image-gallery__slideshow__slide picture a, .image-gallery__slideshow__slide figure a {
  display: block;
}
.image-gallery__slideshow__slide picture img, .image-gallery__slideshow__slide figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-gallery__slideshow__main {
  position: relative;
  overflow: hidden;
  margin-right: 24px;
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 767px) {
  .image-gallery__slideshow__main {
    flex: 1 0 75%;
    max-width: 75%;
    width: 75%;
  }
}
.image-gallery__slideshow__main__track {
  display: flex;
  flex-wrap: nowrap;
  transition: 400ms ease;
}
.image-gallery__slideshow__main__slides {
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
}
.image-gallery__slideshow__thumbnails {
  flex: 1 1 auto;
  display: none;
}
@media (min-width: 767px) {
  .image-gallery__slideshow__thumbnails {
    display: block;
  }
}
.ready .image-gallery__slideshow__thumbnails {
  overflow: hidden;
}
.image-gallery__slideshow__thumbnails__track {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  transition: 400ms ease;
}
.image-gallery__slideshow__thumbnail {
  position: relative;
  display: block;
  border: 0;
  outline: 0;
  padding-top: 51%;
}
.image-gallery__slideshow__thumbnail[js-thumbnail] {
  cursor: pointer;
}
.image-gallery__slideshow__thumbnail:nth-child(n+5) {
  position: absolute;
}
.ready .image-gallery__slideshow__thumbnail:nth-child(n+5) {
  position: relative;
}
.image-gallery__slideshow__thumbnail__inner {
  height: 100%;
}
.image-gallery__slideshow__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
}
.image-gallery__nav {
  position: absolute;
  z-index: 2;
  background-color: #0067A2;
  width: 40px;
  height: 40px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 400ms ease;
}
.image-gallery__nav.hidden {
  display: none;
}
.image-gallery__nav:hover {
  background-color: #D1422a;
}
.image-gallery__nav svg {
  width: 25px;
  height: 25px;
}
.image-gallery__nav svg path {
  stroke: #ffffff;
}
.image-gallery__nav--next {
  left: unset;
  right: 0;
}
.image-gallery__description-container {
  position: relative;
  height: 0px;
  transition: height 400ms ease;
}
.image-gallery__description {
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #585D61;
}
@media (min-width: 767px) {
  .image-gallery__description {
    max-width: 75%;
  }
}
.image-gallery__description.active {
  opacity: 1;
  pointer-events: all;
}
.image-gallery__description__header {
  font-family: "proxima-nova", "ProximaNova", sans-serif;
  font-size: 1.3125rem;
  line-height: 1.6875rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
}
.image-gallery__description__summary {
  font-size: 0.75rem;
  line-height: 160%;
  font-weight: 400;
  font-style: normal;
  font-family: "proxima-nova", "ProximaNova", sans-serif;
  text-decoration: none;
}
@media (min-width: 1094px) {
  .image-gallery__description__summary {
    font-size: 1.125rem;
    line-height: 180%;
  }
}

.lightbox-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.9);
  overflow: auto;
}
.lightbox-container.open {
  display: block;
}
.lightbox-container .close-lightbox {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: auto;
  height: auto;
  display: block;
  z-index: 1002;
  background: transparent;
  color: #fff;
  border: none;
  text-align: center;
  font-size: 1.5rem;
  padding: 0.25rem;
}
.lightbox-container .close-lightbox:focus, .lightbox-container .close-lightbox:hover {
  outline: 1px solid red;
  cursor: pointer;
}
.lightbox-container .close-lightbox:focus i.iconoir-cancel, .lightbox-container .close-lightbox:hover i.iconoir-cancel {
  display: block;
}
.lightbox-container .lightbox {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  height: 100%;
}
@media all and (max-width: 900px) {
  .lightbox-container .lightbox {
    max-width: 85%;
  }
}
.lightbox-container .lightbox .lightbox-figure {
  position: absolute;
  top: 5%;
  left: 5%;
  right: 5%;
  bottom: 5%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 3fr) minmax(0, 1fr);
  grid-row-gap: 1rem;
}
.lightbox-container .lightbox .lightbox-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.lightbox-container .lightbox .lightbox-description {
  display: none;
  color: #fff;
  text-align: center;
}
.lightbox-container .lightbox .lightbox-description.active {
  display: block;
}
.icon-blurbs {
  padding: 88px 0;
}
.icon-blurbs--gray {
  background: #f5f6f7;
}
.has-sidebar .icon-blurbs--gray {
  padding: 30px;
}
@media (min-width: 1094px) {
  .icon-blurbs {
    padding: 96px 0;
  }
}
.icon-blurbs__header {
  font-family: "Stroma", serif;
  font-weight: bold;
  font-size: 2.25rem;
  line-height: 1.1;
  font-style: normal;
  text-decoration: none;
  margin: 0;
  color: #002D61;
  margin-bottom: 16px;
}
@media (min-width: 1094px) {
  .icon-blurbs__header {
    font-size: 3rem;
  }
}
@media (min-width: 1280px) {
  .icon-blurbs__header {
    font-size: 3.5rem;
  }
}
.icon-blurbs__summary {
  font-size: 0.75rem;
  line-height: 160%;
  font-weight: 400;
  font-style: normal;
  font-family: "proxima-nova", "ProximaNova", sans-serif;
  text-decoration: none;
  max-width: 938px;
}
@media (min-width: 1094px) {
  .icon-blurbs__summary {
    font-size: 1.125rem;
    line-height: 180%;
  }
}
.icon-blurbs__grid-wrapper {
  margin-top: 70px;
}
.icon-blurbs__grid {
  display: flex;
  margin-top: -34px;
  margin-left: -17px;
  margin-right: -17px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 767px) {
  .icon-blurbs__grid {
    display: flex;
    margin-top: -32px;
    margin-left: -16px;
    margin-right: -16px;
    flex-wrap: wrap;
  }
}
@media (min-width: 1280px) {
  .icon-blurbs__grid {
    display: flex;
    margin-top: -64px;
    margin-left: -32px;
    margin-right: -32px;
    flex-wrap: wrap;
  }
}
.icon-blurbs__col {
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
  padding: 0 17px;
  margin-top: 34px;
}
.icon-blurbs__col > * {
  height: 100%;
}
@media (min-width: 767px) {
  .icon-blurbs__col {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
    padding: 0 16px;
    margin-top: 32px;
  }
  .icon-blurbs__col > * {
    height: 100%;
  }
}
@media (min-width: 1094px) {
  .icon-blurbs__col {
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
    padding: 0 16px;
    margin-top: 32px;
  }
  .icon-blurbs__col > * {
    height: 100%;
  }
}
@media (min-width: 1280px) {
  .icon-blurbs__col {
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
    padding: 0 32px;
    margin-top: 64px;
  }
  .icon-blurbs__col > * {
    height: 100%;
  }
}
.icon-blurbs__card__icon {
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
}
@media (min-width: 1094px) {
  .icon-blurbs__card__icon {
    margin-bottom: 34px;
  }
}
.icon-blurbs__card__icon svg {
  width: 40px;
  height: 40px;
}
.icon-blurbs__card__icon--red svg path {
  stroke: #D1422a;
}
.icon-blurbs__card__icon--green svg path {
  stroke: #b8c11c;
}
.icon-blurbs__card__icon--yellow svg path {
  stroke: #f7bf0a;
}
.icon-blurbs__card__header {
  font-size: 1.75rem;
  line-height: 2.25rem;
  color: #002D61;
  font-family: "Stroma", serif;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 16px;
}
.icon-blurbs__card__summary {
  font-size: 0.75rem;
  line-height: 160%;
  font-weight: 400;
  font-style: normal;
  font-family: "proxima-nova", "ProximaNova", sans-serif;
  text-decoration: none;
  margin-bottom: 32px;
}
@media (min-width: 1094px) {
  .icon-blurbs__card__summary {
    font-size: 1.125rem;
    line-height: 180%;
  }
}

.pagination.pagination {
  margin-top: 24px;
}

.pagination,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align {
  display: flex;
}
@media (min-width: 767px) {
  .pagination,
  .umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align {
    justify-content: flex-end;
  }
}
.pagination > *,
.pagination .gsc-cursor-page,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align > *,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align .gsc-cursor-page {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 6px;
}
@media (min-width: 480px) {
  .pagination > *,
  .pagination .gsc-cursor-page,
  .umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align > *,
  .umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align .gsc-cursor-page {
    margin: 0 8px;
  }
}
.pagination > *:last-child,
.pagination .gsc-cursor-page:last-child,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align > *:last-child,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align .gsc-cursor-page:last-child {
  margin-right: 0;
}
.pagination > *.current, .pagination > *.gsc-cursor-current-page,
.pagination .gsc-cursor-page.current,
.pagination .gsc-cursor-page.gsc-cursor-current-page,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align > *.current,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align > *.gsc-cursor-current-page,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align .gsc-cursor-page.current,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align .gsc-cursor-page.gsc-cursor-current-page {
  border: 2px solid #002D61;
}
.pagination > *.next, .pagination > *.prev,
.pagination .gsc-cursor-page.next,
.pagination .gsc-cursor-page.prev,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align > *.next,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align > *.prev,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align .gsc-cursor-page.next,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align .gsc-cursor-page.prev {
  width: auto;
  color: #0067A2;
}
.pagination > a,
.pagination > span,
.pagination .gsc-cursor-page,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align > a,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align > span,
.umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align .gsc-cursor-page {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  font-size: 0.75rem;
  color: #002D61;
  font-weight: 600;
  line-height: 20px;
  position: relative;
  white-space: nowrap;
}
@media (min-width: 1280px) {
  .pagination > a,
  .pagination > span,
  .pagination .gsc-cursor-page,
  .umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align > a,
  .umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align > span,
  .umw-search-results .gsc-results .gsc-cursor-box.gs-bidi-start-align .gsc-cursor-page {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

.program-card {
  margin-bottom: 144px;
}
.program-card .container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  width: 100%;
}
@media (min-width: 375px) {
  .program-card .container {
    padding: 0 24px;
  }
}
@media (min-width: 767px) {
  .program-card .container {
    padding: 0 24px;
  }
}
@media (min-width: 1094px) {
  .program-card .container {
    padding: 0 0px;
  }
}
@media (min-width: 1094px) {
  .program-card .container {
    width: 1024px;
  }
}
@media (min-width: 1280px) {
  .program-card .container {
    width: 1240px;
  }
}
@media (min-width: 1440px) {
  .program-card .container {
    width: 1392px;
  }
}
@media (min-width: 1600px) {
  .program-card .container {
    width: 1440px;
  }
}
@media (min-width: 1094px) {
  .has-sidebar .program-card .container {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1093px) {
  .program-card .container.has-sidebar {
    padding: 0;
  }
}
.program-card__grid {
  display: flex;
  margin-top: -16px;
  margin-left: -8px;
  margin-right: -8px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1280px) {
  .program-card__grid {
    display: flex;
    margin-top: -24px;
    margin-left: -12px;
    margin-right: -12px;
    flex-wrap: wrap;
  }
}
.program-card__grid__col {
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
  padding: 0 8px;
  margin-top: 16px;
}
.program-card__grid__col > * {
  height: 100%;
}
@media (min-width: 767px) {
  .program-card__grid__col {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
    padding: 0 8px;
    margin-top: 16px;
  }
  .program-card__grid__col > * {
    height: 100%;
  }
}
@media (min-width: 1280px) {
  .program-card__grid__col {
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
    padding: 0 12px;
    margin-top: 24px;
  }
  .program-card__grid__col > * {
    height: 100%;
  }
}
.program-card__badges {
  margin-bottom: 12px;
}
.program-card__badges__badge {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 19px;
  border-width: 1px;
  border-style: solid;
  padding: 2px 8px 3px;
  border-radius: 100px;
  display: inline-block;
  margin-right: 8px;
}
.program-card__badges__badge--orange {
  background: rgba(247, 191, 10, 0.25);
  border-color: #f7bf0a;
}
.program-card__badges__badge--dark-green {
  background: rgba(29, 121, 36, 0.25);
  border-color: rgb(29, 121, 36);
}
.program-card__badges__badge--light-green {
  background: rgba(120, 192, 67, 0.25);
  border-color: rgb(120, 192, 67);
}
.program-card__badges__badge--light-blue {
  background: rgba(61, 184, 211, 0.25);
  border-color: rgb(61, 184, 211);
}
.program-card__badges__badge--blue {
  background: rgba(0, 103, 162, 0.25);
  border-color: #0067A2;
}
.program-card__badges__badge--yellow {
  background: rgba(247, 191, 10, 0.25);
  border-color: #f7bf0a;
}
.program-card__badges__badge--red {
  background: rgba(176, 93, 60, 0.25);
  border-color: #D1422a;
}
.program-card__badges__badge--purple {
  background: rgba(102, 57, 144, 0.25);
  border-color: rgb(102, 57, 144);
}
.program-card__program {
  display: block;
  border: 2px solid rgba(0, 68, 107, 0.25);
  border-radius: 8px;
  padding: 48px;
  background: #ffffff;
  transition: 400ms ease;
  transform: scale(1);
  height: 100%;
}
.program-card__program:hover {
  transform: scale(1.03);
}
.program-card__program__title {
  font-family: "proxima-nova", "ProximaNova", sans-serif;
  font-weight: 600;
  font-size: 1.3125rem;
  line-height: 1.3;
  font-style: normal;
  text-decoration: none;
  color: #002D61;
  margin-bottom: 16px;
}
.program-card__program__summary {
  font-size: 0.75rem;
  line-height: 1.6;
  font-style: normal;
  font-weight: 400;
  font-family: "proxima-nova", "ProximaNova", sans-serif;
  text-decoration: none;
  color: #585D61;
}
@media (min-width: 1094px) {
  .program-card__program__summary {
    font-size: 1rem;
    line-height: 160%;
  }
}

.listing-filters {
  position: relative;
  z-index: 2;
}
.listing-filters.elevated {
  margin-top: -78px;
}
@media (min-width: 1094px) {
  .listing-filters.elevated {
    margin-top: -222px;
  }
}
.listing-filters .container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  width: 100%;
}
@media (min-width: 375px) {
  .listing-filters .container {
    padding: 0 24px;
  }
}
@media (min-width: 767px) {
  .listing-filters .container {
    padding: 0 24px;
  }
}
@media (min-width: 1094px) {
  .listing-filters .container {
    padding: 0 0px;
  }
}
@media (min-width: 1094px) {
  .listing-filters .container {
    width: 1024px;
  }
}
@media (min-width: 1280px) {
  .listing-filters .container {
    width: 1240px;
  }
}
@media (min-width: 1440px) {
  .listing-filters .container {
    width: 1392px;
  }
}
@media (min-width: 1600px) {
  .listing-filters .container {
    width: 1440px;
  }
}
@media (min-width: 1094px) {
  .has-sidebar .listing-filters .container {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1093px) {
  .listing-filters .container.has-sidebar {
    padding: 0;
  }
}

.listing-filters__wrapper,
.listing-filters__inner form > ul {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
  flex-direction: column;
  padding: 16px 16px 16px 0;
}
.feature-events + .listing-filters .listing-filters__wrapper, .feature-news + .listing-filters .listing-filters__wrapper,
.feature-events + .listing-filters .listing-filters__inner form > ul,
.feature-news + .listing-filters .listing-filters__inner form > ul {
  padding-top: 0;
}
.elevated .listing-filters__wrapper,
.elevated .listing-filters__inner form > ul {
  margin-bottom: 40px;
  padding-bottom: 24px;
}
@media (min-width: 1094px) {
  .listing-filters__wrapper,
  .listing-filters__inner form > ul {
    padding: 24px 0;
    gap: 24px;
    flex-direction: row;
  }
  .elevated .listing-filters__wrapper,
  .elevated .listing-filters__inner form > ul {
    padding: 24px 48px 24px 0;
  }
}

.elevated .listing-filters__inner form > ul {
  margin-bottom: 0;
  padding: 0;
}

.listing-filters__inner form {
  width: 100%;
}

.elevated .listing-filters__wrapper::before {
  content: "";
  width: 100vw;
  background: white;
  box-shadow: 0px 58px 93px rgba(0, 61, 103, 0.14);
  position: absolute;
  right: 0;
  top: 0;
  padding-bottom: 16px;
  height: 100%;
  z-index: -1;
}

.listing-filters .searchandfilter ul li {
  padding: 0;
  flex: 1 1 0;
}

.sf-input-select {
  color: #002D61;
  background-color: transparent;
}

.listing-filters__search,
.listing-filters .sf-field-search {
  width: auto;
  max-width: none;
  border: 2px solid rgba(0, 77, 135, 0.3);
}
@media (min-width: 1280px) {
  .listing-filters__search,
  .listing-filters .sf-field-search {
    width: auto;
    max-width: none;
  }
}
.listing-filters__search label,
.listing-filters .sf-field-search label {
  width: 100%;
  height: 100%;
}
.listing-filters__search input[type=text],
.listing-filters .sf-field-search input[type=text] {
  width: 100%;
  height: 100%;
  font-size: 1rem;
  color: #002D61;
  padding: 8px;
  border: 0;
  outline: 0;
  font-weight: 600;
}
.listing-filters__search input[type=text]::-webkit-input-placeholder,
.listing-filters .sf-field-search input[type=text]::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #002D61;
  font-weight: 400;
}
.listing-filters__search input[type=text]::-moz-placeholder,
.listing-filters .sf-field-search input[type=text]::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #002D61;
  opacity: 1;
  font-weight: 400;
}
.listing-filters__search input[type=text]::-ms-input-placeholder,
.listing-filters .sf-field-search input[type=text]::-ms-input-placeholder { /* Microsoft Edge */
  color: #002D61;
  font-weight: 300;
}
.listing-filters__search input[type=text]::placeholder,
.listing-filters .sf-field-search input[type=text]::placeholder { /* Most modern browsers support this now. */
  color: #002D61;
  font-weight: 400;
}
@media (min-width: 1094px) {
  .listing-filters__search input[type=text],
  .listing-filters .sf-field-search input[type=text] {
    padding: 16px;
    font-size: 1rem;
  }
}

.listing-filters__search__container {
  display: flex;
  height: 34px;
  margin-bottom: 16px;
}
@media (min-width: 1094px) {
  .listing-filters__search__container {
    margin-bottom: 0;
    height: 56px;
  }
}

.listing-filters .sf-field-post-meta-umw_localist_start_timestamp {
  width: 100%;
}

.listing-filters .sf_date_field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}
.listing-filters .sf_date_field li {
  width: 45%;
}
.listing-filters .sf_date_field li:last-child {
  text-align: right;
}
.listing-filters .sf_date_field li input {
  width: 120px;
}
@media (min-width: 1094px) {
  .listing-filters .sf_date_field li input {
    width: auto;
  }
}
@media (min-width: 1094px) {
  .listing-filters .sf_date_field {
    gap: 12px;
  }
}

.listing-filters__search__button,
.listing-filters .sf-field-submit input {
  display: flex;
  border: 2px solid rgba(0, 77, 135, 0.3);
  color: transparent;
  font-size: 0.1px;
  border-left: 0;
  width: 32px;
  height: 100%;
  background: #0067A2;
  cursor: pointer;
}
@media (min-width: 1094px) {
  .listing-filters__search__button,
  .listing-filters .sf-field-submit input {
    width: 60px;
  }
}
.listing-filters__search__button::after,
.listing-filters .sf-field-submit input::after {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%0A%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.319 14.4326C20.7628 11.2941 20.542 6.75347 17.6569 3.86829C14.5327 0.744098 9.46734 0.744098 6.34315 3.86829C3.21895 6.99249 3.21895 12.0578 6.34315 15.182C9.22833 18.0672 13.769 18.2879 16.9075 15.8442C16.921 15.8595 16.9351 15.8745 16.9497 15.8891L21.1924 20.1317C21.5829 20.5223 22.2161 20.5223 22.6066 20.1317C22.9971 19.7412 22.9971 19.1081 22.6066 18.7175L18.364 14.4749C18.3493 14.4603 18.3343 14.4462 18.319 14.4326ZM16.2426 5.28251C18.5858 7.62565 18.5858 11.4246 16.2426 13.7678C13.8995 16.1109 10.1005 16.1109 7.75736 13.7678C5.41421 11.4246 5.41421 7.62565 7.75736 5.28251C10.1005 2.93936 13.8995 2.93936 16.2426 5.28251Z' fill='white' /%3E%3C/svg%3E");
  color: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.6);
}
@media (min-width: 1094px) {
  .listing-filters__search__button::after,
  .listing-filters .sf-field-submit input::after {
    transform: scale(1);
  }
}

.listing-filters__filters {
  display: flex;
  align-items: center;
}
@media (min-width: 1094px) {
  .listing-filters__filters {
    margin-left: 64px;
  }
}

.listing-filters__filters__text,
.listing-filters .sf-field-post_date,
.listing-filters [data-sf-field-input-type=daterange],
.listing-filters .sf-datepicker {
  font-size: 1rem;
  padding: 16px;
  line-height: 26px;
  color: #002D61;
  font-weight: 600;
  white-space: nowrap;
}
@media (min-width: 1094px) {
  .listing-filters__filters__text,
  .listing-filters .sf-field-post_date,
  .listing-filters [data-sf-field-input-type=daterange],
  .listing-filters .sf-datepicker {
    font-size: 1rem;
  }
}

.listing-filters .sf-field-post_date,
.listing-filters [data-sf-field-input-type=daterange],
.listing-filters .sf-field-post_type {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.listing-filters .sf-field-post_date li,
.listing-filters .sf-field-post_date span,
.listing-filters .sf-field-post_date label,
.listing-filters .sf-field-post_date input,
.listing-filters [data-sf-field-input-type=daterange] li,
.listing-filters [data-sf-field-input-type=daterange] span,
.listing-filters [data-sf-field-input-type=daterange] label,
.listing-filters [data-sf-field-input-type=daterange] input {
  display: inline-block;
  height: 100%;
}

.listing-filters .sf-datepicker {
  border: 2px solid rgba(0, 77, 135, 0.3);
  font-family: "proxima-nova", "ProximaNova", sans-serif;
}

.listing-filters__filters__dropdowns {
  display: flex;
  flex: 1 1 auto;
}

.listing-filters .sf-field-taxonomy-key {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.listing-filters .sf-field-taxonomy-key h4 {
  flex: 1 0 auto;
  margin-right: 6px;
}

.listing-filters__filters__dropdown,
.listing-filters .sf-field-tag,
.listing-filters [class^=sf-field-taxonomy-],
.listing-filters .sf-field-post_type {
  font-weight: 600;
}
.listing-filters__filters__dropdown:last-child,
.listing-filters .sf-field-tag:last-child,
.listing-filters [class^=sf-field-taxonomy-]:last-child,
.listing-filters .sf-field-post_type:last-child {
  margin-right: 0;
}
.listing-filters__filters__dropdown label,
.listing-filters .sf-field-tag label,
.listing-filters [class^=sf-field-taxonomy-] label,
.listing-filters .sf-field-post_type label {
  width: 100%;
  display: block;
}
.listing-filters__filters__dropdown .select2,
.listing-filters .sf-field-tag .select2,
.listing-filters [class^=sf-field-taxonomy-] .select2,
.listing-filters .sf-field-post_type .select2 {
  width: 100% !important;
  display: block;
  position: relative;
}
.listing-filters__filters__dropdown .select2::after,
.listing-filters .sf-field-tag .select2::after,
.listing-filters [class^=sf-field-taxonomy-] .select2::after,
.listing-filters .sf-field-post_type .select2::after {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%0A%3E%3Cpath d='M6.34317 7.75732L4.92896 9.17154L12 16.2426L19.0711 9.17157L17.6569 7.75735L12 13.4142L6.34317 7.75732Z' fill='currentColor' /%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.5);
  right: 0;
}
@media (min-width: 1094px) {
  .listing-filters__filters__dropdown .select2::after,
  .listing-filters .sf-field-tag .select2::after,
  .listing-filters [class^=sf-field-taxonomy-] .select2::after,
  .listing-filters .sf-field-post_type .select2::after {
    right: 12px;
    transform: translateY(-50%) scale(1);
  }
}
.listing-filters__filters__dropdown .select2.select2-container--open::after,
.listing-filters .sf-field-tag .select2.select2-container--open::after,
.listing-filters [class^=sf-field-taxonomy-] .select2.select2-container--open::after,
.listing-filters .sf-field-post_type .select2.select2-container--open::after {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%0A%3E%3Cpath d='M17.6569 16.2427L19.0711 14.8285L12.0001 7.75739L4.92896 14.8285L6.34317 16.2427L12.0001 10.5858L17.6569 16.2427Z' fill='currentColor' /%3E%3C/svg%3E");
}
.listing-filters__filters__dropdown .select2 .select2-selection,
.listing-filters .sf-field-tag .select2 .select2-selection,
.listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection,
.listing-filters .sf-field-post_type .select2 .select2-selection {
  display: flex;
  align-items: center;
  min-height: 38px;
  border: 2px solid rgba(0, 77, 135, 0.3);
  margin: 0;
  padding: 8px 0;
}
@media (min-width: 1094px) {
  .listing-filters__filters__dropdown .select2 .select2-selection,
  .listing-filters .sf-field-tag .select2 .select2-selection,
  .listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection,
  .listing-filters .sf-field-post_type .select2 .select2-selection {
    min-height: 60px;
  }
}
.listing-filters__filters__dropdown .select2 .select2-selection .select2-search--inline,
.listing-filters .sf-field-tag .select2 .select2-selection .select2-search--inline,
.listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection .select2-search--inline,
.listing-filters .sf-field-post_type .select2 .select2-selection .select2-search--inline {
  width: 100%;
}
.listing-filters__filters__dropdown .select2 .select2-selection .select2-selection__rendered,
.listing-filters .sf-field-tag .select2 .select2-selection .select2-selection__rendered,
.listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection .select2-selection__rendered,
.listing-filters .sf-field-post_type .select2 .select2-selection .select2-selection__rendered {
  padding: 0 12px;
}
.listing-filters__filters__dropdown .select2 .select2-selection .select2-search__field,
.listing-filters .sf-field-tag .select2 .select2-selection .select2-search__field,
.listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection .select2-search__field,
.listing-filters .sf-field-post_type .select2 .select2-selection .select2-search__field {
  font-size: 1rem;
  color: #002D61;
  font-weight: 600;
  padding: 0px;
  width: 100% !important;
  margin: 0;
}
.listing-filters__filters__dropdown .select2 .select2-selection .select2-search__field::-webkit-input-placeholder,
.listing-filters .sf-field-tag .select2 .select2-selection .select2-search__field::-webkit-input-placeholder,
.listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection .select2-search__field::-webkit-input-placeholder,
.listing-filters .sf-field-post_type .select2 .select2-selection .select2-search__field::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #002D61;
  font-weight: 400;
}
.listing-filters__filters__dropdown .select2 .select2-selection .select2-search__field::-moz-placeholder,
.listing-filters .sf-field-tag .select2 .select2-selection .select2-search__field::-moz-placeholder,
.listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection .select2-search__field::-moz-placeholder,
.listing-filters .sf-field-post_type .select2 .select2-selection .select2-search__field::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #002D61;
  opacity: 1;
  font-weight: 400;
}
.listing-filters__filters__dropdown .select2 .select2-selection .select2-search__field::-ms-input-placeholder,
.listing-filters .sf-field-tag .select2 .select2-selection .select2-search__field::-ms-input-placeholder,
.listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection .select2-search__field::-ms-input-placeholder,
.listing-filters .sf-field-post_type .select2 .select2-selection .select2-search__field::-ms-input-placeholder { /* Microsoft Edge */
  color: #002D61;
  font-weight: 300;
}
.listing-filters__filters__dropdown .select2 .select2-selection .select2-search__field::placeholder,
.listing-filters .sf-field-tag .select2 .select2-selection .select2-search__field::placeholder,
.listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection .select2-search__field::placeholder,
.listing-filters .sf-field-post_type .select2 .select2-selection .select2-search__field::placeholder { /* Most modern browsers support this now. */
  color: #002D61;
  font-weight: 400;
}
@media (min-width: 1094px) {
  .listing-filters__filters__dropdown .select2 .select2-selection .select2-search__field,
  .listing-filters .sf-field-tag .select2 .select2-selection .select2-search__field,
  .listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection .select2-search__field,
  .listing-filters .sf-field-post_type .select2 .select2-selection .select2-search__field {
    font-size: 1rem;
  }
}
.listing-filters__filters__dropdown .select2 .select2-selection .select2-selection__choice,
.listing-filters .sf-field-tag .select2 .select2-selection .select2-selection__choice,
.listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection .select2-selection__choice,
.listing-filters .sf-field-post_type .select2 .select2-selection .select2-selection__choice {
  background: #0067A2;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 8px;
  color: #ffffff;
  margin: 0;
  width: 88%;
  white-space: break-spaces;
}
@media (min-width: 1094px) {
  .listing-filters__filters__dropdown .select2 .select2-selection .select2-selection__choice,
  .listing-filters .sf-field-tag .select2 .select2-selection .select2-selection__choice,
  .listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection .select2-selection__choice,
  .listing-filters .sf-field-post_type .select2 .select2-selection .select2-selection__choice {
    padding: 4px 10px;
    font-size: 1rem;
  }
  .listing-filters__filters__dropdown .select2 .select2-selection .select2-selection__choice span,
  .listing-filters .sf-field-tag .select2 .select2-selection .select2-selection__choice span,
  .listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection .select2-selection__choice span,
  .listing-filters .sf-field-post_type .select2 .select2-selection .select2-selection__choice span {
    font-size: 1.25rem;
  }
}
.listing-filters__filters__dropdown .select2 .select2-selection .select2-selection__choice span,
.listing-filters .sf-field-tag .select2 .select2-selection .select2-selection__choice span,
.listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection .select2-selection__choice span,
.listing-filters .sf-field-post_type .select2 .select2-selection .select2-selection__choice span {
  color: #ffffff;
  margin-right: 4px;
}
.listing-filters__filters__dropdown .select2 .select2-selection .select2-selection__choice + .select2-search--inline,
.listing-filters .sf-field-tag .select2 .select2-selection .select2-selection__choice + .select2-search--inline,
.listing-filters [class^=sf-field-taxonomy-] .select2 .select2-selection .select2-selection__choice + .select2-search--inline,
.listing-filters .sf-field-post_type .select2 .select2-selection .select2-selection__choice + .select2-search--inline {
  display: none;
}

.listing-filters__sort,
.listing-filters .sf-field-sort_order.sf-field-sort_order {
  margin-top: 24px;
  display: flex;
  flex: 1 1 100%;
  align-items: center;
}

.listing-filters__sort__line,
.listing-filters .sf-field-sort_order::before {
  content: "";
  display: block;
  height: 2px;
  flex: 1 1 auto;
  background: #B3CADB;
}

.listing-filters__sort__dropdown,
.listing-filters .sf-field-sort_order > label {
  margin-left: 26px;
}
.listing-filters__sort__dropdown select,
.listing-filters .sf-field-sort_order > label select {
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 35px;
  appearance: none; /* Remove default arrow */
  outline: 0;
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 25px;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%0A%3E%3Cpath d='M6.34317 7.75732L4.92896 9.17154L12 16.2426L19.0711 9.17157L17.6569 7.75735L12 13.4142L6.34317 7.75732Z' fill='currentColor' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

.listing-filters .select2-selection__arrow {
  display: none;
}

.gform_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  width: 100%;
}
@media (min-width: 375px) {
  .gform_wrapper {
    padding: 0 24px;
  }
}
@media (min-width: 767px) {
  .gform_wrapper {
    padding: 0 24px;
  }
}
@media (min-width: 1094px) {
  .gform_wrapper {
    padding: 0 0px;
  }
}
@media (min-width: 1094px) {
  .gform_wrapper {
    width: 1024px;
  }
}
@media (min-width: 1280px) {
  .gform_wrapper {
    width: 1240px;
  }
}
@media (min-width: 1440px) {
  .gform_wrapper {
    width: 1392px;
  }
}
@media (min-width: 1600px) {
  .gform_wrapper {
    width: 1440px;
  }
}
@media (min-width: 1094px) {
  .has-sidebar .gform_wrapper {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1093px) {
  .gform_wrapper.has-sidebar {
    padding: 0;
  }
}
.gform_wrapper form fieldset {
  padding: 0;
  border: 0;
  margin: 0;
  font-size: 1.375rem;
  line-height: 1.75rem;
}
.gform_wrapper form fieldset legend {
  margin-bottom: 20px;
}
.gform_wrapper form .ginput_container span {
  display: inline-block;
  position: relative;
}
.gform_wrapper form .ginput_container .ginput_full {
  width: 100%;
  margin-bottom: 10px;
}
.gform_wrapper form .ginput_container .ginput_left,
.gform_wrapper form .ginput_container .ginput_right {
  margin-bottom: 10px;
}
.gform_wrapper form .ginput_container select,
.gform_wrapper form .ginput_container textarea,
.gform_wrapper form .ginput_container input[type=tel],
.gform_wrapper form .ginput_container input[type=email],
.gform_wrapper form .ginput_container input[type=text] {
  border: 2px solid rgba(0, 68, 107, 0.55);
  background-color: white;
  height: 64px;
  font-size: 1.125rem;
  line-height: 32px;
  font-weight: 400;
  color: #585D61;
  padding: 0 20px;
  font-family: "proxima-nova", "ProximaNova", sans-serif;
}
.gform_wrapper form .ginput_container select.has-input + label, .gform_wrapper form .ginput_container select:focus + label,
.gform_wrapper form .ginput_container textarea.has-input + label,
.gform_wrapper form .ginput_container textarea:focus + label,
.gform_wrapper form .ginput_container input[type=tel].has-input + label,
.gform_wrapper form .ginput_container input[type=tel]:focus + label,
.gform_wrapper form .ginput_container input[type=email].has-input + label,
.gform_wrapper form .ginput_container input[type=email]:focus + label,
.gform_wrapper form .ginput_container input[type=text].has-input + label,
.gform_wrapper form .ginput_container input[type=text]:focus + label {
  line-height: 12px;
  top: 0;
  font-size: 0.75rem;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 0 5px;
}
.gform_wrapper form .ginput_container select + label,
.gform_wrapper form .ginput_container textarea + label,
.gform_wrapper form .ginput_container input[type=tel] + label,
.gform_wrapper form .ginput_container input[type=email] + label,
.gform_wrapper form .ginput_container input[type=text] + label {
  position: absolute;
  left: 20px;
  top: 0;
  pointer-events: none;
  transition: all 400ms ease;
  font-size: 1.125rem;
  line-height: 64px;
  font-weight: 400;
  color: #585D61;
}
.gform_wrapper form .ginput_container select {
  appearance: none;
  padding-right: 45px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%0A%3E%3Cpath d='M6.34317 7.75732L4.92896 9.17154L12 16.2426L19.0711 9.17157L17.6569 7.75735L12 13.4142L6.34317 7.75732Z' fill='currentColor' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: center;
}
.gform_wrapper form .ginput_container select + label {
  display: none;
}
.gform_wrapper form .ginput_container .nice-select {
  border: 2px solid rgba(0, 68, 107, 0.55);
  border-radius: 0;
  height: 64px;
  display: flex;
  align-items: center;
  min-width: 246px;
  font-size: 1.125rem;
  color: #585D61;
}
.gform_wrapper form .ginput_container .nice-select.has-input label, .gform_wrapper form .ginput_container .nice-select.open label {
  font-size: 0.75rem;
  padding: 0 5px;
  transform: translateY(-50%);
  height: auto;
  background: white;
  line-height: 10px;
}
.gform_wrapper form .ginput_container .nice-select label {
  height: 100%;
  transition: all 400ms ease;
  position: absolute;
  left: 20px;
  top: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.gform_wrapper form .ginput_container .nice-select::after {
  border-color: #0067A2;
  height: 10px;
  width: 10px;
}
.gform_wrapper form .ginput_container .nice-select ul {
  min-width: 246px;
  border: 2px solid rgba(0, 68, 107, 0.55);
  border-radius: 0;
  left: -2px;
}
.gform_wrapper form .ginput_container .nice-select ul li {
  font-size: 1.125rem;
  color: #585D61;
}
.gform_wrapper form .ginput_container .nice-select ul li:hover {
  background: #002D61;
  color: #ffffff;
}
.gform_wrapper form .ginput_container textarea {
  padding-top: 16px;
  padding-bottom: 16px;
}
.gform_wrapper form .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.gform_wrapper form .gchoice:has(.gchoice_other_control) {
  flex-wrap: wrap;
}
.gform_wrapper form .gchoice:has(.gchoice_other_control) .gform-field-label {
  width: calc(100% - 3rem);
}
.gform_wrapper form .gchoice .gchoice_other_control {
  display: none;
}
.gform_wrapper form .gchoice:has(input:checked) .gchoice_other_control {
  display: block;
}
.gform_wrapper form .gchoice .gfield-choice-input {
  width: 24px;
  height: 24px;
}
.gform_wrapper form .gchoice label {
  margin-left: 12px;
  font-size: 1.125rem;
  line-height: 32px;
  color: #585D61;
  font-family: "proxima-nova", "ProximaNova", sans-serif;
}
.gform_wrapper input[type=submit] {
  align-items: center;
  appearance: none;
  background: transparent;
  padding: 9px 30px 9px 20px;
  min-height: 40px;
  justify-content: center;
  text-align: center;
  transition: 400ms ease;
  font-weight: 700;
  line-height: 28px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-family: "proxima-nova", "ProximaNova", sans-serif;
  justify-content: center;
  line-height: 1.5;
  outline: 0;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: 400ms ease-in-out;
  background-color: #0067A2;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  min-height: 0;
  padding: 19px 40px;
  border-radius: 0px;
  color: white;
}
@media (min-width: 1094px) {
  .gform_wrapper input[type=submit] {
    line-height: 1.4;
  }
}
@media (min-width: 1094px) {
  .gform_wrapper input[type=submit] {
    font-size: 1rem;
  }
}
.gform_wrapper input[type=submit]:hover, .gform_wrapper input[type=submit]:active, .gform_wrapper input[type=submit]:focus, .gform_wrapper input[type=submit].hover, .is-link:hover .gform_wrapper input[type=submit] {
  background: #002D61;
  text-decoration: none;
  color: white;
}
.gform_wrapper input[type=submit]:hover .arrow, .gform_wrapper input[type=submit]:active .arrow, .gform_wrapper input[type=submit]:focus .arrow, .gform_wrapper input[type=submit].hover .arrow, .is-link:hover .gform_wrapper input[type=submit] .arrow {
  width: 0px;
}
.gform_wrapper input[type=submit]:focus, .gform_wrapper input[type=submit].focus {
  box-shadow: 0 0 3pt 2pt rgb(59, 153, 252);
}

.image-gallery .wp-block-image {
  margin: 0;
}

:where(.umw-block-content) h1, :where(.umw-block-content) h2, :where(.umw-block-content) h3, :where(.umw-block-content) h4, :where(.umw-block-content) h5, :where(.umw-block-content) h6 {
  color: #002D61;
}
:where(.umw-block-content) h1 {
  font-family: "Stroma", serif;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
  font-size: 2.75rem;
  line-height: 1.1;
  margin: 0;
}
@media (min-width: 861px) {
  :where(.umw-block-content) h1 {
    font-size: 5rem;
    line-height: 1;
  }
}
@media (min-width: 1600px) {
  :where(.umw-block-content) h1 {
    font-size: 7.375rem;
    line-height: 0.9;
  }
}
:where(.umw-block-content) h2 {
  font-family: "Stroma", serif;
  font-weight: bold;
  font-size: 2.25rem;
  line-height: 1.1;
  font-style: normal;
  text-decoration: none;
  margin: 0;
}
@media (min-width: 1094px) {
  :where(.umw-block-content) h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1280px) {
  :where(.umw-block-content) h2 {
    font-size: 3.5rem;
  }
}
:where(.umw-block-content) h3 {
  font-family: "Stroma", serif;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.3;
  font-style: normal;
  text-decoration: none;
  margin: 0;
}
@media (min-width: 1094px) {
  :where(.umw-block-content) h3 {
    font-size: 1.75rem;
  }
}
:where(.umw-block-content) h4 {
  font-family: "proxima-nova", "ProximaNova", sans-serif;
  font-weight: 600;
  font-size: 1.3125rem;
  line-height: 1.3;
  font-style: normal;
  text-decoration: none;
}
:where(.umw-block-content) h5 {
  font-family: "proxima-nova", "ProximaNova", sans-serif;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.3;
  font-style: normal;
  text-decoration: none;
}
:where(.umw-block-content) h6 {
  font-family: "proxima-nova", "ProximaNova", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.3;
  font-style: normal;
  text-decoration: none;
}

h1.is-style-eyebrow, h2.is-style-eyebrow, h3.is-style-eyebrow, h4.is-style-eyebrow, h5.is-style-eyebrow, h6.is-style-eyebrow {
  font-size: 0.625rem;
  line-height: 180%;
  font-weight: bold;
  font-style: normal;
  font-family: "proxima-nova", "ProximaNova", sans-serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #585D61;
  margin-bottom: 24px;
  padding: 0 24px;
}
@media (min-width: 1094px) {
  h1.is-style-eyebrow, h2.is-style-eyebrow, h3.is-style-eyebrow, h4.is-style-eyebrow, h5.is-style-eyebrow, h6.is-style-eyebrow {
    font-size: 0.9375rem;
    line-height: 180%;
  }
}
@media (min-width: 1094px) {
  h1.is-style-eyebrow, h2.is-style-eyebrow, h3.is-style-eyebrow, h4.is-style-eyebrow, h5.is-style-eyebrow, h6.is-style-eyebrow {
    padding: 0;
  }
}

:where(.umw-block-content) a {
  color: #0067A2;
  font-weight: 600;
  line-height: 1.625rem;
  transition: 400ms ease;
}
:where(.umw-block-content) a:hover {
  color: #002D61;
  text-decoration: underline;
}
.umw-block-content .button--link,
.umw-block-content .wp-block-button__link {
  align-items: center;
  appearance: none;
  background: transparent;
  padding: 9px 30px 9px 20px;
  min-height: 40px;
  justify-content: center;
  text-align: center;
  transition: 400ms ease;
  font-weight: 700;
  line-height: 28px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-family: "proxima-nova", "ProximaNova", sans-serif;
  justify-content: center;
  line-height: 1.5;
  outline: 0;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: 400ms ease-in-out;
  background-color: #0067A2;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  min-height: 0;
  padding: 19px 40px;
  border-radius: 0px;
  color: white;
}
@media (min-width: 1094px) {
  .umw-block-content .button--link,
  .umw-block-content .wp-block-button__link {
    line-height: 1.4;
  }
}
@media (min-width: 1094px) {
  .umw-block-content .button--link,
  .umw-block-content .wp-block-button__link {
    font-size: 1rem;
  }
}
.umw-block-content .button--link:hover, .umw-block-content .button--link:active, .umw-block-content .button--link:focus, .umw-block-content .button--link.hover, .is-link:hover .umw-block-content .button--link,
.umw-block-content .wp-block-button__link:hover,
.umw-block-content .wp-block-button__link:active,
.umw-block-content .wp-block-button__link:focus,
.umw-block-content .wp-block-button__link.hover,
.is-link:hover .umw-block-content .wp-block-button__link {
  background: #002D61;
  text-decoration: none;
  color: white;
}
.umw-block-content .button--link:hover .arrow, .umw-block-content .button--link:active .arrow, .umw-block-content .button--link:focus .arrow, .umw-block-content .button--link.hover .arrow, .is-link:hover .umw-block-content .button--link .arrow,
.umw-block-content .wp-block-button__link:hover .arrow,
.umw-block-content .wp-block-button__link:active .arrow,
.umw-block-content .wp-block-button__link:focus .arrow,
.umw-block-content .wp-block-button__link.hover .arrow,
.is-link:hover .umw-block-content .wp-block-button__link .arrow {
  width: 32px;
}
.umw-block-content .button--link:focus, .umw-block-content .button--link.focus,
.umw-block-content .wp-block-button__link:focus,
.umw-block-content .wp-block-button__link.focus {
  box-shadow: 0 0 3pt 2pt rgb(59, 153, 252);
}
.umw-block-content .button--link .arrow,
.umw-block-content .wp-block-button__link .arrow {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 16px;
  height: 22px;
  margin-left: 1em;
  transition: all 400ms ease-in-out;
}
.umw-block-content .button--link .arrow::after, .umw-block-content .button--link .arrow::before,
.umw-block-content .wp-block-button__link .arrow::after,
.umw-block-content .wp-block-button__link .arrow::before {
  content: "";
  transition: width 400ms ease-in-out;
  display: block;
  box-sizing: border-box;
  position: absolute;
  transition: all 400ms ease-in-out;
}
.umw-block-content .button--link .arrow::after,
.umw-block-content .wp-block-button__link .arrow::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-right: 2px solid;
  border-color: currentColor;
  transform: rotate(45deg);
  bottom: 7px;
  right: 0;
}
.umw-block-content .button--link .arrow::before,
.umw-block-content .wp-block-button__link .arrow::before {
  width: 100%;
  height: 2px;
  bottom: 10px;
  background: currentColor;
  left: 0;
}
.umw-block-content .button--link:hover .arrow, .umw-block-content .button--link:focus .arrow, .umw-block-content .button--link:active .arrow,
.umw-block-content .wp-block-button__link:hover .arrow,
.umw-block-content .wp-block-button__link:focus .arrow,
.umw-block-content .wp-block-button__link:active .arrow {
  width: 32px;
}
.umw-block-content .button--link--dark,
.umw-block-content .wp-block-button__link--dark {
  background: #002D61;
}
.umw-block-content .button--link--orange,
.umw-block-content .wp-block-button__link--orange {
  background: #D1422a;
}
.umw-block-content .button--link--red,
.umw-block-content .wp-block-button__link--red {
  background: #A71F08;
}
.umw-block-content .entry-content > .wp-block-button {
  display: inline-block;
}

:where(.umw-block-content) {
  font-size: 1.125rem;
  line-height: 1.7;
}
:where(.umw-block-content) h1, :where(.umw-block-content) h2, :where(.umw-block-content) h3, :where(.umw-block-content) h4, :where(.umw-block-content) h5, :where(.umw-block-content) h6, :where(.umw-block-content) p, :where(.umw-block-content) ul, :where(.umw-block-content) ol,
:where(.umw-block-content) .wp-block-separator {
  margin-top: revert;
  margin-bottom: revert;
}

.umw-block-content ul:not([class]) > li {
  list-style-type: disc;
}
.umw-block-content ol:not([class]) > li {
  list-style-type: revert;
}
.umw-block-content ul:not([class]), .umw-block-content ol:not([class]) {
  padding-left: calc(1.25em + 24px);
}
@media (min-width: 1094px) {
  .umw-block-content ul:not([class]), .umw-block-content ol:not([class]) {
    padding-left: 1.25em;
  }
}

:where(.umw-with-blocks) .breadcrumb {
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  width: 100%;
  color: #0067A2;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 600;
}
@media (min-width: 375px) {
  :where(.umw-with-blocks) .breadcrumb {
    padding: 0 24px;
  }
}
@media (min-width: 767px) {
  :where(.umw-with-blocks) .breadcrumb {
    padding: 0 24px;
  }
}
@media (min-width: 1094px) {
  :where(.umw-with-blocks) .breadcrumb {
    padding: 0 0px;
  }
}
@media (min-width: 1094px) {
  :where(.umw-with-blocks) .breadcrumb {
    width: 1024px;
  }
}
@media (min-width: 1280px) {
  :where(.umw-with-blocks) .breadcrumb {
    width: 1240px;
  }
}
@media (min-width: 1440px) {
  :where(.umw-with-blocks) .breadcrumb {
    width: 1392px;
  }
}
@media (min-width: 1600px) {
  :where(.umw-with-blocks) .breadcrumb {
    width: 1440px;
  }
}
@media (min-width: 1094px) {
  .has-sidebar :where(.umw-with-blocks) .breadcrumb {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1093px) {
  :where(.umw-with-blocks) .breadcrumb.has-sidebar {
    padding: 0;
  }
}
:where(.umw-with-blocks) .breadcrumb > * {
  display: none;
}
@media (min-width: 1094px) {
  :where(.umw-with-blocks) .breadcrumb > * {
    display: block;
  }
}
:where(.umw-with-blocks) .breadcrumb .breadcrumb__current {
  display: flex;
  align-items: center;
}
:where(.umw-with-blocks) .breadcrumb > .breadcrumb__previous, :where(.umw-with-blocks) .breadcrumb > .breadcrumb__previous a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 1094px) {
  :where(.umw-with-blocks) .breadcrumb > .breadcrumb__previous svg {
    display: none;
  }
}
:where(.umw-with-blocks) .breadcrumb a:link, :where(.umw-with-blocks) .breadcrumb a:visited {
  color: #0067A2;
  text-decoration: underline;
  text-underline-offset: 2px;
}
:where(.umw-with-blocks) .breadcrumb a:hover, :where(.umw-with-blocks) .breadcrumb a:active, :where(.umw-with-blocks) .breadcrumb a:focus {
  color: #002D61;
}
:where(.umw-with-blocks) .breadcrumb [aria-label="breadcrumb separator"] {
  display: inline-block;
  /*display: none;*/
  width: 9px;
  height: 24px;
  pointer-events: none;
  margin: 0 9px 0 11px;
}
@media (min-width: 1094px) {
  :where(.umw-with-blocks) .breadcrumb [aria-label="breadcrumb separator"] {
    display: inline-block;
  }
}
:where(.umw-with-blocks) .umw-hero .breadcrumb {
  padding-left: 0;
  padding-right: 0;
}
:where(.umw-with-blocks) .umw-hero + .breadcrumb {
  margin-top: -64px;
}
:where(.umw-with-blocks) .wp-block-umw-hero.overlap {
  margin-bottom: -68px;
}
@media (min-width: 767px) {
  :where(.umw-with-blocks) .wp-block-umw-hero.overlap {
    margin-bottom: -70px;
  }
}
@media (min-width: 1094px) {
  :where(.umw-with-blocks) .wp-block-umw-hero.overlap {
    margin-bottom: -136px;
  }
}
@media (min-width: 1280px) {
  :where(.umw-with-blocks) .wp-block-umw-hero.overlap {
    margin-bottom: -138px;
  }
}

:where(.umw-with-blocks) .content > .entry {
  padding: 0;
}
:where(.umw-with-blocks) .entry-content {
  /* Add space at the bottom of content, before footer - 12.05.22 - JL */
  margin-bottom: 100px;
}
:where(.umw-with-blocks) .entry-content > .umw-custom-block,
:where(.umw-with-blocks) .entry-content > .umw-carousel,
:where(.umw-with-blocks) .entry-content > .wp-block-buttons {
  margin-bottom: 64px;
}
:where(.umw-with-blocks) .entry-content > .umw-custom-block + .has-sidebar,
:where(.umw-with-blocks) .entry-content > .umw-carousel + .has-sidebar,
:where(.umw-with-blocks) .entry-content > .wp-block-buttons + .has-sidebar {
  margin-top: -36px;
}
@media (min-width: 1280px) {
  :where(.umw-with-blocks) .entry-content > .umw-custom-block,
  :where(.umw-with-blocks) .entry-content > .umw-carousel,
  :where(.umw-with-blocks) .entry-content > .wp-block-buttons {
    margin-bottom: 144px;
  }
  :where(.umw-with-blocks) .entry-content > .umw-custom-block.feature-news, :where(.umw-with-blocks) .entry-content > .umw-custom-block.feature-events,
  :where(.umw-with-blocks) .entry-content > .umw-carousel.feature-news,
  :where(.umw-with-blocks) .entry-content > .umw-carousel.feature-events,
  :where(.umw-with-blocks) .entry-content > .wp-block-buttons.feature-news,
  :where(.umw-with-blocks) .entry-content > .wp-block-buttons.feature-events {
    margin-bottom: 64px;
  }
  :where(.umw-with-blocks) .entry-content > .umw-custom-block.feature-news.no-header, :where(.umw-with-blocks) .entry-content > .umw-custom-block.feature-events.no-header,
  :where(.umw-with-blocks) .entry-content > .umw-carousel.feature-news.no-header,
  :where(.umw-with-blocks) .entry-content > .umw-carousel.feature-events.no-header,
  :where(.umw-with-blocks) .entry-content > .wp-block-buttons.feature-news.no-header,
  :where(.umw-with-blocks) .entry-content > .wp-block-buttons.feature-events.no-header {
    margin-bottom: 24px;
  }
}
.has-sidebar :where(.umw-with-blocks) .entry-content > .umw-custom-block,
.has-sidebar :where(.umw-with-blocks) .entry-content > .umw-carousel,
.has-sidebar :where(.umw-with-blocks) .entry-content > .wp-block-buttons {
  margin-bottom: 64px;
}
@media (min-width: 1280px) {
  .has-sidebar :where(.umw-with-blocks) .entry-content > .umw-custom-block,
  .has-sidebar :where(.umw-with-blocks) .entry-content > .umw-carousel,
  .has-sidebar :where(.umw-with-blocks) .entry-content > .wp-block-buttons {
    margin-bottom: 95px;
  }
}
:where(.umw-with-blocks) .entry-content > .alignwide,
:where(.umw-with-blocks) .entry-content > .wp-block-embed:not(.alignfull) {
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 375px) {
  :where(.umw-with-blocks) .entry-content > .alignwide,
  :where(.umw-with-blocks) .entry-content > .wp-block-embed:not(.alignfull) {
    padding: 0 24px;
  }
}
@media (min-width: 767px) {
  :where(.umw-with-blocks) .entry-content > .alignwide,
  :where(.umw-with-blocks) .entry-content > .wp-block-embed:not(.alignfull) {
    padding: 0 24px;
  }
}
@media (min-width: 1094px) {
  :where(.umw-with-blocks) .entry-content > .alignwide,
  :where(.umw-with-blocks) .entry-content > .wp-block-embed:not(.alignfull) {
    padding: 0 0px;
  }
}
@media (min-width: 1094px) {
  :where(.umw-with-blocks) .entry-content > .alignwide,
  :where(.umw-with-blocks) .entry-content > .wp-block-embed:not(.alignfull) {
    width: 1024px;
  }
}
@media (min-width: 1280px) {
  :where(.umw-with-blocks) .entry-content > .alignwide,
  :where(.umw-with-blocks) .entry-content > .wp-block-embed:not(.alignfull) {
    width: 1240px;
  }
}
@media (min-width: 1440px) {
  :where(.umw-with-blocks) .entry-content > .alignwide,
  :where(.umw-with-blocks) .entry-content > .wp-block-embed:not(.alignfull) {
    width: 1392px;
  }
}
@media (min-width: 1600px) {
  :where(.umw-with-blocks) .entry-content > .alignwide,
  :where(.umw-with-blocks) .entry-content > .wp-block-embed:not(.alignfull) {
    width: 1440px;
  }
}
@media (min-width: 1094px) {
  .has-sidebar :where(.umw-with-blocks) .entry-content > .alignwide,
  .has-sidebar :where(.umw-with-blocks) .entry-content > .wp-block-embed:not(.alignfull) {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1093px) {
  :where(.umw-with-blocks) .entry-content > .alignwide.has-sidebar,
  :where(.umw-with-blocks) .entry-content > .wp-block-embed:not(.alignfull).has-sidebar {
    padding: 0;
  }
}
:where(.umw-with-blocks) .content-sidebar-wrap.has-sidebar .entry-content > .alignwide,
:where(.umw-with-blocks) .single-post .umw-with-blocks .content-sidebar-wrap .entry-content > .alignwide {
  width: auto;
}
:where(.umw-with-blocks) .breadcrumb {
  margin-bottom: 24px;
}

.entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4, .entry-content > h5, .entry-content > h6, .entry-content > p, .entry-content > ul, .entry-content > ol, .entry-content > hr,
.entry-content > .umw-intro-text,
.entry-content > .wp-block-buttons,
.entry-content > .tb-social-share {
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  width: 100%;
}
@media (min-width: 375px) {
  .entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4, .entry-content > h5, .entry-content > h6, .entry-content > p, .entry-content > ul, .entry-content > ol, .entry-content > hr,
  .entry-content > .umw-intro-text,
  .entry-content > .wp-block-buttons,
  .entry-content > .tb-social-share {
    padding: 0 24px;
  }
}
@media (min-width: 767px) {
  .entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4, .entry-content > h5, .entry-content > h6, .entry-content > p, .entry-content > ul, .entry-content > ol, .entry-content > hr,
  .entry-content > .umw-intro-text,
  .entry-content > .wp-block-buttons,
  .entry-content > .tb-social-share {
    padding: 0 24px;
  }
}
@media (min-width: 1094px) {
  .entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4, .entry-content > h5, .entry-content > h6, .entry-content > p, .entry-content > ul, .entry-content > ol, .entry-content > hr,
  .entry-content > .umw-intro-text,
  .entry-content > .wp-block-buttons,
  .entry-content > .tb-social-share {
    padding: 0 0px;
  }
}
@media (min-width: 1094px) {
  .entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4, .entry-content > h5, .entry-content > h6, .entry-content > p, .entry-content > ul, .entry-content > ol, .entry-content > hr,
  .entry-content > .umw-intro-text,
  .entry-content > .wp-block-buttons,
  .entry-content > .tb-social-share {
    width: 1024px;
  }
}
@media (min-width: 1280px) {
  .entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4, .entry-content > h5, .entry-content > h6, .entry-content > p, .entry-content > ul, .entry-content > ol, .entry-content > hr,
  .entry-content > .umw-intro-text,
  .entry-content > .wp-block-buttons,
  .entry-content > .tb-social-share {
    width: 1240px;
  }
}
@media (min-width: 1440px) {
  .entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4, .entry-content > h5, .entry-content > h6, .entry-content > p, .entry-content > ul, .entry-content > ol, .entry-content > hr,
  .entry-content > .umw-intro-text,
  .entry-content > .wp-block-buttons,
  .entry-content > .tb-social-share {
    width: 1392px;
  }
}
@media (min-width: 1600px) {
  .entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4, .entry-content > h5, .entry-content > h6, .entry-content > p, .entry-content > ul, .entry-content > ol, .entry-content > hr,
  .entry-content > .umw-intro-text,
  .entry-content > .wp-block-buttons,
  .entry-content > .tb-social-share {
    width: 1440px;
  }
}
@media (min-width: 1094px) {
  .has-sidebar .entry-content > h1, .has-sidebar .entry-content > h2, .has-sidebar .entry-content > h3, .has-sidebar .entry-content > h4, .has-sidebar .entry-content > h5, .has-sidebar .entry-content > h6, .has-sidebar .entry-content > p, .has-sidebar .entry-content > ul, .has-sidebar .entry-content > ol, .has-sidebar .entry-content > hr,
  .has-sidebar .entry-content > .umw-intro-text,
  .has-sidebar .entry-content > .wp-block-buttons,
  .has-sidebar .entry-content > .tb-social-share {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1093px) {
  .entry-content > h1.has-sidebar, .entry-content > h2.has-sidebar, .entry-content > h3.has-sidebar, .entry-content > h4.has-sidebar, .entry-content > h5.has-sidebar, .entry-content > h6.has-sidebar, .entry-content > p.has-sidebar, .entry-content > ul.has-sidebar, .entry-content > ol.has-sidebar, .entry-content > hr.has-sidebar,
  .entry-content > .umw-intro-text.has-sidebar,
  .entry-content > .wp-block-buttons.has-sidebar,
  .entry-content > .tb-social-share.has-sidebar {
    padding: 0;
  }
}
.entry-content > h1:not(.alignwide), .entry-content > h2:not(.alignwide), .entry-content > h3:not(.alignwide), .entry-content > h4:not(.alignwide), .entry-content > h5:not(.alignwide), .entry-content > h6:not(.alignwide), .entry-content > hr:not(.alignwide) {
  max-width: 50rem;
}
.entry-content > p, .entry-content > ul, .entry-content > ol,
.entry-content > .tb-social-share {
  max-width: 50rem;
}
.entry-content > .alignwide ~ p, .entry-content > .alignwide ~ ul, .entry-content > .alignwide ~ ol {
  max-width: none;
}

.type-news .breadcrumb,
.post-55435 .breadcrumb {
  display: none;
}

main > .breadcrumb {
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  width: 100%;
}
@media (min-width: 375px) {
  main > .breadcrumb {
    padding: 0 24px;
  }
}
@media (min-width: 767px) {
  main > .breadcrumb {
    padding: 0 24px;
  }
}
@media (min-width: 1094px) {
  main > .breadcrumb {
    padding: 0 0px;
  }
}
@media (min-width: 1094px) {
  main > .breadcrumb {
    width: 1024px;
  }
}
@media (min-width: 1280px) {
  main > .breadcrumb {
    width: 1240px;
  }
}
@media (min-width: 1440px) {
  main > .breadcrumb {
    width: 1392px;
  }
}
@media (min-width: 1600px) {
  main > .breadcrumb {
    width: 1440px;
  }
}
@media (min-width: 1094px) {
  .has-sidebar main > .breadcrumb {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1093px) {
  main > .breadcrumb.has-sidebar {
    padding: 0;
  }
}

.umw-directory-results .pagination {
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  width: 100%;
}
@media (min-width: 375px) {
  .umw-directory-results .pagination {
    padding: 0 24px;
  }
}
@media (min-width: 767px) {
  .umw-directory-results .pagination {
    padding: 0 24px;
  }
}
@media (min-width: 1094px) {
  .umw-directory-results .pagination {
    padding: 0 0px;
  }
}
@media (min-width: 1094px) {
  .umw-directory-results .pagination {
    width: 1024px;
  }
}
@media (min-width: 1280px) {
  .umw-directory-results .pagination {
    width: 1240px;
  }
}
@media (min-width: 1440px) {
  .umw-directory-results .pagination {
    width: 1392px;
  }
}
@media (min-width: 1600px) {
  .umw-directory-results .pagination {
    width: 1440px;
  }
}
@media (min-width: 1094px) {
  .has-sidebar .umw-directory-results .pagination {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1093px) {
  .umw-directory-results .pagination.has-sidebar {
    padding: 0;
  }
}
.umw-directory-results table {
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 2;
  border-collapse: collapse;
}
@media (min-width: 375px) {
  .umw-directory-results table {
    padding: 0 24px;
  }
}
@media (min-width: 767px) {
  .umw-directory-results table {
    padding: 0 24px;
  }
}
@media (min-width: 1094px) {
  .umw-directory-results table {
    padding: 0 0px;
  }
}
@media (min-width: 1094px) {
  .umw-directory-results table {
    width: 1024px;
  }
}
@media (min-width: 1280px) {
  .umw-directory-results table {
    width: 1240px;
  }
}
@media (min-width: 1440px) {
  .umw-directory-results table {
    width: 1392px;
  }
}
@media (min-width: 1600px) {
  .umw-directory-results table {
    width: 1440px;
  }
}
@media (min-width: 1094px) {
  .has-sidebar .umw-directory-results table {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1093px) {
  .umw-directory-results table.has-sidebar {
    padding: 0;
  }
}
.umw-directory-results svg {
  display: block;
}
.umw-directory-results tr:nth-child(odd) {
  background-color: white;
}
.umw-directory-results tr:nth-child(even) {
  background-color: #f4f4f4;
}
.umw-directory-results td {
  text-align: center;
}
.umw-directory-results th, .umw-directory-results td {
  vertical-align: middle;
  padding: 6px 12px;
}
.umw-directory-results th {
  font-family: "Stroma", serif;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.3;
  font-style: normal;
  text-decoration: none;
  margin: 0;
  text-align: left;
  color: #0067A2;
}
@media (min-width: 1094px) {
  .umw-directory-results th {
    font-size: 1.75rem;
  }
}
.umw-directory-results th a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.umw-directory-results th a:link, .umw-directory-results th a:visited {
  color: #0067A2;
}
.umw-directory-results td a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.umw-directory-results td a:link, .umw-directory-results td a:visited {
  color: #0067A2;
  font-weight: normal;
}
.umw-directory-results td a:hover, .umw-directory-results td a:active, .umw-directory-results td a:focus {
  color: #002D61;
}

.umw-directory-results__desktop-only {
  display: none;
}
@media (min-width: 1094px) {
  .umw-directory-results__desktop-only {
    display: inline-flex;
    align-items: center;
  }
}

.umw-directory-results__mobile-only {
  display: inline-flex;
  align-items: center;
}
@media (min-width: 1094px) {
  .umw-directory-results__mobile-only {
    display: none;
  }
}

.wp-block-cover.umw-cta-breaker .wp-block-cover__background {
  z-index: 2;
}
.wp-block-cover.umw-cta-breaker .wp-block-cover__inner-container {
  position: relative;
  z-index: 3;
}

.umw-with-blocks {
  /* Enhanced table styling - 12.02.22 - JL */
}
.umw-with-blocks .wp-block-table th,
.umw-with-blocks .wp-block-table td {
  padding: 6px 10px;
  font-size: 0.9em;
}
.umw-with-blocks .wp-block-table th {
  background-color: #cce9ff;
}
.umw-with-blocks .entry-content {
  /* Tweak in-body link styling to differentiate between normal bold text and links - 12.05.22 - JL */
  /* Fix for entry-content indentation issue - 12.01.22 - JL */
  /* Fix bulleted list margins - 12.05.22 - JL */
}
.umw-with-blocks .entry-content a,
.umw-with-blocks .entry-content a:visited {
  font-weight: normal;
  color: #0067A2;
  text-decoration: none;
  border-bottom: 1px solid #cce9ff;
}
.umw-with-blocks .entry-content a:hover, .umw-with-blocks .entry-content a:focus,
.umw-with-blocks .entry-content a:visited:hover,
.umw-with-blocks .entry-content a:visited:focus {
  font-weight: normal;
  text-decoration: none;
  color: #002D61;
  border-bottom: 1px solid #0067A2;
}
.umw-with-blocks .entry-content a.wp-block-button__link, .umw-with-blocks .entry-content a.wp-block-button__link:visited, .umw-with-blocks .entry-content a.wp-block-button__link:hover, .umw-with-blocks .entry-content a.wp-block-button__link:focus,
.umw-with-blocks .entry-content a:visited.wp-block-button__link,
.umw-with-blocks .entry-content a:visited.wp-block-button__link:visited,
.umw-with-blocks .entry-content a:visited.wp-block-button__link:hover,
.umw-with-blocks .entry-content a:visited.wp-block-button__link:focus {
  color: #ffffff;
}
.umw-with-blocks .entry-content p,
.umw-with-blocks .entry-content h2,
.umw-with-blocks .entry-content h3,
.umw-with-blocks .entry-content h4,
.umw-with-blocks .entry-content h5,
.umw-with-blocks .entry-content h6,
.umw-with-blocks .entry-content ul,
.umw-with-blocks .entry-content ol {
  margin-left: inherit !important;
}
.umw-with-blocks .entry-content ul,
.umw-with-blocks .entry-content ol {
  margin-left: 20px !important;
}
.umw-with-blocks .umw-cta-breaker a,
.umw-with-blocks .umw-block-content .wp-block-button__link {
  border-bottom: 0px !important;
}
.umw-with-blocks .umw-block-content .wp-block-button__link:hover {
  font-weight: bold !important;
}

.entry-content ul {
  list-style: disc;
}
.entry-content ul > li {
  list-style: inherit;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content ol > li {
  list-style: inherit;
}
.entry-content ol ol {
  list-style: upper-alpha;
}
.entry-content ol ol ol {
  list-style: lower-roman;
}
.entry-content ol ol ol ol {
  list-style: lower-alpha;
}