* {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

.site-header {
  --nav-height: 206px;
  position: fixed;
  width: 100%;
  z-index: 9;
  height: var(--nav-height);
  overflow: hidden
}

@media (max-width: 800px) {
  .site-header {
      --nav-height: 120px
  }
}

.site-header.--scrolled {
  transform: translateY(-100%)
}

@media (max-width: 1230px) {
  .site-header.--nav-open {
      background-color: #0e4c67;
      height: 100vh
  }
}

.site-header__skipnav {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid #ffc20e;
  color: #0e4c67;
  border-radius: 100px;
  padding: 20px 50px;
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
  background-color: #ffc20e;
  padding: 10px 30px;
  font-size: 18px;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  top: 15px;
  left: 15px
}

@media (max-width: 800px) {
  .site-header__skipnav {
      width: 100%
  }
}

.site-header__skipnav.--full {
  width: 100%
}

.site-header__skipnav:hover {
  transform: scale(1.1);
}

.site-header__skipnav:focus {
  opacity: 1;
  pointer-events: all;
}

.site-header__navigation {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  align-items: center
}

@media (max-width: 800px) {
  .site-header__navigation {
      padding: 60px 20px
  }
}

@media (max-width: 1230px) {
  .site-header__navigation {
      justify-content: space-between
  }
}

@media (max-width: 800px) {
  .site-header__navigation {
      padding-top: 0;
      padding-bottom: 0
  }
}

.site-header__navigation__logo {
  padding: 30px 40px;
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px
}

@media (max-width: 1230px) {
  .site-header__navigation__logo {
      padding: 20px 20px 15px;
  }
}

@media (max-width: 800px) {
  .site-header__navigation__logo {
      padding: 20px 20px 15px;
      border-bottom-left-radius: 0;
      margin-left: -20px;
  }
}

.site-header__navigation__logo__image {
  width: 205px;
}

@media (max-width: 1400px) {
  .site-header__navigation__logo__image {
      width: 100px;
  }
}

@media (max-width: 800px) {
  .site-header__navigation__logo__image {
      width: 116px;
  }
}

.site-header__navigation__inner {
  display: flex;
  gap: 40px;
  align-items: center
}

@media (max-width: 1230px) {
  .site-header__navigation__inner {
      opacity: 0;
      pointer-events: none;
      position: absolute;
      width: 100%;
      top: var(--nav-height);
      flex-direction: column;
      left: 50%;
      transform: translateX(-50%);
      padding: 20px 20px 60px;
      box-sizing: border-box;
      overflow-y: auto;
      height: calc(100vh - var(--nav-height));
      transition-delay: unset
  }

  .--nav-open .site-header__navigation__inner {
      opacity: 1;
      pointer-events: all;
      transition-delay: .3s
  }
}

.site-header__navigation__mobile-nav-button {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: none;
  background-color: #0e4c67;
  padding: 10px 20px;
  border-radius: 20px 20px 0 20px;
  color: #fff;
  box-shadow: 0 0 10px rgba(17,17,17,.5)
}

@media (max-width: 1230px) {
  .site-header__navigation__mobile-nav-button {
      display: block
  }
}

.--nav-open .site-header__navigation__mobile-nav-button {
  background-color: #fff;
  color: #0e4c67
}

.site-header__navigation__meganav {
  display: flex;
  gap: 10px;
  align-items: center
}

@media (max-width: 1230px) {
  .site-header__navigation__meganav {
      flex-wrap: wrap
  }
}

@media (max-width: 1230px) {
  .site-header__navigation__meganav {
      flex-direction: column
  }
}

.site-header__navigation__meganav__item {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border-radius: 10px 10px 0 10px;
  padding: 12px 16px;
  width: min-content;
  position: relative
}

@media (max-width: 800px) {
  .site-header__navigation__meganav__item {
      font-size: 15px;
      line-height: 20px
  }
}

.site-header__navigation__meganav__item.--cta {
  background-color: hsla(0,0%,100%,.17);
  margin-right: 16px;
  font-weight: 700;
  margin-right: unset;
}

.site-header__navigation__meganav__item.--active {
  font-weight: 700;
  background-color: unset
}

  .site-header__navigation__meganav__item.--active: after {
      content: "";
      position: absolute;
      width: calc(100% - 64px);
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      height: 5px;
      background-color: #ffc20e;
      padding: 0 16px
  }

@media (max-width: 1230px) {
  .site-header__navigation__meganav__item {
      width: unset
  }

      .site-header__navigation__meganav__item.--cta {
          margin-right: unset
      }
}

.site-header__navigation__separator {
  width: 5px;
  height: 50px;
  background-color: #2ca5aa
}

@media (max-width: 1230px) {
  .site-header__navigation__separator {
      width: 50px;
      height: 5px;
      margin-bottom: 12px
  }
}

.site-header__navigation__separator:after {
  content: ".";
  visibility: hidden
}

.site-header__navigation__subnav {
  display: flex;
  gap: 25px;
  align-items: center
}

@media (max-width: 1230px) {
  .site-header__navigation__subnav {
      flex-direction: column
  }
}

@media (min-width: 1230px) {
  .site-header__navigation__subnav__item:hover .site-header__navigation__subnav__children, .site-header__navigation__subnav__item__link:focus + .site-header__navigation__subnav__children, .site-header__navigation__subnav__item__link:hover + .site-header__navigation__subnav__children {
      opacity: 1;
      pointer-events: all
  }
}

@media (max-width: 1230px) {
  .site-header__navigation__subnav__item {
      text-align: center
  }
}

.site-header__navigation__subnav__item__link:not(.--cta) {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  width: min-content;
  position: relative
}

@media (max-width: 800px) {
  .site-header__navigation__subnav__item__link:not(.--cta) {
      font-size: 15px;
      line-height: 20px
  }
}

.site-header__navigation__subnav__item__link:not(.--cta).--active {
  font-weight: 700;
  background-color: unset
}

  .site-header__navigation__subnav__item__link:not(.--cta).--active: after {
      content: "";
      position: absolute;
      width: calc(100% - 32px);
      left: 50%;
      transform: translateX(-50%);
      bottom: -8px;
      height: 5px;
      background-color: #ffc20e;
      padding: 0 16px
  }

.site-header__navigation__subnav__item__link.--cta {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid #ffc20e;
  color: #0e4c67;
  border-radius: 100px;
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
  background-color: #ffc20e;
  font-size: 18px;
  padding: 10px 20px
}

@media (max-width: 800px) {
  .site-header__navigation__subnav__item__link.--cta {
      width: 100%
  }
}

.site-header__navigation__subnav__item__link.--cta.--full {
  width: 100%
}

.site-header__navigation__subnav__item__link.--cta: hover {
  transform: scale(1.1)
}

.site-header__navigation__subnav__children {
  position: absolute;
  list-style: none;
  margin-left: -14px;
  padding-top: 10px;
  min-width: 150px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 0 rgba(17,17,17,.5)
}

@media (max-width: 1230px) {
  .site-header__navigation__subnav__children {
      position: unset;
      height: 0;
      padding-top: 0;
      margin-left: unset
  }

      .site-header__navigation__subnav__children.--open {
          height: 100%;
          padding-top: 10px;
          opacity: 1;
          pointer-events: all
      }
}

.site-header__navigation__subnav__children__item {
  background-color: #0e4c67;
  padding: 14px;
  border: 1px solid #0b3b51
}

  .site-header__navigation__subnav__children__item:not(:last-child) {
      padding-bottom: 0;
      border-bottom: unset
  }

.site-header__navigation__subnav__children__item__link {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #fff
}

@media (max-width: 800px) {
  .site-header__navigation__subnav__children__item__link {
      font-size: 15px;
      line-height: 20px
  }
}

.site-header__navigation__subnav__children__item__link:hover {
  transform: translateX(10px)
}

@media (max-width: 1230px) {
  body.--fixed {
      overflow: hidden
  }
}

.homepage-hero {
  position: relative;
  z-index: -1
}

.homepage-hero__content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  box-sizing: border-box
}

@media (max-width: 800px) {
  .homepage-hero__content {
      padding: 60px 20px;
      padding: 40px 20px
  }
}

[block-first=intro-copy] .homepage-hero__content {
  bottom: 30px
}

.homepage-hero__content__title {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 128px;
  line-height: 129px;
  font-weight: 800;
  text-align: center;
  color: #fff
}

@media (max-width: 800px) {
  .homepage-hero__content__title {
      font-size: 70px;
      line-height: 70px
  }
}

.homepage-hero__image {
  position: relative
}

  .homepage-hero__image:before {
      content: "";
      background: linear-gradient(rgba(17,17,17,.5),rgba(17,17,17,0));
      width: 100%;
      position: absolute;
      height: 190px;
      top: 0;
      left: 0
  }

  .homepage-hero__image:after {
      content: "";
      background: linear-gradient(rgba(17,17,17,0),#111);
      width: 100%;
      position: absolute;
      height: 500px;
      bottom: 0;
      left: 0
  }

.homepage-hero__image__img {
  width: 100%;
  height: 740px;
  object-fit: cover
}

@media (max-width: 800px) {
  .homepage-hero__image__img {
      height: 450px
  }
}

.error-hero {
  position: relative;
  z-index: 0;
  background-color: #0e4c67
}

.error-hero__content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
  text-align: center
}

@media (max-width: 800px) {
  .error-hero__content {
      padding: 60px 20px;
      padding: 40px 20px
  }
}

[block-first=intro-copy] .error-hero__content {
  bottom: 30px
}

.error-hero__content__title {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 128px;
  line-height: 129px;
  font-weight: 800;
  color: #fff
}

@media (max-width: 800px) {
  .error-hero__content__title {
      font-size: 70px;
      line-height: 70px
  }
}

.error-hero__content__description {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
  margin: 14px auto 0;
  max-width: 880px
}

@media (max-width: 800px) {
  .error-hero__content__description {
      font-size: 15px;
      line-height: 20px
  }
}

.error-hero__content__cta {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid #ffc20e;
  color: #fff;
  border-radius: 100px;
  padding: 20px 50px;
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
  margin-top: 40px
}

@media (max-width: 800px) {
  .error-hero__content__cta {
      width: 100%
  }
}

.error-hero__content__cta.--full {
  width: 100%
}

.error-hero__content__cta:hover {
  transform: scale(1.1);
  background-color: #ffc20e;
  color: #0e4c67
}

.error-hero__image {
  position: relative;
  height: 940px
}

@media (max-width: 800px) {
  .error-hero__image {
      height: 450px
  }
}

.error-hero__image:before {
  content: "";
  background: linear-gradient(rgba(17,17,17,.5),rgba(17,17,17,0));
  width: 100%;
  position: absolute;
  height: 190px;
  top: 0;
  left: 0
}

.error-hero__image:after {
  content: "";
  background: linear-gradient(rgba(17,17,17,0),#111);
  width: 100%;
  position: absolute;
  height: 500px;
  bottom: 0;
  left: 0
}

.error-hero__image__img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.secondary-hero {
  position: relative;
  z-index: -1
}

.secondary-hero__content {
  max-width: 1300px;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
  padding: 80px 20px 50px
}

@media (max-width: 800px) {
  .secondary-hero__content {
      padding: 60px 20px;
      padding: 40px 20px
  }
}

[block-first=intro-copy] .secondary-hero__content {
  bottom: 30px
}

.secondary-hero__content__title {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 100px;
  line-height: 110px;
  font-weight: 800;
  color: #fff;
  width: min-content
}

@media (max-width: 800px) {
  .secondary-hero__content__title {
      font-size: 70px;
      line-height: 70px
  }
}

.secondary-hero__image {
  position: relative
}

  .secondary-hero__image:before {
      content: "";
      background: linear-gradient(rgba(17,17,17,.5),rgba(17,17,17,0));
      width: 100%;
      position: absolute;
      height: 190px;
      top: 0;
      left: 0
  }

  .secondary-hero__image:after {
      content: "";
      background: linear-gradient(rgba(17,17,17,0),#111);
      width: 100%;
      position: absolute;
      height: 500px;
      bottom: 0;
      left: 0
  }

.secondary-hero__image__img {
  width: 100%;
  height: 600px;
  object-fit: cover
}

@media (max-width: 800px) {
  .secondary-hero__image__img {
      height: 450px
  }
}

.tertiary-hero {
  position: relative;
  background-color: #0e4c67
}

.tertiary-hero__content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 300px 20px 40px
}

@media (max-width: 800px) {
  .tertiary-hero__content {
      padding: 60px 20px;
      padding-top: 180px;
      padding-bottom: 40px
  }
}

.tertiary-hero__content__subtitle {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 13px;
  line-height: 15.25px;
  color: hsla(0,0%,100%,.7)
}

@media (max-width: 800px) {
  .tertiary-hero__content__subtitle {
      font-size: 15px;
      line-height: 20px
  }
}

.tertiary-hero__content__title {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 54px;
  line-height: 64px;
  font-weight: 600;
  color: #fff;
  max-width: 800px
}

@media (max-width: 800px) {
  .tertiary-hero__content__title {
      font-size: 50px;
      line-height: 55px
  }
}

.tertiary-hero__content__categories, .tertiary-hero__content__tags {
  margin-top: 10px;
  list-style: none;
  display: flex;
  gap: 15px;
  align-items: center;
  overflow-x: auto
}

  .tertiary-hero__content__categories:before, .tertiary-hero__content__tags:before {
      content: "";
      width: 16px;
      height: 16px;
      filter: invert(1);
      flex-shrink: 0
  }

  .tertiary-hero__content__tags:before {
      background-image: url(/wp-content/themes/mm-jvs/assets/icons/tag.svg)
  }

  .tertiary-hero__content__categories:before {
      background-image: url(/wp-content/themes/mm-jvs/assets/icons/category.svg)
  }

.tertiary-hero__content__category, .tertiary-hero__content__tag {
  flex-shrink: 0
}

.tertiary-hero__content__category__link, .tertiary-hero__content__tag__link {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 13px;
  line-height: 15.25px;
  color: #fff;
  opacity: .7;
  text-decoration: none
}

@media (max-width: 800px) {
  .tertiary-hero__content__category__link, .tertiary-hero__content__tag__link {
      font-size: 15px;
      line-height: 20px
  }
}

.tertiary-hero__content__category__link:hover, .tertiary-hero__content__tag__link:hover {
  opacity: 1;
  text-decoration: underline
}

.breadcrumbs__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px
}

@media (max-width: 800px) {
  .breadcrumbs__container {
      padding: 60px 20px;
      padding-top: 20px;
      padding-bottom: 20px
  }
}

.breadcrumbs__list {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  overflow-x: auto
}

.breadcrumbs__list__item {
  flex-shrink: 0
}

  .breadcrumbs__list__item:not(:first-child):before {
      content: ">";
      padding-right: 15px
  }

.breadcrumbs__list__item__link {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: inherit;
  line-height: inherit;
  color: #0e4c67;
  font-weight: 700;
  text-decoration: none;
  text-decoration: unset;
  font-weight: 400
}

  .breadcrumbs__list__item__link:hover {
      text-decoration: underline
  }

  .breadcrumbs__list__item__link:visited {
      color: #5a5a5a
  }

  .breadcrumbs__list__item__link.--current {
      color: #0e4c67;
      pointer-events: none
  }

.block-related-posts__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;
  padding-top: unset
}

@media (max-width: 800px) {
  .block-related-posts__container {
      padding: 60px 20px
  }
}

.block-related-posts__title {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  border-top: 2px solid #2ca5aa;
  font-size: 18px;
  color: #c6460c;
  padding-top: 10px
}

@media (max-width: 800px) {
  .block-related-posts__title {
      font-size: 18px;
      line-height: 20px
  }
}

.block-related-posts__posts {
  display: flex;
  margin-top: 40px;
  gap: 40px;
  justify-content: center
}

@media (max-width: 660px) {
  .block-related-posts__posts {
      flex-direction: column;
      max-width: 450px;
      margin-left: auto;
      margin-right: auto
  }
}

.block-related-posts__post {
  flex-basis: 50%;
  text-decoration: unset
}

  .block-related-posts__post:hover {
      transform: scale(1.03)
  }

.block-related-posts__post__details {
  padding-right: 25px
}

@media (max-width: 800px) {
  .block-related-posts__post__details {
      padding-right: unset;
      text-align: center
  }
}

.block-related-posts__post__image {
  border-radius: 20px 20px 0 20px;
  width: 100%;
  aspect-ratio: 4/2.5;
  object-fit: cover
}

.block-related-posts__post__title {
  color: #111;
  font-size: 30px;
  line-height: 32px;
  font-weight: 600;
  margin-top: 30px;
  color: #c6460c;
  -webkit-line-clamp: 2
}

.block-related-posts__post__description, .block-related-posts__post__title {
  font-family: Work Sans,sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.block-related-posts__post__description {
  color: #111;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  margin-top: 12px;
  -webkit-line-clamp: 3
}

@media (max-width: 800px) {
  .block-related-posts__post__description {
      font-size: 15px;
      line-height: 20px
  }
}

.search-results__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px
}

@media (max-width: 800px) {
  .search-results__container {
      padding: 60px 20px
  }
}

.search-results__num-results {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  width: 100%;
  text-align: center
}

@media (max-width: 800px) {
  .search-results__num-results {
      font-size: 15px;
      line-height: 20px
  }
}

.search-results__results-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 880px;
  margin: 50px auto
}

.search-results__result {
  display: flex;
  gap: 30px;
  border-top: 1px solid #e8e8e8;
  padding-top: 30px;
  padding-right: 50px;
  align-items: center;
  text-decoration: none
}

  .search-results__result:hover * {
      transform: translateX(25px)
  }

@media (max-width: 800px) {
  .search-results__result {
      flex-direction: column;
      text-align: center;
      padding-right: unset
  }

      .search-results__result:hover .search-results__result__image {
          transform: scale(1.1)
      }

      .search-results__result:hover * {
          transform: unset
      }
}

.search-results__result__image {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 20px 20px 0 20px;
  width: 150px
}

.search-results__result__title {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 30px;
  line-height: 32px;
  font-weight: 600;
  color: #c6460c
}

.search-results__result__description {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400
}

@media (max-width: 800px) {
  .search-results__result__description {
      font-size: 15px;
      line-height: 20px
  }
}

.search-results__no-results__text {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  text-align: center
}

@media (max-width: 800px) {
  .search-results__no-results__text {
      font-size: 15px;
      line-height: 20px
  }
}

@media (max-width: 800px) {
  .search-results__no-results__separator {
      display: none
  }
}

.search-results__load-more {
  width: 100%;
  margin: 45px auto 0;
  display: flex;
  justify-content: center
}

.search-results__load-more__button {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid #ffc20e;
  color: #0e4c67;
  border-radius: 100px;
  padding: 20px 50px;
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
  background-color: #fff
}

@media (max-width: 800px) {
  .search-results__load-more__button {
      width: 100%
  }
}

.search-results__load-more__button.--full {
  width: 100%
}

.search-results__load-more__button:hover {
  transform: scale(1.1);
  background-color: #ffc20e
}

.tribe-common-l-container, .tribe-events-pg-template {
  --tec-font-family-sans-serif: Work Sans,sans-serif;
  --tec-color-accent-primary: #0e4c67;
  --tec-color-text-events-title: #c6460c;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;
  max-width: 1340px !important;
  margin: 0 auto !important;
  padding: 80px 20px !important
}

@media (max-width: 800px) {
  .tribe-common-l-container, .tribe-events-pg-template {
      padding: 60px 20px;
      padding: 60px 20px !important
  }
}

.breadcrumbs + .tribe-common .tribe-common-l-container, .breadcrumbs + .tribe-events-pg-template {
  padding-top: 40px !important
}

.tribe-events-back, .tribe-events-c-breadcrumbs {
  display: none
}

.tribe-events-calendar-list__event-date-tag-daynum {
  color: #0e4c67 !important
}

.tribe-common-c-btn {
  background-color: #0e4c67 !important
}

.tribe-events-c-messages__message-list-item-link {
  color: #2ca5aa !important;
  border-color: #2ca5aa !important
}

.tribe-events-pg-template {
  max-width: 1300px !important
}

.tribe-events-notices {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400
}

@media (max-width: 800px) {
  .tribe-events-notices {
      font-size: 15px;
      line-height: 20px
  }
}

.tribe-events-schedule h2, .tribe-events-single-section-title {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 30px;
  line-height: 32px;
  font-weight: 600;
  color: #c6460c !important;
  font-size: 30px !important;
  line-height: 32px !important;
  font-weight: 600 !important;
  text-transform: unset !important;
  letter-spacing: unset !important
}

.tribe-events-schedule .tribe-events-cost {
  color: #0e4c67
}

.tribe-events-event-meta {
  flex-grow: 1
}

  .tribe-events-event-meta.secondary {
      flex-direction: column
  }

.tribe-events-c-top-bar__datepicker-desktop {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 30px;
  line-height: 32px;
  font-weight: 600;
  color: #c6460c
}

.tribe-events-venue-map {
  width: 100%
}

.tribe-common-c-btn-border {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  color: #0e4c67 !important
}

  .tribe-common-c-btn-border:hover {
      color: #fff !important
  }

.tribe-events-address a, .tribe-events-event-categories a, .tribe-events-event-url a {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: inherit;
  line-height: inherit;
  color: #0e4c67;
  text-decoration: none;
  color: #0e4c67 !important;
  font-weight: 700;
  text-decoration: unset
}

  .tribe-events-address a:visited, .tribe-events-event-categories a:visited, .tribe-events-event-url a:visited {
      color: #0e4c67
  }

  .tribe-events-address a:hover, .tribe-events-event-categories a:hover, .tribe-events-event-url a:hover {
      text-decoration: underline
  }

.search-form {
  background-color: #0e4c67;
  display: flex;
  position: relative
}

.search-form__input {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 13px;
  line-height: 15.25px;
  background-color: #0b3b51;
  color: #fff;
  border: unset;
  padding-left: 15px;
  padding-right: 45px;
  height: 50px
}

@media (max-width: 800px) {
  .search-form__input {
      font-size: 15px;
      line-height: 20px
  }
}

.search-form__input::placeholder {
  color: hsla(0,0%,100%,.5)
}

.search-form__submit {
  flex-shrink: 0;
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  background-color: #ffc20e;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px
}

  .search-form__submit:hover {
      transform: scale(1.1)
  }

.search-form__submit__image {
  padding-right: 2px;
  transform: scaleX(-1)
}

.site-footer {
  background-color: #0e4c67;
  border-top: 1px solid #0b3b51
}

.site-footer__main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 20px
}

@media (max-width: 800px) {
  .site-footer__main {
      padding: 60px 20px;
      padding-bottom: 30px
  }
}

.site-footer__main__columns {
  display: flex;
  gap: 60px;
  justify-content: space-between
}

@media (max-width: 800px) {
  .site-footer__main__columns {
      flex-direction: column;
      text-align: center;
      gap: 35px
  }
}

.site-footer__main__column {
  max-width: 300px
}

@media (max-width: 800px) {
  .site-footer__main__column {
      max-width: 400px;
      margin: 0 auto
  }

      .site-footer__main__column.--mobile-hidden {
          display: none
      }
}

.site-footer__main__title {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 13px;
  line-height: 15.25px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px
}

@media (max-width: 800px) {
  .site-footer__main__title {
      font-size: 15px;
      line-height: 20px
  }
}

.site-footer__main__title:not(:first-child) {
  margin-top: 35px
}

.site-footer__main__text {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 13px;
  line-height: 15.25px;
  color: #fff;
  margin-bottom: 20px;
  display: block
}

@media (max-width: 800px) {
  .site-footer__main__text {
      font-size: 15px;
      line-height: 20px
  }
}

.site-footer__main__text.--bold {
  font-weight: 500
}

.site-footer__main__text.--link {
  text-decoration: none
}

  .site-footer__main__text.--link: hover {
      text-decoration: underline
  }

.site-footer__main__cta {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid #ffc20e;
  color: #0e4c67;
  border-radius: 100px;
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
  background-color: #ffc20e;
  padding: 10px 30px;
  font-size: 18px
}

@media (max-width: 800px) {
  .site-footer__main__cta {
      width: 100%
  }
}

.site-footer__main__cta.--full {
  width: 100%
}

.site-footer__main__cta:hover {
  transform: scale(1.1)
}

.site-footer__main__cta-submit {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border-radius: 100px;
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
  border: 2px solid #ffc20e;
  padding: 6px 28px;
  font-size: 13px
}

@media (max-width: 800px) {
  .site-footer__main__cta-submit {
      width: 100%
  }
}

.site-footer__main__cta-submit.--full {
  width: 100%
}

.site-footer__main__cta-submit:hover {
  transform: scale(1.1);
  background-color: #ffc20e;
  color: #0e4c67
}

.site-footer__main__social-items {
  display: flex;
  gap: 13px
}

@media (max-width: 800px) {
  .site-footer__main__social-items {
      justify-content: center;
      gap: 38px
  }
}

.site-footer__main__social-item:hover {
  transform: scale(1.1)
}

.site-footer__main__social-item__icon {
  width: 22px;
  height: 22px
}

@media (max-width: 800px) {
  .site-footer__main__social-item__icon {
      width: 32px;
      height: 32px
  }
}

.site-footer__main__link-items {
  list-style: none;
  padding: unset
}

.site-footer__main__link-item__link {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 13px;
  line-height: 15.25px;
  color: #fff;
  text-decoration: none;
  vertical-align: text-top
}

@media (max-width: 800px) {
  .site-footer__main__link-item__link {
      font-size: 15px;
      line-height: 20px
  }
}

.site-footer__main__link-item__link:hover {
  text-decoration: underline
}

.site-footer__main__link-item__link:not(:last-child) {
  margin-bottom: 15px
}

.site-footer__main__form {
  width: 100%
}

  .site-footer__main__form input[type=email], .site-footer__main__form input[type=text] {
      color: #111;
      font-family: Work Sans,sans-serif;
      font-size: 20px;
      line-height: 28px;
      font-weight: 400;
      font-size: 13px;
      line-height: 15.25px;
      border: unset;
      border-radius: unset;
      padding: 15px 20px !important
  }

@media (max-width: 800px) {
  .site-footer__main__form input[type=email], .site-footer__main__form input[type=text] {
      font-size: 15px;
      line-height: 20px
  }
}

.site-footer__main__form input[type=submit] {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border-radius: 100px;
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
  background-color: #fff;
  border: 2px solid #ffc20e;
  padding: 6px 28px;
  font-size: 13px;
  margin-bottom: 0 !important;
  line-height: inherit !important
}

@media (max-width: 800px) {
  .site-footer__main__form input[type=submit] {
      width: 100%
  }
}

.site-footer__main__form input[type=submit].--full {
  width: 100%
}

.site-footer__main__form input[type=submit]:hover {
  transform: scale(1.1);
  background-color: #ffc20e
}

.site-footer__main__form .gform_footer {
  margin-top: 0 !important;
  padding-bottom: 0 !important;
  justify-content: flex-end
}

.site-footer__main__form .gform_validation_errors {
  display: none
}

.site-footer__main__form .gfield_description.validation_message.gfield_validation_message {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 13px;
  line-height: 15.25px;
  padding-left: 20px !important;
  padding-right: 20px !important;
  color: #c6460c;
  border-color: #c6460c;
  background: #fffcfb
}

@media (max-width: 800px) {
  .site-footer__main__form .gfield_description.validation_message.gfield_validation_message {
      font-size: 15px;
      line-height: 20px
  }
}

.site-footer__main__form .gform_confirmation_message {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #fff
}

@media (max-width: 800px) {
  .site-footer__main__form .gform_confirmation_message {
      font-size: 15px;
      line-height: 20px
  }
}

.site-footer__main__form .gform_confirmation_message a {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: inherit;
  line-height: inherit;
  color: #0e4c67;
  font-weight: 700;
  text-decoration: none;
  color: #ffc20e
}

  .site-footer__main__form .gform_confirmation_message a:hover {
      text-decoration: underline
  }

  .site-footer__main__form .gform_confirmation_message a:visited {
      color: #0e4c67
  }

.site-footer__main__form input[type=submit] {
  background-color: unset !important
}

  .site-footer__main__form input[type=submit]:hover {
      background-color: #ffc20e !important;
      color: #0e4c67 !important;
      cursor: pointer
  }

.site-footer__copyright {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 20px
}

@media (max-width: 800px) {
  .site-footer__copyright {
      padding: 60px 20px;
      padding: 20px
  }
}

.site-footer__copyright:not(:first-child) {
  border-top: 1px solid hsla(0,0%,100%,.5)
}

.site-footer__copyright__wysiwyg h1 {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 128px;
  line-height: 129px;
  font-weight: 800
}

@media (max-width: 800px) {
  .site-footer__copyright__wysiwyg h1 {
      font-size: 70px;
      line-height: 70px
  }
}

.site-footer__copyright__wysiwyg h2 {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 100px;
  line-height: 104px;
  font-weight: 700
}

@media (max-width: 800px) {
  .site-footer__copyright__wysiwyg h2 {
      font-size: 70px;
      line-height: 70px
  }
}

.site-footer__copyright__wysiwyg h3 {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 54px;
  line-height: 64px;
  font-weight: 600
}

@media (max-width: 800px) {
  .site-footer__copyright__wysiwyg h3 {
      font-size: 50px;
      line-height: 55px
  }
}

.site-footer__copyright__wysiwyg h4 {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 30px;
  line-height: 32px;
  font-weight: 600
}

.site-footer__copyright__wysiwyg ol, .site-footer__copyright__wysiwyg p, .site-footer__copyright__wysiwyg ul {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400
}

@media (max-width: 800px) {
  .site-footer__copyright__wysiwyg ol, .site-footer__copyright__wysiwyg p, .site-footer__copyright__wysiwyg ul {
      font-size: 15px;
      line-height: 20px
  }
}

.site-footer__copyright__wysiwyg ol:not(:last-child), .site-footer__copyright__wysiwyg p:not(:last-child), .site-footer__copyright__wysiwyg ul:not(:last-child) {
  margin-bottom: .75em
}

.site-footer__copyright__wysiwyg p.body-copy-large {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px
}

@media (max-width: 800px) {
  .site-footer__copyright__wysiwyg p.body-copy-large {
      font-size: 15px;
      line-height: 20px;
      font-size: 20px;
      line-height: 28px
  }
}

.site-footer__copyright__wysiwyg p.body-copy-larger {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px
}

@media (max-width: 800px) {
  .site-footer__copyright__wysiwyg p.body-copy-larger {
      font-size: 15px;
      line-height: 20px;
      font-size: 20px;
      line-height: 28px
  }
}

.site-footer__copyright__wysiwyg p.body-copy-small {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 13px;
  line-height: 15.25px
}

@media (max-width: 800px) {
  .site-footer__copyright__wysiwyg p.body-copy-small {
      font-size: 15px;
      line-height: 20px
  }
}

.site-footer__copyright__wysiwyg a {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: inherit
}

.site-footer__copyright__wysiwyg ol, .site-footer__copyright__wysiwyg ul {
  margin-left: 2em
}

  .site-footer__copyright__wysiwyg ol li, .site-footer__copyright__wysiwyg ul li {
      margin-bottom: .25em
  }

.site-footer__copyright__wysiwyg p {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 13px;
  line-height: 15.25px;
  color: #fff;
  text-transform: uppercase;
  weight: 300;
  text-align: center
}

@media (max-width: 800px) {
  .site-footer__copyright__wysiwyg p {
      font-size: 15px;
      line-height: 20px
  }
}

.site-footer__copyright__wysiwyg a {
  text-decoration: underline;
  color: inherit;
  font-weight: inherit
}

.open-content > [class*=wp-block-]:first-child, .wp-block-post-content > [class*=wp-block-]:first-child {
  margin-top: 80px
}

.open-content > [class*=wp-block-]:last-child, .wp-block-post-content > [class*=wp-block-]:last-child {
  margin-bottom: 80px
}

.open-content [class^=block-] + [class^=wp-block-], .open-content [class^=block-] + [class^=wp-container-], .open-content [class^=wp-block-] + [class^=block-], .open-content [class^=wp-container-] + [class^=block-], .wp-block-post-content [class^=block-] + [class^=wp-block-], .wp-block-post-content [class^=block-] + [class^=wp-container-], .wp-block-post-content [class^=wp-block-] + [class^=block-], .wp-block-post-content [class^=wp-container-] + [class^=block-] {
  margin-top: 80px
}

.open-content [class^=block-].--whitespace + [class^=block-].--whitespace > [class*=__container], .wp-block-post-content [class^=block-].--whitespace + [class^=block-].--whitespace > [class*=__container] {
  padding-top: 0
}

.open-content [class*=wp-block-], .wp-block-post-content [class*=wp-block-] {
  padding: 0 1.38em;
  max-width: 1300px;
  margin: 0 auto
}

  .open-content [class*=wp-block-] ol:not([class]), .open-content [class*=wp-block-] ul:not([class]), .wp-block-post-content [class*=wp-block-] ol:not([class]), .wp-block-post-content [class*=wp-block-] ul:not([class]) {
      max-width: 950px;
      margin: 1.25em auto;
      color: #111;
      font-family: Work Sans,sans-serif;
      font-size: 20px;
      line-height: 28px;
      font-weight: 400
  }

@media (max-width: 800px) {
  .open-content [class*=wp-block-] ol:not([class]), .open-content [class*=wp-block-] ul:not([class]), .wp-block-post-content [class*=wp-block-] ol:not([class]), .wp-block-post-content [class*=wp-block-] ul:not([class]) {
      font-size: 15px;
      line-height: 20px
  }
}

.open-content [class*=wp-block-] ol:not([class]) ol, .open-content [class*=wp-block-] ol:not([class]) ul, .open-content [class*=wp-block-] ul:not([class]) ol, .open-content [class*=wp-block-] ul:not([class]) ul, .wp-block-post-content [class*=wp-block-] ol:not([class]) ol, .wp-block-post-content [class*=wp-block-] ol:not([class]) ul, .wp-block-post-content [class*=wp-block-] ul:not([class]) ol, .wp-block-post-content [class*=wp-block-] ul:not([class]) ul {
  font-size: inherit
}

.open-content [class*=wp-block-] ol:not([class]) li, .open-content [class*=wp-block-] ul:not([class]) li, .wp-block-post-content [class*=wp-block-] ol:not([class]) li, .wp-block-post-content [class*=wp-block-] ul:not([class]) li {
  margin-left: 25px
}

.open-content [class*=wp-block-] h1, .wp-block-post-content [class*=wp-block-] h1 {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 100px;
  line-height: 104px;
  font-weight: 700;
  margin: 0 auto;
  max-width: 950px;
  color: #c6460c
}

@media (max-width: 800px) {
  .open-content [class*=wp-block-] h1, .wp-block-post-content [class*=wp-block-] h1 {
      font-size: 70px;
      line-height: 70px
  }
}

.open-content [class*=wp-block-] h2, .wp-block-post-content [class*=wp-block-] h2 {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 54px;
  line-height: 64px;
  font-weight: 600;
  margin: 0 auto;
  max-width: 950px;
  color: #c6460c
}

@media (max-width: 800px) {
  .open-content [class*=wp-block-] h2, .wp-block-post-content [class*=wp-block-] h2 {
      font-size: 50px;
      line-height: 55px
  }
}

.open-content [class*=wp-block-] h3, .wp-block-post-content [class*=wp-block-] h3 {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 54px;
  line-height: 64px;
  font-weight: 600;
  margin: 0 auto;
  max-width: 950px;
  color: #c6460c;
  font-size: 42px
}

@media (max-width: 800px) {
  .open-content [class*=wp-block-] h3, .wp-block-post-content [class*=wp-block-] h3 {
      font-size: 50px;
      line-height: 55px
  }
}

.open-content [class*=wp-block-] h4, .wp-block-post-content [class*=wp-block-] h4 {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 30px;
  line-height: 32px;
  font-weight: 600;
  margin: 0 auto;
  max-width: 950px;
  color: #c6460c
}

.open-content [class*=wp-block-] h5, .wp-block-post-content [class*=wp-block-] h5 {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin: 0 auto;
  max-width: 950px;
  color: #c6460c
}

@media (max-width: 800px) {
  .open-content [class*=wp-block-] h5, .wp-block-post-content [class*=wp-block-] h5 {
      font-size: 18px;
      line-height: 20px
  }
}

.open-content [class*=wp-block-] h6, .wp-block-post-content [class*=wp-block-] h6 {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin: 0 auto;
  max-width: 950px;
  color: #c6460c;
  font-size: 18px
}

@media (max-width: 800px) {
  .open-content [class*=wp-block-] h6, .wp-block-post-content [class*=wp-block-] h6 {
      font-size: 18px;
      line-height: 20px
  }
}

.open-content [class*=wp-block-] a:not(.wp-block-button__link,.wp-block-file__button), .wp-block-post-content [class*=wp-block-] a:not(.wp-block-button__link,.wp-block-file__button) {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: inherit;
  line-height: inherit;
  color: #0e4c67;
  font-weight: 700;
  text-decoration: none
}

  .open-content [class*=wp-block-] a:not(.wp-block-button__link,.wp-block-file__button):hover, .wp-block-post-content [class*=wp-block-] a:not(.wp-block-button__link,.wp-block-file__button):hover {
      text-decoration: underline
  }

  .open-content [class*=wp-block-] a:not(.wp-block-button__link,.wp-block-file__button):visited, .wp-block-post-content [class*=wp-block-] a:not(.wp-block-button__link,.wp-block-file__button):visited {
      color: #0e4c67
  }

.open-content [class*=wp-block-] p, .wp-block-post-content [class*=wp-block-] p {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  margin: 1.25em auto;
  max-width: 950px
}

@media (max-width: 800px) {
  .open-content [class*=wp-block-] p, .wp-block-post-content [class*=wp-block-] p {
      font-size: 15px;
      line-height: 20px
  }
}

.open-content .wp-block-paragraph .is-style-body-copy-large, .wp-block-post-content .wp-block-paragraph .is-style-body-copy-large {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px
}

@media (max-width: 800px) {
  .open-content .wp-block-paragraph .is-style-body-copy-large, .wp-block-post-content .wp-block-paragraph .is-style-body-copy-large {
      font-size: 15px;
      line-height: 20px;
      font-size: 20px;
      line-height: 28px
  }
}

.open-content .wp-block-paragraph .is-style-body-copy-small, .wp-block-post-content .wp-block-paragraph .is-style-body-copy-small {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: 13px;
  line-height: 15.25px
}

@media (max-width: 800px) {
  .open-content .wp-block-paragraph .is-style-body-copy-small, .wp-block-post-content .wp-block-paragraph .is-style-body-copy-small {
      font-size: 15px;
      line-height: 20px
  }
}

.open-content .block + [class*=wp-block-], .open-content [class*=wp-block-] + .block, .wp-block-post-content .block + [class*=wp-block-], .wp-block-post-content [class*=wp-block-] + .block {
  margin-top: 80px
}

.open-content .wp-block-table, .wp-block-post-content .wp-block-table {
  border-bottom: none;
  margin-top: 2.5em;
  margin-bottom: 2.5em
}

  .open-content .wp-block-table table th, .wp-block-post-content .wp-block-table table th {
      font-family: Work Sans,sans-serif;
      font-size: 30px;
      line-height: 32px;
      font-weight: 600;
      padding: .75em .5em;
      font-size: 1.35em;
      color: #111
  }

  .open-content .wp-block-table table td, .wp-block-post-content .wp-block-table table td {
      color: #111;
      font-family: Work Sans,sans-serif;
      font-size: 20px;
      line-height: 28px;
      font-weight: 400;
      padding: .5em;
      font-size: 1.25em
  }

@media (max-width: 800px) {
  .open-content .wp-block-table table td, .wp-block-post-content .wp-block-table table td {
      font-size: 15px;
      line-height: 20px
  }
}

.open-content figcaption, .wp-block-post-content figcaption {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-size: smaller;
  text-align: center
}

@media (max-width: 800px) {
  .open-content figcaption, .wp-block-post-content figcaption {
      font-size: 15px;
      line-height: 20px
  }
}

.open-content .wp-block-file__button, .wp-block-post-content .wp-block-file__button {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid #ffc20e;
  color: #0e4c67;
  border-radius: 100px;
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
  background-color: #fff;
  padding: 10px 30px;
  font-size: 18px;
  margin-left: 1em
}

@media (max-width: 800px) {
  .open-content .wp-block-file__button, .wp-block-post-content .wp-block-file__button {
      width: 100%
  }
}

.open-content .wp-block-file__button.--full, .wp-block-post-content .wp-block-file__button.--full {
  width: 100%
}

.open-content .wp-block-file__button:hover, .wp-block-post-content .wp-block-file__button:hover {
  transform: scale(1.1);
  background-color: #ffc20e;
  opacity: 1 !important
}

.open-content .wp-block-buttons, .wp-block-post-content .wp-block-buttons {
  gap: 1.5em;
  max-width: 950px
}

.open-content .wp-block-button, .wp-block-post-content .wp-block-button {
  margin: unset;
  padding: unset
}

  .open-content .wp-block-button.is-style-fill .wp-block-button__link, .wp-block-post-content .wp-block-button.is-style-fill .wp-block-button__link {
      color: #111;
      font-family: Work Sans,sans-serif;
      font-size: 20px;
      line-height: 20px;
      font-weight: 700;
      text-transform: uppercase;
      text-decoration: none;
      border: 3px solid #ffc20e;
      color: #0e4c67;
      border-radius: 100px;
      padding: 20px 50px;
      box-sizing: border-box;
      text-align: center;
      display: inline-block;
      background-color: #ffc20e
  }

@media (max-width: 800px) {
  .open-content .wp-block-button.is-style-fill .wp-block-button__link, .wp-block-post-content .wp-block-button.is-style-fill .wp-block-button__link {
      width: 100%
  }
}

.open-content .wp-block-button.is-style-fill .wp-block-button__link.--full, .wp-block-post-content .wp-block-button.is-style-fill .wp-block-button__link.--full {
  width: 100%
}

.open-content .wp-block-button.is-style-fill .wp-block-button__link:hover, .wp-block-post-content .wp-block-button.is-style-fill .wp-block-button__link:hover {
  transform: scale(1.1);
  text-decoration: none
}

.open-content .wp-block-button.is-style-outline .wp-block-button__link, .wp-block-post-content .wp-block-button.is-style-outline .wp-block-button__link {
  color: #111;
  font-family: Work Sans,sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid #ffc20e;
  color: #0e4c67;
  border-radius: 100px;
  padding: 20px 50px;
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
  background-color: #fff
}

@media (max-width: 800px) {
  .open-content .wp-block-button.is-style-outline .wp-block-button__link, .wp-block-post-content .wp-block-button.is-style-outline .wp-block-button__link {
      width: 100%
  }
}

.open-content .wp-block-button.is-style-outline .wp-block-button__link.--full, .wp-block-post-content .wp-block-button.is-style-outline .wp-block-button__link.--full {
  width: 100%
}

.open-content .wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-post-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  transform: scale(1.1);
  background-color: #ffc20e;
  text-decoration: none
}

.open-content .wp-block-image, .wp-block-post-content .wp-block-image {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center
}

  .open-content .wp-block-image img, .wp-block-post-content .wp-block-image img {
      max-width: 45em;
      box-shadow: 0 0 .5em 0 rgba(17,17,17,.2);
      border-radius: 20px 20px 0 20px;
      width: 100%
  }

  .open-content .wp-block-image figcaption, .wp-block-post-content .wp-block-image figcaption {
      margin-top: 1.25em
  }

.open-content .no-bottom-padding, .wp-block-post-content .no-bottom-padding {
  padding-bottom: 0 !important
}

.open-content .no-top-padding, .wp-block-post-content .no-top-padding {
  padding-top: 0 !important
}

.open-content .no-bottom-margin, .wp-block-post-content .no-bottom-margin {
  margin-bottom: 0 !important
}

.open-content .no-top-margin, .wp-block-post-content .no-top-margin {
  margin-top: 0 !important
}

.breadcrumbs + .open-content > .--whitespace: first-child, .breadcrumbs + .wp-block-post-content > .--whitespace:first-child {
  margin-top: -40px
}

*, :after, :before {
  transition: all .25s,font-size .05s;
  scroll-padding: 20px
}

body {
  font-size: 18px;
  background-color: #fff
}

  body :focus {
      outline: 2px solid #111
  }

@media (max-width: 900px) {
  body {
      font-size: 16px
  }
}

@media (max-width: 700px) {
  body {
      font-size: 15px
  }
}

@media (max-width: 500px) {
  body {
      font-size: 14px
  }
}

@media (max-width: 399px) {
  body {
      font-size: 13px
  }
}

/*Custom overrides*/
.breadcrumbs + .open-content > .block-intro-copy.--whitespace:first-child, .breadcrumbs + .wp-block-post-content > .block-intro-copy.--whitespace:first-child {
  margin-top: 0;
}

.--dark .block-video-content__content p {
  color: white;
}

.wp-block-group figure, .open-content figure.wp-block-image {
  margin: 0;
  padding: 0;
}

.open-content [class*=wp-block-], .wp-block-post-content [class*=wp-block-], figure.open-content [class*=wp-block-], figure.wp-block-post-content [class*=wp-block-] {
  padding: 0 0.5em;
}

  .open-content [class*=wp-block-] p, .wp-block-post-content [class*=wp-block-] p, .open-content [class*=wp-block-] h2, .wp-block-post-content [class*=wp-block-] h2 {
      margin: 0;
      max-width: 100%;
  }

  .open-content [class*=wp-block-] h2, .wp-block-post-content [class*=wp-block-] h2, .open-content [class*=wp-block-] h3, .wp-block-post-content [class*=wp-block-] h3, .open-content [class*=wp-block-] h4, .wp-block-post-content [class*=wp-block-] h4 {
      padding-left: 0;
      padding-top: 1em;
  }

.open-content [class^=block-] + [class^=wp-block-] {
  margin-top: 0;
}

.open-content .wp-block-paragraph p {
  padding-top: 0.5em;
}

.open-content [class*=wp-block-] ul:not([class]) {
  margin: 1.25em 1.25em;
  max-width: none;
}

.open-content [class*=wp-block-] h4 {
  max-width: none;
}

.site-header__navigation__subnav__children {
  position: fixed;
}

.site-header__navigation__subnav__children__item__link {
  padding-bottom: 1em;
}

.site-header__navigation__meganav__item.--active {
  font-weight: 700;
  background-color: rgba(14, 76, 103, 0.7);
}
/*JVS wants to have the option for rounded images*/
.open-content .wp-block-image.is-style-rounded img {
  border-radius: 9999px !important;
}

